org.el: `org-preview-latex-fragment' requires a buffer file name.
[org-mode.git] / lisp / org.el
blob7a68b73639b1fb5d5373591db130d8f2e71da3de
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Maintainer: Bastien Guerry <bzg at gnu dot org>
8 ;; Keywords: outlines, hypermedia, calendar, wp
9 ;; Homepage: http://orgmode.org
10 ;; Version: 7.8.03
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
28 ;;; Commentary:
30 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
31 ;; project planning with a fast and effective plain-text system.
33 ;; Org-mode develops organizational tasks around NOTES files that contain
34 ;; information about projects as plain text. Org-mode is implemented on
35 ;; top of outline-mode, which makes it possible to keep the content of
36 ;; large files well structured. Visibility cycling and structure editing
37 ;; help to work with the tree. Tables are easily created with a built-in
38 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
39 ;; and scheduling. It dynamically compiles entries into an agenda that
40 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
41 ;; Plain text URL-like links connect to websites, emails, Usenet
42 ;; messages, BBDB entries, and any files related to the projects. For
43 ;; printing and sharing of notes, an Org-mode file can be exported as a
44 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
45 ;; iCalendar file. It can also serve as a publishing tool for a set of
46 ;; linked webpages.
48 ;; Installation and Activation
49 ;; ---------------------------
50 ;; See the corresponding sections in the manual at
52 ;; http://orgmode.org/org.html#Installation
54 ;; Documentation
55 ;; -------------
56 ;; The documentation of Org-mode can be found in the TeXInfo file. The
57 ;; distribution also contains a PDF version of it. At the homepage of
58 ;; Org-mode, you can read the same text online as HTML. There is also an
59 ;; excellent reference card made by Philip Rooke. This card can be found
60 ;; in the etc/ directory of Emacs 22.
62 ;; A list of recent changes can be found at
63 ;; http://orgmode.org/Changes.html
65 ;;; Code:
67 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
68 (defvar org-table-formula-constants-local nil
69 "Local version of `org-table-formula-constants'.")
70 (make-variable-buffer-local 'org-table-formula-constants-local)
72 ;;;; Require other packages
74 (eval-when-compile
75 (require 'cl)
76 (require 'gnus-sum))
78 (require 'calendar)
80 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
81 (when (fboundp 'defvaralias)
82 (unless (boundp 'calendar-view-holidays-initially-flag)
83 (defvaralias 'calendar-view-holidays-initially-flag
84 'view-calendar-holidays-initially))
85 (unless (boundp 'calendar-view-diary-initially-flag)
86 (defvaralias 'calendar-view-diary-initially-flag
87 'view-diary-entries-initially))
88 (unless (boundp 'diary-fancy-buffer)
89 (defvaralias 'diary-fancy-buffer 'fancy-diary-buffer)))
91 (require 'outline) (require 'noutline)
92 ;; Other stuff we need.
93 (require 'time-date)
94 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
95 (require 'easymenu)
96 (require 'overlay)
98 (require 'org-macs)
99 (require 'org-entities)
100 (require 'org-compat)
101 (require 'org-faces)
102 (require 'org-list)
103 (require 'org-pcomplete)
104 (require 'org-src)
105 (require 'org-footnote)
107 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
108 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
109 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
110 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
111 (declare-function org-at-clock-log-p "org-clock" ())
112 (declare-function org-clock-timestamps-up "org-clock" ())
113 (declare-function org-clock-timestamps-down "org-clock" ())
115 ;; babel
116 (require 'ob)
117 (require 'ob-table)
118 (require 'ob-lob)
119 (require 'ob-ref)
120 (require 'ob-tangle)
121 (require 'ob-comint)
122 (require 'ob-keys)
124 ;; load languages based on value of `org-babel-load-languages'
125 (defvar org-babel-load-languages)
126 ;;;###autoload
127 (defun org-babel-do-load-languages (sym value)
128 "Load the languages defined in `org-babel-load-languages'."
129 (set-default sym value)
130 (mapc (lambda (pair)
131 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
132 (if active
133 (progn
134 (require (intern (concat "ob-" lang))))
135 (progn
136 (funcall 'fmakunbound
137 (intern (concat "org-babel-execute:" lang)))
138 (funcall 'fmakunbound
139 (intern (concat "org-babel-expand-body:" lang)))))))
140 org-babel-load-languages))
142 (defcustom org-babel-load-languages '((emacs-lisp . t))
143 "Languages which can be evaluated in Org-mode buffers.
144 This list can be used to load support for any of the languages
145 below, note that each language will depend on a different set of
146 system executables and/or Emacs modes. When a language is
147 \"loaded\", then code blocks in that language can be evaluated
148 with `org-babel-execute-src-block' bound by default to C-c
149 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
150 be set to remove code block evaluation from the C-c C-c
151 keybinding. By default only Emacs Lisp (which has no
152 requirements) is loaded."
153 :group 'org-babel
154 :set 'org-babel-do-load-languages
155 :type '(alist :tag "Babel Languages"
156 :key-type
157 (choice
158 (const :tag "Awk" awk)
159 (const :tag "C" C)
160 (const :tag "R" R)
161 (const :tag "Asymptote" asymptote)
162 (const :tag "Calc" calc)
163 (const :tag "Clojure" clojure)
164 (const :tag "CSS" css)
165 (const :tag "Ditaa" ditaa)
166 (const :tag "Dot" dot)
167 (const :tag "Emacs Lisp" emacs-lisp)
168 (const :tag "Fortran" fortran)
169 (const :tag "Gnuplot" gnuplot)
170 (const :tag "Haskell" haskell)
171 (const :tag "Java" java)
172 (const :tag "Javascript" js)
173 (const :tag "LaTeX" latex)
174 (const :tag "Ledger" ledger)
175 (const :tag "Lilypond" lilypond)
176 (const :tag "Maxima" maxima)
177 (const :tag "Matlab" matlab)
178 (const :tag "Mscgen" mscgen)
179 (const :tag "Ocaml" ocaml)
180 (const :tag "Octave" octave)
181 (const :tag "Org" org)
182 (const :tag "Perl" perl)
183 (const :tag "Pico Lisp" picolisp)
184 (const :tag "PlantUML" plantuml)
185 (const :tag "Python" python)
186 (const :tag "Ruby" ruby)
187 (const :tag "Sass" sass)
188 (const :tag "Scheme" scheme)
189 (const :tag "Screen" screen)
190 (const :tag "Shell Script" sh)
191 (const :tag "Shen" shen)
192 (const :tag "Sql" sql)
193 (const :tag "Sqlite" sqlite))
194 :value-type (boolean :tag "Activate" :value t)))
196 ;;;; Customization variables
197 (defcustom org-clone-delete-id nil
198 "Remove ID property of clones of a subtree.
199 When non-nil, clones of a subtree don't inherit the ID property.
200 Otherwise they inherit the ID property with a new unique
201 identifier."
202 :type 'boolean
203 :group 'org-id)
205 ;;; Version
207 (defconst org-version "7.8.03"
208 "The version number of the file org.el.")
210 (defun org-version (&optional here)
211 "Show the org-mode version in the echo area.
212 With prefix arg HERE, insert it at point."
213 (interactive "P")
214 (let* ((origin default-directory)
215 (version org-version)
216 (git-version)
217 (dir (concat (file-name-directory (locate-library "org")) "../" )))
218 (when (and (file-exists-p (expand-file-name ".git" dir))
219 (executable-find "git"))
220 (unwind-protect
221 (progn
222 (cd dir)
223 (when (eql 0 (shell-command "git describe --abbrev=4 HEAD"))
224 (with-current-buffer "*Shell Command Output*"
225 (goto-char (point-min))
226 (setq git-version (buffer-substring (point) (point-at-eol))))
227 (subst-char-in-string ?- ?. git-version t)
228 (when (string-match "\\S-"
229 (shell-command-to-string
230 "git diff-index --name-only HEAD --"))
231 (setq git-version (concat git-version ".dirty")))
232 (setq version (concat version " (" git-version ")"))))
233 (cd origin)))
234 (setq version (format "Org-mode version %s" version))
235 (if here (insert version))
236 (message version)))
238 ;;; Compatibility constants
240 ;;; The custom variables
242 (defgroup org nil
243 "Outline-based notes management and organizer."
244 :tag "Org"
245 :group 'outlines
246 :group 'calendar)
248 (defcustom org-mode-hook nil
249 "Mode hook for Org-mode, run after the mode was turned on."
250 :group 'org
251 :type 'hook)
253 (defcustom org-load-hook nil
254 "Hook that is run after org.el has been loaded."
255 :group 'org
256 :type 'hook)
258 (defcustom org-log-buffer-setup-hook nil
259 "Hook that is run after an Org log buffer is created."
260 :group 'org
261 :type 'hook)
263 (defvar org-modules) ; defined below
264 (defvar org-modules-loaded nil
265 "Have the modules been loaded already?")
267 (defun org-load-modules-maybe (&optional force)
268 "Load all extensions listed in `org-modules'."
269 (when (or force (not org-modules-loaded))
270 (mapc (lambda (ext)
271 (condition-case nil (require ext)
272 (error (message "Problems while trying to load feature `%s'" ext))))
273 org-modules)
274 (setq org-modules-loaded t)))
276 (defun org-set-modules (var value)
277 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
278 (set var value)
279 (when (featurep 'org)
280 (org-load-modules-maybe 'force)))
282 (when (org-bound-and-true-p org-modules)
283 (let ((a (member 'org-infojs org-modules)))
284 (and a (setcar a 'org-jsinfo))))
286 (defcustom org-modules '(org-bbdb org-bibtex org-docview org-gnus org-info org-jsinfo org-irc org-mew org-mhe org-rmail org-vm org-w3m org-wl)
287 "Modules that should always be loaded together with org.el.
288 If a description starts with <C>, the file is not part of Emacs
289 and loading it will require that you have downloaded and properly installed
290 the org-mode distribution.
292 You can also use this system to load external packages (i.e. neither Org
293 core modules, nor modules from the CONTRIB directory). Just add symbols
294 to the end of the list. If the package is called org-xyz.el, then you need
295 to add the symbol `xyz', and the package must have a call to
297 (provide 'org-xyz)"
298 :group 'org
299 :set 'org-set-modules
300 :type
301 '(set :greedy t
302 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
303 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
304 (const :tag " crypt: Encryption of subtrees" org-crypt)
305 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
306 (const :tag " docview: Links to doc-view buffers" org-docview)
307 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
308 (const :tag " id: Global IDs for identifying entries" org-id)
309 (const :tag " info: Links to Info nodes" org-info)
310 (const :tag " jsinfo: Set up Sebastian Rose's JavaScript org-info.js" org-jsinfo)
311 (const :tag " habit: Track your consistency with habits" org-habit)
312 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
313 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
314 (const :tag " mac-message: Links to messages in Apple Mail" org-mac-message)
315 (const :tag " mew Links to Mew folders/messages" org-mew)
316 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
317 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
318 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
319 (const :tag " special-blocks: Turn blocks into LaTeX envs and HTML divs" org-special-blocks)
320 (const :tag " vm: Links to VM folders/messages" org-vm)
321 (const :tag " wl: Links to Wanderlust folders/messages" org-wl)
322 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
323 (const :tag " mouse: Additional mouse support" org-mouse)
324 (const :tag " TaskJuggler: Export tasks to a TaskJuggler project" org-taskjuggler)
326 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
327 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
328 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
329 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
330 (const :tag "C collector: Collect properties into tables" org-collector)
331 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
332 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
333 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
334 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
335 (const :tag "C eval: Include command output as text" org-eval)
336 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
337 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
338 (const :tag "C exp-bibtex: Export citations using BibTeX" org-exp-bibtex)
339 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
340 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
342 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
344 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
345 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
346 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
347 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
348 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
349 (const :tag "C mac-link-grabber Grab links and URLs from various Mac applications" org-mac-link-grabber)
350 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
351 (const :tag "C mtags: Support for muse-like tags" org-mtags)
352 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
353 (const :tag "C registry: A registry for Org-mode links" org-registry)
354 (const :tag "C org2rem: Convert org appointments into reminders" org2rem)
355 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
356 (const :tag "C secretary: Team management with org-mode" org-secretary)
357 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
358 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
359 (const :tag "C track: Keep up with Org-mode development" org-track)
360 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
361 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
362 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
364 (defcustom org-support-shift-select nil
365 "Non-nil means make shift-cursor commands select text when possible.
367 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
368 start selecting a region, or enlarge regions started in this way.
369 In Org-mode, in special contexts, these same keys are used for
370 other purposes, important enough to compete with shift selection.
371 Org tries to balance these needs by supporting `shift-select-mode'
372 outside these special contexts, under control of this variable.
374 The default of this variable is nil, to avoid confusing behavior. Shifted
375 cursor keys will then execute Org commands in the following contexts:
376 - on a headline, changing TODO state (left/right) and priority (up/down)
377 - on a time stamp, changing the time
378 - in a plain list item, changing the bullet type
379 - in a property definition line, switching between allowed values
380 - in the BEGIN line of a clock table (changing the time block).
381 Outside these contexts, the commands will throw an error.
383 When this variable is t and the cursor is not in a special
384 context, Org-mode will support shift-selection for making and
385 enlarging regions. To make this more effective, the bullet
386 cycling will no longer happen anywhere in an item line, but only
387 if the cursor is exactly on the bullet.
389 If you set this variable to the symbol `always', then the keys
390 will not be special in headlines, property lines, and item lines,
391 to make shift selection work there as well. If this is what you
392 want, you can use the following alternative commands: `C-c C-t'
393 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
394 can be used to switch TODO sets, `C-c -' to cycle item bullet
395 types, and properties can be edited by hand or in column view.
397 However, when the cursor is on a timestamp, shift-cursor commands
398 will still edit the time stamp - this is just too good to give up.
400 XEmacs user should have this variable set to nil, because
401 `shift-select-mode' is in Emacs 23 or later only."
402 :group 'org
403 :type '(choice
404 (const :tag "Never" nil)
405 (const :tag "When outside special context" t)
406 (const :tag "Everywhere except timestamps" always)))
408 (defcustom org-loop-over-headlines-in-active-region nil
409 "Shall some commands act upon headlines in the active region?
411 When set to `t', some commands will be performed in all headlines
412 within the active region.
414 When set to `start-level', some commands will be performed in all
415 headlines within the active region, provided that these headlines
416 are of the same level than the first one.
418 When set to a string, those commands will be performed on the
419 matching headlines within the active region. Such string must be
420 a tags/property/todo match as it is used in the agenda tags view.
422 The list of commands is: `org-schedule', `org-deadline',
423 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
424 `org-archive-to-archive-sibling'. The archiving commands skip
425 already archived entries."
426 :type '(choice (const :tag "Don't loop" nil)
427 (const :tag "All headlines in active region" t)
428 (const :tag "In active region, headlines at the same level than the first one" 'start-level)
429 (string :tag "Tags/Property/Todo matcher"))
430 :group 'org-todo
431 :group 'org-archive)
433 (defgroup org-startup nil
434 "Options concerning startup of Org-mode."
435 :tag "Org Startup"
436 :group 'org)
438 (defcustom org-startup-folded t
439 "Non-nil means entering Org-mode will switch to OVERVIEW.
440 This can also be configured on a per-file basis by adding one of
441 the following lines anywhere in the buffer:
443 #+STARTUP: fold (or `overview', this is equivalent)
444 #+STARTUP: nofold (or `showall', this is equivalent)
445 #+STARTUP: content
446 #+STARTUP: showeverything"
447 :group 'org-startup
448 :type '(choice
449 (const :tag "nofold: show all" nil)
450 (const :tag "fold: overview" t)
451 (const :tag "content: all headlines" content)
452 (const :tag "show everything, even drawers" showeverything)))
454 (defcustom org-startup-truncated t
455 "Non-nil means entering Org-mode will set `truncate-lines'.
456 This is useful since some lines containing links can be very long and
457 uninteresting. Also tables look terrible when wrapped."
458 :group 'org-startup
459 :type 'boolean)
461 (defcustom org-startup-indented nil
462 "Non-nil means turn on `org-indent-mode' on startup.
463 This can also be configured on a per-file basis by adding one of
464 the following lines anywhere in the buffer:
466 #+STARTUP: indent
467 #+STARTUP: noindent"
468 :group 'org-structure
469 :type '(choice
470 (const :tag "Not" nil)
471 (const :tag "Globally (slow on startup in large files)" t)))
473 (defcustom org-use-sub-superscripts t
474 "Non-nil means interpret \"_\" and \"^\" for export.
475 When this option is turned on, you can use TeX-like syntax for sub- and
476 superscripts. Several characters after \"_\" or \"^\" will be
477 considered as a single item - so grouping with {} is normally not
478 needed. For example, the following things will be parsed as single
479 sub- or superscripts.
481 10^24 or 10^tau several digits will be considered 1 item.
482 10^-12 or 10^-tau a leading sign with digits or a word
483 x^2-y^3 will be read as x^2 - y^3, because items are
484 terminated by almost any nonword/nondigit char.
485 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
487 Still, ambiguity is possible - so when in doubt use {} to enclose the
488 sub/superscript. If you set this variable to the symbol `{}',
489 the braces are *required* in order to trigger interpretations as
490 sub/superscript. This can be helpful in documents that need \"_\"
491 frequently in plain text.
493 Not all export backends support this, but HTML does.
495 This option can also be set with the +OPTIONS line, e.g. \"^:nil\"."
496 :group 'org-startup
497 :group 'org-export-translation
498 :type '(choice
499 (const :tag "Always interpret" t)
500 (const :tag "Only with braces" {})
501 (const :tag "Never interpret" nil)))
503 (if (fboundp 'defvaralias)
504 (defvaralias 'org-export-with-sub-superscripts 'org-use-sub-superscripts))
507 (defcustom org-startup-with-beamer-mode nil
508 "Non-nil means turn on `org-beamer-mode' on startup.
509 This can also be configured on a per-file basis by adding one of
510 the following lines anywhere in the buffer:
512 #+STARTUP: beamer"
513 :group 'org-startup
514 :type 'boolean)
516 (defcustom org-startup-align-all-tables nil
517 "Non-nil means align all tables when visiting a file.
518 This is useful when the column width in tables is forced with <N> cookies
519 in table fields. Such tables will look correct only after the first re-align.
520 This can also be configured on a per-file basis by adding one of
521 the following lines anywhere in the buffer:
522 #+STARTUP: align
523 #+STARTUP: noalign"
524 :group 'org-startup
525 :type 'boolean)
527 (defcustom org-startup-with-inline-images nil
528 "Non-nil means show inline images when loading a new Org file.
529 This can also be configured on a per-file basis by adding one of
530 the following lines anywhere in the buffer:
531 #+STARTUP: inlineimages
532 #+STARTUP: noinlineimages"
533 :group 'org-startup
534 :type 'boolean)
536 (defcustom org-insert-mode-line-in-empty-file nil
537 "Non-nil means insert the first line setting Org-mode in empty files.
538 When the function `org-mode' is called interactively in an empty file, this
539 normally means that the file name does not automatically trigger Org-mode.
540 To ensure that the file will always be in Org-mode in the future, a
541 line enforcing Org-mode will be inserted into the buffer, if this option
542 has been set."
543 :group 'org-startup
544 :type 'boolean)
546 (defcustom org-replace-disputed-keys nil
547 "Non-nil means use alternative key bindings for some keys.
548 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
549 These keys are also used by other packages like shift-selection-mode'
550 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
551 If you want to use Org-mode together with one of these other modes,
552 or more generally if you would like to move some Org-mode commands to
553 other keys, set this variable and configure the keys with the variable
554 `org-disputed-keys'.
556 This option is only relevant at load-time of Org-mode, and must be set
557 *before* org.el is loaded. Changing it requires a restart of Emacs to
558 become effective."
559 :group 'org-startup
560 :type 'boolean)
562 (defcustom org-use-extra-keys nil
563 "Non-nil means use extra key sequence definitions for certain commands.
564 This happens automatically if you run XEmacs or if `window-system'
565 is nil. This variable lets you do the same manually. You must
566 set it before loading org.
568 Example: on Carbon Emacs 22 running graphically, with an external
569 keyboard on a Powerbook, the default way of setting M-left might
570 not work for either Alt or ESC. Setting this variable will make
571 it work for ESC."
572 :group 'org-startup
573 :type 'boolean)
575 (if (fboundp 'defvaralias)
576 (defvaralias 'org-CUA-compatible 'org-replace-disputed-keys))
578 (defcustom org-disputed-keys
579 '(([(shift up)] . [(meta p)])
580 ([(shift down)] . [(meta n)])
581 ([(shift left)] . [(meta -)])
582 ([(shift right)] . [(meta +)])
583 ([(control shift right)] . [(meta shift +)])
584 ([(control shift left)] . [(meta shift -)]))
585 "Keys for which Org-mode and other modes compete.
586 This is an alist, cars are the default keys, second element specifies
587 the alternative to use when `org-replace-disputed-keys' is t.
589 Keys can be specified in any syntax supported by `define-key'.
590 The value of this option takes effect only at Org-mode's startup,
591 therefore you'll have to restart Emacs to apply it after changing."
592 :group 'org-startup
593 :type 'alist)
595 (defun org-key (key)
596 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
597 Or return the original if not disputed.
598 Also apply the translations defined in `org-xemacs-key-equivalents'."
599 (when org-replace-disputed-keys
600 (let* ((nkey (key-description key))
601 (x (org-find-if (lambda (x)
602 (equal (key-description (car x)) nkey))
603 org-disputed-keys)))
604 (setq key (if x (cdr x) key))))
605 (when (featurep 'xemacs)
606 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
607 key)
609 (defun org-find-if (predicate seq)
610 (catch 'exit
611 (while seq
612 (if (funcall predicate (car seq))
613 (throw 'exit (car seq))
614 (pop seq)))))
616 (defun org-defkey (keymap key def)
617 "Define a key, possibly translated, as returned by `org-key'."
618 (define-key keymap (org-key key) def))
620 (defcustom org-ellipsis nil
621 "The ellipsis to use in the Org-mode outline.
622 When nil, just use the standard three dots. When a string, use that instead,
623 When a face, use the standard 3 dots, but with the specified face.
624 The change affects only Org-mode (which will then use its own display table).
625 Changing this requires executing `M-x org-mode' in a buffer to become
626 effective."
627 :group 'org-startup
628 :type '(choice (const :tag "Default" nil)
629 (face :tag "Face" :value org-warning)
630 (string :tag "String" :value "...#")))
632 (defvar org-display-table nil
633 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
635 (defgroup org-keywords nil
636 "Keywords in Org-mode."
637 :tag "Org Keywords"
638 :group 'org)
640 (defcustom org-deadline-string "DEADLINE:"
641 "String to mark deadline entries.
642 A deadline is this string, followed by a time stamp. Should be a word,
643 terminated by a colon. You can insert a schedule keyword and
644 a timestamp with \\[org-deadline].
645 Changes become only effective after restarting Emacs."
646 :group 'org-keywords
647 :type 'string)
649 (defcustom org-scheduled-string "SCHEDULED:"
650 "String to mark scheduled TODO entries.
651 A schedule is this string, followed by a time stamp. Should be a word,
652 terminated by a colon. You can insert a schedule keyword and
653 a timestamp with \\[org-schedule].
654 Changes become only effective after restarting Emacs."
655 :group 'org-keywords
656 :type 'string)
658 (defcustom org-closed-string "CLOSED:"
659 "String used as the prefix for timestamps logging closing a TODO entry."
660 :group 'org-keywords
661 :type 'string)
663 (defcustom org-clock-string "CLOCK:"
664 "String used as prefix for timestamps clocking work hours on an item."
665 :group 'org-keywords
666 :type 'string)
668 (defcustom org-comment-string "COMMENT"
669 "Entries starting with this keyword will never be exported.
670 An entry can be toggled between COMMENT and normal with
671 \\[org-toggle-comment].
672 Changes become only effective after restarting Emacs."
673 :group 'org-keywords
674 :type 'string)
676 (defcustom org-quote-string "QUOTE"
677 "Entries starting with this keyword will be exported in fixed-width font.
678 Quoting applies only to the text in the entry following the headline, and does
679 not extend beyond the next headline, even if that is lower level.
680 An entry can be toggled between QUOTE and normal with
681 \\[org-toggle-fixed-width-section]."
682 :group 'org-keywords
683 :type 'string)
685 (defconst org-repeat-re
686 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)"
687 "Regular expression for specifying repeated events.
688 After a match, group 1 contains the repeat expression.")
690 (defgroup org-structure nil
691 "Options concerning the general structure of Org-mode files."
692 :tag "Org Structure"
693 :group 'org)
695 (defgroup org-reveal-location nil
696 "Options about how to make context of a location visible."
697 :tag "Org Reveal Location"
698 :group 'org-structure)
700 (defconst org-context-choice
701 '(choice
702 (const :tag "Always" t)
703 (const :tag "Never" nil)
704 (repeat :greedy t :tag "Individual contexts"
705 (cons
706 (choice :tag "Context"
707 (const agenda)
708 (const org-goto)
709 (const occur-tree)
710 (const tags-tree)
711 (const link-search)
712 (const mark-goto)
713 (const bookmark-jump)
714 (const isearch)
715 (const default))
716 (boolean))))
717 "Contexts for the reveal options.")
719 (defcustom org-show-hierarchy-above '((default . t))
720 "Non-nil means show full hierarchy when revealing a location.
721 Org-mode often shows locations in an org-mode file which might have
722 been invisible before. When this is set, the hierarchy of headings
723 above the exposed location is shown.
724 Turning this off for example for sparse trees makes them very compact.
725 Instead of t, this can also be an alist specifying this option for different
726 contexts. Valid contexts are
727 agenda when exposing an entry from the agenda
728 org-goto when using the command `org-goto' on key C-c C-j
729 occur-tree when using the command `org-occur' on key C-c /
730 tags-tree when constructing a sparse tree based on tags matches
731 link-search when exposing search matches associated with a link
732 mark-goto when exposing the jump goal of a mark
733 bookmark-jump when exposing a bookmark location
734 isearch when exiting from an incremental search
735 default default for all contexts not set explicitly"
736 :group 'org-reveal-location
737 :type org-context-choice)
739 (defcustom org-show-following-heading '((default . nil))
740 "Non-nil means show following heading when revealing a location.
741 Org-mode often shows locations in an org-mode file which might have
742 been invisible before. When this is set, the heading following the
743 match is shown.
744 Turning this off for example for sparse trees makes them very compact,
745 but makes it harder to edit the location of the match. In such a case,
746 use the command \\[org-reveal] to show more context.
747 Instead of t, this can also be an alist specifying this option for different
748 contexts. See `org-show-hierarchy-above' for valid contexts."
749 :group 'org-reveal-location
750 :type org-context-choice)
752 (defcustom org-show-siblings '((default . nil) (isearch t))
753 "Non-nil means show all sibling heading when revealing a location.
754 Org-mode often shows locations in an org-mode file which might have
755 been invisible before. When this is set, the sibling of the current entry
756 heading are all made visible. If `org-show-hierarchy-above' is t,
757 the same happens on each level of the hierarchy above the current entry.
759 By default this is on for the isearch context, off for all other contexts.
760 Turning this off for example for sparse trees makes them very compact,
761 but makes it harder to edit the location of the match. In such a case,
762 use the command \\[org-reveal] to show more context.
763 Instead of t, this can also be an alist specifying this option for different
764 contexts. See `org-show-hierarchy-above' for valid contexts."
765 :group 'org-reveal-location
766 :type org-context-choice)
768 (defcustom org-show-entry-below '((default . nil))
769 "Non-nil means show the entry below a headline when revealing a location.
770 Org-mode often shows locations in an org-mode file which might have
771 been invisible before. When this is set, the text below the headline that is
772 exposed is also shown.
774 By default this is off for all contexts.
775 Instead of t, this can also be an alist specifying this option for different
776 contexts. See `org-show-hierarchy-above' for valid contexts."
777 :group 'org-reveal-location
778 :type org-context-choice)
780 (defcustom org-indirect-buffer-display 'other-window
781 "How should indirect tree buffers be displayed?
782 This applies to indirect buffers created with the commands
783 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
784 Valid values are:
785 current-window Display in the current window
786 other-window Just display in another window.
787 dedicated-frame Create one new frame, and re-use it each time.
788 new-frame Make a new frame each time. Note that in this case
789 previously-made indirect buffers are kept, and you need to
790 kill these buffers yourself."
791 :group 'org-structure
792 :group 'org-agenda-windows
793 :type '(choice
794 (const :tag "In current window" current-window)
795 (const :tag "In current frame, other window" other-window)
796 (const :tag "Each time a new frame" new-frame)
797 (const :tag "One dedicated frame" dedicated-frame)))
799 (defcustom org-use-speed-commands nil
800 "Non-nil means activate single letter commands at beginning of a headline.
801 This may also be a function to test for appropriate locations where speed
802 commands should be active."
803 :group 'org-structure
804 :type '(choice
805 (const :tag "Never" nil)
806 (const :tag "At beginning of headline stars" t)
807 (function)))
809 (defcustom org-speed-commands-user nil
810 "Alist of additional speed commands.
811 This list will be checked before `org-speed-commands-default'
812 when the variable `org-use-speed-commands' is non-nil
813 and when the cursor is at the beginning of a headline.
814 The car if each entry is a string with a single letter, which must
815 be assigned to `self-insert-command' in the global map.
816 The cdr is either a command to be called interactively, a function
817 to be called, or a form to be evaluated.
818 An entry that is just a list with a single string will be interpreted
819 as a descriptive headline that will be added when listing the speed
820 commands in the Help buffer using the `?' speed command."
821 :group 'org-structure
822 :type '(repeat :value ("k" . ignore)
823 (choice :value ("k" . ignore)
824 (list :tag "Descriptive Headline" (string :tag "Headline"))
825 (cons :tag "Letter and Command"
826 (string :tag "Command letter")
827 (choice
828 (function)
829 (sexp))))))
831 (defgroup org-cycle nil
832 "Options concerning visibility cycling in Org-mode."
833 :tag "Org Cycle"
834 :group 'org-structure)
836 (defcustom org-cycle-skip-children-state-if-no-children t
837 "Non-nil means skip CHILDREN state in entries that don't have any."
838 :group 'org-cycle
839 :type 'boolean)
841 (defcustom org-cycle-max-level nil
842 "Maximum level which should still be subject to visibility cycling.
843 Levels higher than this will, for cycling, be treated as text, not a headline.
844 When `org-odd-levels-only' is set, a value of N in this variable actually
845 means 2N-1 stars as the limiting headline.
846 When nil, cycle all levels.
847 Note that the limiting level of cycling is also influenced by
848 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
849 `org-inlinetask-min-level' is, cycling will be limited to levels one less
850 than its value."
851 :group 'org-cycle
852 :type '(choice
853 (const :tag "No limit" nil)
854 (integer :tag "Maximum level")))
856 (defcustom org-drawers '("PROPERTIES" "CLOCK" "LOGBOOK" "RESULTS")
857 "Names of drawers. Drawers are not opened by cycling on the headline above.
858 Drawers only open with a TAB on the drawer line itself. A drawer looks like
859 this:
860 :DRAWERNAME:
861 .....
862 :END:
863 The drawer \"PROPERTIES\" is special for capturing properties through
864 the property API.
866 Drawers can be defined on the per-file basis with a line like:
868 #+DRAWERS: HIDDEN STATE PROPERTIES"
869 :group 'org-structure
870 :group 'org-cycle
871 :type '(repeat (string :tag "Drawer Name")))
873 (defcustom org-hide-block-startup nil
874 "Non-nil means entering Org-mode will fold all blocks.
875 This can also be set in on a per-file basis with
877 #+STARTUP: hideblocks
878 #+STARTUP: showblocks"
879 :group 'org-startup
880 :group 'org-cycle
881 :type 'boolean)
883 (defcustom org-cycle-global-at-bob nil
884 "Cycle globally if cursor is at beginning of buffer and not at a headline.
885 This makes it possible to do global cycling without having to use S-TAB or
886 \\[universal-argument] TAB. For this special case to work, the first line \
887 of the buffer
888 must not be a headline - it may be empty or some other text. When used in
889 this way, `org-cycle-hook' is disables temporarily, to make sure the
890 cursor stays at the beginning of the buffer.
891 When this option is nil, don't do anything special at the beginning
892 of the buffer."
893 :group 'org-cycle
894 :type 'boolean)
896 (defcustom org-cycle-level-after-item/entry-creation t
897 "Non-nil means cycle entry level or item indentation in new empty entries.
899 When the cursor is at the end of an empty headline, i.e with only stars
900 and maybe a TODO keyword, TAB will then switch the entry to become a child,
901 and then all possible ancestor states, before returning to the original state.
902 This makes data entry extremely fast: M-RET to create a new headline,
903 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
905 When the cursor is at the end of an empty plain list item, one TAB will
906 make it a subitem, two or more tabs will back up to make this an item
907 higher up in the item hierarchy."
908 :group 'org-cycle
909 :type 'boolean)
911 (defcustom org-cycle-emulate-tab t
912 "Where should `org-cycle' emulate TAB.
913 nil Never
914 white Only in completely white lines
915 whitestart Only at the beginning of lines, before the first non-white char
916 t Everywhere except in headlines
917 exc-hl-bol Everywhere except at the start of a headline
918 If TAB is used in a place where it does not emulate TAB, the current subtree
919 visibility is cycled."
920 :group 'org-cycle
921 :type '(choice (const :tag "Never" nil)
922 (const :tag "Only in completely white lines" white)
923 (const :tag "Before first char in a line" whitestart)
924 (const :tag "Everywhere except in headlines" t)
925 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)
928 (defcustom org-cycle-separator-lines 2
929 "Number of empty lines needed to keep an empty line between collapsed trees.
930 If you leave an empty line between the end of a subtree and the following
931 headline, this empty line is hidden when the subtree is folded.
932 Org-mode will leave (exactly) one empty line visible if the number of
933 empty lines is equal or larger to the number given in this variable.
934 So the default 2 means at least 2 empty lines after the end of a subtree
935 are needed to produce free space between a collapsed subtree and the
936 following headline.
938 If the number is negative, and the number of empty lines is at least -N,
939 all empty lines are shown.
941 Special case: when 0, never leave empty lines in collapsed view."
942 :group 'org-cycle
943 :type 'integer)
944 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
946 (defcustom org-pre-cycle-hook nil
947 "Hook that is run before visibility cycling is happening.
948 The function(s) in this hook must accept a single argument which indicates
949 the new state that will be set right after running this hook. The
950 argument is a symbol. Before a global state change, it can have the values
951 `overview', `content', or `all'. Before a local state change, it can have
952 the values `folded', `children', or `subtree'."
953 :group 'org-cycle
954 :type 'hook)
956 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
957 org-cycle-hide-drawers
958 org-cycle-show-empty-lines
959 org-optimize-window-after-visibility-change)
960 "Hook that is run after `org-cycle' has changed the buffer visibility.
961 The function(s) in this hook must accept a single argument which indicates
962 the new state that was set by the most recent `org-cycle' command. The
963 argument is a symbol. After a global state change, it can have the values
964 `overview', `content', or `all'. After a local state change, it can have
965 the values `folded', `children', or `subtree'."
966 :group 'org-cycle
967 :type 'hook)
969 (defgroup org-edit-structure nil
970 "Options concerning structure editing in Org-mode."
971 :tag "Org Edit Structure"
972 :group 'org-structure)
974 (defcustom org-odd-levels-only nil
975 "Non-nil means skip even levels and only use odd levels for the outline.
976 This has the effect that two stars are being added/taken away in
977 promotion/demotion commands. It also influences how levels are
978 handled by the exporters.
979 Changing it requires restart of `font-lock-mode' to become effective
980 for fontification also in regions already fontified.
981 You may also set this on a per-file basis by adding one of the following
982 lines to the buffer:
984 #+STARTUP: odd
985 #+STARTUP: oddeven"
986 :group 'org-edit-structure
987 :group 'org-appearance
988 :type 'boolean)
990 (defcustom org-adapt-indentation t
991 "Non-nil means adapt indentation to outline node level.
993 When this variable is set, Org assumes that you write outlines by
994 indenting text in each node to align with the headline (after the stars).
995 The following issues are influenced by this variable:
997 - When this is set and the *entire* text in an entry is indented, the
998 indentation is increased by one space in a demotion command, and
999 decreased by one in a promotion command. If any line in the entry
1000 body starts with text at column 0, indentation is not changed at all.
1002 - Property drawers and planning information is inserted indented when
1003 this variable s set. When nil, they will not be indented.
1005 - TAB indents a line relative to context. The lines below a headline
1006 will be indented when this variable is set.
1008 Note that this is all about true indentation, by adding and removing
1009 space characters. See also `org-indent.el' which does level-dependent
1010 indentation in a virtual way, i.e. at display time in Emacs."
1011 :group 'org-edit-structure
1012 :type 'boolean)
1014 (defcustom org-special-ctrl-a/e nil
1015 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1017 When t, `C-a' will bring back the cursor to the beginning of the
1018 headline text, i.e. after the stars and after a possible TODO
1019 keyword. In an item, this will be the position after bullet and
1020 check-box, if any. When the cursor is already at that position,
1021 another `C-a' will bring it to the beginning of the line.
1023 `C-e' will jump to the end of the headline, ignoring the presence
1024 of tags in the headline. A second `C-e' will then jump to the
1025 true end of the line, after any tags. This also means that, when
1026 this variable is non-nil, `C-e' also will never jump beyond the
1027 end of the heading of a folded section, i.e. not after the
1028 ellipses.
1030 When set to the symbol `reversed', the first `C-a' or `C-e' works
1031 normally, going to the true line boundary first. Only a directly
1032 following, identical keypress will bring the cursor to the
1033 special positions.
1035 This may also be a cons cell where the behavior for `C-a' and
1036 `C-e' is set separately."
1037 :group 'org-edit-structure
1038 :type '(choice
1039 (const :tag "off" nil)
1040 (const :tag "on: after stars/bullet and before tags first" t)
1041 (const :tag "reversed: true line boundary first" reversed)
1042 (cons :tag "Set C-a and C-e separately"
1043 (choice :tag "Special C-a"
1044 (const :tag "off" nil)
1045 (const :tag "on: after stars/bullet first" t)
1046 (const :tag "reversed: before stars/bullet first" reversed))
1047 (choice :tag "Special C-e"
1048 (const :tag "off" nil)
1049 (const :tag "on: before tags first" t)
1050 (const :tag "reversed: after tags first" reversed)))))
1051 (if (fboundp 'defvaralias)
1052 (defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e))
1054 (defcustom org-special-ctrl-k nil
1055 "Non-nil means `C-k' will behave specially in headlines.
1056 When nil, `C-k' will call the default `kill-line' command.
1057 When t, the following will happen while the cursor is in the headline:
1059 - When the cursor is at the beginning of a headline, kill the entire
1060 line and possible the folded subtree below the line.
1061 - When in the middle of the headline text, kill the headline up to the tags.
1062 - When after the headline text, kill the tags."
1063 :group 'org-edit-structure
1064 :type 'boolean)
1066 (defcustom org-ctrl-k-protect-subtree nil
1067 "Non-nil means, do not delete a hidden subtree with C-k.
1068 When set to the symbol `error', simply throw an error when C-k is
1069 used to kill (part-of) a headline that has hidden text behind it.
1070 Any other non-nil value will result in a query to the user, if it is
1071 OK to kill that hidden subtree. When nil, kill without remorse."
1072 :group 'org-edit-structure
1073 :type '(choice
1074 (const :tag "Do not protect hidden subtrees" nil)
1075 (const :tag "Protect hidden subtrees with a security query" t)
1076 (const :tag "Never kill a hidden subtree with C-k" error)))
1078 (defcustom org-catch-invisible-edits nil
1079 "Check if in invisible region before inserting or deleting a character.
1080 Valid values are:
1082 nil Do not check, so just do invisible edits.
1083 error Throw an error and do nothing.
1084 show Make point visible, and do the requested edit.
1085 show-and-error Make point visible, then throw an error and abort the edit.
1086 smart Make point visible, and do insertion/deletion if it is
1087 adjacent to visible text and the change feels predictable.
1088 Never delete a previously invisible character or add in the
1089 middle or right after an invisible region. Basically, this
1090 allows insertion and backward-delete right before ellipses.
1091 FIXME: maybe in this case we should not even show?"
1092 :group 'org-edit-structure
1093 :type '(choice
1094 (const :tag "Do not check" nil)
1095 (const :tag "Throw error when trying to edit" error)
1096 (const :tag "Unhide, but do not do the edit" show-and-error)
1097 (const :tag "Show invisible part and do the edit" show)
1098 (const :tag "Be smart and do the right thing" smart)))
1100 (defcustom org-yank-folded-subtrees t
1101 "Non-nil means when yanking subtrees, fold them.
1102 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1103 it starts with a heading and all other headings in it are either children
1104 or siblings, then fold all the subtrees. However, do this only if no
1105 text after the yank would be swallowed into a folded tree by this action."
1106 :group 'org-edit-structure
1107 :type 'boolean)
1109 (defcustom org-yank-adjusted-subtrees nil
1110 "Non-nil means when yanking subtrees, adjust the level.
1111 With this setting, `org-paste-subtree' is used to insert the subtree, see
1112 this function for details."
1113 :group 'org-edit-structure
1114 :type 'boolean)
1116 (defcustom org-M-RET-may-split-line '((default . t))
1117 "Non-nil means M-RET will split the line at the cursor position.
1118 When nil, it will go to the end of the line before making a
1119 new line.
1120 You may also set this option in a different way for different
1121 contexts. Valid contexts are:
1123 headline when creating a new headline
1124 item when creating a new item
1125 table in a table field
1126 default the value to be used for all contexts not explicitly
1127 customized"
1128 :group 'org-structure
1129 :group 'org-table
1130 :type '(choice
1131 (const :tag "Always" t)
1132 (const :tag "Never" nil)
1133 (repeat :greedy t :tag "Individual contexts"
1134 (cons
1135 (choice :tag "Context"
1136 (const headline)
1137 (const item)
1138 (const table)
1139 (const default))
1140 (boolean)))))
1143 (defcustom org-insert-heading-respect-content nil
1144 "Non-nil means insert new headings after the current subtree.
1145 When nil, the new heading is created directly after the current line.
1146 The commands \\[org-insert-heading-respect-content] and
1147 \\[org-insert-todo-heading-respect-content] turn this variable on
1148 for the duration of the command."
1149 :group 'org-structure
1150 :type 'boolean)
1152 (defcustom org-blank-before-new-entry '((heading . auto)
1153 (plain-list-item . auto))
1154 "Should `org-insert-heading' leave a blank line before new heading/item?
1155 The value is an alist, with `heading' and `plain-list-item' as CAR,
1156 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1157 which case Org will look at the surrounding headings/items and try to
1158 make an intelligent decision whether to insert a blank line or not.
1160 For plain lists, if the variable `org-empty-line-terminates-plain-lists' is
1161 set, the setting here is ignored and no empty line is inserted, to avoid
1162 breaking the list structure."
1163 :group 'org-edit-structure
1164 :type '(list
1165 (cons (const heading)
1166 (choice (const :tag "Never" nil)
1167 (const :tag "Always" t)
1168 (const :tag "Auto" auto)))
1169 (cons (const plain-list-item)
1170 (choice (const :tag "Never" nil)
1171 (const :tag "Always" t)
1172 (const :tag "Auto" auto)))))
1174 (defcustom org-insert-heading-hook nil
1175 "Hook being run after inserting a new heading."
1176 :group 'org-edit-structure
1177 :type 'hook)
1179 (defcustom org-enable-fixed-width-editor t
1180 "Non-nil means lines starting with \":\" are treated as fixed-width.
1181 This currently only means they are never auto-wrapped.
1182 When nil, such lines will be treated like ordinary lines.
1183 See also the QUOTE keyword."
1184 :group 'org-edit-structure
1185 :type 'boolean)
1187 (defcustom org-goto-auto-isearch t
1188 "Non-nil means typing characters in `org-goto' starts incremental search."
1189 :group 'org-edit-structure
1190 :type 'boolean)
1192 (defgroup org-sparse-trees nil
1193 "Options concerning sparse trees in Org-mode."
1194 :tag "Org Sparse Trees"
1195 :group 'org-structure)
1197 (defcustom org-highlight-sparse-tree-matches t
1198 "Non-nil means highlight all matches that define a sparse tree.
1199 The highlights will automatically disappear the next time the buffer is
1200 changed by an edit command."
1201 :group 'org-sparse-trees
1202 :type 'boolean)
1204 (defcustom org-remove-highlights-with-change t
1205 "Non-nil means any change to the buffer will remove temporary highlights.
1206 Such highlights are created by `org-occur' and `org-clock-display'.
1207 When nil, `C-c C-c needs to be used to get rid of the highlights.
1208 The highlights created by `org-preview-latex-fragment' always need
1209 `C-c C-c' to be removed."
1210 :group 'org-sparse-trees
1211 :group 'org-time
1212 :type 'boolean)
1215 (defcustom org-occur-hook '(org-first-headline-recenter)
1216 "Hook that is run after `org-occur' has constructed a sparse tree.
1217 This can be used to recenter the window to show as much of the structure
1218 as possible."
1219 :group 'org-sparse-trees
1220 :type 'hook)
1222 (defgroup org-imenu-and-speedbar nil
1223 "Options concerning imenu and speedbar in Org-mode."
1224 :tag "Org Imenu and Speedbar"
1225 :group 'org-structure)
1227 (defcustom org-imenu-depth 2
1228 "The maximum level for Imenu access to Org-mode headlines.
1229 This also applied for speedbar access."
1230 :group 'org-imenu-and-speedbar
1231 :type 'integer)
1233 (defgroup org-table nil
1234 "Options concerning tables in Org-mode."
1235 :tag "Org Table"
1236 :group 'org)
1238 (defcustom org-enable-table-editor 'optimized
1239 "Non-nil means lines starting with \"|\" are handled by the table editor.
1240 When nil, such lines will be treated like ordinary lines.
1242 When equal to the symbol `optimized', the table editor will be optimized to
1243 do the following:
1244 - Automatic overwrite mode in front of whitespace in table fields.
1245 This makes the structure of the table stay in tact as long as the edited
1246 field does not exceed the column width.
1247 - Minimize the number of realigns. Normally, the table is aligned each time
1248 TAB or RET are pressed to move to another field. With optimization this
1249 happens only if changes to a field might have changed the column width.
1250 Optimization requires replacing the functions `self-insert-command',
1251 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1252 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1253 very good at guessing when a re-align will be necessary, but you can always
1254 force one with \\[org-ctrl-c-ctrl-c].
1256 If you would like to use the optimized version in Org-mode, but the
1257 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1259 This variable can be used to turn on and off the table editor during a session,
1260 but in order to toggle optimization, a restart is required.
1262 See also the variable `org-table-auto-blank-field'."
1263 :group 'org-table
1264 :type '(choice
1265 (const :tag "off" nil)
1266 (const :tag "on" t)
1267 (const :tag "on, optimized" optimized)))
1269 (defcustom org-self-insert-cluster-for-undo t
1270 "Non-nil means cluster self-insert commands for undo when possible.
1271 If this is set, then, like in the Emacs command loop, 20 consecutive
1272 characters will be undone together.
1273 This is configurable, because there is some impact on typing performance."
1274 :group 'org-table
1275 :type 'boolean)
1277 (defcustom org-table-tab-recognizes-table.el t
1278 "Non-nil means TAB will automatically notice a table.el table.
1279 When it sees such a table, it moves point into it and - if necessary -
1280 calls `table-recognize-table'."
1281 :group 'org-table-editing
1282 :type 'boolean)
1284 (defgroup org-link nil
1285 "Options concerning links in Org-mode."
1286 :tag "Org Link"
1287 :group 'org)
1289 (defvar org-link-abbrev-alist-local nil
1290 "Buffer-local version of `org-link-abbrev-alist', which see.
1291 The value of this is taken from the #+LINK lines.")
1292 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1294 (defcustom org-link-abbrev-alist nil
1295 "Alist of link abbreviations.
1296 The car of each element is a string, to be replaced at the start of a link.
1297 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1298 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1300 [[linkkey:tag][description]]
1302 The 'linkkey' must be a word word, starting with a letter, followed
1303 by letters, numbers, '-' or '_'.
1305 If REPLACE is a string, the tag will simply be appended to create the link.
1306 If the string contains \"%s\", the tag will be inserted there. Alternatively,
1307 the placeholder \"%h\" will cause a url-encoded version of the tag to
1308 be inserted at that point (see the function `url-hexify-string').
1310 REPLACE may also be a function that will be called with the tag as the
1311 only argument to create the link, which should be returned as a string.
1313 See the manual for examples."
1314 :group 'org-link
1315 :type '(repeat
1316 (cons
1317 (string :tag "Protocol")
1318 (choice
1319 (string :tag "Format")
1320 (function)))))
1322 (defcustom org-descriptive-links t
1323 "Non-nil means Org will display descriptive links.
1324 E.g. [[http://orgmode.org][Org website]] will be displayed as
1325 \"Org Website\", hiding the link itself and just displaying its
1326 description. When set to `nil', Org will display the full links
1327 literally.
1329 You can interactively set the value of this variable by calling
1330 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1331 :group 'org-link
1332 :type 'boolean)
1334 (defcustom org-link-file-path-type 'adaptive
1335 "How the path name in file links should be stored.
1336 Valid values are:
1338 relative Relative to the current directory, i.e. the directory of the file
1339 into which the link is being inserted.
1340 absolute Absolute path, if possible with ~ for home directory.
1341 noabbrev Absolute path, no abbreviation of home directory.
1342 adaptive Use relative path for files in the current directory and sub-
1343 directories of it. For other files, use an absolute path."
1344 :group 'org-link
1345 :type '(choice
1346 (const relative)
1347 (const absolute)
1348 (const noabbrev)
1349 (const adaptive)))
1351 (defcustom org-activate-links '(bracket angle plain radio tag date footnote)
1352 "Types of links that should be activated in Org-mode files.
1353 This is a list of symbols, each leading to the activation of a certain link
1354 type. In principle, it does not hurt to turn on most link types - there may
1355 be a small gain when turning off unused link types. The types are:
1357 bracket The recommended [[link][description]] or [[link]] links with hiding.
1358 angle Links in angular brackets that may contain whitespace like
1359 <bbdb:Carsten Dominik>.
1360 plain Plain links in normal text, no whitespace, like http://google.com.
1361 radio Text that is matched by a radio target, see manual for details.
1362 tag Tag settings in a headline (link to tag search).
1363 date Time stamps (link to calendar).
1364 footnote Footnote labels.
1366 Changing this variable requires a restart of Emacs to become effective."
1367 :group 'org-link
1368 :type '(set :greedy t
1369 (const :tag "Double bracket links" bracket)
1370 (const :tag "Angular bracket links" angle)
1371 (const :tag "Plain text links" plain)
1372 (const :tag "Radio target matches" radio)
1373 (const :tag "Tags" tag)
1374 (const :tag "Timestamps" date)
1375 (const :tag "Footnotes" footnote)))
1377 (defcustom org-make-link-description-function nil
1378 "Function to use to generate link descriptions from links.
1379 If nil the link location will be used. This function must take
1380 two parameters; the first is the link and the second the
1381 description `org-insert-link' has generated, and should return the
1382 description to use."
1383 :group 'org-link
1384 :type 'function)
1386 (defgroup org-link-store nil
1387 "Options concerning storing links in Org-mode."
1388 :tag "Org Store Link"
1389 :group 'org-link)
1391 (defcustom org-email-link-description-format "Email %c: %.30s"
1392 "Format of the description part of a link to an email or usenet message.
1393 The following %-escapes will be replaced by corresponding information:
1395 %F full \"From\" field
1396 %f name, taken from \"From\" field, address if no name
1397 %T full \"To\" field
1398 %t first name in \"To\" field, address if no name
1399 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1400 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1401 %s subject
1402 %d date
1403 %m message-id.
1405 You may use normal field width specification between the % and the letter.
1406 This is for example useful to limit the length of the subject.
1408 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1409 :group 'org-link-store
1410 :type 'string)
1412 (defcustom org-from-is-user-regexp
1413 (let (r1 r2)
1414 (when (and user-mail-address (not (string= user-mail-address "")))
1415 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1416 (when (and user-full-name (not (string= user-full-name "")))
1417 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1418 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1419 "Regexp matched against the \"From:\" header of an email or usenet message.
1420 It should match if the message is from the user him/herself."
1421 :group 'org-link-store
1422 :type 'regexp)
1424 (defcustom org-link-to-org-use-id 'create-if-interactive-and-no-custom-id
1425 "Non-nil means storing a link to an Org file will use entry IDs.
1427 Note that before this variable is even considered, org-id must be loaded,
1428 so please customize `org-modules' and turn it on.
1430 The variable can have the following values:
1432 t Create an ID if needed to make a link to the current entry.
1434 create-if-interactive
1435 If `org-store-link' is called directly (interactively, as a user
1436 command), do create an ID to support the link. But when doing the
1437 job for remember, only use the ID if it already exists. The
1438 purpose of this setting is to avoid proliferation of unwanted
1439 IDs, just because you happen to be in an Org file when you
1440 call `org-remember' that automatically and preemptively
1441 creates a link. If you do want to get an ID link in a remember
1442 template to an entry not having an ID, create it first by
1443 explicitly creating a link to it, using `C-c C-l' first.
1445 create-if-interactive-and-no-custom-id
1446 Like create-if-interactive, but do not create an ID if there is
1447 a CUSTOM_ID property defined in the entry. This is the default.
1449 use-existing
1450 Use existing ID, do not create one.
1452 nil Never use an ID to make a link, instead link using a text search for
1453 the headline text."
1454 :group 'org-link-store
1455 :type '(choice
1456 (const :tag "Create ID to make link" t)
1457 (const :tag "Create if storing link interactively"
1458 create-if-interactive)
1459 (const :tag "Create if storing link interactively and no CUSTOM_ID is present"
1460 create-if-interactive-and-no-custom-id)
1461 (const :tag "Only use existing" use-existing)
1462 (const :tag "Do not use ID to create link" nil)))
1464 (defcustom org-context-in-file-links t
1465 "Non-nil means file links from `org-store-link' contain context.
1466 A search string will be added to the file name with :: as separator and
1467 used to find the context when the link is activated by the command
1468 `org-open-at-point'. When this option is t, the entire active region
1469 will be placed in the search string of the file link. If set to a
1470 positive integer, only the first n lines of context will be stored.
1472 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1473 negates this setting for the duration of the command."
1474 :group 'org-link-store
1475 :type '(choice boolean integer))
1477 (defcustom org-keep-stored-link-after-insertion nil
1478 "Non-nil means keep link in list for entire session.
1480 The command `org-store-link' adds a link pointing to the current
1481 location to an internal list. These links accumulate during a session.
1482 The command `org-insert-link' can be used to insert links into any
1483 Org-mode file (offering completion for all stored links). When this
1484 option is nil, every link which has been inserted once using \\[org-insert-link]
1485 will be removed from the list, to make completing the unused links
1486 more efficient."
1487 :group 'org-link-store
1488 :type 'boolean)
1490 (defgroup org-link-follow nil
1491 "Options concerning following links in Org-mode."
1492 :tag "Org Follow Link"
1493 :group 'org-link)
1495 (defcustom org-link-translation-function nil
1496 "Function to translate links with different syntax to Org syntax.
1497 This can be used to translate links created for example by the Planner
1498 or emacs-wiki packages to Org syntax.
1499 The function must accept two parameters, a TYPE containing the link
1500 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1501 which is everything after the link protocol. It should return a cons
1502 with possibly modified values of type and path.
1503 Org contains a function for this, so if you set this variable to
1504 `org-translate-link-from-planner', you should be able follow many
1505 links created by planner."
1506 :group 'org-link-follow
1507 :type 'function)
1509 (defcustom org-follow-link-hook nil
1510 "Hook that is run after a link has been followed."
1511 :group 'org-link-follow
1512 :type 'hook)
1514 (defcustom org-tab-follows-link nil
1515 "Non-nil means on links TAB will follow the link.
1516 Needs to be set before org.el is loaded.
1517 This really should not be used, it does not make sense, and the
1518 implementation is bad."
1519 :group 'org-link-follow
1520 :type 'boolean)
1522 (defcustom org-return-follows-link nil
1523 "Non-nil means on links RET will follow the link."
1524 :group 'org-link-follow
1525 :type 'boolean)
1527 (defcustom org-mouse-1-follows-link
1528 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1529 "Non-nil means mouse-1 on a link will follow the link.
1530 A longer mouse click will still set point. Does not work on XEmacs.
1531 Needs to be set before org.el is loaded."
1532 :group 'org-link-follow
1533 :type 'boolean)
1535 (defcustom org-mark-ring-length 4
1536 "Number of different positions to be recorded in the ring.
1537 Changing this requires a restart of Emacs to work correctly."
1538 :group 'org-link-follow
1539 :type 'integer)
1541 (defcustom org-link-search-must-match-exact-headline 'query-to-create
1542 "Non-nil means internal links in Org files must exactly match a headline.
1543 When nil, the link search tries to match a phrase with all words
1544 in the search text."
1545 :group 'org-link-follow
1546 :type '(choice
1547 (const :tag "Use fuzzy text search" nil)
1548 (const :tag "Match only exact headline" t)
1549 (const :tag "Match exact headline or query to create it"
1550 query-to-create)))
1552 (defcustom org-link-frame-setup
1553 '((vm . vm-visit-folder-other-frame)
1554 (vm-imap . vm-visit-imap-folder-other-frame)
1555 (gnus . org-gnus-no-new-news)
1556 (file . find-file-other-window)
1557 (wl . wl-other-frame))
1558 "Setup the frame configuration for following links.
1559 When following a link with Emacs, it may often be useful to display
1560 this link in another window or frame. This variable can be used to
1561 set this up for the different types of links.
1562 For VM, use any of
1563 `vm-visit-folder'
1564 `vm-visit-folder-other-window'
1565 `vm-visit-folder-other-frame'
1566 For Gnus, use any of
1567 `gnus'
1568 `gnus-other-frame'
1569 `org-gnus-no-new-news'
1570 For FILE, use any of
1571 `find-file'
1572 `find-file-other-window'
1573 `find-file-other-frame'
1574 For Wanderlust use any of
1575 `wl'
1576 `wl-other-frame'
1577 For the calendar, use the variable `calendar-setup'.
1578 For BBDB, it is currently only possible to display the matches in
1579 another window."
1580 :group 'org-link-follow
1581 :type '(list
1582 (cons (const vm)
1583 (choice
1584 (const vm-visit-folder)
1585 (const vm-visit-folder-other-window)
1586 (const vm-visit-folder-other-frame)))
1587 (cons (const gnus)
1588 (choice
1589 (const gnus)
1590 (const gnus-other-frame)
1591 (const org-gnus-no-new-news)))
1592 (cons (const file)
1593 (choice
1594 (const find-file)
1595 (const find-file-other-window)
1596 (const find-file-other-frame)))
1597 (cons (const wl)
1598 (choice
1599 (const wl)
1600 (const wl-other-frame)))))
1602 (defcustom org-display-internal-link-with-indirect-buffer nil
1603 "Non-nil means use indirect buffer to display infile links.
1604 Activating internal links (from one location in a file to another location
1605 in the same file) normally just jumps to the location. When the link is
1606 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
1607 is displayed in
1608 another window. When this option is set, the other window actually displays
1609 an indirect buffer clone of the current buffer, to avoid any visibility
1610 changes to the current buffer."
1611 :group 'org-link-follow
1612 :type 'boolean)
1614 (defcustom org-open-non-existing-files nil
1615 "Non-nil means `org-open-file' will open non-existing files.
1616 When nil, an error will be generated.
1617 This variable applies only to external applications because they
1618 might choke on non-existing files. If the link is to a file that
1619 will be opened in Emacs, the variable is ignored."
1620 :group 'org-link-follow
1621 :type 'boolean)
1623 (defcustom org-open-directory-means-index-dot-org nil
1624 "Non-nil means a link to a directory really means to index.org.
1625 When nil, following a directory link will run dired or open a finder/explorer
1626 window on that directory."
1627 :group 'org-link-follow
1628 :type 'boolean)
1630 (defcustom org-link-mailto-program '(browse-url "mailto:%a?subject=%s")
1631 "Function and arguments to call for following mailto links.
1632 This is a list with the first element being a Lisp function, and the
1633 remaining elements being arguments to the function. In string arguments,
1634 %a will be replaced by the address, and %s will be replaced by the subject
1635 if one was given like in <mailto:arthur@galaxy.org::this subject>."
1636 :group 'org-link-follow
1637 :type '(choice
1638 (const :tag "browse-url" (browse-url-mail "mailto:%a?subject=%s"))
1639 (const :tag "compose-mail" (compose-mail "%a" "%s"))
1640 (const :tag "message-mail" (message-mail "%a" "%s"))
1641 (cons :tag "other" (function) (repeat :tag "argument" sexp))))
1643 (defcustom org-confirm-shell-link-function 'yes-or-no-p
1644 "Non-nil means ask for confirmation before executing shell links.
1645 Shell links can be dangerous: just think about a link
1647 [[shell:rm -rf ~/*][Google Search]]
1649 This link would show up in your Org-mode document as \"Google Search\",
1650 but really it would remove your entire home directory.
1651 Therefore we advise against setting this variable to nil.
1652 Just change it to `y-or-n-p' if you want to confirm with a
1653 single keystroke rather than having to type \"yes\"."
1654 :group 'org-link-follow
1655 :type '(choice
1656 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1657 (const :tag "with y-or-n (faster)" y-or-n-p)
1658 (const :tag "no confirmation (dangerous)" nil)))
1659 (put 'org-confirm-shell-link-function
1660 'safe-local-variable
1661 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
1663 (defcustom org-confirm-shell-link-not-regexp ""
1664 "A regexp to skip confirmation for shell links."
1665 :group 'org-link-follow
1666 :type 'regexp)
1668 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
1669 "Non-nil means ask for confirmation before executing Emacs Lisp links.
1670 Elisp links can be dangerous: just think about a link
1672 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
1674 This link would show up in your Org-mode document as \"Google Search\",
1675 but really it would remove your entire home directory.
1676 Therefore we advise against setting this variable to nil.
1677 Just change it to `y-or-n-p' if you want to confirm with a
1678 single keystroke rather than having to type \"yes\"."
1679 :group 'org-link-follow
1680 :type '(choice
1681 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1682 (const :tag "with y-or-n (faster)" y-or-n-p)
1683 (const :tag "no confirmation (dangerous)" nil)))
1684 (put 'org-confirm-shell-link-function
1685 'safe-local-variable
1686 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
1688 (defcustom org-confirm-elisp-link-not-regexp ""
1689 "A regexp to skip confirmation for Elisp links."
1690 :group 'org-link-follow
1691 :type 'regexp)
1693 (defconst org-file-apps-defaults-gnu
1694 '((remote . emacs)
1695 (system . mailcap)
1696 (t . mailcap))
1697 "Default file applications on a UNIX or GNU/Linux system.
1698 See `org-file-apps'.")
1700 (defconst org-file-apps-defaults-macosx
1701 '((remote . emacs)
1702 (t . "open %s")
1703 (system . "open %s")
1704 ("ps.gz" . "gv %s")
1705 ("eps.gz" . "gv %s")
1706 ("dvi" . "xdvi %s")
1707 ("fig" . "xfig %s"))
1708 "Default file applications on a MacOS X system.
1709 The system \"open\" is known as a default, but we use X11 applications
1710 for some files for which the OS does not have a good default.
1711 See `org-file-apps'.")
1713 (defconst org-file-apps-defaults-windowsnt
1714 (list
1715 '(remote . emacs)
1716 (cons t
1717 (list (if (featurep 'xemacs)
1718 'mswindows-shell-execute
1719 'w32-shell-execute)
1720 "open" 'file))
1721 (cons 'system
1722 (list (if (featurep 'xemacs)
1723 'mswindows-shell-execute
1724 'w32-shell-execute)
1725 "open" 'file)))
1726 "Default file applications on a Windows NT system.
1727 The system \"open\" is used for most files.
1728 See `org-file-apps'.")
1730 (defcustom org-file-apps
1732 (auto-mode . emacs)
1733 ("\\.mm\\'" . default)
1734 ("\\.x?html?\\'" . default)
1735 ("\\.pdf\\'" . default)
1737 "External applications for opening `file:path' items in a document.
1738 Org-mode uses system defaults for different file types, but
1739 you can use this variable to set the application for a given file
1740 extension. The entries in this list are cons cells where the car identifies
1741 files and the cdr the corresponding command. Possible values for the
1742 file identifier are
1743 \"string\" A string as a file identifier can be interpreted in different
1744 ways, depending on its contents:
1746 - Alphanumeric characters only:
1747 Match links with this file extension.
1748 Example: (\"pdf\" . \"evince %s\")
1749 to open PDFs with evince.
1751 - Regular expression: Match links where the
1752 filename matches the regexp. If you want to
1753 use groups here, use shy groups.
1755 Example: (\"\\.x?html\\'\" . \"firefox %s\")
1756 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
1757 to open *.html and *.xhtml with firefox.
1759 - Regular expression which contains (non-shy) groups:
1760 Match links where the whole link, including \"::\", and
1761 anything after that, matches the regexp.
1762 In a custom command string, %1, %2, etc. are replaced with
1763 the parts of the link that were matched by the groups.
1764 For backwards compatibility, if a command string is given
1765 that does not use any of the group matches, this case is
1766 handled identically to the second one (i.e. match against
1767 file name only).
1768 In a custom lisp form, you can access the group matches with
1769 (match-string n link).
1771 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
1772 to open [[file:document.pdf::5]] with evince at page 5.
1774 `directory' Matches a directory
1775 `remote' Matches a remote file, accessible through tramp or efs.
1776 Remote files most likely should be visited through Emacs
1777 because external applications cannot handle such paths.
1778 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
1779 so all files Emacs knows how to handle. Using this with
1780 command `emacs' will open most files in Emacs. Beware that this
1781 will also open html files inside Emacs, unless you add
1782 (\"html\" . default) to the list as well.
1783 t Default for files not matched by any of the other options.
1784 `system' The system command to open files, like `open' on Windows
1785 and Mac OS X, and mailcap under GNU/Linux. This is the command
1786 that will be selected if you call `C-c C-o' with a double
1787 \\[universal-argument] \\[universal-argument] prefix.
1789 Possible values for the command are:
1790 `emacs' The file will be visited by the current Emacs process.
1791 `default' Use the default application for this file type, which is the
1792 association for t in the list, most likely in the system-specific
1793 part.
1794 This can be used to overrule an unwanted setting in the
1795 system-specific variable.
1796 `system' Use the system command for opening files, like \"open\".
1797 This command is specified by the entry whose car is `system'.
1798 Most likely, the system-specific version of this variable
1799 does define this command, but you can overrule/replace it
1800 here.
1801 string A command to be executed by a shell; %s will be replaced
1802 by the path to the file.
1803 sexp A Lisp form which will be evaluated. The file path will
1804 be available in the Lisp variable `file'.
1805 For more examples, see the system specific constants
1806 `org-file-apps-defaults-macosx'
1807 `org-file-apps-defaults-windowsnt'
1808 `org-file-apps-defaults-gnu'."
1809 :group 'org-link-follow
1810 :type '(repeat
1811 (cons (choice :value ""
1812 (string :tag "Extension")
1813 (const :tag "System command to open files" system)
1814 (const :tag "Default for unrecognized files" t)
1815 (const :tag "Remote file" remote)
1816 (const :tag "Links to a directory" directory)
1817 (const :tag "Any files that have Emacs modes"
1818 auto-mode))
1819 (choice :value ""
1820 (const :tag "Visit with Emacs" emacs)
1821 (const :tag "Use default" default)
1822 (const :tag "Use the system command" system)
1823 (string :tag "Command")
1824 (sexp :tag "Lisp form")))))
1828 (defgroup org-refile nil
1829 "Options concerning refiling entries in Org-mode."
1830 :tag "Org Refile"
1831 :group 'org)
1833 (defcustom org-directory "~/org"
1834 "Directory with org files.
1835 This is just a default location to look for Org files. There is no need
1836 at all to put your files into this directory. It is only used in the
1837 following situations:
1839 1. When a remember template specifies a target file that is not an
1840 absolute path. The path will then be interpreted relative to
1841 `org-directory'
1842 2. When a remember note is filed away in an interactive way (when exiting the
1843 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
1844 with `org-directory' as the default path."
1845 :group 'org-refile
1846 :group 'org-remember
1847 :type 'directory)
1849 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
1850 "Default target for storing notes.
1851 Used as a fall back file for org-remember.el and org-capture.el, for
1852 templates that do not specify a target file."
1853 :group 'org-refile
1854 :group 'org-remember
1855 :type '(choice
1856 (const :tag "Default from remember-data-file" nil)
1857 file))
1859 (defcustom org-goto-interface 'outline
1860 "The default interface to be used for `org-goto'.
1861 Allowed values are:
1862 outline The interface shows an outline of the relevant file
1863 and the correct heading is found by moving through
1864 the outline or by searching with incremental search.
1865 outline-path-completion Headlines in the current buffer are offered via
1866 completion. This is the interface also used by
1867 the refile command."
1868 :group 'org-refile
1869 :type '(choice
1870 (const :tag "Outline" outline)
1871 (const :tag "Outline-path-completion" outline-path-completion)))
1873 (defcustom org-goto-max-level 5
1874 "Maximum target level when running `org-goto' with refile interface."
1875 :group 'org-refile
1876 :type 'integer)
1878 (defcustom org-reverse-note-order nil
1879 "Non-nil means store new notes at the beginning of a file or entry.
1880 When nil, new notes will be filed to the end of a file or entry.
1881 This can also be a list with cons cells of regular expressions that
1882 are matched against file names, and values."
1883 :group 'org-remember
1884 :group 'org-refile
1885 :type '(choice
1886 (const :tag "Reverse always" t)
1887 (const :tag "Reverse never" nil)
1888 (repeat :tag "By file name regexp"
1889 (cons regexp boolean))))
1891 (defcustom org-log-refile nil
1892 "Information to record when a task is refiled.
1894 Possible values are:
1896 nil Don't add anything
1897 time Add a time stamp to the task
1898 note Prompt for a note and add it with template `org-log-note-headings'
1900 This option can also be set with on a per-file-basis with
1902 #+STARTUP: nologrefile
1903 #+STARTUP: logrefile
1904 #+STARTUP: lognoterefile
1906 You can have local logging settings for a subtree by setting the LOGGING
1907 property to one or more of these keywords.
1909 When bulk-refiling from the agenda, the value `note' is forbidden and
1910 will temporarily be changed to `time'."
1911 :group 'org-refile
1912 :group 'org-progress
1913 :type '(choice
1914 (const :tag "No logging" nil)
1915 (const :tag "Record timestamp" time)
1916 (const :tag "Record timestamp with note." note)))
1918 (defcustom org-refile-targets nil
1919 "Targets for refiling entries with \\[org-refile].
1920 This is a list of cons cells. Each cell contains:
1921 - a specification of the files to be considered, either a list of files,
1922 or a symbol whose function or variable value will be used to retrieve
1923 a file name or a list of file names. If you use `org-agenda-files' for
1924 that, all agenda files will be scanned for targets. Nil means consider
1925 headings in the current buffer.
1926 - A specification of how to find candidate refile targets. This may be
1927 any of:
1928 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
1929 This tag has to be present in all target headlines, inheritance will
1930 not be considered.
1931 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
1932 todo keyword.
1933 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
1934 headlines that are refiling targets.
1935 - a cons cell (:level . N). Any headline of level N is considered a target.
1936 Note that, when `org-odd-levels-only' is set, level corresponds to
1937 order in hierarchy, not to the number of stars.
1938 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
1939 Note that, when `org-odd-levels-only' is set, level corresponds to
1940 order in hierarchy, not to the number of stars.
1942 Each element of this list generates a set of possible targets.
1943 The union of these sets is presented (with completion) to
1944 the user by `org-refile'.
1946 You can set the variable `org-refile-target-verify-function' to a function
1947 to verify each headline found by the simple criteria above.
1949 When this variable is nil, all top-level headlines in the current buffer
1950 are used, equivalent to the value `((nil . (:level . 1))'."
1951 :group 'org-refile
1952 :type '(repeat
1953 (cons
1954 (choice :value org-agenda-files
1955 (const :tag "All agenda files" org-agenda-files)
1956 (const :tag "Current buffer" nil)
1957 (function) (variable) (file))
1958 (choice :tag "Identify target headline by"
1959 (cons :tag "Specific tag" (const :value :tag) (string))
1960 (cons :tag "TODO keyword" (const :value :todo) (string))
1961 (cons :tag "Regular expression" (const :value :regexp) (regexp))
1962 (cons :tag "Level number" (const :value :level) (integer))
1963 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
1965 (defcustom org-refile-target-verify-function nil
1966 "Function to verify if the headline at point should be a refile target.
1967 The function will be called without arguments, with point at the
1968 beginning of the headline. It should return t and leave point
1969 where it is if the headline is a valid target for refiling.
1971 If the target should not be selected, the function must return nil.
1972 In addition to this, it may move point to a place from where the search
1973 should be continued. For example, the function may decide that the entire
1974 subtree of the current entry should be excluded and move point to the end
1975 of the subtree."
1976 :group 'org-refile
1977 :type 'function)
1979 (defcustom org-refile-use-cache nil
1980 "Non-nil means cache refile targets to speed up the process.
1981 The cache for a particular file will be updated automatically when
1982 the buffer has been killed, or when any of the marker used for flagging
1983 refile targets no longer points at a live buffer.
1984 If you have added new entries to a buffer that might themselves be targets,
1985 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
1986 find that easier, `C-u C-u C-u C-c C-w'."
1987 :group 'org-refile
1988 :type 'boolean)
1990 (defcustom org-refile-use-outline-path nil
1991 "Non-nil means provide refile targets as paths.
1992 So a level 3 headline will be available as level1/level2/level3.
1994 When the value is `file', also include the file name (without directory)
1995 into the path. In this case, you can also stop the completion after
1996 the file name, to get entries inserted as top level in the file.
1998 When `full-file-path', include the full file path."
1999 :group 'org-refile
2000 :type '(choice
2001 (const :tag "Not" nil)
2002 (const :tag "Yes" t)
2003 (const :tag "Start with file name" file)
2004 (const :tag "Start with full file path" full-file-path)))
2006 (defcustom org-outline-path-complete-in-steps t
2007 "Non-nil means complete the outline path in hierarchical steps.
2008 When Org-mode uses the refile interface to select an outline path
2009 \(see variable `org-refile-use-outline-path'), the completion of
2010 the path can be done is a single go, or if can be done in steps down
2011 the headline hierarchy. Going in steps is probably the best if you
2012 do not use a special completion package like `ido' or `icicles'.
2013 However, when using these packages, going in one step can be very
2014 fast, while still showing the whole path to the entry."
2015 :group 'org-refile
2016 :type 'boolean)
2018 (defcustom org-refile-allow-creating-parent-nodes nil
2019 "Non-nil means allow to create new nodes as refile targets.
2020 New nodes are then created by adding \"/new node name\" to the completion
2021 of an existing node. When the value of this variable is `confirm',
2022 new node creation must be confirmed by the user (recommended)
2023 When nil, the completion must match an existing entry.
2025 Note that, if the new heading is not seen by the criteria
2026 listed in `org-refile-targets', multiple instances of the same
2027 heading would be created by trying again to file under the new
2028 heading."
2029 :group 'org-refile
2030 :type '(choice
2031 (const :tag "Never" nil)
2032 (const :tag "Always" t)
2033 (const :tag "Prompt for confirmation" confirm)))
2035 (defcustom org-refile-active-region-within-subtree nil
2036 "Non-nil means also refile active region within a subtree.
2038 By default `org-refile' doesn't allow refiling regions if they
2039 don't contain a set of subtrees, but it might be convenient to
2040 do so sometimes: in that case, the first line of the region is
2041 converted to a headline before refiling."
2042 :group 'org-refile
2043 :type 'boolean)
2045 (defgroup org-todo nil
2046 "Options concerning TODO items in Org-mode."
2047 :tag "Org TODO"
2048 :group 'org)
2050 (defgroup org-progress nil
2051 "Options concerning Progress logging in Org-mode."
2052 :tag "Org Progress"
2053 :group 'org-time)
2055 (defvar org-todo-interpretation-widgets
2056 '((:tag "Sequence (cycling hits every state)" sequence)
2057 (:tag "Type (cycling directly to DONE)" type))
2058 "The available interpretation symbols for customizing `org-todo-keywords'.
2059 Interested libraries should add to this list.")
2061 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2062 "List of TODO entry keyword sequences and their interpretation.
2063 \\<org-mode-map>This is a list of sequences.
2065 Each sequence starts with a symbol, either `sequence' or `type',
2066 indicating if the keywords should be interpreted as a sequence of
2067 action steps, or as different types of TODO items. The first
2068 keywords are states requiring action - these states will select a headline
2069 for inclusion into the global TODO list Org-mode produces. If one of
2070 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2071 signify that no further action is necessary. If \"|\" is not found,
2072 the last keyword is treated as the only DONE state of the sequence.
2074 The command \\[org-todo] cycles an entry through these states, and one
2075 additional state where no keyword is present. For details about this
2076 cycling, see the manual.
2078 TODO keywords and interpretation can also be set on a per-file basis with
2079 the special #+SEQ_TODO and #+TYP_TODO lines.
2081 Each keyword can optionally specify a character for fast state selection
2082 \(in combination with the variable `org-use-fast-todo-selection')
2083 and specifiers for state change logging, using the same syntax
2084 that is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says
2085 that the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2086 indicates to record a time stamp each time this state is selected.
2088 Each keyword may also specify if a timestamp or a note should be
2089 recorded when entering or leaving the state, by adding additional
2090 characters in the parenthesis after the keyword. This looks like this:
2091 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2092 record only the time of the state change. With X and Y being either
2093 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2094 Y when leaving the state if and only if the *target* state does not
2095 define X. You may omit any of the fast-selection key or X or /Y,
2096 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2098 For backward compatibility, this variable may also be just a list
2099 of keywords - in this case the interpretation (sequence or type) will be
2100 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2101 :group 'org-todo
2102 :group 'org-keywords
2103 :type '(choice
2104 (repeat :tag "Old syntax, just keywords"
2105 (string :tag "Keyword"))
2106 (repeat :tag "New syntax"
2107 (cons
2108 (choice
2109 :tag "Interpretation"
2110 ;;Quick and dirty way to see
2111 ;;`org-todo-interpretations'. This takes the
2112 ;;place of item arguments
2113 :convert-widget
2114 (lambda (widget)
2115 (widget-put widget
2116 :args (mapcar
2117 #'(lambda (x)
2118 (widget-convert
2119 (cons 'const x)))
2120 org-todo-interpretation-widgets))
2121 widget))
2122 (repeat
2123 (string :tag "Keyword"))))))
2125 (defvar org-todo-keywords-1 nil
2126 "All TODO and DONE keywords active in a buffer.")
2127 (make-variable-buffer-local 'org-todo-keywords-1)
2128 (defvar org-todo-keywords-for-agenda nil)
2129 (defvar org-done-keywords-for-agenda nil)
2130 (defvar org-drawers-for-agenda nil)
2131 (defvar org-todo-keyword-alist-for-agenda nil)
2132 (defvar org-tag-alist-for-agenda nil)
2133 (defvar org-agenda-contributing-files nil)
2134 (defvar org-not-done-keywords nil)
2135 (make-variable-buffer-local 'org-not-done-keywords)
2136 (defvar org-done-keywords nil)
2137 (make-variable-buffer-local 'org-done-keywords)
2138 (defvar org-todo-heads nil)
2139 (make-variable-buffer-local 'org-todo-heads)
2140 (defvar org-todo-sets nil)
2141 (make-variable-buffer-local 'org-todo-sets)
2142 (defvar org-todo-log-states nil)
2143 (make-variable-buffer-local 'org-todo-log-states)
2144 (defvar org-todo-kwd-alist nil)
2145 (make-variable-buffer-local 'org-todo-kwd-alist)
2146 (defvar org-todo-key-alist nil)
2147 (make-variable-buffer-local 'org-todo-key-alist)
2148 (defvar org-todo-key-trigger nil)
2149 (make-variable-buffer-local 'org-todo-key-trigger)
2151 (defcustom org-todo-interpretation 'sequence
2152 "Controls how TODO keywords are interpreted.
2153 This variable is in principle obsolete and is only used for
2154 backward compatibility, if the interpretation of todo keywords is
2155 not given already in `org-todo-keywords'. See that variable for
2156 more information."
2157 :group 'org-todo
2158 :group 'org-keywords
2159 :type '(choice (const sequence)
2160 (const type)))
2162 (defcustom org-use-fast-todo-selection t
2163 "Non-nil means use the fast todo selection scheme with C-c C-t.
2164 This variable describes if and under what circumstances the cycling
2165 mechanism for TODO keywords will be replaced by a single-key, direct
2166 selection scheme.
2168 When nil, fast selection is never used.
2170 When the symbol `prefix', it will be used when `org-todo' is called with
2171 a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and `C-u t'
2172 in an agenda buffer.
2174 When t, fast selection is used by default. In this case, the prefix
2175 argument forces cycling instead.
2177 In all cases, the special interface is only used if access keys have actually
2178 been assigned by the user, i.e. if keywords in the configuration are followed
2179 by a letter in parenthesis, like TODO(t)."
2180 :group 'org-todo
2181 :type '(choice
2182 (const :tag "Never" nil)
2183 (const :tag "By default" t)
2184 (const :tag "Only with C-u C-c C-t" prefix)))
2186 (defcustom org-provide-todo-statistics t
2187 "Non-nil means update todo statistics after insert and toggle.
2188 ALL-HEADLINES means update todo statistics by including headlines
2189 with no TODO keyword as well, counting them as not done.
2190 A list of TODO keywords means the same, but skip keywords that are
2191 not in this list.
2193 When this is set, todo statistics is updated in the parent of the
2194 current entry each time a todo state is changed."
2195 :group 'org-todo
2196 :type '(choice
2197 (const :tag "Yes, only for TODO entries" t)
2198 (const :tag "Yes, including all entries" 'all-headlines)
2199 (repeat :tag "Yes, for TODOs in this list"
2200 (string :tag "TODO keyword"))
2201 (other :tag "No TODO statistics" nil)))
2203 (defcustom org-hierarchical-todo-statistics t
2204 "Non-nil means TODO statistics covers just direct children.
2205 When nil, all entries in the subtree are considered.
2206 This has only an effect if `org-provide-todo-statistics' is set.
2207 To set this to nil for only a single subtree, use a COOKIE_DATA
2208 property and include the word \"recursive\" into the value."
2209 :group 'org-todo
2210 :type 'boolean)
2212 (defcustom org-after-todo-state-change-hook nil
2213 "Hook which is run after the state of a TODO item was changed.
2214 The new state (a string with a TODO keyword, or nil) is available in the
2215 Lisp variable `state'."
2216 :group 'org-todo
2217 :type 'hook)
2219 (defvar org-blocker-hook nil
2220 "Hook for functions that are allowed to block a state change.
2222 Each function gets as its single argument a property list, see
2223 `org-trigger-hook' for more information about this list.
2225 If any of the functions in this hook returns nil, the state change
2226 is blocked.")
2228 (defvar org-trigger-hook nil
2229 "Hook for functions that are triggered by a state change.
2231 Each function gets as its single argument a property list with at least
2232 the following elements:
2234 (:type type-of-change :position pos-at-entry-start
2235 :from old-state :to new-state)
2237 Depending on the type, more properties may be present.
2239 This mechanism is currently implemented for:
2241 TODO state changes
2242 ------------------
2243 :type todo-state-change
2244 :from previous state (keyword as a string), or nil, or a symbol
2245 'todo' or 'done', to indicate the general type of state.
2246 :to new state, like in :from")
2248 (defcustom org-enforce-todo-dependencies nil
2249 "Non-nil means undone TODO entries will block switching the parent to DONE.
2250 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2251 be blocked if any prior sibling is not yet done.
2252 Finally, if the parent is blocked because of ordered siblings of its own,
2253 the child will also be blocked.
2254 This variable needs to be set before org.el is loaded, and you need to
2255 restart Emacs after a change to make the change effective. The only way
2256 to change is while Emacs is running is through the customize interface."
2257 :set (lambda (var val)
2258 (set var val)
2259 (if val
2260 (add-hook 'org-blocker-hook
2261 'org-block-todo-from-children-or-siblings-or-parent)
2262 (remove-hook 'org-blocker-hook
2263 'org-block-todo-from-children-or-siblings-or-parent)))
2264 :group 'org-todo
2265 :type 'boolean)
2267 (defcustom org-enforce-todo-checkbox-dependencies nil
2268 "Non-nil means unchecked boxes will block switching the parent to DONE.
2269 When this is nil, checkboxes have no influence on switching TODO states.
2270 When non-nil, you first need to check off all check boxes before the TODO
2271 entry can be switched to DONE.
2272 This variable needs to be set before org.el is loaded, and you need to
2273 restart Emacs after a change to make the change effective. The only way
2274 to change is while Emacs is running is through the customize interface."
2275 :set (lambda (var val)
2276 (set var val)
2277 (if val
2278 (add-hook 'org-blocker-hook
2279 'org-block-todo-from-checkboxes)
2280 (remove-hook 'org-blocker-hook
2281 'org-block-todo-from-checkboxes)))
2282 :group 'org-todo
2283 :type 'boolean)
2285 (defcustom org-treat-insert-todo-heading-as-state-change nil
2286 "Non-nil means inserting a TODO heading is treated as state change.
2287 So when the command \\[org-insert-todo-heading] is used, state change
2288 logging will apply if appropriate. When nil, the new TODO item will
2289 be inserted directly, and no logging will take place."
2290 :group 'org-todo
2291 :type 'boolean)
2293 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2294 "Non-nil means switching TODO states with S-cursor counts as state change.
2295 This is the default behavior. However, setting this to nil allows a
2296 convenient way to select a TODO state and bypass any logging associated
2297 with that."
2298 :group 'org-todo
2299 :type 'boolean)
2301 (defcustom org-todo-state-tags-triggers nil
2302 "Tag changes that should be triggered by TODO state changes.
2303 This is a list. Each entry is
2305 (state-change (tag . flag) .......)
2307 State-change can be a string with a state, and empty string to indicate the
2308 state that has no TODO keyword, or it can be one of the symbols `todo'
2309 or `done', meaning any not-done or done state, respectively."
2310 :group 'org-todo
2311 :group 'org-tags
2312 :type '(repeat
2313 (cons (choice :tag "When changing to"
2314 (const :tag "Not-done state" todo)
2315 (const :tag "Done state" done)
2316 (string :tag "State"))
2317 (repeat
2318 (cons :tag "Tag action"
2319 (string :tag "Tag")
2320 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2322 (defcustom org-log-done nil
2323 "Information to record when a task moves to the DONE state.
2325 Possible values are:
2327 nil Don't add anything, just change the keyword
2328 time Add a time stamp to the task
2329 note Prompt for a note and add it with template `org-log-note-headings'
2331 This option can also be set with on a per-file-basis with
2333 #+STARTUP: nologdone
2334 #+STARTUP: logdone
2335 #+STARTUP: lognotedone
2337 You can have local logging settings for a subtree by setting the LOGGING
2338 property to one or more of these keywords."
2339 :group 'org-todo
2340 :group 'org-progress
2341 :type '(choice
2342 (const :tag "No logging" nil)
2343 (const :tag "Record CLOSED timestamp" time)
2344 (const :tag "Record CLOSED timestamp with note." note)))
2346 ;; Normalize old uses of org-log-done.
2347 (cond
2348 ((eq org-log-done t) (setq org-log-done 'time))
2349 ((and (listp org-log-done) (memq 'done org-log-done))
2350 (setq org-log-done 'note)))
2352 (defcustom org-log-reschedule nil
2353 "Information to record when the scheduling date of a tasks is modified.
2355 Possible values are:
2357 nil Don't add anything, just change the date
2358 time Add a time stamp to the task
2359 note Prompt for a note and add it with template `org-log-note-headings'
2361 This option can also be set with on a per-file-basis with
2363 #+STARTUP: nologreschedule
2364 #+STARTUP: logreschedule
2365 #+STARTUP: lognotereschedule"
2366 :group 'org-todo
2367 :group 'org-progress
2368 :type '(choice
2369 (const :tag "No logging" nil)
2370 (const :tag "Record timestamp" time)
2371 (const :tag "Record timestamp with note." note)))
2373 (defcustom org-log-redeadline nil
2374 "Information to record when the deadline date of a tasks is modified.
2376 Possible values are:
2378 nil Don't add anything, just change the date
2379 time Add a time stamp to the task
2380 note Prompt for a note and add it with template `org-log-note-headings'
2382 This option can also be set with on a per-file-basis with
2384 #+STARTUP: nologredeadline
2385 #+STARTUP: logredeadline
2386 #+STARTUP: lognoteredeadline
2388 You can have local logging settings for a subtree by setting the LOGGING
2389 property to one or more of these keywords."
2390 :group 'org-todo
2391 :group 'org-progress
2392 :type '(choice
2393 (const :tag "No logging" nil)
2394 (const :tag "Record timestamp" time)
2395 (const :tag "Record timestamp with note." note)))
2397 (defcustom org-log-note-clock-out nil
2398 "Non-nil means record a note when clocking out of an item.
2399 This can also be configured on a per-file basis by adding one of
2400 the following lines anywhere in the buffer:
2402 #+STARTUP: lognoteclock-out
2403 #+STARTUP: nolognoteclock-out"
2404 :group 'org-todo
2405 :group 'org-progress
2406 :type 'boolean)
2408 (defcustom org-log-done-with-time t
2409 "Non-nil means the CLOSED time stamp will contain date and time.
2410 When nil, only the date will be recorded."
2411 :group 'org-progress
2412 :type 'boolean)
2414 (defcustom org-log-note-headings
2415 '((done . "CLOSING NOTE %t")
2416 (state . "State %-12s from %-12S %t")
2417 (note . "Note taken on %t")
2418 (reschedule . "Rescheduled from %S on %t")
2419 (delschedule . "Not scheduled, was %S on %t")
2420 (redeadline . "New deadline from %S on %t")
2421 (deldeadline . "Removed deadline, was %S on %t")
2422 (refile . "Refiled on %t")
2423 (clock-out . ""))
2424 "Headings for notes added to entries.
2425 The value is an alist, with the car being a symbol indicating the note
2426 context, and the cdr is the heading to be used. The heading may also be the
2427 empty string.
2428 %t in the heading will be replaced by a time stamp.
2429 %T will be an active time stamp instead the default inactive one
2430 %d will be replaced by a short-format time stamp.
2431 %D will be replaced by an active short-format time stamp.
2432 %s will be replaced by the new TODO state, in double quotes.
2433 %S will be replaced by the old TODO state, in double quotes.
2434 %u will be replaced by the user name.
2435 %U will be replaced by the full user name.
2437 In fact, it is not a good idea to change the `state' entry, because
2438 agenda log mode depends on the format of these entries."
2439 :group 'org-todo
2440 :group 'org-progress
2441 :type '(list :greedy t
2442 (cons (const :tag "Heading when closing an item" done) string)
2443 (cons (const :tag
2444 "Heading when changing todo state (todo sequence only)"
2445 state) string)
2446 (cons (const :tag "Heading when just taking a note" note) string)
2447 (cons (const :tag "Heading when clocking out" clock-out) string)
2448 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2449 (cons (const :tag "Heading when rescheduling" reschedule) string)
2450 (cons (const :tag "Heading when changing deadline" redeadline) string)
2451 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2452 (cons (const :tag "Heading when refiling" refile) string)))
2454 (unless (assq 'note org-log-note-headings)
2455 (push '(note . "%t") org-log-note-headings))
2457 (defcustom org-log-into-drawer nil
2458 "Non-nil means insert state change notes and time stamps into a drawer.
2459 When nil, state changes notes will be inserted after the headline and
2460 any scheduling and clock lines, but not inside a drawer.
2462 The value of this variable should be the name of the drawer to use.
2463 LOGBOOK is proposed as the default drawer for this purpose, you can
2464 also set this to a string to define the drawer of your choice.
2466 A value of t is also allowed, representing \"LOGBOOK\".
2468 If this variable is set, `org-log-state-notes-insert-after-drawers'
2469 will be ignored.
2471 You can set the property LOG_INTO_DRAWER to overrule this setting for
2472 a subtree."
2473 :group 'org-todo
2474 :group 'org-progress
2475 :type '(choice
2476 (const :tag "Not into a drawer" nil)
2477 (const :tag "LOGBOOK" t)
2478 (string :tag "Other")))
2480 (if (fboundp 'defvaralias)
2481 (defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer))
2483 (defun org-log-into-drawer ()
2484 "Return the value of `org-log-into-drawer', but let properties overrule.
2485 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2486 used instead of the default value."
2487 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit)))
2488 (cond
2489 ((or (not p) (equal p "nil")) org-log-into-drawer)
2490 ((equal p "t") "LOGBOOK")
2491 (t p))))
2493 (defcustom org-log-state-notes-insert-after-drawers nil
2494 "Non-nil means insert state change notes after any drawers in entry.
2495 Only the drawers that *immediately* follow the headline and the
2496 deadline/scheduled line are skipped.
2497 When nil, insert notes right after the heading and perhaps the line
2498 with deadline/scheduling if present.
2500 This variable will have no effect if `org-log-into-drawer' is
2501 set."
2502 :group 'org-todo
2503 :group 'org-progress
2504 :type 'boolean)
2506 (defcustom org-log-states-order-reversed t
2507 "Non-nil means the latest state note will be directly after heading.
2508 When nil, the state change notes will be ordered according to time."
2509 :group 'org-todo
2510 :group 'org-progress
2511 :type 'boolean)
2513 (defcustom org-todo-repeat-to-state nil
2514 "The TODO state to which a repeater should return the repeating task.
2515 By default this is the first task in a TODO sequence, or the previous state
2516 in a TODO_TYP set. But you can specify another task here.
2517 alternatively, set the :REPEAT_TO_STATE: property of the entry."
2518 :group 'org-todo
2519 :type '(choice (const :tag "Head of sequence" nil)
2520 (string :tag "Specific state")))
2522 (defcustom org-log-repeat 'time
2523 "Non-nil means record moving through the DONE state when triggering repeat.
2524 An auto-repeating task is immediately switched back to TODO when
2525 marked DONE. If you are not logging state changes (by adding \"@\"
2526 or \"!\" to the TODO keyword definition), or set `org-log-done' to
2527 record a closing note, there will be no record of the task moving
2528 through DONE. This variable forces taking a note anyway.
2530 nil Don't force a record
2531 time Record a time stamp
2532 note Record a note
2534 This option can also be set with on a per-file-basis with
2536 #+STARTUP: logrepeat
2537 #+STARTUP: lognoterepeat
2538 #+STARTUP: nologrepeat
2540 You can have local logging settings for a subtree by setting the LOGGING
2541 property to one or more of these keywords."
2542 :group 'org-todo
2543 :group 'org-progress
2544 :type '(choice
2545 (const :tag "Don't force a record" nil)
2546 (const :tag "Force recording the DONE state" time)
2547 (const :tag "Force recording a note with the DONE state" note)))
2550 (defgroup org-priorities nil
2551 "Priorities in Org-mode."
2552 :tag "Org Priorities"
2553 :group 'org-todo)
2555 (defcustom org-enable-priority-commands t
2556 "Non-nil means priority commands are active.
2557 When nil, these commands will be disabled, so that you never accidentally
2558 set a priority."
2559 :group 'org-priorities
2560 :type 'boolean)
2562 (defcustom org-highest-priority ?A
2563 "The highest priority of TODO items. A character like ?A, ?B etc.
2564 Must have a smaller ASCII number than `org-lowest-priority'."
2565 :group 'org-priorities
2566 :type 'character)
2568 (defcustom org-lowest-priority ?C
2569 "The lowest priority of TODO items. A character like ?A, ?B etc.
2570 Must have a larger ASCII number than `org-highest-priority'."
2571 :group 'org-priorities
2572 :type 'character)
2574 (defcustom org-default-priority ?B
2575 "The default priority of TODO items.
2576 This is the priority an item gets if no explicit priority is given.
2577 When starting to cycle on an empty priority the first step in the cycle
2578 depends on `org-priority-start-cycle-with-default'. The resulting first
2579 step priority must not exceed the range from `org-highest-priority' to
2580 `org-lowest-priority' which means that `org-default-priority' has to be
2581 in this range exclusive or inclusive the range boundaries. Else the
2582 first step refuses to set the default and the second will fall back
2583 to (depending on the command used) the highest or lowest priority."
2584 :group 'org-priorities
2585 :type 'character)
2587 (defcustom org-priority-start-cycle-with-default t
2588 "Non-nil means start with default priority when starting to cycle.
2589 When this is nil, the first step in the cycle will be (depending on the
2590 command used) one higher or lower than the default priority.
2591 See also `org-default-priority'."
2592 :group 'org-priorities
2593 :type 'boolean)
2595 (defcustom org-get-priority-function nil
2596 "Function to extract the priority from a string.
2597 The string is normally the headline. If this is nil Org computes the
2598 priority from the priority cookie like [#A] in the headline. It returns
2599 an integer, increasing by 1000 for each priority level.
2600 The user can set a different function here, which should take a string
2601 as an argument and return the numeric priority."
2602 :group 'org-priorities
2603 :type 'function)
2605 (defgroup org-time nil
2606 "Options concerning time stamps and deadlines in Org-mode."
2607 :tag "Org Time"
2608 :group 'org)
2610 (defcustom org-insert-labeled-timestamps-at-point nil
2611 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
2612 When nil, these labeled time stamps are forces into the second line of an
2613 entry, just after the headline. When scheduling from the global TODO list,
2614 the time stamp will always be forced into the second line."
2615 :group 'org-time
2616 :type 'boolean)
2618 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
2619 "Formats for `format-time-string' which are used for time stamps.
2620 It is not recommended to change this constant.")
2622 (defcustom org-time-stamp-rounding-minutes '(0 5)
2623 "Number of minutes to round time stamps to.
2624 These are two values, the first applies when first creating a time stamp.
2625 The second applies when changing it with the commands `S-up' and `S-down'.
2626 When changing the time stamp, this means that it will change in steps
2627 of N minutes, as given by the second value.
2629 When a setting is 0 or 1, insert the time unmodified. Useful rounding
2630 numbers should be factors of 60, so for example 5, 10, 15.
2632 When this is larger than 1, you can still force an exact time stamp by using
2633 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
2634 and by using a prefix arg to `S-up/down' to specify the exact number
2635 of minutes to shift."
2636 :group 'org-time
2637 :get #'(lambda (var) ; Make sure both elements are there
2638 (if (integerp (default-value var))
2639 (list (default-value var) 5)
2640 (default-value var)))
2641 :type '(list
2642 (integer :tag "when inserting times")
2643 (integer :tag "when modifying times")))
2645 ;; Normalize old customizations of this variable.
2646 (when (integerp org-time-stamp-rounding-minutes)
2647 (setq org-time-stamp-rounding-minutes
2648 (list org-time-stamp-rounding-minutes
2649 org-time-stamp-rounding-minutes)))
2651 (defcustom org-display-custom-times nil
2652 "Non-nil means overlay custom formats over all time stamps.
2653 The formats are defined through the variable `org-time-stamp-custom-formats'.
2654 To turn this on on a per-file basis, insert anywhere in the file:
2655 #+STARTUP: customtime"
2656 :group 'org-time
2657 :set 'set-default
2658 :type 'sexp)
2659 (make-variable-buffer-local 'org-display-custom-times)
2661 (defcustom org-time-stamp-custom-formats
2662 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
2663 "Custom formats for time stamps. See `format-time-string' for the syntax.
2664 These are overlaid over the default ISO format if the variable
2665 `org-display-custom-times' is set. Time like %H:%M should be at the
2666 end of the second format. The custom formats are also honored by export
2667 commands, if custom time display is turned on at the time of export."
2668 :group 'org-time
2669 :type 'sexp)
2671 (defun org-time-stamp-format (&optional long inactive)
2672 "Get the right format for a time string."
2673 (let ((f (if long (cdr org-time-stamp-formats)
2674 (car org-time-stamp-formats))))
2675 (if inactive
2676 (concat "[" (substring f 1 -1) "]")
2677 f)))
2679 (defcustom org-time-clocksum-format "%d:%02d"
2680 "The format string used when creating CLOCKSUM lines.
2681 This is also used when org-mode generates a time duration."
2682 :group 'org-time
2683 :type 'string)
2685 (defcustom org-time-clocksum-use-fractional nil
2686 "If non-nil, \\[org-clock-display] uses fractional times.
2687 org-mode generates a time duration."
2688 :group 'org-time
2689 :type 'boolean)
2691 (defcustom org-time-clocksum-fractional-format "%.2f"
2692 "The format string used when creating CLOCKSUM lines, or when
2693 org-mode generates a time duration."
2694 :group 'org-time
2695 :type 'string)
2697 (defcustom org-deadline-warning-days 14
2698 "No. of days before expiration during which a deadline becomes active.
2699 This variable governs the display in sparse trees and in the agenda.
2700 When 0 or negative, it means use this number (the absolute value of it)
2701 even if a deadline has a different individual lead time specified.
2703 Custom commands can set this variable in the options section."
2704 :group 'org-time
2705 :group 'org-agenda-daily/weekly
2706 :type 'integer)
2708 (defcustom org-read-date-prefer-future t
2709 "Non-nil means assume future for incomplete date input from user.
2710 This affects the following situations:
2711 1. The user gives a month but not a year.
2712 For example, if it is April and you enter \"feb 2\", this will be read
2713 as Feb 2, *next* year. \"May 5\", however, will be this year.
2714 2. The user gives a day, but no month.
2715 For example, if today is the 15th, and you enter \"3\", Org-mode will
2716 read this as the third of *next* month. However, if you enter \"17\",
2717 it will be considered as *this* month.
2719 If you set this variable to the symbol `time', then also the following
2720 will work:
2722 3. If the user gives a time, but no day. If the time is before now,
2723 to will be interpreted as tomorrow.
2725 Currently none of this works for ISO week specifications.
2727 When this option is nil, the current day, month and year will always be
2728 used as defaults.
2730 See also `org-agenda-jump-prefer-future'."
2731 :group 'org-time
2732 :type '(choice
2733 (const :tag "Never" nil)
2734 (const :tag "Check month and day" t)
2735 (const :tag "Check month, day, and time" time)))
2737 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
2738 "Should the agenda jump command prefer the future for incomplete dates?
2739 The default is to do the same as configured in `org-read-date-prefer-future'.
2740 But you can also set a deviating value here.
2741 This may t or nil, or the symbol `org-read-date-prefer-future'."
2742 :group 'org-agenda
2743 :group 'org-time
2744 :type '(choice
2745 (const :tag "Use org-read-date-prefer-future"
2746 org-read-date-prefer-future)
2747 (const :tag "Never" nil)
2748 (const :tag "Always" t)))
2750 (defcustom org-read-date-force-compatible-dates t
2751 "Should date/time prompt force dates that are guaranteed to work in Emacs?
2753 Depending on the system Emacs is running on, certain dates cannot
2754 be represented with the type used internally to represent time.
2755 Dates between 1970-1-1 and 2038-1-1 can always be represented
2756 correctly. Some systems allow for earlier dates, some for later,
2757 some for both. One way to find out it to insert any date into an
2758 Org buffer, putting the cursor on the year and hitting S-up and
2759 S-down to test the range.
2761 When this variable is set to t, the date/time prompt will not let
2762 you specify dates outside the 1970-2037 range, so it is certain that
2763 these dates will work in whatever version of Emacs you are
2764 running, and also that you can move a file from one Emacs implementation
2765 to another. WHenever Org is forcing the year for you, it will display
2766 a message and beep.
2768 When this variable is nil, Org will check if the date is
2769 representable in the specific Emacs implementation you are using.
2770 If not, it will force a year, usually the current year, and beep
2771 to remind you. Currently this setting is not recommended because
2772 the likelihood that you will open your Org files in an Emacs that
2773 has limited date range is not negligible.
2775 A workaround for this problem is to use diary sexp dates for time
2776 stamps outside of this range."
2777 :group 'org-time
2778 :type 'boolean)
2780 (defcustom org-read-date-display-live t
2781 "Non-nil means display current interpretation of date prompt live.
2782 This display will be in an overlay, in the minibuffer."
2783 :group 'org-time
2784 :type 'boolean)
2786 (defcustom org-read-date-popup-calendar t
2787 "Non-nil means pop up a calendar when prompting for a date.
2788 In the calendar, the date can be selected with mouse-1. However, the
2789 minibuffer will also be active, and you can simply enter the date as well.
2790 When nil, only the minibuffer will be available."
2791 :group 'org-time
2792 :type 'boolean)
2793 (if (fboundp 'defvaralias)
2794 (defvaralias 'org-popup-calendar-for-date-prompt
2795 'org-read-date-popup-calendar))
2797 (defcustom org-read-date-minibuffer-setup-hook nil
2798 "Hook to be used to set up keys for the date/time interface.
2799 Add key definitions to `minibuffer-local-map', which will be a temporary
2800 copy."
2801 :group 'org-time
2802 :type 'hook)
2804 (defcustom org-extend-today-until 0
2805 "The hour when your day really ends. Must be an integer.
2806 This has influence for the following applications:
2807 - When switching the agenda to \"today\". It it is still earlier than
2808 the time given here, the day recognized as TODAY is actually yesterday.
2809 - When a date is read from the user and it is still before the time given
2810 here, the current date and time will be assumed to be yesterday, 23:59.
2811 Also, timestamps inserted in remember templates follow this rule.
2813 IMPORTANT: This is a feature whose implementation is and likely will
2814 remain incomplete. Really, it is only here because past midnight seems to
2815 be the favorite working time of John Wiegley :-)"
2816 :group 'org-time
2817 :type 'integer)
2819 (defcustom org-use-effective-time nil
2820 "If non-nil, consider `org-extend-today-until' when creating timestamps.
2821 For example, if `org-extend-today-until' is 8, and it's 4am, then the
2822 \"effective time\" of any timestamps between midnight and 8am will be
2823 23:59 of the previous day."
2824 :group 'boolean
2825 :type 'integer)
2827 (defcustom org-edit-timestamp-down-means-later nil
2828 "Non-nil means S-down will increase the time in a time stamp.
2829 When nil, S-up will increase."
2830 :group 'org-time
2831 :type 'boolean)
2833 (defcustom org-calendar-follow-timestamp-change t
2834 "Non-nil means make the calendar window follow timestamp changes.
2835 When a timestamp is modified and the calendar window is visible, it will be
2836 moved to the new date."
2837 :group 'org-time
2838 :type 'boolean)
2840 (defgroup org-tags nil
2841 "Options concerning tags in Org-mode."
2842 :tag "Org Tags"
2843 :group 'org)
2845 (defcustom org-tag-alist nil
2846 "List of tags allowed in Org-mode files.
2847 When this list is nil, Org-mode will base TAG input on what is already in the
2848 buffer.
2849 The value of this variable is an alist, the car of each entry must be a
2850 keyword as a string, the cdr may be a character that is used to select
2851 that tag through the fast-tag-selection interface.
2852 See the manual for details."
2853 :group 'org-tags
2854 :type '(repeat
2855 (choice
2856 (cons (string :tag "Tag name")
2857 (character :tag "Access char"))
2858 (list :tag "Start radio group"
2859 (const :startgroup)
2860 (option (string :tag "Group description")))
2861 (list :tag "End radio group"
2862 (const :endgroup)
2863 (option (string :tag "Group description")))
2864 (const :tag "New line" (:newline)))))
2866 (defcustom org-tag-persistent-alist nil
2867 "List of tags that will always appear in all Org-mode files.
2868 This is in addition to any in buffer settings or customizations
2869 of `org-tag-alist'.
2870 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
2871 The value of this variable is an alist, the car of each entry must be a
2872 keyword as a string, the cdr may be a character that is used to select
2873 that tag through the fast-tag-selection interface.
2874 See the manual for details.
2875 To disable these tags on a per-file basis, insert anywhere in the file:
2876 #+STARTUP: noptag"
2877 :group 'org-tags
2878 :type '(repeat
2879 (choice
2880 (cons (string :tag "Tag name")
2881 (character :tag "Access char"))
2882 (const :tag "Start radio group" (:startgroup))
2883 (const :tag "End radio group" (:endgroup))
2884 (const :tag "New line" (:newline)))))
2886 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
2887 "If non-nil, always offer completion for all tags of all agenda files.
2888 Instead of customizing this variable directly, you might want to
2889 set it locally for capture buffers, because there no list of
2890 tags in that file can be created dynamically (there are none).
2892 (add-hook 'org-capture-mode-hook
2893 (lambda ()
2894 (set (make-local-variable
2895 'org-complete-tags-always-offer-all-agenda-tags)
2896 t)))"
2897 :group 'org-tags
2898 :type 'boolean)
2900 (defvar org-file-tags nil
2901 "List of tags that can be inherited by all entries in the file.
2902 The tags will be inherited if the variable `org-use-tag-inheritance'
2903 says they should be.
2904 This variable is populated from #+FILETAGS lines.")
2906 (defcustom org-use-fast-tag-selection 'auto
2907 "Non-nil means use fast tag selection scheme.
2908 This is a special interface to select and deselect tags with single keys.
2909 When nil, fast selection is never used.
2910 When the symbol `auto', fast selection is used if and only if selection
2911 characters for tags have been configured, either through the variable
2912 `org-tag-alist' or through a #+TAGS line in the buffer.
2913 When t, fast selection is always used and selection keys are assigned
2914 automatically if necessary."
2915 :group 'org-tags
2916 :type '(choice
2917 (const :tag "Always" t)
2918 (const :tag "Never" nil)
2919 (const :tag "When selection characters are configured" 'auto)))
2921 (defcustom org-fast-tag-selection-single-key nil
2922 "Non-nil means fast tag selection exits after first change.
2923 When nil, you have to press RET to exit it.
2924 During fast tag selection, you can toggle this flag with `C-c'.
2925 This variable can also have the value `expert'. In this case, the window
2926 displaying the tags menu is not even shown, until you press C-c again."
2927 :group 'org-tags
2928 :type '(choice
2929 (const :tag "No" nil)
2930 (const :tag "Yes" t)
2931 (const :tag "Expert" expert)))
2933 (defvar org-fast-tag-selection-include-todo nil
2934 "Non-nil means fast tags selection interface will also offer TODO states.
2935 This is an undocumented feature, you should not rely on it.")
2937 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
2938 "The column to which tags should be indented in a headline.
2939 If this number is positive, it specifies the column. If it is negative,
2940 it means that the tags should be flushright to that column. For example,
2941 -80 works well for a normal 80 character screen.
2942 When 0, place tags directly after headline text, with only one space in
2943 between."
2944 :group 'org-tags
2945 :type 'integer)
2947 (defcustom org-auto-align-tags t
2948 "Non-nil keeps tags aligned when modifying headlines.
2949 Some operations (i.e. demoting) change the length of a headline and
2950 therefore shift the tags around. With this option turned on, after
2951 each such operation the tags are again aligned to `org-tags-column'."
2952 :group 'org-tags
2953 :type 'boolean)
2955 (defcustom org-use-tag-inheritance t
2956 "Non-nil means tags in levels apply also for sublevels.
2957 When nil, only the tags directly given in a specific line apply there.
2958 This may also be a list of tags that should be inherited, or a regexp that
2959 matches tags that should be inherited. Additional control is possible
2960 with the variable `org-tags-exclude-from-inheritance' which gives an
2961 explicit list of tags to be excluded from inheritance., even if the value of
2962 `org-use-tag-inheritance' would select it for inheritance.
2964 If this option is t, a match early-on in a tree can lead to a large
2965 number of matches in the subtree when constructing the agenda or creating
2966 a sparse tree. If you only want to see the first match in a tree during
2967 a search, check out the variable `org-tags-match-list-sublevels'."
2968 :group 'org-tags
2969 :type '(choice
2970 (const :tag "Not" nil)
2971 (const :tag "Always" t)
2972 (repeat :tag "Specific tags" (string :tag "Tag"))
2973 (regexp :tag "Tags matched by regexp")))
2975 (defcustom org-tags-exclude-from-inheritance nil
2976 "List of tags that should never be inherited.
2977 This is a way to exclude a few tags from inheritance. For way to do
2978 the opposite, to actively allow inheritance for selected tags,
2979 see the variable `org-use-tag-inheritance'."
2980 :group 'org-tags
2981 :type '(repeat (string :tag "Tag")))
2983 (defun org-tag-inherit-p (tag)
2984 "Check if TAG is one that should be inherited."
2985 (cond
2986 ((member tag org-tags-exclude-from-inheritance) nil)
2987 ((eq org-use-tag-inheritance t) t)
2988 ((not org-use-tag-inheritance) nil)
2989 ((stringp org-use-tag-inheritance)
2990 (string-match org-use-tag-inheritance tag))
2991 ((listp org-use-tag-inheritance)
2992 (member tag org-use-tag-inheritance))
2993 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
2995 (defcustom org-tags-match-list-sublevels t
2996 "Non-nil means list also sublevels of headlines matching a search.
2997 This variable applies to tags/property searches, and also to stuck
2998 projects because this search is based on a tags match as well.
3000 When set to the symbol `indented', sublevels are indented with
3001 leading dots.
3003 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3004 the sublevels of a headline matching a tag search often also match
3005 the same search. Listing all of them can create very long lists.
3006 Setting this variable to nil causes subtrees of a match to be skipped.
3008 This variable is semi-obsolete and probably should always be true. It
3009 is better to limit inheritance to certain tags using the variables
3010 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3011 :group 'org-tags
3012 :type '(choice
3013 (const :tag "No, don't list them" nil)
3014 (const :tag "Yes, do list them" t)
3015 (const :tag "List them, indented with leading dots" indented)))
3017 (defcustom org-tags-sort-function nil
3018 "When set, tags are sorted using this function as a comparator."
3019 :group 'org-tags
3020 :type '(choice
3021 (const :tag "No sorting" nil)
3022 (const :tag "Alphabetical" string<)
3023 (const :tag "Reverse alphabetical" string>)
3024 (function :tag "Custom function" nil)))
3026 (defvar org-tags-history nil
3027 "History of minibuffer reads for tags.")
3028 (defvar org-last-tags-completion-table nil
3029 "The last used completion table for tags.")
3030 (defvar org-after-tags-change-hook nil
3031 "Hook that is run after the tags in a line have changed.")
3033 (defgroup org-properties nil
3034 "Options concerning properties in Org-mode."
3035 :tag "Org Properties"
3036 :group 'org)
3038 (defcustom org-property-format "%-10s %s"
3039 "How property key/value pairs should be formatted by `indent-line'.
3040 When `indent-line' hits a property definition, it will format the line
3041 according to this format, mainly to make sure that the values are
3042 lined-up with respect to each other."
3043 :group 'org-properties
3044 :type 'string)
3046 (defcustom org-properties-postprocess-alist nil
3047 "Alist of properties and functions to adjust inserted values.
3048 Elements of this alist must be of the form
3050 ([string] [function])
3052 where [string] must be a property name and [function] must be a
3053 lambda expression: this lambda expression must take one argument,
3054 the value to adjust, and return the new value as a string.
3056 For example, this element will allow the property \"Remaining\"
3057 to be updated wrt the relation between the \"Effort\" property
3058 and the clock summary:
3060 ((\"Remaining\" (lambda(value)
3061 (let ((clocksum (org-clock-sum-current-item))
3062 (effort (org-duration-string-to-minutes
3063 (org-entry-get (point) \"Effort\"))))
3064 (org-minutes-to-hh:mm-string (- effort clocksum))))))"
3065 :group 'org-properties
3066 :type 'alist)
3068 (defcustom org-use-property-inheritance nil
3069 "Non-nil means properties apply also for sublevels.
3071 This setting is chiefly used during property searches. Turning it on can
3072 cause significant overhead when doing a search, which is why it is not
3073 on by default.
3075 When nil, only the properties directly given in the current entry count.
3076 When t, every property is inherited. The value may also be a list of
3077 properties that should have inheritance, or a regular expression matching
3078 properties that should be inherited.
3080 However, note that some special properties use inheritance under special
3081 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3082 and the properties ending in \"_ALL\" when they are used as descriptor
3083 for valid values of a property.
3085 Note for programmers:
3086 When querying an entry with `org-entry-get', you can control if inheritance
3087 should be used. By default, `org-entry-get' looks only at the local
3088 properties. You can request inheritance by setting the inherit argument
3089 to t (to force inheritance) or to `selective' (to respect the setting
3090 in this variable)."
3091 :group 'org-properties
3092 :type '(choice
3093 (const :tag "Not" nil)
3094 (const :tag "Always" t)
3095 (repeat :tag "Specific properties" (string :tag "Property"))
3096 (regexp :tag "Properties matched by regexp")))
3098 (defun org-property-inherit-p (property)
3099 "Check if PROPERTY is one that should be inherited."
3100 (cond
3101 ((eq org-use-property-inheritance t) t)
3102 ((not org-use-property-inheritance) nil)
3103 ((stringp org-use-property-inheritance)
3104 (string-match org-use-property-inheritance property))
3105 ((listp org-use-property-inheritance)
3106 (member property org-use-property-inheritance))
3107 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3109 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3110 "The default column format, if no other format has been defined.
3111 This variable can be set on the per-file basis by inserting a line
3113 #+COLUMNS: %25ITEM ....."
3114 :group 'org-properties
3115 :type 'string)
3117 (defcustom org-columns-ellipses ".."
3118 "The ellipses to be used when a field in column view is truncated.
3119 When this is the empty string, as many characters as possible are shown,
3120 but then there will be no visual indication that the field has been truncated.
3121 When this is a string of length N, the last N characters of a truncated
3122 field are replaced by this string. If the column is narrower than the
3123 ellipses string, only part of the ellipses string will be shown."
3124 :group 'org-properties
3125 :type 'string)
3127 (defcustom org-columns-modify-value-for-display-function nil
3128 "Function that modifies values for display in column view.
3129 For example, it can be used to cut out a certain part from a time stamp.
3130 The function must take 2 arguments:
3132 column-title The title of the column (*not* the property name)
3133 value The value that should be modified.
3135 The function should return the value that should be displayed,
3136 or nil if the normal value should be used."
3137 :group 'org-properties
3138 :type 'function)
3140 (defcustom org-effort-property "Effort"
3141 "The property that is being used to keep track of effort estimates.
3142 Effort estimates given in this property need to have the format H:MM."
3143 :group 'org-properties
3144 :group 'org-progress
3145 :type '(string :tag "Property"))
3147 (defconst org-global-properties-fixed
3148 '(("VISIBILITY_ALL" . "folded children content all")
3149 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3150 "List of property/value pairs that can be inherited by any entry.
3152 These are fixed values, for the preset properties. The user variable
3153 that can be used to add to this list is `org-global-properties'.
3155 The entries in this list are cons cells where the car is a property
3156 name and cdr is a string with the value. If the value represents
3157 multiple items like an \"_ALL\" property, separate the items by
3158 spaces.")
3160 (defcustom org-global-properties nil
3161 "List of property/value pairs that can be inherited by any entry.
3163 This list will be combined with the constant `org-global-properties-fixed'.
3165 The entries in this list are cons cells where the car is a property
3166 name and cdr is a string with the value.
3168 You can set buffer-local values for the same purpose in the variable
3169 `org-file-properties' this by adding lines like
3171 #+PROPERTY: NAME VALUE"
3172 :group 'org-properties
3173 :type '(repeat
3174 (cons (string :tag "Property")
3175 (string :tag "Value"))))
3177 (defvar org-file-properties nil
3178 "List of property/value pairs that can be inherited by any entry.
3179 Valid for the current buffer.
3180 This variable is populated from #+PROPERTY lines.")
3181 (make-variable-buffer-local 'org-file-properties)
3183 (defgroup org-agenda nil
3184 "Options concerning agenda views in Org-mode."
3185 :tag "Org Agenda"
3186 :group 'org)
3188 (defvar org-category nil
3189 "Variable used by org files to set a category for agenda display.
3190 Such files should use a file variable to set it, for example
3192 # -*- mode: org; org-category: \"ELisp\"
3194 or contain a special line
3196 #+CATEGORY: ELisp
3198 If the file does not specify a category, then file's base name
3199 is used instead.")
3200 (make-variable-buffer-local 'org-category)
3201 (put 'org-category 'safe-local-variable #'(lambda (x) (or (symbolp x) (stringp x))))
3203 (defcustom org-agenda-files nil
3204 "The files to be used for agenda display.
3205 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3206 \\[org-remove-file]. You can also use customize to edit the list.
3208 If an entry is a directory, all files in that directory that are matched by
3209 `org-agenda-file-regexp' will be part of the file list.
3211 If the value of the variable is not a list but a single file name, then
3212 the list of agenda files is actually stored and maintained in that file, one
3213 agenda file per line. In this file paths can be given relative to
3214 `org-directory'. Tilde expansion and environment variable substitution
3215 are also made."
3216 :group 'org-agenda
3217 :type '(choice
3218 (repeat :tag "List of files and directories" file)
3219 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3221 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3222 "Regular expression to match files for `org-agenda-files'.
3223 If any element in the list in that variable contains a directory instead
3224 of a normal file, all files in that directory that are matched by this
3225 regular expression will be included."
3226 :group 'org-agenda
3227 :type 'regexp)
3229 (defcustom org-agenda-text-search-extra-files nil
3230 "List of extra files to be searched by text search commands.
3231 These files will be search in addition to the agenda files by the
3232 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3233 Note that these files will only be searched for text search commands,
3234 not for the other agenda views like todo lists, tag searches or the weekly
3235 agenda. This variable is intended to list notes and possibly archive files
3236 that should also be searched by these two commands.
3237 In fact, if the first element in the list is the symbol `agenda-archives',
3238 than all archive files of all agenda files will be added to the search
3239 scope."
3240 :group 'org-agenda
3241 :type '(set :greedy t
3242 (const :tag "Agenda Archives" agenda-archives)
3243 (repeat :inline t (file))))
3245 (if (fboundp 'defvaralias)
3246 (defvaralias 'org-agenda-multi-occur-extra-files
3247 'org-agenda-text-search-extra-files))
3249 (defcustom org-agenda-skip-unavailable-files nil
3250 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3251 A nil value means to remove them, after a query, from the list."
3252 :group 'org-agenda
3253 :type 'boolean)
3255 (defcustom org-calendar-to-agenda-key [?c]
3256 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3257 The command `org-calendar-goto-agenda' will be bound to this key. The
3258 default is the character `c' because then `c' can be used to switch back and
3259 forth between agenda and calendar."
3260 :group 'org-agenda
3261 :type 'sexp)
3263 (defcustom org-calendar-agenda-action-key [?k]
3264 "The key to be installed in `calendar-mode-map' for agenda-action.
3265 The command `org-agenda-action' will be bound to this key. The
3266 default is the character `k' because we use the same key in the agenda."
3267 :group 'org-agenda
3268 :type 'sexp)
3270 (defcustom org-calendar-insert-diary-entry-key [?i]
3271 "The key to be installed in `calendar-mode-map' for adding diary entries.
3272 This option is irrelevant until `org-agenda-diary-file' has been configured
3273 to point to an Org-mode file. When that is the case, the command
3274 `org-agenda-diary-entry' will be bound to the key given here, by default
3275 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3276 if you want to continue doing this, you need to change this to a different
3277 key."
3278 :group 'org-agenda
3279 :type 'sexp)
3281 (defcustom org-agenda-diary-file 'diary-file
3282 "File to which to add new entries with the `i' key in agenda and calendar.
3283 When this is the symbol `diary-file', the functionality in the Emacs
3284 calendar will be used to add entries to the `diary-file'. But when this
3285 points to a file, `org-agenda-diary-entry' will be used instead."
3286 :group 'org-agenda
3287 :type '(choice
3288 (const :tag "The standard Emacs diary file" diary-file)
3289 (file :tag "Special Org file diary entries")))
3291 (eval-after-load "calendar"
3292 '(progn
3293 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3294 'org-calendar-goto-agenda)
3295 (org-defkey calendar-mode-map org-calendar-agenda-action-key
3296 'org-agenda-action)
3297 (add-hook 'calendar-mode-hook
3298 (lambda ()
3299 (unless (eq org-agenda-diary-file 'diary-file)
3300 (define-key calendar-mode-map
3301 org-calendar-insert-diary-entry-key
3302 'org-agenda-diary-entry))))))
3304 (defgroup org-latex nil
3305 "Options for embedding LaTeX code into Org-mode."
3306 :tag "Org LaTeX"
3307 :group 'org)
3309 (defcustom org-format-latex-options
3310 '(:foreground default :background default :scale 1.0
3311 :html-foreground "Black" :html-background "Transparent"
3312 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3313 "Options for creating images from LaTeX fragments.
3314 This is a property list with the following properties:
3315 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3316 `default' means use the foreground of the default face.
3317 :background the background color, or \"Transparent\".
3318 `default' means use the background of the default face.
3319 :scale a scaling factor for the size of the images, to get more pixels
3320 :html-foreground, :html-background, :html-scale
3321 the same numbers for HTML export.
3322 :matchers a list indicating which matchers should be used to
3323 find LaTeX fragments. Valid members of this list are:
3324 \"begin\" find environments
3325 \"$1\" find single characters surrounded by $.$
3326 \"$\" find math expressions surrounded by $...$
3327 \"$$\" find math expressions surrounded by $$....$$
3328 \"\\(\" find math expressions surrounded by \\(...\\)
3329 \"\\ [\" find math expressions surrounded by \\ [...\\]"
3330 :group 'org-latex
3331 :type 'plist)
3333 (defcustom org-format-latex-signal-error t
3334 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3335 When nil, just push out a message."
3336 :group 'org-latex
3337 :type 'boolean)
3338 (defcustom org-latex-to-mathml-jar-file nil
3339 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3340 Use this to specify additional executable file say a jar file.
3342 When using MathToWeb as the converter, specify the full-path to
3343 your mathtoweb.jar file."
3344 :group 'org-latex
3345 :type '(choice
3346 (const :tag "None" nil)
3347 (file :tag "JAR file" :must-match t)))
3349 (defcustom org-latex-to-mathml-convert-command nil
3350 "Command to convert LaTeX fragments to MathML.
3351 Replace format-specifiers in the command as noted below and use
3352 `shell-command' to convert LaTeX to MathML.
3353 %j: Executable file in fully expanded form as specified by
3354 `org-latex-to-mathml-jar-file'.
3355 %I: Input LaTeX file in fully expanded form
3356 %o: Output MathML file
3357 This command is used by `org-create-math-formula'.
3359 When using MathToWeb as the converter, set this to
3360 \"java -jar %j -unicode -force -df %o %I\"."
3361 :group 'org-latex
3362 :type '(choice
3363 (const :tag "None" nil)
3364 (string :tag "\nShell command")))
3366 (defun org-format-latex-mathml-available-p ()
3367 "Return t if `org-latex-to-mathml-convert-command' is usable."
3368 (save-match-data
3369 (when (and (boundp 'org-latex-to-mathml-convert-command)
3370 org-latex-to-mathml-convert-command)
3371 (let ((executable (car (split-string
3372 org-latex-to-mathml-convert-command))))
3373 (when (executable-find executable)
3374 (if (string-match
3375 "%j" org-latex-to-mathml-convert-command)
3376 (file-readable-p org-latex-to-mathml-jar-file)
3377 t))))))
3379 (defcustom org-format-latex-header "\\documentclass{article}
3380 \\usepackage[usenames]{color}
3381 \\usepackage{amsmath}
3382 \\usepackage[mathscr]{eucal}
3383 \\pagestyle{empty} % do not remove
3384 \[PACKAGES]
3385 \[DEFAULT-PACKAGES]
3386 % The settings below are copied from fullpage.sty
3387 \\setlength{\\textwidth}{\\paperwidth}
3388 \\addtolength{\\textwidth}{-3cm}
3389 \\setlength{\\oddsidemargin}{1.5cm}
3390 \\addtolength{\\oddsidemargin}{-2.54cm}
3391 \\setlength{\\evensidemargin}{\\oddsidemargin}
3392 \\setlength{\\textheight}{\\paperheight}
3393 \\addtolength{\\textheight}{-\\headheight}
3394 \\addtolength{\\textheight}{-\\headsep}
3395 \\addtolength{\\textheight}{-\\footskip}
3396 \\addtolength{\\textheight}{-3cm}
3397 \\setlength{\\topmargin}{1.5cm}
3398 \\addtolength{\\topmargin}{-2.54cm}"
3399 "The document header used for processing LaTeX fragments.
3400 It is imperative that this header make sure that no page number
3401 appears on the page. The package defined in the variables
3402 `org-export-latex-default-packages-alist' and `org-export-latex-packages-alist'
3403 will either replace the placeholder \"[PACKAGES]\" in this header, or they
3404 will be appended."
3405 :group 'org-latex
3406 :type 'string)
3408 (defvar org-format-latex-header-extra nil)
3410 (defun org-set-packages-alist (var val)
3411 "Set the packages alist and make sure it has 3 elements per entry."
3412 (set var (mapcar (lambda (x)
3413 (if (and (consp x) (= (length x) 2))
3414 (list (car x) (nth 1 x) t)
3416 val)))
3418 (defun org-get-packages-alist (var)
3420 "Get the packages alist and make sure it has 3 elements per entry."
3421 (mapcar (lambda (x)
3422 (if (and (consp x) (= (length x) 2))
3423 (list (car x) (nth 1 x) t)
3425 (default-value var)))
3427 ;; The following variables are defined here because is it also used
3428 ;; when formatting latex fragments. Originally it was part of the
3429 ;; LaTeX exporter, which is why the name includes "export".
3430 (defcustom org-export-latex-default-packages-alist
3431 '(("AUTO" "inputenc" t)
3432 ("T1" "fontenc" t)
3433 ("" "fixltx2e" nil)
3434 ("" "graphicx" t)
3435 ("" "longtable" nil)
3436 ("" "float" nil)
3437 ("" "wrapfig" nil)
3438 ("" "soul" t)
3439 ("" "textcomp" t)
3440 ("" "marvosym" t)
3441 ("" "wasysym" t)
3442 ("" "latexsym" t)
3443 ("" "amssymb" t)
3444 ("" "hyperref" nil)
3445 "\\tolerance=1000"
3447 "Alist of default packages to be inserted in the header.
3448 Change this only if one of the packages here causes an incompatibility
3449 with another package you are using.
3450 The packages in this list are needed by one part or another of Org-mode
3451 to function properly.
3453 - inputenc, fontenc: for basic font and character selection
3454 - textcomp, marvosymb, wasysym, latexsym, amssym: for various symbols used
3455 for interpreting the entities in `org-entities'. You can skip some of these
3456 packages if you don't use any of the symbols in it.
3457 - graphicx: for including images
3458 - float, wrapfig: for figure placement
3459 - longtable: for long tables
3460 - hyperref: for cross references
3462 Therefore you should not modify this variable unless you know what you
3463 are doing. The one reason to change it anyway is that you might be loading
3464 some other package that conflicts with one of the default packages.
3465 Each cell is of the format \( \"options\" \"package\" snippet-flag\).
3466 If SNIPPET-FLAG is t, the package also needs to be included when
3467 compiling LaTeX snippets into images for inclusion into HTML."
3468 :group 'org-export-latex
3469 :set 'org-set-packages-alist
3470 :get 'org-get-packages-alist
3471 :type '(repeat
3472 (choice
3473 (list :tag "options/package pair"
3474 (string :tag "options")
3475 (string :tag "package")
3476 (boolean :tag "Snippet"))
3477 (string :tag "A line of LaTeX"))))
3479 (defcustom org-export-latex-packages-alist nil
3480 "Alist of packages to be inserted in every LaTeX header.
3481 These will be inserted after `org-export-latex-default-packages-alist'.
3482 Each cell is of the format \( \"options\" \"package\" snippet-flag \).
3483 SNIPPET-FLAG, when t, indicates that this package is also needed when
3484 turning LaTeX snippets into images for inclusion into HTML.
3485 Make sure that you only list packages here which:
3486 - you want in every file
3487 - do not conflict with the default packages in
3488 `org-export-latex-default-packages-alist'
3489 - do not conflict with the setup in `org-format-latex-header'."
3490 :group 'org-export-latex
3491 :set 'org-set-packages-alist
3492 :get 'org-get-packages-alist
3493 :type '(repeat
3494 (choice
3495 (list :tag "options/package pair"
3496 (string :tag "options")
3497 (string :tag "package")
3498 (boolean :tag "Snippet"))
3499 (string :tag "A line of LaTeX"))))
3502 (defgroup org-appearance nil
3503 "Settings for Org-mode appearance."
3504 :tag "Org Appearance"
3505 :group 'org)
3507 (defcustom org-level-color-stars-only nil
3508 "Non-nil means fontify only the stars in each headline.
3509 When nil, the entire headline is fontified.
3510 Changing it requires restart of `font-lock-mode' to become effective
3511 also in regions already fontified."
3512 :group 'org-appearance
3513 :type 'boolean)
3515 (defcustom org-hide-leading-stars nil
3516 "Non-nil means hide the first N-1 stars in a headline.
3517 This works by using the face `org-hide' for these stars. This
3518 face is white for a light background, and black for a dark
3519 background. You may have to customize the face `org-hide' to
3520 make this work.
3521 Changing it requires restart of `font-lock-mode' to become effective
3522 also in regions already fontified.
3523 You may also set this on a per-file basis by adding one of the following
3524 lines to the buffer:
3526 #+STARTUP: hidestars
3527 #+STARTUP: showstars"
3528 :group 'org-appearance
3529 :type 'boolean)
3531 (defcustom org-hidden-keywords nil
3532 "List of symbols corresponding to keywords to be hidden the org buffer.
3533 For example, a value '(title) for this list will make the document's title
3534 appear in the buffer without the initial #+TITLE: keyword."
3535 :group 'org-appearance
3536 :type '(set (const :tag "#+AUTHOR" author)
3537 (const :tag "#+DATE" date)
3538 (const :tag "#+EMAIL" email)
3539 (const :tag "#+TITLE" title)))
3541 (defcustom org-fontify-done-headline nil
3542 "Non-nil means change the face of a headline if it is marked DONE.
3543 Normally, only the TODO/DONE keyword indicates the state of a headline.
3544 When this is non-nil, the headline after the keyword is set to the
3545 `org-headline-done' as an additional indication."
3546 :group 'org-appearance
3547 :type 'boolean)
3549 (defcustom org-fontify-emphasized-text t
3550 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
3551 Changing this variable requires a restart of Emacs to take effect."
3552 :group 'org-appearance
3553 :type 'boolean)
3555 (defcustom org-fontify-whole-heading-line nil
3556 "Non-nil means fontify the whole line for headings.
3557 This is useful when setting a background color for the
3558 org-level-* faces."
3559 :group 'org-appearance
3560 :type 'boolean)
3562 (defcustom org-highlight-latex-fragments-and-specials nil
3563 "Non-nil means fontify what is treated specially by the exporters."
3564 :group 'org-appearance
3565 :type 'boolean)
3567 (defcustom org-hide-emphasis-markers nil
3568 "Non-nil mean font-lock should hide the emphasis marker characters."
3569 :group 'org-appearance
3570 :type 'boolean)
3572 (defcustom org-pretty-entities nil
3573 "Non-nil means show entities as UTF8 characters.
3574 When nil, the \\name form remains in the buffer."
3575 :group 'org-appearance
3576 :type 'boolean)
3578 (defcustom org-pretty-entities-include-sub-superscripts t
3579 "Non-nil means, pretty entity display includes formatting sub/superscripts."
3580 :group 'org-appearance
3581 :type 'boolean)
3583 (defvar org-emph-re nil
3584 "Regular expression for matching emphasis.
3585 After a match, the match groups contain these elements:
3586 0 The match of the full regular expression, including the characters
3587 before and after the proper match
3588 1 The character before the proper match, or empty at beginning of line
3589 2 The proper match, including the leading and trailing markers
3590 3 The leading marker like * or /, indicating the type of highlighting
3591 4 The text between the emphasis markers, not including the markers
3592 5 The character after the match, empty at the end of a line")
3593 (defvar org-verbatim-re nil
3594 "Regular expression for matching verbatim text.")
3595 (defvar org-emphasis-regexp-components) ; defined just below
3596 (defvar org-emphasis-alist) ; defined just below
3597 (defun org-set-emph-re (var val)
3598 "Set variable and compute the emphasis regular expression."
3599 (set var val)
3600 (when (and (boundp 'org-emphasis-alist)
3601 (boundp 'org-emphasis-regexp-components)
3602 org-emphasis-alist org-emphasis-regexp-components)
3603 (let* ((e org-emphasis-regexp-components)
3604 (pre (car e))
3605 (post (nth 1 e))
3606 (border (nth 2 e))
3607 (body (nth 3 e))
3608 (nl (nth 4 e))
3609 (body1 (concat body "*?"))
3610 (markers (mapconcat 'car org-emphasis-alist ""))
3611 (vmarkers (mapconcat
3612 (lambda (x) (if (eq (nth 4 x) 'verbatim) (car x) ""))
3613 org-emphasis-alist "")))
3614 ;; make sure special characters appear at the right position in the class
3615 (if (string-match "\\^" markers)
3616 (setq markers (concat (replace-match "" t t markers) "^")))
3617 (if (string-match "-" markers)
3618 (setq markers (concat (replace-match "" t t markers) "-")))
3619 (if (string-match "\\^" vmarkers)
3620 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
3621 (if (string-match "-" vmarkers)
3622 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
3623 (if (> nl 0)
3624 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
3625 (int-to-string nl) "\\}")))
3626 ;; Make the regexp
3627 (setq org-emph-re
3628 (concat "\\([" pre "]\\|^\\)"
3629 "\\("
3630 "\\([" markers "]\\)"
3631 "\\("
3632 "[^" border "]\\|"
3633 "[^" border "]"
3634 body1
3635 "[^" border "]"
3636 "\\)"
3637 "\\3\\)"
3638 "\\([" post "]\\|$\\)"))
3639 (setq org-verbatim-re
3640 (concat "\\([" pre "]\\|^\\)"
3641 "\\("
3642 "\\([" vmarkers "]\\)"
3643 "\\("
3644 "[^" border "]\\|"
3645 "[^" border "]"
3646 body1
3647 "[^" border "]"
3648 "\\)"
3649 "\\3\\)"
3650 "\\([" post "]\\|$\\)")))))
3652 (defcustom org-emphasis-regexp-components
3653 '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r\n,\"'" "." 1)
3654 "Components used to build the regular expression for emphasis.
3655 This is a list with five entries. Terminology: In an emphasis string
3656 like \" *strong word* \", we call the initial space PREMATCH, the final
3657 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
3658 and \"trong wor\" is the body. The different components in this variable
3659 specify what is allowed/forbidden in each part:
3661 pre Chars allowed as prematch. Beginning of line will be allowed too.
3662 post Chars allowed as postmatch. End of line will be allowed too.
3663 border The chars *forbidden* as border characters.
3664 body-regexp A regexp like \".\" to match a body character. Don't use
3665 non-shy groups here, and don't allow newline here.
3666 newline The maximum number of newlines allowed in an emphasis exp.
3668 Use customize to modify this, or restart Emacs after changing it."
3669 :group 'org-appearance
3670 :set 'org-set-emph-re
3671 :type '(list
3672 (sexp :tag "Allowed chars in pre ")
3673 (sexp :tag "Allowed chars in post ")
3674 (sexp :tag "Forbidden chars in border ")
3675 (sexp :tag "Regexp for body ")
3676 (integer :tag "number of newlines allowed")
3677 (option (boolean :tag "Please ignore this button"))))
3679 (defcustom org-emphasis-alist
3680 `(("*" bold "<b>" "</b>")
3681 ("/" italic "<i>" "</i>")
3682 ("_" underline "<span style=\"text-decoration:underline;\">" "</span>")
3683 ("=" org-code "<code>" "</code>" verbatim)
3684 ("~" org-verbatim "<code>" "</code>" verbatim)
3685 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))
3686 "<del>" "</del>")
3688 "Special syntax for emphasized text.
3689 Text starting and ending with a special character will be emphasized, for
3690 example *bold*, _underlined_ and /italic/. This variable sets the marker
3691 characters, the face to be used by font-lock for highlighting in Org-mode
3692 Emacs buffers, and the HTML tags to be used for this.
3693 For LaTeX export, see the variable `org-export-latex-emphasis-alist'.
3694 For DocBook export, see the variable `org-export-docbook-emphasis-alist'.
3695 Use customize to modify this, or restart Emacs after changing it."
3696 :group 'org-appearance
3697 :set 'org-set-emph-re
3698 :type '(repeat
3699 (list
3700 (string :tag "Marker character")
3701 (choice
3702 (face :tag "Font-lock-face")
3703 (plist :tag "Face property list"))
3704 (string :tag "HTML start tag")
3705 (string :tag "HTML end tag")
3706 (option (const verbatim)))))
3708 (defvar org-protecting-blocks
3709 '("src" "example" "latex" "ascii" "html" "docbook" "ditaa" "dot" "r" "R")
3710 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
3711 This is needed for font-lock setup.")
3713 ;;; Miscellaneous options
3715 (defgroup org-completion nil
3716 "Completion in Org-mode."
3717 :tag "Org Completion"
3718 :group 'org)
3720 (defcustom org-completion-use-ido nil
3721 "Non-nil means use ido completion wherever possible.
3722 Note that `ido-mode' must be active for this variable to be relevant.
3723 If you decide to turn this variable on, you might well want to turn off
3724 `org-outline-path-complete-in-steps'.
3725 See also `org-completion-use-iswitchb'."
3726 :group 'org-completion
3727 :type 'boolean)
3729 (defcustom org-completion-use-iswitchb nil
3730 "Non-nil means use iswitchb completion wherever possible.
3731 Note that `iswitchb-mode' must be active for this variable to be relevant.
3732 If you decide to turn this variable on, you might well want to turn off
3733 `org-outline-path-complete-in-steps'.
3734 Note that this variable has only an effect if `org-completion-use-ido' is nil."
3735 :group 'org-completion
3736 :type 'boolean)
3738 (defcustom org-completion-fallback-command 'hippie-expand
3739 "The expansion command called by \\[pcomplete] in normal context.
3740 Normal means, no org-mode-specific context."
3741 :group 'org-completion
3742 :type 'function)
3744 ;;; Functions and variables from their packages
3745 ;; Declared here to avoid compiler warnings
3747 ;; XEmacs only
3748 (defvar outline-mode-menu-heading)
3749 (defvar outline-mode-menu-show)
3750 (defvar outline-mode-menu-hide)
3751 (defvar zmacs-regions) ; XEmacs regions
3753 ;; Emacs only
3754 (defvar mark-active)
3756 ;; Various packages
3757 (declare-function calendar-absolute-from-iso "cal-iso" (date))
3758 (declare-function calendar-forward-day "cal-move" (arg))
3759 (declare-function calendar-goto-date "cal-move" (date))
3760 (declare-function calendar-goto-today "cal-move" ())
3761 (declare-function calendar-iso-from-absolute "cal-iso" (date))
3762 (defvar calc-embedded-close-formula)
3763 (defvar calc-embedded-open-formula)
3764 (declare-function cdlatex-tab "ext:cdlatex" ())
3765 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
3766 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
3767 (defvar font-lock-unfontify-region-function)
3768 (declare-function iswitchb-read-buffer "iswitchb"
3769 (prompt &optional default require-match start matches-set))
3770 (defvar iswitchb-temp-buflist)
3771 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
3772 (defvar org-agenda-tags-todo-honor-ignore-options)
3773 (declare-function org-agenda-skip "org-agenda" ())
3774 (declare-function
3775 org-agenda-format-item "org-agenda"
3776 (extra txt &optional category tags dotime noprefix remove-re habitp))
3777 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
3778 (declare-function org-agenda-change-all-lines "org-agenda"
3779 (newhead hdmarker &optional fixface just-this))
3780 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
3781 (declare-function org-agenda-maybe-redo "org-agenda" ())
3782 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
3783 (beg end))
3784 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
3785 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
3786 "org-agenda" (&optional end))
3787 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
3788 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
3789 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
3790 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
3791 (declare-function org-indent-mode "org-indent" (&optional arg))
3792 (declare-function parse-time-string "parse-time" (string))
3793 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
3794 (declare-function org-export-latex-fix-inputenc "org-latex" ())
3795 (declare-function orgtbl-send-table "org-table" (&optional maybe))
3796 (defvar remember-data-file)
3797 (defvar texmathp-why)
3798 (declare-function speedbar-line-directory "speedbar" (&optional depth))
3799 (declare-function table--at-cell-p "table" (position &optional object at-column))
3801 (defvar w3m-current-url)
3802 (defvar w3m-current-title)
3804 (defvar org-latex-regexps)
3806 ;;; Autoload and prepare some org modules
3808 ;; Some table stuff that needs to be defined here, because it is used
3809 ;; by the functions setting up org-mode or checking for table context.
3811 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
3812 "Detect an org-type or table-type table.")
3813 (defconst org-table-line-regexp "^[ \t]*|"
3814 "Detect an org-type table line.")
3815 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
3816 "Detect an org-type table line.")
3817 (defconst org-table-hline-regexp "^[ \t]*|-"
3818 "Detect an org-type table hline.")
3819 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
3820 "Detect a table-type table hline.")
3821 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
3822 "Detect the first line outside a table when searching from within it.
3823 This works for both table types.")
3825 ;; Autoload the functions in org-table.el that are needed by functions here.
3827 (eval-and-compile
3828 (org-autoload "org-table"
3829 '(org-table-align org-table-begin org-table-blank-field
3830 org-table-convert org-table-convert-region org-table-copy-down
3831 org-table-copy-region org-table-create
3832 org-table-create-or-convert-from-region
3833 org-table-create-with-table.el org-table-current-dline
3834 org-table-cut-region org-table-delete-column org-table-edit-field
3835 org-table-edit-formulas org-table-end org-table-eval-formula
3836 org-table-export org-table-field-info
3837 org-table-get-stored-formulas org-table-goto-column
3838 org-table-hline-and-move org-table-import org-table-insert-column
3839 org-table-insert-hline org-table-insert-row org-table-iterate
3840 org-table-justify-field-maybe org-table-kill-row
3841 org-table-maybe-eval-formula org-table-maybe-recalculate-line
3842 org-table-move-column org-table-move-column-left
3843 org-table-move-column-right org-table-move-row
3844 org-table-move-row-down org-table-move-row-up
3845 org-table-next-field org-table-next-row org-table-paste-rectangle
3846 org-table-previous-field org-table-recalculate
3847 org-table-rotate-recalc-marks org-table-sort-lines org-table-sum
3848 org-table-toggle-coordinate-overlays
3849 org-table-toggle-formula-debugger org-table-wrap-region
3850 orgtbl-mode turn-on-orgtbl org-table-to-lisp
3851 orgtbl-to-generic orgtbl-to-tsv orgtbl-to-csv orgtbl-to-latex
3852 orgtbl-to-orgtbl orgtbl-to-html orgtbl-to-texinfo)))
3854 (defun org-at-table-p (&optional table-type)
3855 "Return t if the cursor is inside an org-type table.
3856 If TABLE-TYPE is non-nil, also check for table.el-type tables."
3857 (if org-enable-table-editor
3858 (save-excursion
3859 (beginning-of-line 1)
3860 (looking-at (if table-type org-table-any-line-regexp
3861 org-table-line-regexp)))
3862 nil))
3863 (defsubst org-table-p () (org-at-table-p))
3865 (defun org-at-table.el-p ()
3866 "Return t if and only if we are at a table.el table."
3867 (and (org-at-table-p 'any)
3868 (save-excursion
3869 (goto-char (org-table-begin 'any))
3870 (looking-at org-table1-hline-regexp))))
3871 (defun org-table-recognize-table.el ()
3872 "If there is a table.el table nearby, recognize it and move into it."
3873 (if org-table-tab-recognizes-table.el
3874 (if (org-at-table.el-p)
3875 (progn
3876 (beginning-of-line 1)
3877 (if (looking-at org-table-dataline-regexp)
3879 (if (looking-at org-table1-hline-regexp)
3880 (progn
3881 (beginning-of-line 2)
3882 (if (looking-at org-table-any-border-regexp)
3883 (beginning-of-line -1)))))
3884 (if (re-search-forward "|" (org-table-end t) t)
3885 (progn
3886 (require 'table)
3887 (if (table--at-cell-p (point))
3889 (message "recognizing table.el table...")
3890 (table-recognize-table)
3891 (message "recognizing table.el table...done")))
3892 (error "This should not happen"))
3894 nil)
3895 nil))
3897 (defun org-at-table-hline-p ()
3898 "Return t if the cursor is inside a hline in a table."
3899 (if org-enable-table-editor
3900 (save-excursion
3901 (beginning-of-line 1)
3902 (looking-at org-table-hline-regexp))
3903 nil))
3905 (defvar org-table-clean-did-remove-column nil)
3907 (defun org-table-map-tables (function &optional quietly)
3908 "Apply FUNCTION to the start of all tables in the buffer."
3909 (save-excursion
3910 (save-restriction
3911 (widen)
3912 (goto-char (point-min))
3913 (while (re-search-forward org-table-any-line-regexp nil t)
3914 (unless quietly
3915 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
3916 (beginning-of-line 1)
3917 (when (looking-at org-table-line-regexp)
3918 (save-excursion (funcall function))
3919 (or (looking-at org-table-line-regexp)
3920 (forward-char 1)))
3921 (re-search-forward org-table-any-border-regexp nil 1))))
3922 (unless quietly (message "Mapping tables: done")))
3924 ;; Declare and autoload functions from org-exp.el & Co
3926 (declare-function org-default-export-plist "org-exp")
3927 (declare-function org-infile-export-plist "org-exp")
3928 (declare-function org-get-current-options "org-exp")
3929 (eval-and-compile
3930 (org-autoload "org-exp"
3931 '(org-export org-export-visible
3932 org-insert-export-options-template
3933 org-table-clean-before-export))
3934 (org-autoload "org-ascii"
3935 '(org-export-as-ascii org-export-ascii-preprocess
3936 org-export-as-ascii-to-buffer org-replace-region-by-ascii
3937 org-export-region-as-ascii))
3938 (org-autoload "org-latex"
3939 '(org-export-as-latex-batch org-export-as-latex-to-buffer
3940 org-replace-region-by-latex org-export-region-as-latex
3941 org-export-as-latex org-export-as-pdf
3942 org-export-as-pdf-and-open))
3943 (org-autoload "org-html"
3944 '(org-export-as-html-and-open
3945 org-export-as-html-batch org-export-as-html-to-buffer
3946 org-replace-region-by-html org-export-region-as-html
3947 org-export-as-html))
3948 (org-autoload "org-docbook"
3949 '(org-export-as-docbook-batch org-export-as-docbook-to-buffer
3950 org-replace-region-by-docbook org-export-region-as-docbook
3951 org-export-as-docbook-pdf org-export-as-docbook-pdf-and-open
3952 org-export-as-docbook))
3953 (org-autoload "org-icalendar"
3954 '(org-export-icalendar-this-file
3955 org-export-icalendar-all-agenda-files
3956 org-export-icalendar-combine-agenda-files))
3957 (org-autoload "org-xoxo" '(org-export-as-xoxo))
3958 (org-autoload "org-beamer" '(org-beamer-mode org-beamer-sectioning)))
3960 ;; Declare and autoload functions from org-agenda.el
3962 (eval-and-compile
3963 (org-autoload "org-agenda"
3964 '(org-agenda org-agenda-list org-search-view
3965 org-todo-list org-tags-view org-agenda-list-stuck-projects
3966 org-diary org-agenda-to-appt
3967 org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item)))
3969 ;; Autoload org-remember
3971 (eval-and-compile
3972 (org-autoload "org-remember"
3973 '(org-remember-insinuate org-remember-annotation
3974 org-remember-apply-template org-remember org-remember-handler)))
3976 (eval-and-compile
3977 (org-autoload "org-capture"
3978 '(org-capture org-capture-insert-template-here
3979 org-capture-import-remember-templates)))
3981 ;; Autoload org-clock.el
3983 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock"
3984 (beg end))
3985 (declare-function org-clock-update-mode-line "org-clock" ())
3986 (declare-function org-resolve-clocks "org-clock"
3987 (&optional also-non-dangling-p prompt last-valid))
3988 (defvar org-clock-start-time)
3989 (defvar org-clock-marker (make-marker)
3990 "Marker recording the last clock-in.")
3991 (defvar org-clock-hd-marker (make-marker)
3992 "Marker recording the last clock-in, but the headline position.")
3993 (defvar org-clock-heading ""
3994 "The heading of the current clock entry.")
3995 (defun org-clock-is-active ()
3996 "Return non-nil if clock is currently running.
3997 The return value is actually the clock marker."
3998 (marker-buffer org-clock-marker))
4000 (eval-and-compile
4001 (org-autoload
4002 "org-clock"
4003 '(org-clock-in org-clock-out org-clock-cancel
4004 org-clock-goto org-clock-sum org-clock-display
4005 org-clock-remove-overlays org-clock-report
4006 org-clocktable-shift org-dblock-write:clocktable
4007 org-get-clocktable org-resolve-clocks)))
4009 (defun org-clock-update-time-maybe ()
4010 "If this is a CLOCK line, update it and return t.
4011 Otherwise, return nil."
4012 (interactive)
4013 (save-excursion
4014 (beginning-of-line 1)
4015 (skip-chars-forward " \t")
4016 (when (looking-at org-clock-string)
4017 (let ((re (concat "[ \t]*" org-clock-string
4018 " *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
4019 "\\([ \t]*=>.*\\)?\\)?"))
4020 ts te h m s neg)
4021 (cond
4022 ((not (looking-at re))
4023 nil)
4024 ((not (match-end 2))
4025 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4026 (> org-clock-marker (point))
4027 (<= org-clock-marker (point-at-eol)))
4028 ;; The clock is running here
4029 (setq org-clock-start-time
4030 (apply 'encode-time
4031 (org-parse-time-string (match-string 1))))
4032 (org-clock-update-mode-line)))
4034 (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
4035 (end-of-line 1)
4036 (setq ts (match-string 1)
4037 te (match-string 3))
4038 (setq s (- (org-float-time
4039 (apply 'encode-time (org-parse-time-string te)))
4040 (org-float-time
4041 (apply 'encode-time (org-parse-time-string ts))))
4042 neg (< s 0)
4043 s (abs s)
4044 h (floor (/ s 3600))
4045 s (- s (* 3600 h))
4046 m (floor (/ s 60))
4047 s (- s (* 60 s)))
4048 (insert " => " (format (if neg "-%d:%02d" "%2d:%02d") h m))
4049 t))))))
4051 (defun org-check-running-clock ()
4052 "Check if the current buffer contains the running clock.
4053 If yes, offer to stop it and to save the buffer with the changes."
4054 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4055 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4056 (buffer-name))))
4057 (org-clock-out)
4058 (when (y-or-n-p "Save changed buffer?")
4059 (save-buffer))))
4061 (defun org-clocktable-try-shift (dir n)
4062 "Check if this line starts a clock table, if yes, shift the time block."
4063 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4064 (org-clocktable-shift dir n)))
4066 ;; Autoload org-timer.el
4068 (eval-and-compile
4069 (org-autoload
4070 "org-timer"
4071 '(org-timer-start org-timer org-timer-item
4072 org-timer-change-times-in-region
4073 org-timer-set-timer
4074 org-timer-reset-timers
4075 org-timer-show-remaining-time)))
4077 ;; Autoload org-feed.el
4079 (eval-and-compile
4080 (org-autoload
4081 "org-feed"
4082 '(org-feed-update org-feed-update-all org-feed-goto-inbox)))
4085 ;; Autoload org-indent.el
4087 ;; Define the variable already here, to make sure we have it.
4088 (defvar org-indent-mode nil
4089 "Non-nil if Org-Indent mode is enabled.
4090 Use the command `org-indent-mode' to change this variable.")
4092 (eval-and-compile
4093 (org-autoload
4094 "org-indent"
4095 '(org-indent-mode)))
4097 ;; Autoload org-mobile.el
4099 (eval-and-compile
4100 (org-autoload
4101 "org-mobile"
4102 '(org-mobile-push org-mobile-pull org-mobile-create-sumo-agenda)))
4104 ;; Autoload archiving code
4105 ;; The stuff that is needed for cycling and tags has to be defined here.
4107 (defgroup org-archive nil
4108 "Options concerning archiving in Org-mode."
4109 :tag "Org Archive"
4110 :group 'org-structure)
4112 (defcustom org-archive-location "%s_archive::"
4113 "The location where subtrees should be archived.
4115 The value of this variable is a string, consisting of two parts,
4116 separated by a double-colon. The first part is a filename and
4117 the second part is a headline.
4119 When the filename is omitted, archiving happens in the same file.
4120 %s in the filename will be replaced by the current file
4121 name (without the directory part). Archiving to a different file
4122 is useful to keep archived entries from contributing to the
4123 Org-mode Agenda.
4125 The archived entries will be filed as subtrees of the specified
4126 headline. When the headline is omitted, the subtrees are simply
4127 filed away at the end of the file, as top-level entries. Also in
4128 the heading you can use %s to represent the file name, this can be
4129 useful when using the same archive for a number of different files.
4131 Here are a few examples:
4132 \"%s_archive::\"
4133 If the current file is Projects.org, archive in file
4134 Projects.org_archive, as top-level trees. This is the default.
4136 \"::* Archived Tasks\"
4137 Archive in the current file, under the top-level headline
4138 \"* Archived Tasks\".
4140 \"~/org/archive.org::\"
4141 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4143 \"~/org/archive.org::* From %s\"
4144 Archive in file ~/org/archive.org (absolute path), under headlines
4145 \"From FILENAME\" where file name is the current file name.
4147 \"basement::** Finished Tasks\"
4148 Archive in file ./basement (relative path), as level 3 trees
4149 below the level 2 heading \"** Finished Tasks\".
4151 You may set this option on a per-file basis by adding to the buffer a
4152 line like
4154 #+ARCHIVE: basement::** Finished Tasks
4156 You may also define it locally for a subtree by setting an ARCHIVE property
4157 in the entry. If such a property is found in an entry, or anywhere up
4158 the hierarchy, it will be used."
4159 :group 'org-archive
4160 :type 'string)
4162 (defcustom org-archive-tag "ARCHIVE"
4163 "The tag that marks a subtree as archived.
4164 An archived subtree does not open during visibility cycling, and does
4165 not contribute to the agenda listings.
4166 After changing this, font-lock must be restarted in the relevant buffers to
4167 get the proper fontification."
4168 :group 'org-archive
4169 :group 'org-keywords
4170 :type 'string)
4172 (defcustom org-agenda-skip-archived-trees t
4173 "Non-nil means the agenda will skip any items located in archived trees.
4174 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4175 variable is no longer recommended, you should leave it at the value t.
4176 Instead, use the key `v' to cycle the archives-mode in the agenda."
4177 :group 'org-archive
4178 :group 'org-agenda-skip
4179 :type 'boolean)
4181 (defcustom org-columns-skip-archived-trees t
4182 "Non-nil means ignore archived trees when creating column view."
4183 :group 'org-archive
4184 :group 'org-properties
4185 :type 'boolean)
4187 (defcustom org-cycle-open-archived-trees nil
4188 "Non-nil means `org-cycle' will open archived trees.
4189 An archived tree is a tree marked with the tag ARCHIVE.
4190 When nil, archived trees will stay folded. You can still open them with
4191 normal outline commands like `show-all', but not with the cycling commands."
4192 :group 'org-archive
4193 :group 'org-cycle
4194 :type 'boolean)
4196 (defcustom org-sparse-tree-open-archived-trees nil
4197 "Non-nil means sparse tree construction shows matches in archived trees.
4198 When nil, matches in these trees are highlighted, but the trees are kept in
4199 collapsed state."
4200 :group 'org-archive
4201 :group 'org-sparse-trees
4202 :type 'boolean)
4204 (defun org-cycle-hide-archived-subtrees (state)
4205 "Re-hide all archived subtrees after a visibility state change."
4206 (when (and (not org-cycle-open-archived-trees)
4207 (not (memq state '(overview folded))))
4208 (save-excursion
4209 (let* ((globalp (memq state '(contents all)))
4210 (beg (if globalp (point-min) (point)))
4211 (end (if globalp (point-max) (org-end-of-subtree t))))
4212 (org-hide-archived-subtrees beg end)
4213 (goto-char beg)
4214 (if (looking-at (concat ".*:" org-archive-tag ":"))
4215 (message "%s" (substitute-command-keys
4216 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4218 (defun org-force-cycle-archived ()
4219 "Cycle subtree even if it is archived."
4220 (interactive)
4221 (setq this-command 'org-cycle)
4222 (let ((org-cycle-open-archived-trees t))
4223 (call-interactively 'org-cycle)))
4225 (defun org-hide-archived-subtrees (beg end)
4226 "Re-hide all archived subtrees after a visibility state change."
4227 (save-excursion
4228 (let* ((re (concat ":" org-archive-tag ":")))
4229 (goto-char beg)
4230 (while (re-search-forward re end t)
4231 (when (org-at-heading-p)
4232 (org-flag-subtree t)
4233 (org-end-of-subtree t))))))
4235 (defun org-flag-subtree (flag)
4236 (save-excursion
4237 (org-back-to-heading t)
4238 (outline-end-of-heading)
4239 (outline-flag-region (point)
4240 (progn (org-end-of-subtree t) (point))
4241 flag)))
4243 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4245 (eval-and-compile
4246 (org-autoload "org-archive"
4247 '(org-add-archive-files org-archive-subtree
4248 org-archive-to-archive-sibling org-toggle-archive-tag
4249 org-archive-subtree-default
4250 org-archive-subtree-default-with-confirmation)))
4252 ;; Autoload Column View Code
4254 (declare-function org-columns-number-to-string "org-colview")
4255 (declare-function org-columns-get-format-and-top-level "org-colview")
4256 (declare-function org-columns-compute "org-colview")
4258 (org-autoload (if (featurep 'xemacs) "org-colview-xemacs" "org-colview")
4259 '(org-columns-number-to-string org-columns-get-format-and-top-level
4260 org-columns-compute org-agenda-columns org-columns-remove-overlays
4261 org-columns org-insert-columns-dblock org-dblock-write:columnview))
4263 ;; Autoload ID code
4265 (declare-function org-id-store-link "org-id")
4266 (declare-function org-id-locations-load "org-id")
4267 (declare-function org-id-locations-save "org-id")
4268 (defvar org-id-track-globally)
4269 (org-autoload "org-id"
4270 '(org-id-get-create org-id-new org-id-copy org-id-get
4271 org-id-get-with-outline-path-completion
4272 org-id-get-with-outline-drilling org-id-store-link
4273 org-id-goto org-id-find org-id-store-link))
4275 ;; Autoload Plotting Code
4277 (org-autoload "org-plot"
4278 '(org-plot/gnuplot))
4280 ;;; Variables for pre-computed regular expressions, all buffer local
4282 (defvar org-drawer-regexp nil
4283 "Matches first line of a hidden block.")
4284 (make-variable-buffer-local 'org-drawer-regexp)
4285 (defvar org-todo-regexp nil
4286 "Matches any of the TODO state keywords.")
4287 (make-variable-buffer-local 'org-todo-regexp)
4288 (defvar org-not-done-regexp nil
4289 "Matches any of the TODO state keywords except the last one.")
4290 (make-variable-buffer-local 'org-not-done-regexp)
4291 (defvar org-not-done-heading-regexp nil
4292 "Matches a TODO headline that is not done.")
4293 (make-variable-buffer-local 'org-not-done-regexp)
4294 (defvar org-todo-line-regexp nil
4295 "Matches a headline and puts TODO state into group 2 if present.")
4296 (make-variable-buffer-local 'org-todo-line-regexp)
4297 (defvar org-complex-heading-regexp nil
4298 "Matches a headline and puts everything into groups:
4299 group 1: the stars
4300 group 2: The todo keyword, maybe
4301 group 3: Priority cookie
4302 group 4: True headline
4303 group 5: Tags")
4304 (make-variable-buffer-local 'org-complex-heading-regexp)
4305 (defvar org-complex-heading-regexp-format nil
4306 "Printf format to make regexp to match an exact headline.
4307 This regexp will match the headline of any node which has the
4308 exact headline text that is put into the format, but may have any
4309 TODO state, priority and tags.")
4310 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4311 (defvar org-todo-line-tags-regexp nil
4312 "Matches a headline and puts TODO state into group 2 if present.
4313 Also put tags into group 4 if tags are present.")
4314 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4315 (defvar org-ds-keyword-length 12
4316 "Maximum length of the Deadline and SCHEDULED keywords.")
4317 (make-variable-buffer-local 'org-ds-keyword-length)
4318 (defvar org-deadline-regexp nil
4319 "Matches the DEADLINE keyword.")
4320 (make-variable-buffer-local 'org-deadline-regexp)
4321 (defvar org-deadline-time-regexp nil
4322 "Matches the DEADLINE keyword together with a time stamp.")
4323 (make-variable-buffer-local 'org-deadline-time-regexp)
4324 (defvar org-deadline-line-regexp nil
4325 "Matches the DEADLINE keyword and the rest of the line.")
4326 (make-variable-buffer-local 'org-deadline-line-regexp)
4327 (defvar org-scheduled-regexp nil
4328 "Matches the SCHEDULED keyword.")
4329 (make-variable-buffer-local 'org-scheduled-regexp)
4330 (defvar org-scheduled-time-regexp nil
4331 "Matches the SCHEDULED keyword together with a time stamp.")
4332 (make-variable-buffer-local 'org-scheduled-time-regexp)
4333 (defvar org-closed-time-regexp nil
4334 "Matches the CLOSED keyword together with a time stamp.")
4335 (make-variable-buffer-local 'org-closed-time-regexp)
4337 (defvar org-keyword-time-regexp nil
4338 "Matches any of the 4 keywords, together with the time stamp.")
4339 (make-variable-buffer-local 'org-keyword-time-regexp)
4340 (defvar org-keyword-time-not-clock-regexp nil
4341 "Matches any of the 3 keywords, together with the time stamp.")
4342 (make-variable-buffer-local 'org-keyword-time-not-clock-regexp)
4343 (defvar org-maybe-keyword-time-regexp nil
4344 "Matches a timestamp, possibly preceded by a keyword.")
4345 (make-variable-buffer-local 'org-maybe-keyword-time-regexp)
4346 (defvar org-planning-or-clock-line-re nil
4347 "Matches a line with planning or clock info.")
4348 (make-variable-buffer-local 'org-planning-or-clock-line-re)
4349 (defvar org-all-time-keywords nil
4350 "List of time keywords.")
4351 (make-variable-buffer-local 'org-all-time-keywords)
4353 (defconst org-plain-time-of-day-regexp
4354 (concat
4355 "\\(\\<[012]?[0-9]"
4356 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4357 "\\(--?"
4358 "\\(\\<[012]?[0-9]"
4359 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4360 "\\)?")
4361 "Regular expression to match a plain time or time range.
4362 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4363 groups carry important information:
4364 0 the full match
4365 1 the first time, range or not
4366 8 the second time, if it is a range.")
4368 (defconst org-plain-time-extension-regexp
4369 (concat
4370 "\\(\\<[012]?[0-9]"
4371 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4372 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4373 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4374 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4375 groups carry important information:
4376 0 the full match
4377 7 hours of duration
4378 9 minutes of duration")
4380 (defconst org-stamp-time-of-day-regexp
4381 (concat
4382 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4383 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4384 "\\(--?"
4385 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4386 "Regular expression to match a timestamp time or time range.
4387 After a match, the following groups carry important information:
4388 0 the full match
4389 1 date plus weekday, for back referencing to make sure both times are on the same day
4390 2 the first time, range or not
4391 4 the second time, if it is a range.")
4393 (defconst org-startup-options
4394 '(("fold" org-startup-folded t)
4395 ("overview" org-startup-folded t)
4396 ("nofold" org-startup-folded nil)
4397 ("showall" org-startup-folded nil)
4398 ("showeverything" org-startup-folded showeverything)
4399 ("content" org-startup-folded content)
4400 ("indent" org-startup-indented t)
4401 ("noindent" org-startup-indented nil)
4402 ("hidestars" org-hide-leading-stars t)
4403 ("showstars" org-hide-leading-stars nil)
4404 ("odd" org-odd-levels-only t)
4405 ("oddeven" org-odd-levels-only nil)
4406 ("align" org-startup-align-all-tables t)
4407 ("noalign" org-startup-align-all-tables nil)
4408 ("inlineimages" org-startup-with-inline-images t)
4409 ("noinlineimages" org-startup-with-inline-images nil)
4410 ("customtime" org-display-custom-times t)
4411 ("logdone" org-log-done time)
4412 ("lognotedone" org-log-done note)
4413 ("nologdone" org-log-done nil)
4414 ("lognoteclock-out" org-log-note-clock-out t)
4415 ("nolognoteclock-out" org-log-note-clock-out nil)
4416 ("logrepeat" org-log-repeat state)
4417 ("lognoterepeat" org-log-repeat note)
4418 ("nologrepeat" org-log-repeat nil)
4419 ("logreschedule" org-log-reschedule time)
4420 ("lognotereschedule" org-log-reschedule note)
4421 ("nologreschedule" org-log-reschedule nil)
4422 ("logredeadline" org-log-redeadline time)
4423 ("lognoteredeadline" org-log-redeadline note)
4424 ("nologredeadline" org-log-redeadline nil)
4425 ("logrefile" org-log-refile time)
4426 ("lognoterefile" org-log-refile note)
4427 ("nologrefile" org-log-refile nil)
4428 ("fninline" org-footnote-define-inline t)
4429 ("nofninline" org-footnote-define-inline nil)
4430 ("fnlocal" org-footnote-section nil)
4431 ("fnauto" org-footnote-auto-label t)
4432 ("fnprompt" org-footnote-auto-label nil)
4433 ("fnconfirm" org-footnote-auto-label confirm)
4434 ("fnplain" org-footnote-auto-label plain)
4435 ("fnadjust" org-footnote-auto-adjust t)
4436 ("nofnadjust" org-footnote-auto-adjust nil)
4437 ("constcgs" constants-unit-system cgs)
4438 ("constSI" constants-unit-system SI)
4439 ("noptag" org-tag-persistent-alist nil)
4440 ("hideblocks" org-hide-block-startup t)
4441 ("nohideblocks" org-hide-block-startup nil)
4442 ("beamer" org-startup-with-beamer-mode t)
4443 ("entitiespretty" org-pretty-entities t)
4444 ("entitiesplain" org-pretty-entities nil))
4445 "Variable associated with STARTUP options for org-mode.
4446 Each element is a list of three items: The startup options as written
4447 in the #+STARTUP line, the corresponding variable, and the value to
4448 set this variable to if the option is found. An optional forth element PUSH
4449 means to push this value onto the list in the variable.")
4451 (defun org-update-property-plist (key val props)
4452 "Update PROPS with KEY and VAL."
4453 (let* ((appending (string= "+" (substring key (- (length key) 1))))
4454 (key (if appending (substring key 0 (- (length key) 1)) key))
4455 (remainder (org-remove-if (lambda (p) (string= (car p) key)) props))
4456 (previous (cdr (assoc key props))))
4457 (if appending
4458 (cons (cons key (if previous (concat previous " " val) val)) remainder)
4459 (cons (cons key val) remainder))))
4461 (defconst org-block-regexp
4462 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
4463 "Regular expression for hiding blocks.")
4464 (defconst org-heading-keyword-regexp-format
4465 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
4466 "Printf format for a regexp matching an headline with some keyword.
4467 This regexp will match the headline of any node which has the
4468 exact keyword that is put into the format. The keyword isn't in
4469 any group by default, but the stars and the body are.")
4470 (defconst org-heading-keyword-maybe-regexp-format
4471 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
4472 "Printf format for a regexp matching an headline, possibly with some keyword.
4473 This regexp can match any headline with the specified keyword, or
4474 without a keyword. The keyword isn't in any group by default,
4475 but the stars and the body are.")
4477 (defun org-set-regexps-and-options ()
4478 "Precompute regular expressions for current buffer."
4479 (when (eq major-mode 'org-mode)
4480 (org-set-local 'org-todo-kwd-alist nil)
4481 (org-set-local 'org-todo-key-alist nil)
4482 (org-set-local 'org-todo-key-trigger nil)
4483 (org-set-local 'org-todo-keywords-1 nil)
4484 (org-set-local 'org-done-keywords nil)
4485 (org-set-local 'org-todo-heads nil)
4486 (org-set-local 'org-todo-sets nil)
4487 (org-set-local 'org-todo-log-states nil)
4488 (org-set-local 'org-file-properties nil)
4489 (org-set-local 'org-file-tags nil)
4490 (let ((re (org-make-options-regexp
4491 '("CATEGORY" "TODO" "COLUMNS"
4492 "STARTUP" "ARCHIVE" "FILETAGS" "TAGS" "LINK" "PRIORITIES"
4493 "CONSTANTS" "PROPERTY" "DRAWERS" "SETUPFILE" "LATEX_CLASS"
4494 "OPTIONS")
4495 "\\(?:[a-zA-Z][0-9a-zA-Z_]*_TODO\\)"))
4496 (splitre "[ \t]+")
4497 (scripts org-use-sub-superscripts)
4498 kwds kws0 kwsa key log value cat arch tags const links hw dws
4499 tail sep kws1 prio props ftags drawers beamer-p
4500 ext-setup-or-nil setup-contents (start 0))
4501 (save-excursion
4502 (save-restriction
4503 (widen)
4504 (goto-char (point-min))
4505 (while (or (and ext-setup-or-nil
4506 (string-match re ext-setup-or-nil start)
4507 (setq start (match-end 0)))
4508 (and (setq ext-setup-or-nil nil start 0)
4509 (re-search-forward re nil t)))
4510 (setq key (upcase (match-string 1 ext-setup-or-nil))
4511 value (org-match-string-no-properties 2 ext-setup-or-nil))
4512 (if (stringp value) (setq value (org-trim value)))
4513 (cond
4514 ((equal key "CATEGORY")
4515 (setq cat value))
4516 ((member key '("SEQ_TODO" "TODO"))
4517 (push (cons 'sequence (org-split-string value splitre)) kwds))
4518 ((equal key "TYP_TODO")
4519 (push (cons 'type (org-split-string value splitre)) kwds))
4520 ((string-match "\\`\\([a-zA-Z][0-9a-zA-Z_]*\\)_TODO\\'" key)
4521 ;; general TODO-like setup
4522 (push (cons (intern (downcase (match-string 1 key)))
4523 (org-split-string value splitre)) kwds))
4524 ((equal key "TAGS")
4525 (setq tags (append tags (if tags '("\\n") nil)
4526 (org-split-string value splitre))))
4527 ((equal key "COLUMNS")
4528 (org-set-local 'org-columns-default-format value))
4529 ((equal key "LINK")
4530 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value)
4531 (push (cons (match-string 1 value)
4532 (org-trim (match-string 2 value)))
4533 links)))
4534 ((equal key "PRIORITIES")
4535 (setq prio (org-split-string value " +")))
4536 ((equal key "PROPERTY")
4537 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
4538 (setq props (org-update-property-plist (match-string 1 value)
4539 (match-string 2 value)
4540 props))))
4541 ((equal key "FILETAGS")
4542 (when (string-match "\\S-" value)
4543 (setq ftags
4544 (append
4545 ftags
4546 (apply 'append
4547 (mapcar (lambda (x) (org-split-string x ":"))
4548 (org-split-string value)))))))
4549 ((equal key "DRAWERS")
4550 (setq drawers (org-split-string value splitre)))
4551 ((equal key "CONSTANTS")
4552 (setq const (append const (org-split-string value splitre))))
4553 ((equal key "STARTUP")
4554 (let ((opts (org-split-string value splitre))
4555 l var val)
4556 (while (setq l (pop opts))
4557 (when (setq l (assoc l org-startup-options))
4558 (setq var (nth 1 l) val (nth 2 l))
4559 (if (not (nth 3 l))
4560 (set (make-local-variable var) val)
4561 (if (not (listp (symbol-value var)))
4562 (set (make-local-variable var) nil))
4563 (set (make-local-variable var) (symbol-value var))
4564 (add-to-list var val))))))
4565 ((equal key "ARCHIVE")
4566 (setq arch value)
4567 (remove-text-properties 0 (length arch)
4568 '(face t fontified t) arch))
4569 ((equal key "LATEX_CLASS")
4570 (setq beamer-p (equal value "beamer")))
4571 ((equal key "OPTIONS")
4572 (if (string-match "\\([ \t]\\|\\`\\)\\^:\\(t\\|nil\\|{}\\)" value)
4573 (setq scripts (read (match-string 2 value)))))
4574 ((equal key "SETUPFILE")
4575 (setq setup-contents (org-file-contents
4576 (expand-file-name
4577 (org-remove-double-quotes value))
4578 'noerror))
4579 (if (not ext-setup-or-nil)
4580 (setq ext-setup-or-nil setup-contents start 0)
4581 (setq ext-setup-or-nil
4582 (concat (substring ext-setup-or-nil 0 start)
4583 "\n" setup-contents "\n"
4584 (substring ext-setup-or-nil start)))))))
4585 ;; search for property blocks
4586 (goto-char (point-min))
4587 (while (re-search-forward org-block-regexp nil t)
4588 (when (equal "PROPERTY" (upcase (match-string 1)))
4589 (setq value (replace-regexp-in-string
4590 "[\n\r]" " " (match-string 4)))
4591 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
4592 (setq props (org-update-property-plist (match-string 1 value)
4593 (match-string 2 value)
4594 props)))))))
4595 (org-set-local 'org-use-sub-superscripts scripts)
4596 (when cat
4597 (org-set-local 'org-category (intern cat))
4598 (push (cons "CATEGORY" cat) props))
4599 (when prio
4600 (if (< (length prio) 3) (setq prio '("A" "C" "B")))
4601 (setq prio (mapcar 'string-to-char prio))
4602 (org-set-local 'org-highest-priority (nth 0 prio))
4603 (org-set-local 'org-lowest-priority (nth 1 prio))
4604 (org-set-local 'org-default-priority (nth 2 prio)))
4605 (and props (org-set-local 'org-file-properties (nreverse props)))
4606 (and ftags (org-set-local 'org-file-tags
4607 (mapcar 'org-add-prop-inherited ftags)))
4608 (and drawers (org-set-local 'org-drawers drawers))
4609 (and arch (org-set-local 'org-archive-location arch))
4610 (and links (setq org-link-abbrev-alist-local (nreverse links)))
4611 ;; Process the TODO keywords
4612 (unless kwds
4613 ;; Use the global values as if they had been given locally.
4614 (setq kwds (default-value 'org-todo-keywords))
4615 (if (stringp (car kwds))
4616 (setq kwds (list (cons org-todo-interpretation
4617 (default-value 'org-todo-keywords)))))
4618 (setq kwds (reverse kwds)))
4619 (setq kwds (nreverse kwds))
4620 (let (inter kws kw)
4621 (while (setq kws (pop kwds))
4622 (let ((kws (or
4623 (run-hook-with-args-until-success
4624 'org-todo-setup-filter-hook kws)
4625 kws)))
4626 (setq inter (pop kws) sep (member "|" kws)
4627 kws0 (delete "|" (copy-sequence kws))
4628 kwsa nil
4629 kws1 (mapcar
4630 (lambda (x)
4631 ;; 1 2
4632 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x)
4633 (progn
4634 (setq kw (match-string 1 x)
4635 key (and (match-end 2) (match-string 2 x))
4636 log (org-extract-log-state-settings x))
4637 (push (cons kw (and key (string-to-char key))) kwsa)
4638 (and log (push log org-todo-log-states))
4640 (error "Invalid TODO keyword %s" x)))
4641 kws0)
4642 kwsa (if kwsa (append '((:startgroup))
4643 (nreverse kwsa)
4644 '((:endgroup))))
4645 hw (car kws1)
4646 dws (if sep (org-remove-keyword-keys (cdr sep)) (last kws1))
4647 tail (list inter hw (car dws) (org-last dws))))
4648 (add-to-list 'org-todo-heads hw 'append)
4649 (push kws1 org-todo-sets)
4650 (setq org-done-keywords (append org-done-keywords dws nil))
4651 (setq org-todo-key-alist (append org-todo-key-alist kwsa))
4652 (mapc (lambda (x) (push (cons x tail) org-todo-kwd-alist)) kws1)
4653 (setq org-todo-keywords-1 (append org-todo-keywords-1 kws1 nil)))
4654 (setq org-todo-sets (nreverse org-todo-sets)
4655 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
4656 org-todo-key-trigger (delq nil (mapcar 'cdr org-todo-key-alist))
4657 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist)))
4658 ;; Process the constants
4659 (when const
4660 (let (e cst)
4661 (while (setq e (pop const))
4662 (if (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)" e)
4663 (push (cons (match-string 1 e) (match-string 2 e)) cst)))
4664 (setq org-table-formula-constants-local cst)))
4666 ;; Process the tags.
4667 (when tags
4668 (let (e tgs)
4669 (while (setq e (pop tags))
4670 (cond
4671 ((equal e "{") (push '(:startgroup) tgs))
4672 ((equal e "}") (push '(:endgroup) tgs))
4673 ((equal e "\\n") (push '(:newline) tgs))
4674 ((string-match (org-re "^\\([[:alnum:]_@#%]+\\)(\\(.\\))$") e)
4675 (push (cons (match-string 1 e)
4676 (string-to-char (match-string 2 e)))
4677 tgs))
4678 (t (push (list e) tgs))))
4679 (org-set-local 'org-tag-alist nil)
4680 (while (setq e (pop tgs))
4681 (or (and (stringp (car e))
4682 (assoc (car e) org-tag-alist))
4683 (push e org-tag-alist)))))
4685 ;; Compute the regular expressions and other local variables.
4686 ;; Using `org-outline-regexp-bol' would complicate them much,
4687 ;; because of the fixed white space at the end of that string.
4688 (if (not org-done-keywords)
4689 (setq org-done-keywords (and org-todo-keywords-1
4690 (list (org-last org-todo-keywords-1)))))
4691 (setq org-ds-keyword-length (+ 2 (max (length org-deadline-string)
4692 (length org-scheduled-string)
4693 (length org-clock-string)
4694 (length org-closed-string)))
4695 org-drawer-regexp
4696 (concat "^[ \t]*:\\("
4697 (mapconcat 'regexp-quote org-drawers "\\|")
4698 "\\):[ \t]*$")
4699 org-not-done-keywords
4700 (org-delete-all org-done-keywords (copy-sequence org-todo-keywords-1))
4701 org-todo-regexp
4702 (concat "\\("
4703 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
4704 "\\)")
4705 org-not-done-regexp
4706 (concat "\\("
4707 (mapconcat 'regexp-quote org-not-done-keywords "\\|")
4708 "\\)")
4709 org-not-done-heading-regexp
4710 (format org-heading-keyword-regexp-format org-not-done-regexp)
4711 org-todo-line-regexp
4712 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
4713 org-complex-heading-regexp
4714 (concat "^\\(\\*+\\)"
4715 "\\(?: +" org-todo-regexp "\\)?"
4716 "\\(?: +\\(\\[#.\\]\\)\\)?"
4717 "\\(?: +\\(.*?\\)\\)?"
4718 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
4719 "[ \t]*$")
4720 org-complex-heading-regexp-format
4721 (concat "^\\(\\*+\\)"
4722 "\\(?: +" org-todo-regexp "\\)?"
4723 "\\(?: +\\(\\[#.\\]\\)\\)?"
4724 "\\(?: +"
4725 ;; Stats cookies can be stuck to body.
4726 "\\(?:\\[[0-9%%/]+\\] *\\)?"
4727 "\\(%s\\)"
4728 "\\(?: *\\[[0-9%%/]+\\]\\)?"
4729 "\\)"
4730 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
4731 "[ \t]*$")
4732 org-todo-line-tags-regexp
4733 (concat "^\\(\\*+\\)"
4734 "\\(?: +" org-todo-regexp "\\)?"
4735 "\\(?: +\\(.*?\\)\\)?"
4736 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
4737 "[ \t]*$")
4738 org-deadline-regexp (concat "\\<" org-deadline-string)
4739 org-deadline-time-regexp
4740 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
4741 org-deadline-line-regexp
4742 (concat "\\<\\(" org-deadline-string "\\).*")
4743 org-scheduled-regexp
4744 (concat "\\<" org-scheduled-string)
4745 org-scheduled-time-regexp
4746 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
4747 org-closed-time-regexp
4748 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
4749 org-keyword-time-regexp
4750 (concat "\\<\\(" org-scheduled-string
4751 "\\|" org-deadline-string
4752 "\\|" org-closed-string
4753 "\\|" org-clock-string "\\)"
4754 " *[[<]\\([^]>]+\\)[]>]")
4755 org-keyword-time-not-clock-regexp
4756 (concat "\\<\\(" org-scheduled-string
4757 "\\|" org-deadline-string
4758 "\\|" org-closed-string
4759 "\\)"
4760 " *[[<]\\([^]>]+\\)[]>]")
4761 org-maybe-keyword-time-regexp
4762 (concat "\\(\\<\\(" org-scheduled-string
4763 "\\|" org-deadline-string
4764 "\\|" org-closed-string
4765 "\\|" org-clock-string "\\)\\)?"
4766 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]\\|<%%([^\r\n>]*>\\)")
4767 org-planning-or-clock-line-re
4768 (concat "\\(?:^[ \t]*\\(" org-scheduled-string
4769 "\\|" org-deadline-string
4770 "\\|" org-closed-string "\\|" org-clock-string
4771 "\\)\\>\\)")
4772 org-all-time-keywords
4773 (mapcar (lambda (w) (substring w 0 -1))
4774 (list org-scheduled-string org-deadline-string
4775 org-clock-string org-closed-string))
4777 (org-compute-latex-and-specials-regexp)
4778 (org-set-font-lock-defaults))))
4780 (defun org-file-contents (file &optional noerror)
4781 "Return the contents of FILE, as a string."
4782 (if (or (not file)
4783 (not (file-readable-p file)))
4784 (if noerror
4785 (progn
4786 (message "Cannot read file \"%s\"" file)
4787 (ding) (sit-for 2)
4789 (error "Cannot read file \"%s\"" file))
4790 (with-temp-buffer
4791 (insert-file-contents file)
4792 (buffer-string))))
4794 (defun org-extract-log-state-settings (x)
4795 "Extract the log state setting from a TODO keyword string.
4796 This will extract info from a string like \"WAIT(w@/!)\"."
4797 (let (kw key log1 log2)
4798 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
4799 (setq kw (match-string 1 x)
4800 key (and (match-end 2) (match-string 2 x))
4801 log1 (and (match-end 3) (match-string 3 x))
4802 log2 (and (match-end 4) (match-string 4 x)))
4803 (and (or log1 log2)
4804 (list kw
4805 (and log1 (if (equal log1 "!") 'time 'note))
4806 (and log2 (if (equal log2 "!") 'time 'note)))))))
4808 (defun org-remove-keyword-keys (list)
4809 "Remove a pair of parenthesis at the end of each string in LIST."
4810 (mapcar (lambda (x)
4811 (if (string-match "(.*)$" x)
4812 (substring x 0 (match-beginning 0))
4814 list))
4816 (defun org-assign-fast-keys (alist)
4817 "Assign fast keys to a keyword-key alist.
4818 Respect keys that are already there."
4819 (let (new e (alt ?0))
4820 (while (setq e (pop alist))
4821 (if (or (memq (car e) '(:newline :endgroup :startgroup))
4822 (cdr e)) ;; Key already assigned.
4823 (push e new)
4824 (let ((clist (string-to-list (downcase (car e))))
4825 (used (append new alist)))
4826 (when (= (car clist) ?@)
4827 (pop clist))
4828 (while (and clist (rassoc (car clist) used))
4829 (pop clist))
4830 (unless clist
4831 (while (rassoc alt used)
4832 (incf alt)))
4833 (push (cons (car e) (or (car clist) alt)) new))))
4834 (nreverse new)))
4836 ;;; Some variables used in various places
4838 (defvar org-window-configuration nil
4839 "Used in various places to store a window configuration.")
4840 (defvar org-selected-window nil
4841 "Used in various places to store a window configuration.")
4842 (defvar org-finish-function nil
4843 "Function to be called when `C-c C-c' is used.
4844 This is for getting out of special buffers like remember.")
4847 ;; FIXME: Occasionally check by commenting these, to make sure
4848 ;; no other functions uses these, forgetting to let-bind them.
4849 (defvar entry)
4850 (defvar last-state)
4851 (defvar date)
4853 ;; Defined somewhere in this file, but used before definition.
4854 (defvar org-entities) ;; defined in org-entities.el
4855 (defvar org-struct-menu)
4856 (defvar org-org-menu)
4857 (defvar org-tbl-menu)
4859 ;;;; Define the Org-mode
4861 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
4862 (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"))
4865 ;; We use a before-change function to check if a table might need
4866 ;; an update.
4867 (defvar org-table-may-need-update t
4868 "Indicates that a table might need an update.
4869 This variable is set by `org-before-change-function'.
4870 `org-table-align' sets it back to nil.")
4871 (defun org-before-change-function (beg end)
4872 "Every change indicates that a table might need an update."
4873 (setq org-table-may-need-update t))
4874 (defvar org-mode-map)
4875 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4876 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
4877 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
4878 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
4879 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
4880 (defvar org-table-buffer-is-an nil)
4882 ;; `org-outline-regexp' ought to be a defconst but is let-binding in
4883 ;; some places -- e.g. see the macro org-with-limited-levels.
4885 ;; In Org buffers, the value of `outline-regexp' is that of
4886 ;; `org-outline-regexp'. The only function still directly relying on
4887 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
4888 ;; job when `orgstruct-mode' is active.
4889 (defvar org-outline-regexp "\\*+ "
4890 "Regexp to match Org headlines.")
4891 (defconst org-outline-regexp-bol "^\\*+ "
4892 "Regexp to match Org headlines.
4893 This is similar to `org-outline-regexp' but additionally makes
4894 sure that we are at the beginning of the line.")
4896 (defconst org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
4897 "Matches an headline, putting stars and text into groups.
4898 Stars are put in group 1 and the trimmed body in group 2.")
4900 ;;;###autoload
4901 (define-derived-mode org-mode outline-mode "Org"
4902 "Outline-based notes management and organizer, alias
4903 \"Carsten's outline-mode for keeping track of everything.\"
4905 Org-mode develops organizational tasks around a NOTES file which
4906 contains information about projects as plain text. Org-mode is
4907 implemented on top of outline-mode, which is ideal to keep the content
4908 of large files well structured. It supports ToDo items, deadlines and
4909 time stamps, which magically appear in the diary listing of the Emacs
4910 calendar. Tables are easily created with a built-in table editor.
4911 Plain text URL-like links connect to websites, emails (VM), Usenet
4912 messages (Gnus), BBDB entries, and any files related to the project.
4913 For printing and sharing of notes, an Org-mode file (or a part of it)
4914 can be exported as a structured ASCII or HTML file.
4916 The following commands are available:
4918 \\{org-mode-map}"
4920 ;; Get rid of Outline menus, they are not needed
4921 ;; Need to do this here because define-derived-mode sets up
4922 ;; the keymap so late. Still, it is a waste to call this each time
4923 ;; we switch another buffer into org-mode.
4924 (if (featurep 'xemacs)
4925 (when (boundp 'outline-mode-menu-heading)
4926 ;; Assume this is Greg's port, it uses easymenu
4927 (easy-menu-remove outline-mode-menu-heading)
4928 (easy-menu-remove outline-mode-menu-show)
4929 (easy-menu-remove outline-mode-menu-hide))
4930 (define-key org-mode-map [menu-bar headings] 'undefined)
4931 (define-key org-mode-map [menu-bar hide] 'undefined)
4932 (define-key org-mode-map [menu-bar show] 'undefined))
4934 (org-load-modules-maybe)
4935 (easy-menu-add org-org-menu)
4936 (easy-menu-add org-tbl-menu)
4937 (org-install-agenda-files-menu)
4938 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
4939 (add-to-invisibility-spec '(org-cwidth))
4940 (add-to-invisibility-spec '(org-hide-block . t))
4941 (when (featurep 'xemacs)
4942 (org-set-local 'line-move-ignore-invisible t))
4943 (org-set-local 'outline-regexp org-outline-regexp)
4944 (org-set-local 'outline-level 'org-outline-level)
4945 (setq bidi-paragraph-direction 'left-to-right)
4946 (when (and org-ellipsis
4947 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
4948 (fboundp 'make-glyph-code))
4949 (unless org-display-table
4950 (setq org-display-table (make-display-table)))
4951 (set-display-table-slot
4952 org-display-table 4
4953 (vconcat (mapcar
4954 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
4955 org-ellipsis)))
4956 (if (stringp org-ellipsis) org-ellipsis "..."))))
4957 (setq buffer-display-table org-display-table))
4958 (org-set-regexps-and-options)
4959 (when (and org-tag-faces (not org-tags-special-faces-re))
4960 ;; tag faces set outside customize.... force initialization.
4961 (org-set-tag-faces 'org-tag-faces org-tag-faces))
4962 ;; Calc embedded
4963 (org-set-local 'calc-embedded-open-mode "# ")
4964 (modify-syntax-entry ?@ "w")
4965 (if org-startup-truncated (setq truncate-lines t))
4966 (org-set-local 'font-lock-unfontify-region-function
4967 'org-unfontify-region)
4968 ;; Activate before-change-function
4969 (org-set-local 'org-table-may-need-update t)
4970 (org-add-hook 'before-change-functions 'org-before-change-function nil
4971 'local)
4972 ;; Check for running clock before killing a buffer
4973 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
4974 ;; Paragraphs and auto-filling
4975 (org-set-autofill-regexps)
4976 (setq indent-line-function 'org-indent-line-function)
4977 (org-update-radio-target-regexp)
4978 ;; Beginning/end of defun
4979 (org-set-local 'beginning-of-defun-function 'org-beginning-of-defun)
4980 (org-set-local 'end-of-defun-function 'org-end-of-defun)
4981 ;; Next error for sparse trees
4982 (org-set-local 'next-error-function 'org-occur-next-match)
4983 ;; Make sure dependence stuff works reliably, even for users who set it
4984 ;; too late :-(
4985 (if org-enforce-todo-dependencies
4986 (add-hook 'org-blocker-hook
4987 'org-block-todo-from-children-or-siblings-or-parent)
4988 (remove-hook 'org-blocker-hook
4989 'org-block-todo-from-children-or-siblings-or-parent))
4990 (if org-enforce-todo-checkbox-dependencies
4991 (add-hook 'org-blocker-hook
4992 'org-block-todo-from-checkboxes)
4993 (remove-hook 'org-blocker-hook
4994 'org-block-todo-from-checkboxes))
4996 ;; Comment characters
4997 (org-set-local 'comment-start "#")
4998 (org-set-local 'comment-padding " ")
5000 ;; Align options lines
5001 (org-set-local
5002 'align-mode-rules-list
5003 '((org-in-buffer-settings
5004 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5005 (modes . '(org-mode)))))
5007 ;; Imenu
5008 (org-set-local 'imenu-create-index-function
5009 'org-imenu-get-tree)
5011 ;; Make isearch reveal context
5012 (if (or (featurep 'xemacs)
5013 (not (boundp 'outline-isearch-open-invisible-function)))
5014 ;; Emacs 21 and XEmacs make use of the hook
5015 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5016 ;; Emacs 22 deals with this through a special variable
5017 (org-set-local 'outline-isearch-open-invisible-function
5018 (lambda (&rest ignore) (org-show-context 'isearch))))
5020 ;; Turn on org-beamer-mode?
5021 (and org-startup-with-beamer-mode (org-beamer-mode 1))
5023 ;; Setup the pcomplete hooks
5024 (set (make-local-variable 'pcomplete-command-completion-function)
5025 'org-pcomplete-initial)
5026 (set (make-local-variable 'pcomplete-command-name-function)
5027 'org-command-at-point)
5028 (set (make-local-variable 'pcomplete-default-completion-function)
5029 'ignore)
5030 (set (make-local-variable 'pcomplete-parse-arguments-function)
5031 'org-parse-arguments)
5032 (set (make-local-variable 'pcomplete-termination-string) "")
5033 (set (make-local-variable 'face-remapping-alist)
5034 '((default org-default)))
5036 ;; If empty file that did not turn on org-mode automatically, make it to.
5037 (if (and org-insert-mode-line-in-empty-file
5038 (org-called-interactively-p 'any)
5039 (= (point-min) (point-max)))
5040 (insert "# -*- mode: org -*-\n\n"))
5041 (unless org-inhibit-startup
5042 (when org-startup-align-all-tables
5043 (let ((bmp (buffer-modified-p)))
5044 (org-table-map-tables 'org-table-align 'quietly)
5045 (set-buffer-modified-p bmp)))
5046 (when org-startup-with-inline-images
5047 (org-display-inline-images))
5048 (when org-startup-indented
5049 (require 'org-indent)
5050 (org-indent-mode 1))
5051 (unless org-inhibit-startup-visibility-stuff
5052 (org-set-startup-visibility))))
5054 (when (fboundp 'abbrev-table-put)
5055 (abbrev-table-put org-mode-abbrev-table
5056 :parents (list text-mode-abbrev-table)))
5058 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
5060 (defun org-current-time ()
5061 "Current time, possibly rounded to `org-time-stamp-rounding-minutes'."
5062 (if (> (car org-time-stamp-rounding-minutes) 1)
5063 (let ((r (car org-time-stamp-rounding-minutes))
5064 (time (decode-time)))
5065 (apply 'encode-time
5066 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5067 (nthcdr 2 time))))
5068 (current-time)))
5070 (defun org-today ()
5071 "Return today date, considering `org-extend-today-until'."
5072 (time-to-days
5073 (time-subtract (current-time)
5074 (list 0 (* 3600 org-extend-today-until) 0))))
5076 ;;;; Font-Lock stuff, including the activators
5078 (defvar org-mouse-map (make-sparse-keymap))
5079 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5080 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5081 (when org-mouse-1-follows-link
5082 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5083 (when org-tab-follows-link
5084 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5085 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5087 (require 'font-lock)
5089 (defconst org-non-link-chars "]\t\n\r<>")
5090 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "news"
5091 "shell" "elisp" "doi" "message"))
5092 (defvar org-link-types-re nil
5093 "Matches a link that has a url-like prefix like \"http:\"")
5094 (defvar org-link-re-with-space nil
5095 "Matches a link with spaces, optional angular brackets around it.")
5096 (defvar org-link-re-with-space2 nil
5097 "Matches a link with spaces, optional angular brackets around it.")
5098 (defvar org-link-re-with-space3 nil
5099 "Matches a link with spaces, only for internal part in bracket links.")
5100 (defvar org-angle-link-re nil
5101 "Matches link with angular brackets, spaces are allowed.")
5102 (defvar org-plain-link-re nil
5103 "Matches plain link, without spaces.")
5104 (defvar org-bracket-link-regexp nil
5105 "Matches a link in double brackets.")
5106 (defvar org-bracket-link-analytic-regexp nil
5107 "Regular expression used to analyze links.
5108 Here is what the match groups contain after a match:
5109 1: http:
5110 2: http
5111 3: path
5112 4: [desc]
5113 5: desc")
5114 (defvar org-bracket-link-analytic-regexp++ nil
5115 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5116 (defvar org-any-link-re nil
5117 "Regular expression matching any link.")
5119 (defcustom org-match-sexp-depth 3
5120 "Number of stacked braces for sub/superscript matching.
5121 This has to be set before loading org.el to be effective."
5122 :group 'org-export-translation ; ??????????????????????????/
5123 :type 'integer)
5125 (defun org-create-multibrace-regexp (left right n)
5126 "Create a regular expression which will match a balanced sexp.
5127 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5128 as single character strings.
5129 The regexp returned will match the entire expression including the
5130 delimiters. It will also define a single group which contains the
5131 match except for the outermost delimiters. The maximum depth of
5132 stacked delimiters is N. Escaping delimiters is not possible."
5133 (let* ((nothing (concat "[^" left right "]*?"))
5134 (or "\\|")
5135 (re nothing)
5136 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5137 (while (> n 1)
5138 (setq n (1- n)
5139 re (concat re or next)
5140 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5141 (concat left "\\(" re "\\)" right)))
5143 (defvar org-match-substring-regexp
5144 (concat
5145 "\\([^\\]\\|^\\)\\([_^]\\)\\("
5146 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5147 "\\|"
5148 "\\(" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5149 "\\|"
5150 "\\(\\(?:\\*\\|[-+]?[^-+*!@#$%^_ \t\r\n,:\"?<>~;./{}=()]+\\)\\)\\)")
5151 "The regular expression matching a sub- or superscript.")
5153 (defvar org-match-substring-with-braces-regexp
5154 (concat
5155 "\\([^\\]\\|^\\)\\([_^]\\)\\("
5156 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5157 "\\)")
5158 "The regular expression matching a sub- or superscript, forcing braces.")
5160 (defun org-make-link-regexps ()
5161 "Update the link regular expressions.
5162 This should be called after the variable `org-link-types' has changed."
5163 (setq org-link-types-re
5164 (concat
5165 "\\`\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):")
5166 org-link-re-with-space
5167 (concat
5168 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5169 "\\([^" org-non-link-chars " ]"
5170 "[^" org-non-link-chars "]*"
5171 "[^" org-non-link-chars " ]\\)>?")
5172 org-link-re-with-space2
5173 (concat
5174 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5175 "\\([^" org-non-link-chars " ]"
5176 "[^\t\n\r]*"
5177 "[^" org-non-link-chars " ]\\)>?")
5178 org-link-re-with-space3
5179 (concat
5180 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5181 "\\([^" org-non-link-chars " ]"
5182 "[^\t\n\r]*\\)")
5183 org-angle-link-re
5184 (concat
5185 "<\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5186 "\\([^" org-non-link-chars " ]"
5187 "[^" org-non-link-chars "]*"
5188 "\\)>")
5189 org-plain-link-re
5190 (concat
5191 "\\<\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5192 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5193 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5194 org-bracket-link-regexp
5195 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5196 org-bracket-link-analytic-regexp
5197 (concat
5198 "\\[\\["
5199 "\\(\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):\\)?"
5200 "\\([^]]+\\)"
5201 "\\]"
5202 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5203 "\\]")
5204 org-bracket-link-analytic-regexp++
5205 (concat
5206 "\\[\\["
5207 "\\(\\(" (mapconcat 'regexp-quote (cons "coderef" org-link-types) "\\|") "\\):\\)?"
5208 "\\([^]]+\\)"
5209 "\\]"
5210 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5211 "\\]")
5212 org-any-link-re
5213 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5214 org-angle-link-re "\\)\\|\\("
5215 org-plain-link-re "\\)")))
5217 (org-make-link-regexps)
5219 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
5220 "Regular expression for fast time stamp matching.")
5221 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
5222 "Regular expression for fast time stamp matching.")
5223 (defconst org-ts-regexp0 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
5224 "Regular expression matching time strings for analysis.
5225 This one does not require the space after the date, so it can be used
5226 on a string that terminates immediately after the date.")
5227 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
5228 "Regular expression matching time strings for analysis.")
5229 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
5230 "Regular expression matching time stamps, with groups.")
5231 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
5232 "Regular expression matching time stamps (also [..]), with groups.")
5233 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
5234 "Regular expression matching a time stamp range.")
5235 (defconst org-tr-regexp-both
5236 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
5237 "Regular expression matching a time stamp range.")
5238 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
5239 org-ts-regexp "\\)?")
5240 "Regular expression matching a time stamp or time stamp range.")
5241 (defconst org-tsr-regexp-both (concat org-ts-regexp-both "\\(--?-?"
5242 org-ts-regexp-both "\\)?")
5243 "Regular expression matching a time stamp or time stamp range.
5244 The time stamps may be either active or inactive.")
5246 (defvar org-emph-face nil)
5248 (defun org-do-emphasis-faces (limit)
5249 "Run through the buffer and add overlays to emphasized strings."
5250 (let (rtn a)
5251 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5252 (if (not (= (char-after (match-beginning 3))
5253 (char-after (match-beginning 4))))
5254 (progn
5255 (setq rtn t)
5256 (setq a (assoc (match-string 3) org-emphasis-alist))
5257 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5258 'face
5259 (nth 1 a))
5260 (and (nth 4 a)
5261 (org-remove-flyspell-overlays-in
5262 (match-beginning 0) (match-end 0)))
5263 (add-text-properties (match-beginning 2) (match-end 2)
5264 '(font-lock-multiline t org-emphasis t))
5265 (when org-hide-emphasis-markers
5266 (add-text-properties (match-end 4) (match-beginning 5)
5267 '(invisible org-link))
5268 (add-text-properties (match-beginning 3) (match-end 3)
5269 '(invisible org-link)))))
5270 (backward-char 1))
5271 rtn))
5273 (defun org-emphasize (&optional char)
5274 "Insert or change an emphasis, i.e. a font like bold or italic.
5275 If there is an active region, change that region to a new emphasis.
5276 If there is no region, just insert the marker characters and position
5277 the cursor between them.
5278 CHAR should be either the marker character, or the first character of the
5279 HTML tag associated with that emphasis. If CHAR is a space, the means
5280 to remove the emphasis of the selected region.
5281 If char is not given (for example in an interactive call) it
5282 will be prompted for."
5283 (interactive)
5284 (let ((eal org-emphasis-alist) e det
5285 (erc org-emphasis-regexp-components)
5286 (prompt "")
5287 (string "") beg end move tag c s)
5288 (if (org-region-active-p)
5289 (setq beg (region-beginning) end (region-end)
5290 string (buffer-substring beg end))
5291 (setq move t))
5293 (while (setq e (pop eal))
5294 (setq tag (car (org-split-string (nth 2 e) "[ <>/]+"))
5295 c (aref tag 0))
5296 (push (cons c (string-to-char (car e))) det)
5297 (setq prompt (concat prompt (format " [%s%c]%s" (car e) c
5298 (substring tag 1)))))
5299 (setq det (nreverse det))
5300 (unless char
5301 (message "%s" (concat "Emphasis marker or tag:" prompt))
5302 (setq char (read-char-exclusive)))
5303 (setq char (or (cdr (assoc char det)) char))
5304 (if (equal char ?\ )
5305 (setq s "" move nil)
5306 (unless (assoc (char-to-string char) org-emphasis-alist)
5307 (error "No such emphasis marker: \"%c\"" char))
5308 (setq s (char-to-string char)))
5309 (while (and (> (length string) 1)
5310 (equal (substring string 0 1) (substring string -1))
5311 (assoc (substring string 0 1) org-emphasis-alist))
5312 (setq string (substring string 1 -1)))
5313 (setq string (concat s string s))
5314 (if beg (delete-region beg end))
5315 (unless (or (bolp)
5316 (string-match (concat "[" (nth 0 erc) "\n]")
5317 (char-to-string (char-before (point)))))
5318 (insert " "))
5319 (unless (or (eobp)
5320 (string-match (concat "[" (nth 1 erc) "\n]")
5321 (char-to-string (char-after (point)))))
5322 (insert " ") (backward-char 1))
5323 (insert string)
5324 (and move (backward-char 1))))
5326 (defconst org-nonsticky-props
5327 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text))
5329 (defsubst org-rear-nonsticky-at (pos)
5330 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5332 (defun org-activate-plain-links (limit)
5333 "Run through the buffer and add overlays to links."
5334 (catch 'exit
5335 (let (f)
5336 (if (re-search-forward org-plain-link-re limit t)
5337 (progn
5338 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5339 (setq f (get-text-property (match-beginning 0) 'face))
5340 (if (or (eq f 'org-tag)
5341 (and (listp f) (memq 'org-tag f)))
5343 (add-text-properties (match-beginning 0) (match-end 0)
5344 (list 'mouse-face 'highlight
5345 'face 'org-link
5346 'keymap org-mouse-map))
5347 (org-rear-nonsticky-at (match-end 0)))
5348 t)))))
5350 (defun org-activate-code (limit)
5351 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5352 (progn
5353 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5354 (remove-text-properties (match-beginning 0) (match-end 0)
5355 '(display t invisible t intangible t))
5356 t)))
5358 (defcustom org-src-fontify-natively nil
5359 "When non-nil, fontify code in code blocks."
5360 :type 'boolean
5361 :group 'org-appearance
5362 :group 'org-babel)
5364 (defun org-fontify-meta-lines-and-blocks (limit)
5365 (condition-case nil
5366 (org-fontify-meta-lines-and-blocks-1 limit)
5367 (error (message "org-mode fontification error"))))
5369 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5370 "Fontify #+ lines and blocks, in the correct ways."
5371 (let ((case-fold-search t))
5372 (if (re-search-forward
5373 "^\\([ \t]*#\\+\\(\\([a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5374 limit t)
5375 (let ((beg (match-beginning 0))
5376 (block-start (match-end 0))
5377 (block-end nil)
5378 (lang (match-string 7))
5379 (beg1 (line-beginning-position 2))
5380 (dc1 (downcase (match-string 2)))
5381 (dc3 (downcase (match-string 3)))
5382 end end1 quoting block-type ovl)
5383 (cond
5384 ((member dc1 '("html:" "ascii:" "latex:" "docbook:"))
5385 ;; a single line of backend-specific content
5386 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5387 (remove-text-properties (match-beginning 0) (match-end 0)
5388 '(display t invisible t intangible t))
5389 (add-text-properties (match-beginning 1) (match-end 3)
5390 '(font-lock-fontified t face org-meta-line))
5391 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5392 '(font-lock-fontified t face org-block))
5393 ; for backend-specific code
5395 ((and (match-end 4) (equal dc3 "begin"))
5396 ;; Truly a block
5397 (setq block-type (downcase (match-string 5))
5398 quoting (member block-type org-protecting-blocks))
5399 (when (re-search-forward
5400 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5401 nil t) ;; on purpose, we look further than LIMIT
5402 (setq end (match-end 0) end1 (1- (match-beginning 0)))
5403 (setq block-end (match-beginning 0))
5404 (when quoting
5405 (remove-text-properties beg end
5406 '(display t invisible t intangible t)))
5407 (add-text-properties
5408 beg end
5409 '(font-lock-fontified t font-lock-multiline t))
5410 (add-text-properties beg beg1 '(face org-meta-line))
5411 (add-text-properties end1 (min (point-max) (1+ end))
5412 '(face org-meta-line)) ; for end_src
5413 (cond
5414 ((and lang (not (string= lang "")) org-src-fontify-natively)
5415 (org-src-font-lock-fontify-block lang block-start block-end)
5416 ;; remove old background overlays
5417 (mapc (lambda (ov)
5418 (if (eq (overlay-get ov 'face) 'org-block-background)
5419 (delete-overlay ov)))
5420 (overlays-at (/ (+ beg1 block-end) 2)))
5421 ;; add a background overlay
5422 (setq ovl (make-overlay beg1 block-end))
5423 (overlay-put ovl 'face 'org-block-background)
5424 (overlay-put ovl 'evaporate t)) ;; make it go away when empty
5425 (quoting
5426 (add-text-properties beg1 (min (point-max) (1+ end1))
5427 '(face org-block))) ; end of source block
5428 ((not org-fontify-quote-and-verse-blocks))
5429 ((string= block-type "quote")
5430 (add-text-properties beg1 (1+ end1) '(face org-quote)))
5431 ((string= block-type "verse")
5432 (add-text-properties beg1 (1+ end1) '(face org-verse))))
5433 (add-text-properties beg beg1 '(face org-block-begin-line))
5434 (add-text-properties (1+ end) (1+ end1) '(face org-block-end-line))
5436 ((member dc1 '("title:" "author:" "email:" "date:"))
5437 (add-text-properties
5438 beg (match-end 3)
5439 (if (member (intern (substring dc1 0 -1)) org-hidden-keywords)
5440 '(font-lock-fontified t invisible t)
5441 '(font-lock-fontified t face org-document-info-keyword)))
5442 (add-text-properties
5443 (match-beginning 6) (match-end 6)
5444 (if (string-equal dc1 "title:")
5445 '(font-lock-fontified t face org-document-title)
5446 '(font-lock-fontified t face org-document-info))))
5447 ((not (member (char-after beg) '(?\ ?\t)))
5448 ;; just any other in-buffer setting, but not indented
5449 (add-text-properties
5450 beg (1+ (match-end 0))
5451 '(font-lock-fontified t face org-meta-line))
5453 ((or (member dc1 '("begin:" "end:" "caption:" "label:"
5454 "orgtbl:" "tblfm:" "tblname:" "results:"
5455 "call:" "header:" "headers:" "name:"))
5456 (and (match-end 4) (equal dc3 "attr")))
5457 (add-text-properties
5458 beg (match-end 0)
5459 '(font-lock-fontified t face org-meta-line))
5461 ((member dc3 '(" " ""))
5462 (add-text-properties
5463 beg (match-end 0)
5464 '(font-lock-fontified t face font-lock-comment-face)))
5465 (t nil))))))
5467 (defun org-activate-angle-links (limit)
5468 "Run through the buffer and add overlays to links."
5469 (if (re-search-forward org-angle-link-re limit t)
5470 (progn
5471 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5472 (add-text-properties (match-beginning 0) (match-end 0)
5473 (list 'mouse-face 'highlight
5474 'keymap org-mouse-map))
5475 (org-rear-nonsticky-at (match-end 0))
5476 t)))
5478 (defun org-activate-footnote-links (limit)
5479 "Run through the buffer and add overlays to footnotes."
5480 (let ((fn (org-footnote-next-reference-or-definition limit)))
5481 (when fn
5482 (let ((beg (nth 1 fn)) (end (nth 2 fn)))
5483 (org-remove-flyspell-overlays-in beg end)
5484 (add-text-properties beg end
5485 (list 'mouse-face 'highlight
5486 'keymap org-mouse-map
5487 'help-echo
5488 (if (= (point-at-bol) beg)
5489 "Footnote definition"
5490 "Footnote reference")
5491 'font-lock-fontified t
5492 'font-lock-multiline t
5493 'face 'org-footnote))))))
5495 (defun org-activate-bracket-links (limit)
5496 "Run through the buffer and add overlays to bracketed links."
5497 (if (re-search-forward org-bracket-link-regexp limit t)
5498 (let* ((help (concat "LINK: "
5499 (org-match-string-no-properties 1)))
5500 ;; FIXME: above we should remove the escapes.
5501 ;; but that requires another match, protecting match data,
5502 ;; a lot of overhead for font-lock.
5503 (ip (org-maybe-intangible
5504 (list 'invisible 'org-link
5505 'keymap org-mouse-map 'mouse-face 'highlight
5506 'font-lock-multiline t 'help-echo help)))
5507 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
5508 'font-lock-multiline t 'help-echo help)))
5509 ;; We need to remove the invisible property here. Table narrowing
5510 ;; may have made some of this invisible.
5511 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5512 (remove-text-properties (match-beginning 0) (match-end 0)
5513 '(invisible nil))
5514 (if (match-end 3)
5515 (progn
5516 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
5517 (org-rear-nonsticky-at (match-beginning 3))
5518 (add-text-properties (match-beginning 3) (match-end 3) vp)
5519 (org-rear-nonsticky-at (match-end 3))
5520 (add-text-properties (match-end 3) (match-end 0) ip)
5521 (org-rear-nonsticky-at (match-end 0)))
5522 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
5523 (org-rear-nonsticky-at (match-beginning 1))
5524 (add-text-properties (match-beginning 1) (match-end 1) vp)
5525 (org-rear-nonsticky-at (match-end 1))
5526 (add-text-properties (match-end 1) (match-end 0) ip)
5527 (org-rear-nonsticky-at (match-end 0)))
5528 t)))
5530 (defun org-activate-dates (limit)
5531 "Run through the buffer and add overlays to dates."
5532 (if (re-search-forward org-tsr-regexp-both limit t)
5533 (progn
5534 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5535 (add-text-properties (match-beginning 0) (match-end 0)
5536 (list 'mouse-face 'highlight
5537 'keymap org-mouse-map))
5538 (org-rear-nonsticky-at (match-end 0))
5539 (when org-display-custom-times
5540 (if (match-end 3)
5541 (org-display-custom-time (match-beginning 3) (match-end 3)))
5542 (org-display-custom-time (match-beginning 1) (match-end 1)))
5543 t)))
5545 (defvar org-target-link-regexp nil
5546 "Regular expression matching radio targets in plain text.")
5547 (make-variable-buffer-local 'org-target-link-regexp)
5548 (defvar org-target-regexp "<<\\([^<>\n\r]+\\)>>"
5549 "Regular expression matching a link target.")
5550 (defvar org-radio-target-regexp "<<<\\([^<>\n\r]+\\)>>>"
5551 "Regular expression matching a radio target.")
5552 (defvar org-any-target-regexp "<<<?\\([^<>\n\r]+\\)>>>?" ; FIXME, not exact, would match <<<aaa>> as a radio target.
5553 "Regular expression matching any target.")
5555 (defun org-activate-target-links (limit)
5556 "Run through the buffer and add overlays to target matches."
5557 (when org-target-link-regexp
5558 (let ((case-fold-search t))
5559 (if (re-search-forward org-target-link-regexp limit t)
5560 (progn
5561 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5562 (add-text-properties (match-beginning 0) (match-end 0)
5563 (list 'mouse-face 'highlight
5564 'keymap org-mouse-map
5565 'help-echo "Radio target link"
5566 'org-linked-text t))
5567 (org-rear-nonsticky-at (match-end 0))
5568 t)))))
5570 (defun org-update-radio-target-regexp ()
5571 "Find all radio targets in this file and update the regular expression."
5572 (interactive)
5573 (when (memq 'radio org-activate-links)
5574 (setq org-target-link-regexp
5575 (org-make-target-link-regexp (org-all-targets 'radio)))
5576 (org-restart-font-lock)))
5578 (defun org-hide-wide-columns (limit)
5579 (let (s e)
5580 (setq s (text-property-any (point) (or limit (point-max))
5581 'org-cwidth t))
5582 (when s
5583 (setq e (next-single-property-change s 'org-cwidth))
5584 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
5585 (goto-char e)
5586 t)))
5588 (defvar org-latex-and-specials-regexp nil
5589 "Regular expression for highlighting export special stuff.")
5590 (defvar org-match-substring-regexp)
5591 (defvar org-match-substring-with-braces-regexp)
5593 ;; This should be with the exporter code, but we also use if for font-locking
5594 (defconst org-export-html-special-string-regexps
5595 '(("\\\\-" . "&shy;")
5596 ("---\\([^-]\\)" . "&mdash;\\1")
5597 ("--\\([^-]\\)" . "&ndash;\\1")
5598 ("\\.\\.\\." . "&hellip;"))
5599 "Regular expressions for special string conversion.")
5602 (defun org-compute-latex-and-specials-regexp ()
5603 "Compute regular expression for stuff treated specially by exporters."
5604 (if (not org-highlight-latex-fragments-and-specials)
5605 (org-set-local 'org-latex-and-specials-regexp nil)
5606 (require 'org-exp)
5607 (let*
5608 ((matchers (plist-get org-format-latex-options :matchers))
5609 (latexs (delq nil (mapcar (lambda (x) (if (member (car x) matchers) x))
5610 org-latex-regexps)))
5611 (org-export-allow-BIND nil)
5612 (options (org-combine-plists (org-default-export-plist)
5613 (org-infile-export-plist)))
5614 (org-export-with-sub-superscripts (plist-get options :sub-superscript))
5615 (org-export-with-LaTeX-fragments (plist-get options :LaTeX-fragments))
5616 (org-export-with-TeX-macros (plist-get options :TeX-macros))
5617 (org-export-html-expand (plist-get options :expand-quoted-html))
5618 (org-export-with-special-strings (plist-get options :special-strings))
5619 (re-sub
5620 (cond
5621 ((equal org-export-with-sub-superscripts '{})
5622 (list org-match-substring-with-braces-regexp))
5623 (org-export-with-sub-superscripts
5624 (list org-match-substring-regexp))
5625 (t nil)))
5626 (re-latex
5627 (if org-export-with-LaTeX-fragments
5628 (mapcar (lambda (x) (nth 1 x)) latexs)))
5629 (re-macros
5630 (if org-export-with-TeX-macros
5631 (list (concat "\\\\"
5632 (regexp-opt
5633 (append
5635 (delq nil
5636 (mapcar 'car-safe
5637 (append org-entities-user
5638 org-entities)))
5639 (if (boundp 'org-latex-entities)
5640 (mapcar (lambda (x)
5641 (or (car-safe x) x))
5642 org-latex-entities)
5643 nil))
5644 'words))) ; FIXME
5646 ;; (list "\\\\\\(?:[a-zA-Z]+\\)")))
5647 (re-special (if org-export-with-special-strings
5648 (mapcar (lambda (x) (car x))
5649 org-export-html-special-string-regexps)))
5650 (re-rest
5651 (delq nil
5652 (list
5653 (if org-export-html-expand "@<[^>\n]+>")
5654 ))))
5655 (org-set-local
5656 'org-latex-and-specials-regexp
5657 (mapconcat 'identity (append re-latex re-sub re-macros re-special
5658 re-rest) "\\|")))))
5660 (defun org-do-latex-and-special-faces (limit)
5661 "Run through the buffer and add overlays to links."
5662 (when org-latex-and-specials-regexp
5663 (let (rtn d)
5664 (while (and (not rtn) (re-search-forward org-latex-and-specials-regexp
5665 limit t))
5666 (if (not (memq (car-safe (get-text-property (1+ (match-beginning 0))
5667 'face))
5668 '(org-code org-verbatim underline)))
5669 (progn
5670 (setq rtn t
5671 d (cond ((member (char-after (1+ (match-beginning 0)))
5672 '(?_ ?^)) 1)
5673 (t 0)))
5674 (font-lock-prepend-text-property
5675 (+ d (match-beginning 0)) (match-end 0)
5676 'face 'org-latex-and-export-specials)
5677 (add-text-properties (+ d (match-beginning 0)) (match-end 0)
5678 '(font-lock-multiline t)))))
5679 rtn)))
5681 (defun org-restart-font-lock ()
5682 "Restart `font-lock-mode', to force refontification."
5683 (when (and (boundp 'font-lock-mode) font-lock-mode)
5684 (font-lock-mode -1)
5685 (font-lock-mode 1)))
5687 (defun org-all-targets (&optional radio)
5688 "Return a list of all targets in this file.
5689 With optional argument RADIO, only find radio targets."
5690 (let ((re (if radio org-radio-target-regexp org-target-regexp))
5691 rtn)
5692 (save-excursion
5693 (goto-char (point-min))
5694 (while (re-search-forward re nil t)
5695 (add-to-list 'rtn (downcase (org-match-string-no-properties 1))))
5696 rtn)))
5698 (defun org-make-target-link-regexp (targets)
5699 "Make regular expression matching all strings in TARGETS.
5700 The regular expression finds the targets also if there is a line break
5701 between words."
5702 (and targets
5703 (concat
5704 "\\<\\("
5705 (mapconcat
5706 (lambda (x)
5707 (setq x (regexp-quote x))
5708 (while (string-match " +" x)
5709 (setq x (replace-match "\\s-+" t t x)))
5711 targets
5712 "\\|")
5713 "\\)\\>")))
5715 (defun org-activate-tags (limit)
5716 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
5717 (progn
5718 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
5719 (add-text-properties (match-beginning 1) (match-end 1)
5720 (list 'mouse-face 'highlight
5721 'keymap org-mouse-map))
5722 (org-rear-nonsticky-at (match-end 1))
5723 t)))
5725 (defun org-outline-level ()
5726 "Compute the outline level of the heading at point.
5727 This function assumes that the cursor is at the beginning of a line matched
5728 by `outline-regexp'. Otherwise it returns garbage.
5729 If this is called at a normal headline, the level is the number of stars.
5730 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
5731 (save-excursion
5732 (looking-at org-outline-regexp)
5733 (1- (- (match-end 0) (match-beginning 0)))))
5735 (defvar org-font-lock-keywords nil)
5737 (defconst org-property-re (org-re "^[ \t]*\\(:\\([-[:alnum:]_]+\\+?\\):\\)[ \t]*\\([^ \t\r\n].*\\)")
5738 "Regular expression matching a property line.")
5740 (defvar org-font-lock-hook nil
5741 "Functions to be called for special font lock stuff.")
5743 (defvar org-font-lock-set-keywords-hook nil
5744 "Functions that can manipulate `org-font-lock-extra-keywords'.
5745 This is called after `org-font-lock-extra-keywords' is defined, but before
5746 it is installed to be used by font lock. This can be useful if something
5747 needs to be inserted at a specific position in the font-lock sequence.")
5749 (defun org-font-lock-hook (limit)
5750 (run-hook-with-args 'org-font-lock-hook limit))
5752 (defun org-set-font-lock-defaults ()
5753 (let* ((em org-fontify-emphasized-text)
5754 (lk org-activate-links)
5755 (org-font-lock-extra-keywords
5756 (list
5757 ;; Call the hook
5758 '(org-font-lock-hook)
5759 ;; Headlines
5760 `(,(if org-fontify-whole-heading-line
5761 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
5762 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
5763 (1 (org-get-level-face 1))
5764 (2 (org-get-level-face 2))
5765 (3 (org-get-level-face 3)))
5766 ;; Table lines
5767 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
5768 (1 'org-table t))
5769 ;; Table internals
5770 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
5771 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
5772 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
5773 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
5774 ;; Drawers
5775 (list org-drawer-regexp '(0 'org-special-keyword t))
5776 (list "^[ \t]*:END:" '(0 'org-special-keyword t))
5777 ;; Properties
5778 (list org-property-re
5779 '(1 'org-special-keyword t)
5780 '(3 'org-property-value t))
5781 ;; Links
5782 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
5783 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
5784 (if (memq 'plain lk) '(org-activate-plain-links))
5785 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
5786 (if (memq 'radio lk) '(org-activate-target-links (0 'org-link t)))
5787 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
5788 (if (memq 'footnote lk) '(org-activate-footnote-links))
5789 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
5790 '(org-hide-wide-columns (0 nil append))
5791 ;; TODO keyword
5792 (list (format org-heading-keyword-regexp-format
5793 org-todo-regexp)
5794 '(2 (org-get-todo-face 2) t))
5795 ;; DONE
5796 (if org-fontify-done-headline
5797 (list (format org-heading-keyword-regexp-format
5798 (concat
5799 "\\(?:"
5800 (mapconcat 'regexp-quote org-done-keywords "\\|")
5801 "\\)"))
5802 '(2 'org-headline-done t))
5803 nil)
5804 ;; Priorities
5805 '(org-font-lock-add-priority-faces)
5806 ;; Tags
5807 '(org-font-lock-add-tag-faces)
5808 ;; Special keywords
5809 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
5810 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
5811 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
5812 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
5813 ;; Emphasis
5814 (if em
5815 (if (featurep 'xemacs)
5816 '(org-do-emphasis-faces (0 nil append))
5817 '(org-do-emphasis-faces)))
5818 ;; Checkboxes
5819 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
5820 1 'org-checkbox prepend)
5821 (if (cdr (assq 'checkbox org-list-automatic-rules))
5822 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
5823 (0 (org-get-checkbox-statistics-face) t)))
5824 ;; Description list items
5825 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
5826 1 'bold prepend)
5827 ;; ARCHIVEd headings
5828 (list (concat
5829 org-outline-regexp-bol
5830 "\\(.*:" org-archive-tag ":.*\\)")
5831 '(1 'org-archived prepend))
5832 ;; Specials
5833 '(org-do-latex-and-special-faces)
5834 '(org-fontify-entities)
5835 '(org-raise-scripts)
5836 ;; Code
5837 '(org-activate-code (1 'org-code t))
5838 ;; COMMENT
5839 (list (format org-heading-keyword-regexp-format
5840 (concat "\\("
5841 org-comment-string "\\|" org-quote-string
5842 "\\)"))
5843 '(2 'org-special-keyword t))
5844 '("^#.*" (0 'font-lock-comment-face t))
5845 ;; Blocks and meta lines
5846 '(org-fontify-meta-lines-and-blocks)
5848 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
5849 (run-hooks 'org-font-lock-set-keywords-hook)
5850 ;; Now set the full font-lock-keywords
5851 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
5852 (org-set-local 'font-lock-defaults
5853 '(org-font-lock-keywords t nil nil backward-paragraph))
5854 (kill-local-variable 'font-lock-keywords) nil))
5856 (defun org-toggle-pretty-entities ()
5857 "Toggle the composition display of entities as UTF8 characters."
5858 (interactive)
5859 (org-set-local 'org-pretty-entities (not org-pretty-entities))
5860 (org-restart-font-lock)
5861 (if org-pretty-entities
5862 (message "Entities are displayed as UTF8 characters")
5863 (save-restriction
5864 (widen)
5865 (org-decompose-region (point-min) (point-max))
5866 (message "Entities are displayed plain"))))
5868 (defun org-fontify-entities (limit)
5869 "Find an entity to fontify."
5870 (let (ee)
5871 (when org-pretty-entities
5872 (catch 'match
5873 (while (re-search-forward
5874 "\\\\\\(frac[13][24]\\|[a-zA-Z]+\\)\\($\\|[^[:alpha:]\n]\\)"
5875 limit t)
5876 (if (and (not (org-in-indented-comment-line))
5877 (setq ee (org-entity-get (match-string 1)))
5878 (= (length (nth 6 ee)) 1))
5879 (progn
5880 (add-text-properties
5881 (match-beginning 0) (match-end 1)
5882 (list 'font-lock-fontified t))
5883 (compose-region (match-beginning 0) (match-end 1)
5884 (nth 6 ee) nil)
5885 (backward-char 1)
5886 (throw 'match t))))
5887 nil))))
5889 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
5890 "Fontify string S like in Org-mode."
5891 (with-temp-buffer
5892 (insert s)
5893 (let ((org-odd-levels-only odd-levels))
5894 (org-mode)
5895 (font-lock-fontify-buffer)
5896 (buffer-string))))
5898 (defvar org-m nil)
5899 (defvar org-l nil)
5900 (defvar org-f nil)
5901 (defun org-get-level-face (n)
5902 "Get the right face for match N in font-lock matching of headlines."
5903 (setq org-l (- (match-end 2) (match-beginning 1) 1))
5904 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
5905 (if org-cycle-level-faces
5906 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
5907 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
5908 (cond
5909 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
5910 ((eq n 2) org-f)
5911 (t (if org-level-color-stars-only nil org-f))))
5914 (defun org-get-todo-face (kwd)
5915 "Get the right face for a TODO keyword KWD.
5916 If KWD is a number, get the corresponding match group."
5917 (if (numberp kwd) (setq kwd (match-string kwd)))
5918 (or (org-face-from-face-or-color
5919 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
5920 (and (member kwd org-done-keywords) 'org-done)
5921 'org-todo))
5923 (defun org-face-from-face-or-color (context inherit face-or-color)
5924 "Create a face list that inherits INHERIT, but sets the foreground color.
5925 When FACE-OR-COLOR is not a string, just return it."
5926 (if (stringp face-or-color)
5927 (list :inherit inherit
5928 (cdr (assoc context org-faces-easy-properties))
5929 face-or-color)
5930 face-or-color))
5932 (defun org-font-lock-add-tag-faces (limit)
5933 "Add the special tag faces."
5934 (when (and org-tag-faces org-tags-special-faces-re)
5935 (while (re-search-forward org-tags-special-faces-re limit t)
5936 (add-text-properties (match-beginning 1) (match-end 1)
5937 (list 'face (org-get-tag-face 1)
5938 'font-lock-fontified t))
5939 (backward-char 1))))
5941 (defun org-font-lock-add-priority-faces (limit)
5942 "Add the special priority faces."
5943 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
5944 (add-text-properties
5945 (match-beginning 0) (match-end 0)
5946 (list 'face (or (org-face-from-face-or-color
5947 'priority 'org-special-keyword
5948 (cdr (assoc (char-after (match-beginning 1))
5949 org-priority-faces)))
5950 'org-special-keyword)
5951 'font-lock-fontified t))))
5953 (defun org-get-tag-face (kwd)
5954 "Get the right face for a TODO keyword KWD.
5955 If KWD is a number, get the corresponding match group."
5956 (if (numberp kwd) (setq kwd (match-string kwd)))
5957 (or (org-face-from-face-or-color
5958 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
5959 'org-tag))
5961 (defun org-unfontify-region (beg end &optional maybe_loudly)
5962 "Remove fontification and activation overlays from links."
5963 (font-lock-default-unfontify-region beg end)
5964 (let* ((buffer-undo-list t)
5965 (inhibit-read-only t) (inhibit-point-motion-hooks t)
5966 (inhibit-modification-hooks t)
5967 deactivate-mark buffer-file-name buffer-file-truename)
5968 (org-decompose-region beg end)
5969 (remove-text-properties beg end
5970 '(mouse-face t keymap t org-linked-text t
5971 invisible t intangible t
5972 org-no-flyspell t org-emphasis t))
5973 (org-remove-font-lock-display-properties beg end)))
5975 (defconst org-script-display '(((raise -0.3) (height 0.7))
5976 ((raise 0.3) (height 0.7))
5977 ((raise -0.5))
5978 ((raise 0.5)))
5979 "Display properties for showing superscripts and subscripts.")
5981 (defun org-remove-font-lock-display-properties (beg end)
5982 "Remove specific display properties that have been added by font lock.
5983 The will remove the raise properties that are used to show superscripts
5984 and subscripts."
5985 (let (next prop)
5986 (while (< beg end)
5987 (setq next (next-single-property-change beg 'display nil end)
5988 prop (get-text-property beg 'display))
5989 (if (member prop org-script-display)
5990 (put-text-property beg next 'display nil))
5991 (setq beg next))))
5993 (defun org-raise-scripts (limit)
5994 "Add raise properties to sub/superscripts."
5995 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
5996 (if (re-search-forward
5997 (if (eq org-use-sub-superscripts t)
5998 org-match-substring-regexp
5999 org-match-substring-with-braces-regexp)
6000 limit t)
6001 (let* ((pos (point)) table-p comment-p
6002 (mpos (match-beginning 3))
6003 (emph-p (get-text-property mpos 'org-emphasis))
6004 (link-p (get-text-property mpos 'mouse-face))
6005 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6006 (goto-char (point-at-bol))
6007 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6008 comment-p (org-looking-at-p "[ \t]*#"))
6009 (goto-char pos)
6010 ;; FIXME: Should we go back one character here, for a_b^c
6011 ;; (goto-char (1- pos)) ;????????????????????
6012 (if (or comment-p emph-p link-p keyw-p)
6014 (put-text-property (match-beginning 3) (match-end 0)
6015 'display
6016 (if (equal (char-after (match-beginning 2)) ?^)
6017 (nth (if table-p 3 1) org-script-display)
6018 (nth (if table-p 2 0) org-script-display)))
6019 (add-text-properties (match-beginning 2) (match-end 2)
6020 (list 'invisible t
6021 'org-dwidth t 'org-dwidth-n 1))
6022 (if (and (eq (char-after (match-beginning 3)) ?{)
6023 (eq (char-before (match-end 3)) ?}))
6024 (progn
6025 (add-text-properties
6026 (match-beginning 3) (1+ (match-beginning 3))
6027 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6028 (add-text-properties
6029 (1- (match-end 3)) (match-end 3)
6030 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6031 t)))))
6033 ;;;; Visibility cycling, including org-goto and indirect buffer
6035 ;;; Cycling
6037 (defvar org-cycle-global-status nil)
6038 (make-variable-buffer-local 'org-cycle-global-status)
6039 (defvar org-cycle-subtree-status nil)
6040 (make-variable-buffer-local 'org-cycle-subtree-status)
6042 ;;;###autoload
6044 (defvar org-inlinetask-min-level)
6046 (defun org-cycle (&optional arg)
6047 "TAB-action and visibility cycling for Org-mode.
6049 This is the command invoked in Org-mode by the TAB key. Its main purpose
6050 is outline visibility cycling, but it also invokes other actions
6051 in special contexts.
6053 - When this function is called with a prefix argument, rotate the entire
6054 buffer through 3 states (global cycling)
6055 1. OVERVIEW: Show only top-level headlines.
6056 2. CONTENTS: Show all headlines of all levels, but no body text.
6057 3. SHOW ALL: Show everything.
6058 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6059 determined by the variable `org-startup-folded', and by any VISIBILITY
6060 properties in the buffer.
6061 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6062 including any drawers.
6064 - When inside a table, re-align the table and move to the next field.
6066 - When point is at the beginning of a headline, rotate the subtree started
6067 by this line through 3 different states (local cycling)
6068 1. FOLDED: Only the main headline is shown.
6069 2. CHILDREN: The main headline and the direct children are shown.
6070 From this state, you can move to one of the children
6071 and zoom in further.
6072 3. SUBTREE: Show the entire subtree, including body text.
6073 If there is no subtree, switch directly from CHILDREN to FOLDED.
6075 - When point is at the beginning of an empty headline and the variable
6076 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6077 of the headline by demoting and promoting it to likely levels. This
6078 speeds up creation document structure by pressing TAB once or several
6079 times right after creating a new headline.
6081 - When there is a numeric prefix, go up to a heading with level ARG, do
6082 a `show-subtree' and return to the previous cursor position. If ARG
6083 is negative, go up that many levels.
6085 - When point is not at the beginning of a headline, execute the global
6086 binding for TAB, which is re-indenting the line. See the option
6087 `org-cycle-emulate-tab' for details.
6089 - Special case: if point is at the beginning of the buffer and there is
6090 no headline in line 1, this function will act as if called with prefix arg
6091 (C-u TAB, same as S-TAB) also when called without prefix arg.
6092 But only if also the variable `org-cycle-global-at-bob' is t."
6093 (interactive "P")
6094 (org-load-modules-maybe)
6095 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6096 (and org-cycle-level-after-item/entry-creation
6097 (or (org-cycle-level)
6098 (org-cycle-item-indentation))))
6099 (let* ((limit-level
6100 (or org-cycle-max-level
6101 (and (boundp 'org-inlinetask-min-level)
6102 org-inlinetask-min-level
6103 (1- org-inlinetask-min-level))))
6104 (nstars (and limit-level
6105 (if org-odd-levels-only
6106 (and limit-level (1- (* limit-level 2)))
6107 limit-level)))
6108 (org-outline-regexp
6109 (if (not (eq major-mode 'org-mode))
6110 outline-regexp
6111 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6112 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6113 (not (looking-at org-outline-regexp))))
6114 (org-cycle-hook
6115 (if bob-special
6116 (delq 'org-optimize-window-after-visibility-change
6117 (copy-sequence org-cycle-hook))
6118 org-cycle-hook))
6119 (pos (point)))
6121 (if (or bob-special (equal arg '(4)))
6122 ;; special case: use global cycling
6123 (setq arg t))
6125 (cond
6127 ((equal arg '(16))
6128 (setq last-command 'dummy)
6129 (org-set-startup-visibility)
6130 (message "Startup visibility, plus VISIBILITY properties"))
6132 ((equal arg '(64))
6133 (show-all)
6134 (message "Entire buffer visible, including drawers"))
6136 ;; Table: enter it or move to the next field.
6137 ((org-at-table-p 'any)
6138 (if (org-at-table.el-p)
6139 (message "Use C-c ' to edit table.el tables")
6140 (if arg (org-table-edit-field t)
6141 (org-table-justify-field-maybe)
6142 (call-interactively 'org-table-next-field))))
6144 ((run-hook-with-args-until-success
6145 'org-tab-after-check-for-table-hook))
6147 ;; Global cycling: delegate to `org-cycle-internal-global'.
6148 ((eq arg t) (org-cycle-internal-global))
6150 ;; Drawers: delegate to `org-flag-drawer'.
6151 ((and org-drawers org-drawer-regexp
6152 (save-excursion
6153 (beginning-of-line 1)
6154 (looking-at org-drawer-regexp)))
6155 (org-flag-drawer ; toggle block visibility
6156 (not (get-char-property (match-end 0) 'invisible))))
6158 ;; Show-subtree, ARG levels up from here.
6159 ((integerp arg)
6160 (save-excursion
6161 (org-back-to-heading)
6162 (outline-up-heading (if (< arg 0) (- arg)
6163 (- (funcall outline-level) arg)))
6164 (org-show-subtree)))
6166 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6167 ((and (featurep 'org-inlinetask)
6168 (org-inlinetask-at-task-p)
6169 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6170 (org-inlinetask-toggle-visibility))
6172 ((org-try-cdlatex-tab))
6174 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6175 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6176 (save-excursion (beginning-of-line 1)
6177 (looking-at org-outline-regexp)))
6178 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6179 (org-cycle-internal-local))
6181 ;; From there: TAB emulation and template completion.
6182 (buffer-read-only (org-back-to-heading))
6184 ((run-hook-with-args-until-success
6185 'org-tab-after-check-for-cycling-hook))
6187 ((org-try-structure-completion))
6189 ((run-hook-with-args-until-success
6190 'org-tab-before-tab-emulation-hook))
6192 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6193 (or (not (bolp))
6194 (not (looking-at org-outline-regexp))))
6195 (call-interactively (global-key-binding "\t")))
6197 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6198 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6199 (or (and (eq org-cycle-emulate-tab 'white)
6200 (= (match-end 0) (point-at-eol)))
6201 (and (eq org-cycle-emulate-tab 'whitestart)
6202 (>= (match-end 0) pos))))
6204 (eq org-cycle-emulate-tab t))
6205 (call-interactively (global-key-binding "\t")))
6207 (t (save-excursion
6208 (org-back-to-heading)
6209 (org-cycle)))))))
6211 (defun org-cycle-internal-global ()
6212 "Do the global cycling action."
6213 (cond
6214 ((and (eq last-command this-command)
6215 (eq org-cycle-global-status 'overview))
6216 ;; We just created the overview - now do table of contents
6217 ;; This can be slow in very large buffers, so indicate action
6218 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6219 (message "CONTENTS...")
6220 (org-content)
6221 (message "CONTENTS...done")
6222 (setq org-cycle-global-status 'contents)
6223 (run-hook-with-args 'org-cycle-hook 'contents))
6225 ((and (eq last-command this-command)
6226 (eq org-cycle-global-status 'contents))
6227 ;; We just showed the table of contents - now show everything
6228 (run-hook-with-args 'org-pre-cycle-hook 'all)
6229 (show-all)
6230 (message "SHOW ALL")
6231 (setq org-cycle-global-status 'all)
6232 (run-hook-with-args 'org-cycle-hook 'all))
6235 ;; Default action: go to overview
6236 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6237 (org-overview)
6238 (message "OVERVIEW")
6239 (setq org-cycle-global-status 'overview)
6240 (run-hook-with-args 'org-cycle-hook 'overview))))
6242 (defun org-cycle-internal-local ()
6243 "Do the local cycling action."
6244 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6245 ;; First, determine end of headline (EOH), end of subtree or item
6246 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6247 (save-excursion
6248 (if (org-at-item-p)
6249 (progn
6250 (beginning-of-line)
6251 (setq struct (org-list-struct))
6252 (setq eoh (point-at-eol))
6253 (setq eos (org-list-get-item-end-before-blank (point) struct))
6254 (setq has-children (org-list-has-child-p (point) struct)))
6255 (org-back-to-heading)
6256 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6257 (setq eos (save-excursion
6258 (org-end-of-subtree t)
6259 (unless (eobp)
6260 (skip-chars-forward " \t\n"))
6261 (if (eobp) (point) (1- (point)))))
6262 (setq has-children
6263 (or (save-excursion
6264 (let ((level (funcall outline-level)))
6265 (outline-next-heading)
6266 (and (org-at-heading-p t)
6267 (> (funcall outline-level) level))))
6268 (save-excursion
6269 (org-list-search-forward (org-item-beginning-re) eos t)))))
6270 ;; Determine end invisible part of buffer (EOL)
6271 (beginning-of-line 2)
6272 ;; XEmacs doesn't have `next-single-char-property-change'
6273 (if (featurep 'xemacs)
6274 (while (and (not (eobp)) ;; this is like `next-line'
6275 (get-char-property (1- (point)) 'invisible))
6276 (beginning-of-line 2))
6277 (while (and (not (eobp)) ;; this is like `next-line'
6278 (get-char-property (1- (point)) 'invisible))
6279 (goto-char (next-single-char-property-change (point) 'invisible))
6280 (and (eolp) (beginning-of-line 2))))
6281 (setq eol (point)))
6282 ;; Find out what to do next and set `this-command'
6283 (cond
6284 ((= eos eoh)
6285 ;; Nothing is hidden behind this heading
6286 (run-hook-with-args 'org-pre-cycle-hook 'empty)
6287 (message "EMPTY ENTRY")
6288 (setq org-cycle-subtree-status nil)
6289 (save-excursion
6290 (goto-char eos)
6291 (outline-next-heading)
6292 (if (outline-invisible-p) (org-flag-heading nil))))
6293 ((and (or (>= eol eos)
6294 (not (string-match "\\S-" (buffer-substring eol eos))))
6295 (or has-children
6296 (not (setq children-skipped
6297 org-cycle-skip-children-state-if-no-children))))
6298 ;; Entire subtree is hidden in one line: children view
6299 (run-hook-with-args 'org-pre-cycle-hook 'children)
6300 (if (org-at-item-p)
6301 (org-list-set-item-visibility (point-at-bol) struct 'children)
6302 (org-show-entry)
6303 (show-children)
6304 ;; Fold every list in subtree to top-level items.
6305 (when (eq org-cycle-include-plain-lists 'integrate)
6306 (save-excursion
6307 (org-back-to-heading)
6308 (while (org-list-search-forward (org-item-beginning-re) eos t)
6309 (beginning-of-line 1)
6310 (let* ((struct (org-list-struct))
6311 (prevs (org-list-prevs-alist struct))
6312 (end (org-list-get-bottom-point struct)))
6313 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6314 (org-list-get-all-items (point) struct prevs))
6315 (goto-char end))))))
6316 (message "CHILDREN")
6317 (save-excursion
6318 (goto-char eos)
6319 (outline-next-heading)
6320 (if (outline-invisible-p) (org-flag-heading nil)))
6321 (setq org-cycle-subtree-status 'children)
6322 (run-hook-with-args 'org-cycle-hook 'children))
6323 ((or children-skipped
6324 (and (eq last-command this-command)
6325 (eq org-cycle-subtree-status 'children)))
6326 ;; We just showed the children, or no children are there,
6327 ;; now show everything.
6328 (run-hook-with-args 'org-pre-cycle-hook 'subtree)
6329 (outline-flag-region eoh eos nil)
6330 (message (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6331 (setq org-cycle-subtree-status 'subtree)
6332 (run-hook-with-args 'org-cycle-hook 'subtree))
6334 ;; Default action: hide the subtree.
6335 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6336 (outline-flag-region eoh eos t)
6337 (message "FOLDED")
6338 (setq org-cycle-subtree-status 'folded)
6339 (run-hook-with-args 'org-cycle-hook 'folded)))))
6341 ;;;###autoload
6342 (defun org-global-cycle (&optional arg)
6343 "Cycle the global visibility. For details see `org-cycle'.
6344 With \\[universal-argument] prefix arg, switch to startup visibility.
6345 With a numeric prefix, show all headlines up to that level."
6346 (interactive "P")
6347 (let ((org-cycle-include-plain-lists
6348 (if (eq major-mode 'org-mode) org-cycle-include-plain-lists nil)))
6349 (cond
6350 ((integerp arg)
6351 (show-all)
6352 (hide-sublevels arg)
6353 (setq org-cycle-global-status 'contents))
6354 ((equal arg '(4))
6355 (org-set-startup-visibility)
6356 (message "Startup visibility, plus VISIBILITY properties."))
6358 (org-cycle '(4))))))
6360 (defun org-set-startup-visibility ()
6361 "Set the visibility required by startup options and properties."
6362 (cond
6363 ((eq org-startup-folded t)
6364 (org-cycle '(4)))
6365 ((eq org-startup-folded 'content)
6366 (let ((this-command 'org-cycle) (last-command 'org-cycle))
6367 (org-cycle '(4)) (org-cycle '(4)))))
6368 (unless (eq org-startup-folded 'showeverything)
6369 (if org-hide-block-startup (org-hide-block-all))
6370 (org-set-visibility-according-to-property 'no-cleanup)
6371 (org-cycle-hide-archived-subtrees 'all)
6372 (org-cycle-hide-drawers 'all)
6373 (org-cycle-show-empty-lines t)))
6375 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6376 "Switch subtree visibilities according to :VISIBILITY: property."
6377 (interactive)
6378 (let (org-show-entry-below state)
6379 (save-excursion
6380 (goto-char (point-min))
6381 (while (re-search-forward
6382 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6383 nil t)
6384 (setq state (match-string 1))
6385 (save-excursion
6386 (org-back-to-heading t)
6387 (hide-subtree)
6388 (org-reveal)
6389 (cond
6390 ((equal state '("fold" "folded"))
6391 (hide-subtree))
6392 ((equal state "children")
6393 (org-show-hidden-entry)
6394 (show-children))
6395 ((equal state "content")
6396 (save-excursion
6397 (save-restriction
6398 (org-narrow-to-subtree)
6399 (org-content))))
6400 ((member state '("all" "showall"))
6401 (show-subtree)))))
6402 (unless no-cleanup
6403 (org-cycle-hide-archived-subtrees 'all)
6404 (org-cycle-hide-drawers 'all)
6405 (org-cycle-show-empty-lines 'all)))))
6407 ;; This function uses outline-regexp instead of the more fundamental
6408 ;; org-outline-regexp so that org-cycle-global works outside of Org
6409 ;; buffers, where outline-regexp is needed.
6410 (defun org-overview ()
6411 "Switch to overview mode, showing only top-level headlines.
6412 Really, this shows all headlines with level equal or greater than the level
6413 of the first headline in the buffer. This is important, because if the
6414 first headline is not level one, then (hide-sublevels 1) gives confusing
6415 results."
6416 (interactive)
6417 (let ((level (save-excursion
6418 (goto-char (point-min))
6419 (if (re-search-forward (concat "^" outline-regexp) nil t)
6420 (progn
6421 (goto-char (match-beginning 0))
6422 (funcall outline-level))))))
6423 (and level (hide-sublevels level))))
6425 (defun org-content (&optional arg)
6426 "Show all headlines in the buffer, like a table of contents.
6427 With numerical argument N, show content up to level N."
6428 (interactive "P")
6429 (save-excursion
6430 ;; Visit all headings and show their offspring
6431 (and (integerp arg) (org-overview))
6432 (goto-char (point-max))
6433 (catch 'exit
6434 (while (and (progn (condition-case nil
6435 (outline-previous-visible-heading 1)
6436 (error (goto-char (point-min))))
6438 (looking-at org-outline-regexp))
6439 (if (integerp arg)
6440 (show-children (1- arg))
6441 (show-branches))
6442 (if (bobp) (throw 'exit nil))))))
6445 (defun org-optimize-window-after-visibility-change (state)
6446 "Adjust the window after a change in outline visibility.
6447 This function is the default value of the hook `org-cycle-hook'."
6448 (when (get-buffer-window (current-buffer))
6449 (cond
6450 ((eq state 'content) nil)
6451 ((eq state 'all) nil)
6452 ((eq state 'folded) nil)
6453 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
6454 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
6456 (defun org-remove-empty-overlays-at (pos)
6457 "Remove outline overlays that do not contain non-white stuff."
6458 (mapc
6459 (lambda (o)
6460 (and (eq 'outline (overlay-get o 'invisible))
6461 (not (string-match "\\S-" (buffer-substring (overlay-start o)
6462 (overlay-end o))))
6463 (delete-overlay o)))
6464 (overlays-at pos)))
6466 (defun org-clean-visibility-after-subtree-move ()
6467 "Fix visibility issues after moving a subtree."
6468 ;; First, find a reasonable region to look at:
6469 ;; Start two siblings above, end three below
6470 (let* ((beg (save-excursion
6471 (and (org-get-last-sibling)
6472 (org-get-last-sibling))
6473 (point)))
6474 (end (save-excursion
6475 (and (org-get-next-sibling)
6476 (org-get-next-sibling)
6477 (org-get-next-sibling))
6478 (if (org-at-heading-p)
6479 (point-at-eol)
6480 (point))))
6481 (level (looking-at "\\*+"))
6482 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
6483 (save-excursion
6484 (save-restriction
6485 (narrow-to-region beg end)
6486 (when re
6487 ;; Properly fold already folded siblings
6488 (goto-char (point-min))
6489 (while (re-search-forward re nil t)
6490 (if (and (not (outline-invisible-p))
6491 (save-excursion
6492 (goto-char (point-at-eol)) (outline-invisible-p)))
6493 (hide-entry))))
6494 (org-cycle-show-empty-lines 'overview)
6495 (org-cycle-hide-drawers 'overview)))))
6497 (defun org-cycle-show-empty-lines (state)
6498 "Show empty lines above all visible headlines.
6499 The region to be covered depends on STATE when called through
6500 `org-cycle-hook'. Lisp program can use t for STATE to get the
6501 entire buffer covered. Note that an empty line is only shown if there
6502 are at least `org-cycle-separator-lines' empty lines before the headline."
6503 (when (not (= org-cycle-separator-lines 0))
6504 (save-excursion
6505 (let* ((n (abs org-cycle-separator-lines))
6506 (re (cond
6507 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
6508 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
6509 (t (let ((ns (number-to-string (- n 2))))
6510 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
6511 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
6512 beg end b e)
6513 (cond
6514 ((memq state '(overview contents t))
6515 (setq beg (point-min) end (point-max)))
6516 ((memq state '(children folded))
6517 (setq beg (point) end (progn (org-end-of-subtree t t)
6518 (beginning-of-line 2)
6519 (point)))))
6520 (when beg
6521 (goto-char beg)
6522 (while (re-search-forward re end t)
6523 (unless (get-char-property (match-end 1) 'invisible)
6524 (setq e (match-end 1))
6525 (if (< org-cycle-separator-lines 0)
6526 (setq b (save-excursion
6527 (goto-char (match-beginning 0))
6528 (org-back-over-empty-lines)
6529 (if (save-excursion
6530 (goto-char (max (point-min) (1- (point))))
6531 (org-at-heading-p))
6532 (1- (point))
6533 (point))))
6534 (setq b (match-beginning 1)))
6535 (outline-flag-region b e nil)))))))
6536 ;; Never hide empty lines at the end of the file.
6537 (save-excursion
6538 (goto-char (point-max))
6539 (outline-previous-heading)
6540 (outline-end-of-heading)
6541 (if (and (looking-at "[ \t\n]+")
6542 (= (match-end 0) (point-max)))
6543 (outline-flag-region (point) (match-end 0) nil))))
6545 (defun org-show-empty-lines-in-parent ()
6546 "Move to the parent and re-show empty lines before visible headlines."
6547 (save-excursion
6548 (let ((context (if (org-up-heading-safe) 'children 'overview)))
6549 (org-cycle-show-empty-lines context))))
6551 (defun org-files-list ()
6552 "Return `org-agenda-files' list, plus all open org-mode files.
6553 This is useful for operations that need to scan all of a user's
6554 open and agenda-wise Org files."
6555 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
6556 (dolist (buf (buffer-list))
6557 (with-current-buffer buf
6558 (if (and (eq major-mode 'org-mode) (buffer-file-name))
6559 (let ((file (expand-file-name (buffer-file-name))))
6560 (unless (member file files)
6561 (push file files))))))
6562 files))
6564 (defsubst org-entry-beginning-position ()
6565 "Return the beginning position of the current entry."
6566 (save-excursion (outline-back-to-heading t) (point)))
6568 (defsubst org-entry-end-position ()
6569 "Return the end position of the current entry."
6570 (save-excursion (outline-next-heading) (point)))
6572 (defun org-cycle-hide-drawers (state)
6573 "Re-hide all drawers after a visibility state change."
6574 (when (and (eq major-mode 'org-mode)
6575 (not (memq state '(overview folded contents))))
6576 (save-excursion
6577 (let* ((globalp (memq state '(contents all)))
6578 (beg (if globalp (point-min) (point)))
6579 (end (if globalp (point-max)
6580 (if (eq state 'children)
6581 (save-excursion (outline-next-heading) (point))
6582 (org-end-of-subtree t)))))
6583 (goto-char beg)
6584 (while (re-search-forward org-drawer-regexp end t)
6585 (org-flag-drawer t))))))
6587 (defun org-flag-drawer (flag)
6588 (save-excursion
6589 (beginning-of-line 1)
6590 (when (looking-at "^[ \t]*:[a-zA-Z][a-zA-Z0-9]*:")
6591 (let ((b (match-end 0)))
6592 (if (re-search-forward
6593 "^[ \t]*:END:"
6594 (save-excursion (outline-next-heading) (point)) t)
6595 (outline-flag-region b (point-at-eol) flag)
6596 (error ":END: line missing at position %s" b))))))
6598 (defun org-subtree-end-visible-p ()
6599 "Is the end of the current subtree visible?"
6600 (pos-visible-in-window-p
6601 (save-excursion (org-end-of-subtree t) (point))))
6603 (defun org-first-headline-recenter (&optional N)
6604 "Move cursor to the first headline and recenter the headline.
6605 Optional argument N means put the headline into the Nth line of the window."
6606 (goto-char (point-min))
6607 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
6608 (beginning-of-line)
6609 (recenter (prefix-numeric-value N))))
6611 ;;; Saving and restoring visibility
6613 (defun org-outline-overlay-data (&optional use-markers)
6614 "Return a list of the locations of all outline overlays.
6615 These are overlays with the `invisible' property value `outline'.
6616 The return value is a list of cons cells, with start and stop
6617 positions for each overlay.
6618 If USE-MARKERS is set, return the positions as markers."
6619 (let (beg end)
6620 (save-excursion
6621 (save-restriction
6622 (widen)
6623 (delq nil
6624 (mapcar (lambda (o)
6625 (when (eq (overlay-get o 'invisible) 'outline)
6626 (setq beg (overlay-start o)
6627 end (overlay-end o))
6628 (and beg end (> end beg)
6629 (if use-markers
6630 (cons (move-marker (make-marker) beg)
6631 (move-marker (make-marker) end))
6632 (cons beg end)))))
6633 (overlays-in (point-min) (point-max))))))))
6635 (defun org-set-outline-overlay-data (data)
6636 "Create visibility overlays for all positions in DATA.
6637 DATA should have been made by `org-outline-overlay-data'."
6638 (let (o)
6639 (save-excursion
6640 (save-restriction
6641 (widen)
6642 (show-all)
6643 (mapc (lambda (c)
6644 (outline-flag-region (car c) (cdr c) t))
6645 data)))))
6647 ;;; Folding of blocks
6649 (defvar org-hide-block-overlays nil
6650 "Overlays hiding blocks.")
6651 (make-variable-buffer-local 'org-hide-block-overlays)
6653 (defun org-block-map (function &optional start end)
6654 "Call FUNCTION at the head of all source blocks in the current buffer.
6655 Optional arguments START and END can be used to limit the range."
6656 (let ((start (or start (point-min)))
6657 (end (or end (point-max))))
6658 (save-excursion
6659 (goto-char start)
6660 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
6661 (save-excursion
6662 (save-match-data
6663 (goto-char (match-beginning 0))
6664 (funcall function)))))))
6666 (defun org-hide-block-toggle-all ()
6667 "Toggle the visibility of all blocks in the current buffer."
6668 (org-block-map #'org-hide-block-toggle))
6670 (defun org-hide-block-all ()
6671 "Fold all blocks in the current buffer."
6672 (interactive)
6673 (org-show-block-all)
6674 (org-block-map #'org-hide-block-toggle-maybe))
6676 (defun org-show-block-all ()
6677 "Unfold all blocks in the current buffer."
6678 (interactive)
6679 (mapc 'delete-overlay org-hide-block-overlays)
6680 (setq org-hide-block-overlays nil))
6682 (defun org-hide-block-toggle-maybe ()
6683 "Toggle visibility of block at point."
6684 (interactive)
6685 (let ((case-fold-search t))
6686 (if (save-excursion
6687 (beginning-of-line 1)
6688 (looking-at org-block-regexp))
6689 (progn (org-hide-block-toggle)
6690 t) ;; to signal that we took action
6691 nil))) ;; to signal that we did not
6693 (defun org-hide-block-toggle (&optional force)
6694 "Toggle the visibility of the current block."
6695 (interactive)
6696 (save-excursion
6697 (beginning-of-line)
6698 (if (re-search-forward org-block-regexp nil t)
6699 (let ((start (- (match-beginning 4) 1)) ;; beginning of body
6700 (end (match-end 0)) ;; end of entire body
6702 (if (memq t (mapcar (lambda (overlay)
6703 (eq (overlay-get overlay 'invisible)
6704 'org-hide-block))
6705 (overlays-at start)))
6706 (if (or (not force) (eq force 'off))
6707 (mapc (lambda (ov)
6708 (when (member ov org-hide-block-overlays)
6709 (setq org-hide-block-overlays
6710 (delq ov org-hide-block-overlays)))
6711 (when (eq (overlay-get ov 'invisible)
6712 'org-hide-block)
6713 (delete-overlay ov)))
6714 (overlays-at start)))
6715 (setq ov (make-overlay start end))
6716 (overlay-put ov 'invisible 'org-hide-block)
6717 ;; make the block accessible to isearch
6718 (overlay-put
6719 ov 'isearch-open-invisible
6720 (lambda (ov)
6721 (when (member ov org-hide-block-overlays)
6722 (setq org-hide-block-overlays
6723 (delq ov org-hide-block-overlays)))
6724 (when (eq (overlay-get ov 'invisible)
6725 'org-hide-block)
6726 (delete-overlay ov))))
6727 (push ov org-hide-block-overlays)))
6728 (error "Not looking at a source block"))))
6730 ;; org-tab-after-check-for-cycling-hook
6731 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
6732 ;; Remove overlays when changing major mode
6733 (add-hook 'org-mode-hook
6734 (lambda () (org-add-hook 'change-major-mode-hook
6735 'org-show-block-all 'append 'local)))
6737 ;;; Org-goto
6739 (defvar org-goto-window-configuration nil)
6740 (defvar org-goto-marker nil)
6741 (defvar org-goto-map
6742 (let ((map (make-sparse-keymap)))
6743 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command mouse-drag-region universal-argument org-occur)) cmd)
6744 (while (setq cmd (pop cmds))
6745 (substitute-key-definition cmd cmd map global-map)))
6746 (suppress-keymap map)
6747 (org-defkey map "\C-m" 'org-goto-ret)
6748 (org-defkey map [(return)] 'org-goto-ret)
6749 (org-defkey map [(left)] 'org-goto-left)
6750 (org-defkey map [(right)] 'org-goto-right)
6751 (org-defkey map [(control ?g)] 'org-goto-quit)
6752 (org-defkey map "\C-i" 'org-cycle)
6753 (org-defkey map [(tab)] 'org-cycle)
6754 (org-defkey map [(down)] 'outline-next-visible-heading)
6755 (org-defkey map [(up)] 'outline-previous-visible-heading)
6756 (if org-goto-auto-isearch
6757 (if (fboundp 'define-key-after)
6758 (define-key-after map [t] 'org-goto-local-auto-isearch)
6759 nil)
6760 (org-defkey map "q" 'org-goto-quit)
6761 (org-defkey map "n" 'outline-next-visible-heading)
6762 (org-defkey map "p" 'outline-previous-visible-heading)
6763 (org-defkey map "f" 'outline-forward-same-level)
6764 (org-defkey map "b" 'outline-backward-same-level)
6765 (org-defkey map "u" 'outline-up-heading))
6766 (org-defkey map "/" 'org-occur)
6767 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
6768 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
6769 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
6770 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
6771 (org-defkey map "\C-c\C-u" 'outline-up-heading)
6772 map))
6774 (defconst org-goto-help
6775 "Browse buffer copy, to find location or copy text. Just type for auto-isearch.
6776 RET=jump to location [Q]uit and return to previous location
6777 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
6779 (defvar org-goto-start-pos) ; dynamically scoped parameter
6781 ;; FIXME: Docstring does not mention both interfaces
6782 (defun org-goto (&optional alternative-interface)
6783 "Look up a different location in the current file, keeping current visibility.
6785 When you want look-up or go to a different location in a document, the
6786 fastest way is often to fold the entire buffer and then dive into the tree.
6787 This method has the disadvantage, that the previous location will be folded,
6788 which may not be what you want.
6790 This command works around this by showing a copy of the current buffer
6791 in an indirect buffer, in overview mode. You can dive into the tree in
6792 that copy, use org-occur and incremental search to find a location.
6793 When pressing RET or `Q', the command returns to the original buffer in
6794 which the visibility is still unchanged. After RET is will also jump to
6795 the location selected in the indirect buffer and expose the headline
6796 hierarchy above."
6797 (interactive "P")
6798 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
6799 (org-refile-use-outline-path t)
6800 (org-refile-target-verify-function nil)
6801 (interface
6802 (if (not alternative-interface)
6803 org-goto-interface
6804 (if (eq org-goto-interface 'outline)
6805 'outline-path-completion
6806 'outline)))
6807 (org-goto-start-pos (point))
6808 (selected-point
6809 (if (eq interface 'outline)
6810 (car (org-get-location (current-buffer) org-goto-help))
6811 (let ((pa (org-refile-get-location "Goto")))
6812 (org-refile-check-position pa)
6813 (nth 3 pa)))))
6814 (if selected-point
6815 (progn
6816 (org-mark-ring-push org-goto-start-pos)
6817 (goto-char selected-point)
6818 (if (or (outline-invisible-p) (org-invisible-p2))
6819 (org-show-context 'org-goto)))
6820 (message "Quit"))))
6822 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
6823 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
6824 (defvar org-goto-local-auto-isearch-map) ; defined below
6826 (defun org-get-location (buf help)
6827 "Let the user select a location in the Org-mode buffer BUF.
6828 This function uses a recursive edit. It returns the selected position
6829 or nil."
6830 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
6831 (isearch-hide-immediately nil)
6832 (isearch-search-fun-function
6833 (lambda () 'org-goto-local-search-headings))
6834 (org-goto-selected-point org-goto-exit-command)
6835 (pop-up-frames nil)
6836 (special-display-buffer-names nil)
6837 (special-display-regexps nil)
6838 (special-display-function nil))
6839 (save-excursion
6840 (save-window-excursion
6841 (delete-other-windows)
6842 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
6843 (org-pop-to-buffer-same-window
6844 (condition-case nil
6845 (make-indirect-buffer (current-buffer) "*org-goto*")
6846 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
6847 (with-output-to-temp-buffer "*Help*"
6848 (princ help))
6849 (org-fit-window-to-buffer (get-buffer-window "*Help*"))
6850 (setq buffer-read-only nil)
6851 (let ((org-startup-truncated t)
6852 (org-startup-folded nil)
6853 (org-startup-align-all-tables nil))
6854 (org-mode)
6855 (org-overview))
6856 (setq buffer-read-only t)
6857 (if (and (boundp 'org-goto-start-pos)
6858 (integer-or-marker-p org-goto-start-pos))
6859 (let ((org-show-hierarchy-above t)
6860 (org-show-siblings t)
6861 (org-show-following-heading t))
6862 (goto-char org-goto-start-pos)
6863 (and (outline-invisible-p) (org-show-context)))
6864 (goto-char (point-min)))
6865 (let (org-special-ctrl-a/e) (org-beginning-of-line))
6866 (message "Select location and press RET")
6867 (use-local-map org-goto-map)
6868 (recursive-edit)
6870 (kill-buffer "*org-goto*")
6871 (cons org-goto-selected-point org-goto-exit-command)))
6873 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
6874 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
6875 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
6876 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char)
6878 (defun org-goto-local-search-headings (string bound noerror)
6879 "Search and make sure that any matches are in headlines."
6880 (catch 'return
6881 (while (if isearch-forward
6882 (search-forward string bound noerror)
6883 (search-backward string bound noerror))
6884 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
6885 (and (member :headline context)
6886 (not (member :tags context))))
6887 (throw 'return (point))))))
6889 (defun org-goto-local-auto-isearch ()
6890 "Start isearch."
6891 (interactive)
6892 (goto-char (point-min))
6893 (let ((keys (this-command-keys)))
6894 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
6895 (isearch-mode t)
6896 (isearch-process-search-char (string-to-char keys)))))
6898 (defun org-goto-ret (&optional arg)
6899 "Finish `org-goto' by going to the new location."
6900 (interactive "P")
6901 (setq org-goto-selected-point (point)
6902 org-goto-exit-command 'return)
6903 (throw 'exit nil))
6905 (defun org-goto-left ()
6906 "Finish `org-goto' by going to the new location."
6907 (interactive)
6908 (if (org-at-heading-p)
6909 (progn
6910 (beginning-of-line 1)
6911 (setq org-goto-selected-point (point)
6912 org-goto-exit-command 'left)
6913 (throw 'exit nil))
6914 (error "Not on a heading")))
6916 (defun org-goto-right ()
6917 "Finish `org-goto' by going to the new location."
6918 (interactive)
6919 (if (org-at-heading-p)
6920 (progn
6921 (setq org-goto-selected-point (point)
6922 org-goto-exit-command 'right)
6923 (throw 'exit nil))
6924 (error "Not on a heading")))
6926 (defun org-goto-quit ()
6927 "Finish `org-goto' without cursor motion."
6928 (interactive)
6929 (setq org-goto-selected-point nil)
6930 (setq org-goto-exit-command 'quit)
6931 (throw 'exit nil))
6933 ;;; Indirect buffer display of subtrees
6935 (defvar org-indirect-dedicated-frame nil
6936 "This is the frame being used for indirect tree display.")
6937 (defvar org-last-indirect-buffer nil)
6939 (defun org-tree-to-indirect-buffer (&optional arg)
6940 "Create indirect buffer and narrow it to current subtree.
6941 With numerical prefix ARG, go up to this level and then take that tree.
6942 If ARG is negative, go up that many levels.
6943 If `org-indirect-buffer-display' is not `new-frame', the command removes the
6944 indirect buffer previously made with this command, to avoid proliferation of
6945 indirect buffers. However, when you call the command with a \
6946 \\[universal-argument] prefix, or
6947 when `org-indirect-buffer-display' is `new-frame', the last buffer
6948 is kept so that you can work with several indirect buffers at the same time.
6949 If `org-indirect-buffer-display' is `dedicated-frame', the \
6950 \\[universal-argument] prefix also
6951 requests that a new frame be made for the new buffer, so that the dedicated
6952 frame is not changed."
6953 (interactive "P")
6954 (let ((cbuf (current-buffer))
6955 (cwin (selected-window))
6956 (pos (point))
6957 beg end level heading ibuf)
6958 (save-excursion
6959 (org-back-to-heading t)
6960 (when (numberp arg)
6961 (setq level (org-outline-level))
6962 (if (< arg 0) (setq arg (+ level arg)))
6963 (while (> (setq level (org-outline-level)) arg)
6964 (outline-up-heading 1 t)))
6965 (setq beg (point)
6966 heading (org-get-heading))
6967 (org-end-of-subtree t t)
6968 (if (org-at-heading-p) (backward-char 1))
6969 (setq end (point)))
6970 (if (and (buffer-live-p org-last-indirect-buffer)
6971 (not (eq org-indirect-buffer-display 'new-frame))
6972 (not arg))
6973 (kill-buffer org-last-indirect-buffer))
6974 (setq ibuf (org-get-indirect-buffer cbuf)
6975 org-last-indirect-buffer ibuf)
6976 (cond
6977 ((or (eq org-indirect-buffer-display 'new-frame)
6978 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
6979 (select-frame (make-frame))
6980 (delete-other-windows)
6981 (org-pop-to-buffer-same-window ibuf)
6982 (org-set-frame-title heading))
6983 ((eq org-indirect-buffer-display 'dedicated-frame)
6984 (raise-frame
6985 (select-frame (or (and org-indirect-dedicated-frame
6986 (frame-live-p org-indirect-dedicated-frame)
6987 org-indirect-dedicated-frame)
6988 (setq org-indirect-dedicated-frame (make-frame)))))
6989 (delete-other-windows)
6990 (org-pop-to-buffer-same-window ibuf)
6991 (org-set-frame-title (concat "Indirect: " heading)))
6992 ((eq org-indirect-buffer-display 'current-window)
6993 (org-pop-to-buffer-same-window ibuf))
6994 ((eq org-indirect-buffer-display 'other-window)
6995 (pop-to-buffer ibuf))
6996 (t (error "Invalid value")))
6997 (if (featurep 'xemacs)
6998 (save-excursion (org-mode) (turn-on-font-lock)))
6999 (narrow-to-region beg end)
7000 (show-all)
7001 (goto-char pos)
7002 (run-hook-with-args 'org-cycle-hook 'all)
7003 (and (window-live-p cwin) (select-window cwin))))
7005 (defun org-get-indirect-buffer (&optional buffer)
7006 (setq buffer (or buffer (current-buffer)))
7007 (let ((n 1) (base (buffer-name buffer)) bname)
7008 (while (buffer-live-p
7009 (get-buffer (setq bname (concat base "-" (number-to-string n)))))
7010 (setq n (1+ n)))
7011 (condition-case nil
7012 (make-indirect-buffer buffer bname 'clone)
7013 (error (make-indirect-buffer buffer bname)))))
7015 (defun org-set-frame-title (title)
7016 "Set the title of the current frame to the string TITLE."
7017 ;; FIXME: how to name a single frame in XEmacs???
7018 (unless (featurep 'xemacs)
7019 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7021 ;;;; Structure editing
7023 ;;; Inserting headlines
7025 (defun org-previous-line-empty-p ()
7026 (save-excursion
7027 (and (not (bobp))
7028 (or (beginning-of-line 0) t)
7029 (save-match-data
7030 (looking-at "[ \t]*$")))))
7032 (defun org-insert-heading (&optional force-heading invisible-ok)
7033 "Insert a new heading or item with same depth at point.
7034 If point is in a plain list and FORCE-HEADING is nil, create a new list item.
7035 If point is at the beginning of a headline, insert a sibling before the
7036 current headline. If point is not at the beginning, split the line,
7037 create the new headline with the text in the current line after point
7038 \(but see also the variable `org-M-RET-may-split-line').
7040 When INVISIBLE-OK is set, stop at invisible headlines when going back.
7041 This is important for non-interactive uses of the command."
7042 (interactive "P")
7043 (if (or (= (buffer-size) 0)
7044 (and (not (save-excursion
7045 (and (ignore-errors (org-back-to-heading invisible-ok))
7046 (org-at-heading-p))))
7047 (or force-heading (not (org-in-item-p)))))
7048 (progn
7049 (insert "\n* ")
7050 (run-hooks 'org-insert-heading-hook))
7051 (when (or force-heading (not (org-insert-item)))
7052 (let* ((empty-line-p nil)
7053 (level nil)
7054 (on-heading (org-at-heading-p))
7055 (head (save-excursion
7056 (condition-case nil
7057 (progn
7058 (org-back-to-heading invisible-ok)
7059 (when (and (not on-heading)
7060 (featurep 'org-inlinetask)
7061 (integerp org-inlinetask-min-level)
7062 (>= (length (match-string 0))
7063 org-inlinetask-min-level))
7064 ;; Find a heading level before the inline task
7065 (while (and (setq level (org-up-heading-safe))
7066 (>= level org-inlinetask-min-level)))
7067 (if (org-at-heading-p)
7068 (org-back-to-heading invisible-ok)
7069 (error "This should not happen")))
7070 (setq empty-line-p (org-previous-line-empty-p))
7071 (match-string 0))
7072 (error "*"))))
7073 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7074 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7075 pos hide-previous previous-pos)
7076 (cond
7077 ((and (org-at-heading-p) (bolp)
7078 (or (bobp)
7079 (save-excursion (backward-char 1) (not (outline-invisible-p)))))
7080 ;; insert before the current line
7081 (open-line (if blank 2 1)))
7082 ((and (bolp)
7083 (not org-insert-heading-respect-content)
7084 (or (bobp)
7085 (save-excursion
7086 (backward-char 1) (not (outline-invisible-p)))))
7087 ;; insert right here
7088 nil)
7090 ;; somewhere in the line
7091 (save-excursion
7092 (setq previous-pos (point-at-bol))
7093 (end-of-line)
7094 (setq hide-previous (outline-invisible-p)))
7095 (and org-insert-heading-respect-content (org-show-subtree))
7096 (let ((split
7097 (and (org-get-alist-option org-M-RET-may-split-line 'headline)
7098 (save-excursion
7099 (let ((p (point)))
7100 (goto-char (point-at-bol))
7101 (and (looking-at org-complex-heading-regexp)
7102 (match-beginning 4)
7103 (> p (match-beginning 4)))))))
7104 tags pos)
7105 (cond
7106 (org-insert-heading-respect-content
7107 (org-end-of-subtree nil t)
7108 (when (featurep 'org-inlinetask)
7109 (while (and (not (eobp))
7110 (looking-at "\\(\\*+\\)[ \t]+")
7111 (>= (length (match-string 1))
7112 org-inlinetask-min-level))
7113 (org-end-of-subtree nil t)))
7114 (or (bolp) (newline))
7115 (or (org-previous-line-empty-p)
7116 (and blank (newline)))
7117 (open-line 1))
7118 ((org-at-heading-p)
7119 (when hide-previous
7120 (show-children)
7121 (org-show-entry))
7122 (looking-at ".*?\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?[ \t]*$")
7123 (setq tags (and (match-end 2) (match-string 2)))
7124 (and (match-end 1)
7125 (delete-region (match-beginning 1) (match-end 1)))
7126 (setq pos (point-at-bol))
7127 (or split (end-of-line 1))
7128 (delete-horizontal-space)
7129 (if (string-match "\\`\\*+\\'"
7130 (buffer-substring (point-at-bol) (point)))
7131 (insert " "))
7132 (newline (if blank 2 1))
7133 (when tags
7134 (save-excursion
7135 (goto-char pos)
7136 (end-of-line 1)
7137 (insert " " tags)
7138 (org-set-tags nil 'align))))
7140 (or split (end-of-line 1))
7141 (newline (if blank 2 1)))))))
7142 (insert head) (just-one-space)
7143 (setq pos (point))
7144 (end-of-line 1)
7145 (unless (= (point) pos) (just-one-space) (backward-delete-char 1))
7146 (when (and org-insert-heading-respect-content hide-previous)
7147 (save-excursion
7148 (goto-char previous-pos)
7149 (hide-subtree)))
7150 (run-hooks 'org-insert-heading-hook)))))
7152 (defun org-get-heading (&optional no-tags no-todo)
7153 "Return the heading of the current entry, without the stars.
7154 When NO-TAGS is non-nil, don't include tags.
7155 When NO-TODO is non-nil, don't include TODO keywords."
7156 (save-excursion
7157 (org-back-to-heading t)
7158 (cond
7159 ((and no-tags no-todo)
7160 (looking-at org-complex-heading-regexp)
7161 (match-string 4))
7162 (no-tags
7163 (looking-at (concat org-outline-regexp
7164 "\\(.*?\\)"
7165 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7166 (match-string 1))
7167 (no-todo
7168 (looking-at org-todo-line-regexp)
7169 (match-string 3))
7170 (t (looking-at org-heading-regexp)
7171 (match-string 2)))))
7173 (defun org-heading-components ()
7174 "Return the components of the current heading.
7175 This is a list with the following elements:
7176 - the level as an integer
7177 - the reduced level, different if `org-odd-levels-only' is set.
7178 - the TODO keyword, or nil
7179 - the priority character, like ?A, or nil if no priority is given
7180 - the headline text itself, or the tags string if no headline text
7181 - the tags string, or nil."
7182 (save-excursion
7183 (org-back-to-heading t)
7184 (if (let (case-fold-search) (looking-at org-complex-heading-regexp))
7185 (list (length (match-string 1))
7186 (org-reduced-level (length (match-string 1)))
7187 (org-match-string-no-properties 2)
7188 (and (match-end 3) (aref (match-string 3) 2))
7189 (org-match-string-no-properties 4)
7190 (org-match-string-no-properties 5)))))
7192 (defun org-get-entry ()
7193 "Get the entry text, after heading, entire subtree."
7194 (save-excursion
7195 (org-back-to-heading t)
7196 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7198 (defun org-insert-heading-after-current ()
7199 "Insert a new heading with same level as current, after current subtree."
7200 (interactive)
7201 (org-back-to-heading)
7202 (org-insert-heading)
7203 (org-move-subtree-down)
7204 (end-of-line 1))
7206 (defun org-insert-heading-respect-content ()
7207 (interactive)
7208 (let ((org-insert-heading-respect-content t))
7209 (org-insert-heading t)))
7211 (defun org-insert-todo-heading-respect-content (&optional force-state)
7212 (interactive "P")
7213 (let ((org-insert-heading-respect-content t))
7214 (org-insert-todo-heading force-state t)))
7216 (defun org-insert-todo-heading (arg &optional force-heading)
7217 "Insert a new heading with the same level and TODO state as current heading.
7218 If the heading has no TODO state, or if the state is DONE, use the first
7219 state (TODO by default). Also with prefix arg, force first state."
7220 (interactive "P")
7221 (when (or force-heading (not (org-insert-item 'checkbox)))
7222 (org-insert-heading force-heading)
7223 (save-excursion
7224 (org-back-to-heading)
7225 (outline-previous-heading)
7226 (looking-at org-todo-line-regexp))
7227 (let*
7228 ((new-mark-x
7229 (if (or arg
7230 (not (match-beginning 2))
7231 (member (match-string 2) org-done-keywords))
7232 (car org-todo-keywords-1)
7233 (match-string 2)))
7234 (new-mark
7236 (run-hook-with-args-until-success
7237 'org-todo-get-default-hook new-mark-x nil)
7238 new-mark-x)))
7239 (beginning-of-line 1)
7240 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7241 (if org-treat-insert-todo-heading-as-state-change
7242 (org-todo new-mark)
7243 (insert new-mark " "))))
7244 (when org-provide-todo-statistics
7245 (org-update-parent-todo-statistics))))
7247 (defun org-insert-subheading (arg)
7248 "Insert a new subheading and demote it.
7249 Works for outline headings and for plain lists alike."
7250 (interactive "P")
7251 (org-insert-heading arg)
7252 (cond
7253 ((org-at-heading-p) (org-do-demote))
7254 ((org-at-item-p) (org-indent-item))))
7256 (defun org-insert-todo-subheading (arg)
7257 "Insert a new subheading with TODO keyword or checkbox and demote it.
7258 Works for outline headings and for plain lists alike."
7259 (interactive "P")
7260 (org-insert-todo-heading arg)
7261 (cond
7262 ((org-at-heading-p) (org-do-demote))
7263 ((org-at-item-p) (org-indent-item))))
7265 ;;; Promotion and Demotion
7267 (defvar org-after-demote-entry-hook nil
7268 "Hook run after an entry has been demoted.
7269 The cursor will be at the beginning of the entry.
7270 When a subtree is being demoted, the hook will be called for each node.")
7272 (defvar org-after-promote-entry-hook nil
7273 "Hook run after an entry has been promoted.
7274 The cursor will be at the beginning of the entry.
7275 When a subtree is being promoted, the hook will be called for each node.")
7277 (defun org-promote-subtree ()
7278 "Promote the entire subtree.
7279 See also `org-promote'."
7280 (interactive)
7281 (save-excursion
7282 (org-with-limited-levels (org-map-tree 'org-promote)))
7283 (org-fix-position-after-promote))
7285 (defun org-demote-subtree ()
7286 "Demote the entire subtree. See `org-demote'.
7287 See also `org-promote'."
7288 (interactive)
7289 (save-excursion
7290 (org-with-limited-levels (org-map-tree 'org-demote)))
7291 (org-fix-position-after-promote))
7294 (defun org-do-promote ()
7295 "Promote the current heading higher up the tree.
7296 If the region is active in `transient-mark-mode', promote all headings
7297 in the region."
7298 (interactive)
7299 (save-excursion
7300 (if (org-region-active-p)
7301 (org-map-region 'org-promote (region-beginning) (region-end))
7302 (org-promote)))
7303 (org-fix-position-after-promote))
7305 (defun org-do-demote ()
7306 "Demote the current heading lower down the tree.
7307 If the region is active in `transient-mark-mode', demote all headings
7308 in the region."
7309 (interactive)
7310 (save-excursion
7311 (if (org-region-active-p)
7312 (org-map-region 'org-demote (region-beginning) (region-end))
7313 (org-demote)))
7314 (org-fix-position-after-promote))
7316 (defun org-fix-position-after-promote ()
7317 "Make sure that after pro/demotion cursor position is right."
7318 (let ((pos (point)))
7319 (when (save-excursion
7320 (beginning-of-line 1)
7321 (looking-at org-todo-line-regexp)
7322 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
7323 (cond ((eobp) (insert " "))
7324 ((eolp) (insert " "))
7325 ((equal (char-after) ?\ ) (forward-char 1))))))
7327 (defun org-current-level ()
7328 "Return the level of the current entry, or nil if before the first headline.
7329 The level is the number of stars at the beginning of the headline."
7330 (save-excursion
7331 (org-with-limited-levels
7332 (if (ignore-errors (org-back-to-heading t))
7333 (funcall outline-level)))))
7335 (defun org-get-previous-line-level ()
7336 "Return the outline depth of the last headline before the current line.
7337 Returns 0 for the first headline in the buffer, and nil if before the
7338 first headline."
7339 (let ((current-level (org-current-level))
7340 (prev-level (when (> (line-number-at-pos) 1)
7341 (save-excursion
7342 (beginning-of-line 0)
7343 (org-current-level)))))
7344 (cond ((null current-level) nil) ; Before first headline
7345 ((null prev-level) 0) ; At first headline
7346 (prev-level))))
7348 (defun org-reduced-level (l)
7349 "Compute the effective level of a heading.
7350 This takes into account the setting of `org-odd-levels-only'."
7351 (cond
7352 ((zerop l) 0)
7353 (org-odd-levels-only (1+ (floor (/ l 2))))
7354 (t l)))
7356 (defun org-level-increment ()
7357 "Return the number of stars that will be added or removed at a
7358 time to headlines when structure editing, based on the value of
7359 `org-odd-levels-only'."
7360 (if org-odd-levels-only 2 1))
7362 (defun org-get-valid-level (level &optional change)
7363 "Rectify a level change under the influence of `org-odd-levels-only'
7364 LEVEL is a current level, CHANGE is by how much the level should be
7365 modified. Even if CHANGE is nil, LEVEL may be returned modified because
7366 even level numbers will become the next higher odd number."
7367 (if org-odd-levels-only
7368 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
7369 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
7370 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
7371 (max 1 (+ level (or change 0)))))
7373 (if (boundp 'define-obsolete-function-alias)
7374 (if (or (featurep 'xemacs) (< emacs-major-version 23))
7375 (define-obsolete-function-alias 'org-get-legal-level
7376 'org-get-valid-level)
7377 (define-obsolete-function-alias 'org-get-legal-level
7378 'org-get-valid-level "23.1")))
7380 (defun org-promote ()
7381 "Promote the current heading higher up the tree.
7382 If the region is active in `transient-mark-mode', promote all headings
7383 in the region."
7384 (org-back-to-heading t)
7385 (let* ((level (save-match-data (funcall outline-level)))
7386 (after-change-functions (remove 'flyspell-after-change-function
7387 after-change-functions))
7388 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
7389 (diff (abs (- level (length up-head) -1))))
7390 (if (= level 1) (error "Cannot promote to level 0. UNDO to recover if necessary"))
7391 (replace-match up-head nil t)
7392 ;; Fixup tag positioning
7393 (and org-auto-align-tags (org-set-tags nil t))
7394 (if org-adapt-indentation (org-fixup-indentation (- diff)))
7395 (run-hooks 'org-after-promote-entry-hook)))
7397 (defun org-demote ()
7398 "Demote the current heading lower down the tree.
7399 If the region is active in `transient-mark-mode', demote all headings
7400 in the region."
7401 (org-back-to-heading t)
7402 (let* ((level (save-match-data (funcall outline-level)))
7403 (after-change-functions (remove 'flyspell-after-change-function
7404 after-change-functions))
7405 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
7406 (diff (abs (- level (length down-head) -1))))
7407 (replace-match down-head nil t)
7408 ;; Fixup tag positioning
7409 (and org-auto-align-tags (org-set-tags nil t))
7410 (if org-adapt-indentation (org-fixup-indentation diff))
7411 (run-hooks 'org-after-demote-entry-hook)))
7413 (defun org-cycle-level ()
7414 "Cycle the level of an empty headline through possible states.
7415 This goes first to child, then to parent, level, then up the hierarchy.
7416 After top level, it switches back to sibling level."
7417 (interactive)
7418 (let ((org-adapt-indentation nil))
7419 (when (org-point-at-end-of-empty-headline)
7420 (setq this-command 'org-cycle-level) ; Only needed for caching
7421 (let ((cur-level (org-current-level))
7422 (prev-level (org-get-previous-line-level)))
7423 (cond
7424 ;; If first headline in file, promote to top-level.
7425 ((= prev-level 0)
7426 (loop repeat (/ (- cur-level 1) (org-level-increment))
7427 do (org-do-promote)))
7428 ;; If same level as prev, demote one.
7429 ((= prev-level cur-level)
7430 (org-do-demote))
7431 ;; If parent is top-level, promote to top level if not already.
7432 ((= prev-level 1)
7433 (loop repeat (/ (- cur-level 1) (org-level-increment))
7434 do (org-do-promote)))
7435 ;; If top-level, return to prev-level.
7436 ((= cur-level 1)
7437 (loop repeat (/ (- prev-level 1) (org-level-increment))
7438 do (org-do-demote)))
7439 ;; If less than prev-level, promote one.
7440 ((< cur-level prev-level)
7441 (org-do-promote))
7442 ;; If deeper than prev-level, promote until higher than
7443 ;; prev-level.
7444 ((> cur-level prev-level)
7445 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
7446 do (org-do-promote))))
7447 t))))
7449 (defun org-map-tree (fun)
7450 "Call FUN for every heading underneath the current one."
7451 (org-back-to-heading)
7452 (let ((level (funcall outline-level)))
7453 (save-excursion
7454 (funcall fun)
7455 (while (and (progn
7456 (outline-next-heading)
7457 (> (funcall outline-level) level))
7458 (not (eobp)))
7459 (funcall fun)))))
7461 (defun org-map-region (fun beg end)
7462 "Call FUN for every heading between BEG and END."
7463 (let ((org-ignore-region t))
7464 (save-excursion
7465 (setq end (copy-marker end))
7466 (goto-char beg)
7467 (if (and (re-search-forward org-outline-regexp-bol nil t)
7468 (< (point) end))
7469 (funcall fun))
7470 (while (and (progn
7471 (outline-next-heading)
7472 (< (point) end))
7473 (not (eobp)))
7474 (funcall fun)))))
7476 (defvar org-property-end-re) ; silence byte-compiler
7477 (defun org-fixup-indentation (diff)
7478 "Change the indentation in the current entry by DIFF.
7479 However, if any line in the current entry has no indentation, or if it
7480 would end up with no indentation after the change, nothing at all is done."
7481 (save-excursion
7482 (let ((end (save-excursion (outline-next-heading)
7483 (point-marker)))
7484 (prohibit (if (> diff 0)
7485 "^\\S-"
7486 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
7487 col)
7488 (unless (save-excursion (end-of-line 1)
7489 (re-search-forward prohibit end t))
7490 (while (and (< (point) end)
7491 (re-search-forward "^[ \t]+" end t))
7492 (goto-char (match-end 0))
7493 (setq col (current-column))
7494 (if (< diff 0) (replace-match ""))
7495 (org-indent-to-column (+ diff col))))
7496 (move-marker end nil))))
7498 (defun org-convert-to-odd-levels ()
7499 "Convert an org-mode file with all levels allowed to one with odd levels.
7500 This will leave level 1 alone, convert level 2 to level 3, level 3 to
7501 level 5 etc."
7502 (interactive)
7503 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
7504 (let ((outline-level 'org-outline-level)
7505 (org-odd-levels-only nil) n)
7506 (save-excursion
7507 (goto-char (point-min))
7508 (while (re-search-forward "^\\*\\*+ " nil t)
7509 (setq n (- (length (match-string 0)) 2))
7510 (while (>= (setq n (1- n)) 0)
7511 (org-demote))
7512 (end-of-line 1))))))
7514 (defun org-convert-to-oddeven-levels ()
7515 "Convert an org-mode file with only odd levels to one with odd/even levels.
7516 This promotes level 3 to level 2, level 5 to level 3 etc. If the
7517 file contains a section with an even level, conversion would
7518 destroy the structure of the file. An error is signaled in this
7519 case."
7520 (interactive)
7521 (goto-char (point-min))
7522 ;; First check if there are no even levels
7523 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
7524 (org-show-context t)
7525 (error "Not all levels are odd in this file. Conversion not possible"))
7526 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
7527 (let ((outline-regexp org-outline-regexp)
7528 (outline-level 'org-outline-level)
7529 (org-odd-levels-only nil) n)
7530 (save-excursion
7531 (goto-char (point-min))
7532 (while (re-search-forward "^\\*\\*+ " nil t)
7533 (setq n (/ (1- (length (match-string 0))) 2))
7534 (while (>= (setq n (1- n)) 0)
7535 (org-promote))
7536 (end-of-line 1))))))
7538 (defun org-tr-level (n)
7539 "Make N odd if required."
7540 (if org-odd-levels-only (1+ (/ n 2)) n))
7542 ;;; Vertical tree motion, cutting and pasting of subtrees
7544 (defun org-move-subtree-up (&optional arg)
7545 "Move the current subtree up past ARG headlines of the same level."
7546 (interactive "p")
7547 (org-move-subtree-down (- (prefix-numeric-value arg))))
7549 (defun org-move-subtree-down (&optional arg)
7550 "Move the current subtree down past ARG headlines of the same level."
7551 (interactive "p")
7552 (setq arg (prefix-numeric-value arg))
7553 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
7554 'org-get-last-sibling))
7555 (ins-point (make-marker))
7556 (cnt (abs arg))
7557 (col (current-column))
7558 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
7559 ;; Select the tree
7560 (org-back-to-heading)
7561 (setq beg0 (point))
7562 (save-excursion
7563 (setq ne-beg (org-back-over-empty-lines))
7564 (setq beg (point)))
7565 (save-match-data
7566 (save-excursion (outline-end-of-heading)
7567 (setq folded (outline-invisible-p)))
7568 (outline-end-of-subtree))
7569 (outline-next-heading)
7570 (setq ne-end (org-back-over-empty-lines))
7571 (setq end (point))
7572 (goto-char beg0)
7573 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
7574 ;; include less whitespace
7575 (save-excursion
7576 (goto-char beg)
7577 (forward-line (- ne-beg ne-end))
7578 (setq beg (point))))
7579 ;; Find insertion point, with error handling
7580 (while (> cnt 0)
7581 (or (and (funcall movfunc) (looking-at org-outline-regexp))
7582 (progn (goto-char beg0)
7583 (error "Cannot move past superior level or buffer limit")))
7584 (setq cnt (1- cnt)))
7585 (if (> arg 0)
7586 ;; Moving forward - still need to move over subtree
7587 (progn (org-end-of-subtree t t)
7588 (save-excursion
7589 (org-back-over-empty-lines)
7590 (or (bolp) (newline)))))
7591 (setq ne-ins (org-back-over-empty-lines))
7592 (move-marker ins-point (point))
7593 (setq txt (buffer-substring beg end))
7594 (org-save-markers-in-region beg end)
7595 (delete-region beg end)
7596 (org-remove-empty-overlays-at beg)
7597 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
7598 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
7599 (and (not (bolp)) (looking-at "\n") (forward-char 1))
7600 (let ((bbb (point)))
7601 (insert-before-markers txt)
7602 (org-reinstall-markers-in-region bbb)
7603 (move-marker ins-point bbb))
7604 (or (bolp) (insert "\n"))
7605 (setq ins-end (point))
7606 (goto-char ins-point)
7607 (org-skip-whitespace)
7608 (when (and (< arg 0)
7609 (org-first-sibling-p)
7610 (> ne-ins ne-beg))
7611 ;; Move whitespace back to beginning
7612 (save-excursion
7613 (goto-char ins-end)
7614 (let ((kill-whole-line t))
7615 (kill-line (- ne-ins ne-beg)) (point)))
7616 (insert (make-string (- ne-ins ne-beg) ?\n)))
7617 (move-marker ins-point nil)
7618 (if folded
7619 (hide-subtree)
7620 (org-show-entry)
7621 (show-children)
7622 (org-cycle-hide-drawers 'children))
7623 (org-clean-visibility-after-subtree-move)
7624 ;; move back to the initial column we were at
7625 (move-to-column col)))
7627 (defvar org-subtree-clip ""
7628 "Clipboard for cut and paste of subtrees.
7629 This is actually only a copy of the kill, because we use the normal kill
7630 ring. We need it to check if the kill was created by `org-copy-subtree'.")
7632 (defvar org-subtree-clip-folded nil
7633 "Was the last copied subtree folded?
7634 This is used to fold the tree back after pasting.")
7636 (defun org-cut-subtree (&optional n)
7637 "Cut the current subtree into the clipboard.
7638 With prefix arg N, cut this many sequential subtrees.
7639 This is a short-hand for marking the subtree and then cutting it."
7640 (interactive "p")
7641 (org-copy-subtree n 'cut))
7643 (defun org-copy-subtree (&optional n cut force-store-markers)
7644 "Cut the current subtree into the clipboard.
7645 With prefix arg N, cut this many sequential subtrees.
7646 This is a short-hand for marking the subtree and then copying it.
7647 If CUT is non-nil, actually cut the subtree.
7648 If FORCE-STORE-MARKERS is non-nil, store the relative locations
7649 of some markers in the region, even if CUT is non-nil. This is
7650 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
7651 (interactive "p")
7652 (let (beg end folded (beg0 (point)))
7653 (if (org-called-interactively-p 'any)
7654 (org-back-to-heading nil) ; take what looks like a subtree
7655 (org-back-to-heading t)) ; take what is really there
7656 (org-back-over-empty-lines)
7657 (setq beg (point))
7658 (skip-chars-forward " \t\r\n")
7659 (save-match-data
7660 (save-excursion (outline-end-of-heading)
7661 (setq folded (outline-invisible-p)))
7662 (condition-case nil
7663 (org-forward-same-level (1- n) t)
7664 (error nil))
7665 (org-end-of-subtree t t))
7666 (org-back-over-empty-lines)
7667 (setq end (point))
7668 (goto-char beg0)
7669 (when (> end beg)
7670 (setq org-subtree-clip-folded folded)
7671 (when (or cut force-store-markers)
7672 (org-save-markers-in-region beg end))
7673 (if cut (kill-region beg end) (copy-region-as-kill beg end))
7674 (setq org-subtree-clip (current-kill 0))
7675 (message "%s: Subtree(s) with %d characters"
7676 (if cut "Cut" "Copied")
7677 (length org-subtree-clip)))))
7679 (defun org-paste-subtree (&optional level tree for-yank)
7680 "Paste the clipboard as a subtree, with modification of headline level.
7681 The entire subtree is promoted or demoted in order to match a new headline
7682 level.
7684 If the cursor is at the beginning of a headline, the same level as
7685 that headline is used to paste the tree
7687 If not, the new level is derived from the *visible* headings
7688 before and after the insertion point, and taken to be the inferior headline
7689 level of the two. So if the previous visible heading is level 3 and the
7690 next is level 4 (or vice versa), level 4 will be used for insertion.
7691 This makes sure that the subtree remains an independent subtree and does
7692 not swallow low level entries.
7694 You can also force a different level, either by using a numeric prefix
7695 argument, or by inserting the heading marker by hand. For example, if the
7696 cursor is after \"*****\", then the tree will be shifted to level 5.
7698 If optional TREE is given, use this text instead of the kill ring.
7700 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
7701 move back over whitespace before inserting, and move point to the end of
7702 the inserted text when done."
7703 (interactive "P")
7704 (setq tree (or tree (and kill-ring (current-kill 0))))
7705 (unless (org-kill-is-subtree-p tree)
7706 (error "%s"
7707 (substitute-command-keys
7708 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
7709 (org-with-limited-levels
7710 (let* ((visp (not (outline-invisible-p)))
7711 (txt tree)
7712 (^re_ "\\(\\*+\\)[ \t]*")
7713 (old-level (if (string-match org-outline-regexp-bol txt)
7714 (- (match-end 0) (match-beginning 0) 1)
7715 -1))
7716 (force-level (cond (level (prefix-numeric-value level))
7717 ((and (looking-at "[ \t]*$")
7718 (string-match
7719 "^\\*+$" (buffer-substring
7720 (point-at-bol) (point))))
7721 (- (match-end 1) (match-beginning 1)))
7722 ((and (bolp)
7723 (looking-at org-outline-regexp))
7724 (- (match-end 0) (point) 1))
7725 (t nil)))
7726 (previous-level (save-excursion
7727 (condition-case nil
7728 (progn
7729 (outline-previous-visible-heading 1)
7730 (if (looking-at ^re_)
7731 (- (match-end 0) (match-beginning 0) 1)
7733 (error 1))))
7734 (next-level (save-excursion
7735 (condition-case nil
7736 (progn
7737 (or (looking-at org-outline-regexp)
7738 (outline-next-visible-heading 1))
7739 (if (looking-at ^re_)
7740 (- (match-end 0) (match-beginning 0) 1)
7742 (error 1))))
7743 (new-level (or force-level (max previous-level next-level)))
7744 (shift (if (or (= old-level -1)
7745 (= new-level -1)
7746 (= old-level new-level))
7748 (- new-level old-level)))
7749 (delta (if (> shift 0) -1 1))
7750 (func (if (> shift 0) 'org-demote 'org-promote))
7751 (org-odd-levels-only nil)
7752 beg end newend)
7753 ;; Remove the forced level indicator
7754 (if force-level
7755 (delete-region (point-at-bol) (point)))
7756 ;; Paste
7757 (beginning-of-line (if (bolp) 1 2))
7758 (unless for-yank (org-back-over-empty-lines))
7759 (setq beg (point))
7760 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
7761 (insert-before-markers txt)
7762 (unless (string-match "\n\\'" txt) (insert "\n"))
7763 (setq newend (point))
7764 (org-reinstall-markers-in-region beg)
7765 (setq end (point))
7766 (goto-char beg)
7767 (skip-chars-forward " \t\n\r")
7768 (setq beg (point))
7769 (if (and (outline-invisible-p) visp)
7770 (save-excursion (outline-show-heading)))
7771 ;; Shift if necessary
7772 (unless (= shift 0)
7773 (save-restriction
7774 (narrow-to-region beg end)
7775 (while (not (= shift 0))
7776 (org-map-region func (point-min) (point-max))
7777 (setq shift (+ delta shift)))
7778 (goto-char (point-min))
7779 (setq newend (point-max))))
7780 (when (or (org-called-interactively-p 'interactive) for-yank)
7781 (message "Clipboard pasted as level %d subtree" new-level))
7782 (if (and (not for-yank) ; in this case, org-yank will decide about folding
7783 kill-ring
7784 (eq org-subtree-clip (current-kill 0))
7785 org-subtree-clip-folded)
7786 ;; The tree was folded before it was killed/copied
7787 (hide-subtree))
7788 (and for-yank (goto-char newend)))))
7790 (defun org-kill-is-subtree-p (&optional txt)
7791 "Check if the current kill is an outline subtree, or a set of trees.
7792 Returns nil if kill does not start with a headline, or if the first
7793 headline level is not the largest headline level in the tree.
7794 So this will actually accept several entries of equal levels as well,
7795 which is OK for `org-paste-subtree'.
7796 If optional TXT is given, check this string instead of the current kill."
7797 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
7798 (re (org-get-limited-outline-regexp))
7799 (^re (concat "^" re))
7800 (start-level (and kill
7801 (string-match
7802 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
7803 kill)
7804 (- (match-end 2) (match-beginning 2) 1)))
7805 (start (1+ (or (match-beginning 2) -1))))
7806 (if (not start-level)
7807 (progn
7808 nil) ;; does not even start with a heading
7809 (catch 'exit
7810 (while (setq start (string-match ^re kill (1+ start)))
7811 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
7812 (throw 'exit nil)))
7813 t))))
7815 (defvar org-markers-to-move nil
7816 "Markers that should be moved with a cut-and-paste operation.
7817 Those markers are stored together with their positions relative to
7818 the start of the region.")
7820 (defun org-save-markers-in-region (beg end)
7821 "Check markers in region.
7822 If these markers are between BEG and END, record their position relative
7823 to BEG, so that after moving the block of text, we can put the markers back
7824 into place.
7825 This function gets called just before an entry or tree gets cut from the
7826 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
7827 called immediately, to move the markers with the entries."
7828 (setq org-markers-to-move nil)
7829 (when (featurep 'org-clock)
7830 (org-clock-save-markers-for-cut-and-paste beg end))
7831 (when (featurep 'org-agenda)
7832 (org-agenda-save-markers-for-cut-and-paste beg end)))
7834 (defun org-check-and-save-marker (marker beg end)
7835 "Check if MARKER is between BEG and END.
7836 If yes, remember the marker and the distance to BEG."
7837 (when (and (marker-buffer marker)
7838 (equal (marker-buffer marker) (current-buffer)))
7839 (if (and (>= marker beg) (< marker end))
7840 (push (cons marker (- marker beg)) org-markers-to-move))))
7842 (defun org-reinstall-markers-in-region (beg)
7843 "Move all remembered markers to their position relative to BEG."
7844 (mapc (lambda (x)
7845 (move-marker (car x) (+ beg (cdr x))))
7846 org-markers-to-move)
7847 (setq org-markers-to-move nil))
7849 (defun org-narrow-to-subtree ()
7850 "Narrow buffer to the current subtree."
7851 (interactive)
7852 (save-excursion
7853 (save-match-data
7854 (org-with-limited-levels
7855 (narrow-to-region
7856 (progn (org-back-to-heading t) (point))
7857 (progn (org-end-of-subtree t t)
7858 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
7859 (point)))))))
7861 (defun org-narrow-to-block ()
7862 "Narrow buffer to the current block."
7863 (interactive)
7864 (let* ((case-fold-search t)
7865 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
7866 "^[ \t]*#\\+end_.*")))
7867 (if blockp
7868 (narrow-to-region (car blockp) (cdr blockp))
7869 (error "Not in a block"))))
7871 (eval-when-compile
7872 (defvar org-property-drawer-re))
7874 (defvar org-property-start-re) ;; defined below
7875 (defun org-clone-subtree-with-time-shift (n &optional shift)
7876 "Clone the task (subtree) at point N times.
7877 The clones will be inserted as siblings.
7879 In interactive use, the user will be prompted for the number of
7880 clones to be produced, and for a time SHIFT, which may be a
7881 repeater as used in time stamps, for example `+3d'.
7883 When a valid repeater is given and the entry contains any time
7884 stamps, the clones will become a sequence in time, with time
7885 stamps in the subtree shifted for each clone produced. If SHIFT
7886 is nil or the empty string, time stamps will be left alone. The
7887 ID property of the original subtree is removed.
7889 If the original subtree did contain time stamps with a repeater,
7890 the following will happen:
7891 - the repeater will be removed in each clone
7892 - an additional clone will be produced, with the current, unshifted
7893 date(s) in the entry.
7894 - the original entry will be placed *after* all the clones, with
7895 repeater intact.
7896 - the start days in the repeater in the original entry will be shifted
7897 to past the last clone.
7898 I this way you can spell out a number of instances of a repeating task,
7899 and still retain the repeater to cover future instances of the task."
7900 (interactive "nNumber of clones to produce: \nsDate shift per clone (e.g. +1w, empty to copy unchanged): ")
7901 (let (beg end template task idprop
7902 shift-n shift-what doshift nmin nmax (n-no-remove -1)
7903 (drawer-re org-drawer-regexp))
7904 (if (not (and (integerp n) (> n 0)))
7905 (error "Invalid number of replications %s" n))
7906 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
7907 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([dwmy]\\)[ \t]*\\'"
7908 shift)))
7909 (error "Invalid shift specification %s" shift))
7910 (when doshift
7911 (setq shift-n (string-to-number (match-string 1 shift))
7912 shift-what (cdr (assoc (match-string 2 shift)
7913 '(("d" . day) ("w" . week)
7914 ("m" . month) ("y" . year))))))
7915 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
7916 (setq nmin 1 nmax n)
7917 (org-back-to-heading t)
7918 (setq beg (point))
7919 (setq idprop (org-entry-get nil "ID"))
7920 (org-end-of-subtree t t)
7921 (or (bolp) (insert "\n"))
7922 (setq end (point))
7923 (setq template (buffer-substring beg end))
7924 (when (and doshift
7925 (string-match "<[^<>\n]+ \\+[0-9]+[dwmy][^<>\n]*>" template))
7926 (delete-region beg end)
7927 (setq end beg)
7928 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
7929 (goto-char end)
7930 (loop for n from nmin to nmax do
7931 ;; prepare clone
7932 (with-temp-buffer
7933 (insert template)
7934 (org-mode)
7935 (goto-char (point-min))
7936 (org-show-subtree)
7937 (and idprop (if org-clone-delete-id
7938 (org-entry-delete nil "ID")
7939 (org-id-get-create t)))
7940 (unless (= n 0)
7941 (while (re-search-forward "^[ \t]*CLOCK:.*$" nil t)
7942 (kill-whole-line))
7943 (goto-char (point-min))
7944 (while (re-search-forward drawer-re nil t)
7945 (mapc (lambda (d)
7946 (org-remove-empty-drawer-at d (point))) org-drawers)))
7947 (goto-char (point-min))
7948 (when doshift
7949 (while (re-search-forward org-ts-regexp-both nil t)
7950 (org-timestamp-change (* n shift-n) shift-what))
7951 (unless (= n n-no-remove)
7952 (goto-char (point-min))
7953 (while (re-search-forward org-ts-regexp nil t)
7954 (save-excursion
7955 (goto-char (match-beginning 0))
7956 (if (looking-at "<[^<>\n]+\\( +\\+[0-9]+[dwmy]\\)")
7957 (delete-region (match-beginning 1) (match-end 1)))))))
7958 (setq task (buffer-string)))
7959 (insert task))
7960 (goto-char beg)))
7962 ;;; Outline Sorting
7964 (defun org-sort (with-case)
7965 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
7966 Optional argument WITH-CASE means sort case-sensitively."
7967 (interactive "P")
7968 (cond
7969 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
7970 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
7972 (org-call-with-arg 'org-sort-entries with-case))))
7974 (defun org-sort-remove-invisible (s)
7975 (remove-text-properties 0 (length s) org-rm-props s)
7976 (while (string-match org-bracket-link-regexp s)
7977 (setq s (replace-match (if (match-end 2)
7978 (match-string 3 s)
7979 (match-string 1 s)) t t s)))
7982 (defvar org-priority-regexp) ; defined later in the file
7984 (defvar org-after-sorting-entries-or-items-hook nil
7985 "Hook that is run after a bunch of entries or items have been sorted.
7986 When children are sorted, the cursor is in the parent line when this
7987 hook gets called. When a region or a plain list is sorted, the cursor
7988 will be in the first entry of the sorted region/list.")
7990 (defun org-sort-entries
7991 (&optional with-case sorting-type getkey-func compare-func property)
7992 "Sort entries on a certain level of an outline tree.
7993 If there is an active region, the entries in the region are sorted.
7994 Else, if the cursor is before the first entry, sort the top-level items.
7995 Else, the children of the entry at point are sorted.
7997 Sorting can be alphabetically, numerically, by date/time as given by
7998 a time stamp, by a property or by priority.
8000 The command prompts for the sorting type unless it has been given to the
8001 function through the SORTING-TYPE argument, which needs to be a character,
8002 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?r ?R ?f ?F). Here is the
8003 precise meaning of each character:
8005 n Numerically, by converting the beginning of the entry/item to a number.
8006 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8007 t By date/time, either the first active time stamp in the entry, or, if
8008 none exist, by the first inactive one.
8009 s By the scheduled date/time.
8010 d By deadline date/time.
8011 c By creation time, which is assumed to be the first inactive time stamp
8012 at the beginning of a line.
8013 p By priority according to the cookie.
8014 r By the value of a property.
8016 Capital letters will reverse the sort order.
8018 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8019 called with point at the beginning of the record. It must return either
8020 a string or a number that should serve as the sorting key for that record.
8022 Comparing entries ignores case by default. However, with an optional argument
8023 WITH-CASE, the sorting considers case as well."
8024 (interactive "P")
8025 (let ((case-func (if with-case 'identity 'downcase))
8026 start beg end stars re re2
8027 txt what tmp)
8028 ;; Find beginning and end of region to sort
8029 (cond
8030 ((org-region-active-p)
8031 ;; we will sort the region
8032 (setq end (region-end)
8033 what "region")
8034 (goto-char (region-beginning))
8035 (if (not (org-at-heading-p)) (outline-next-heading))
8036 (setq start (point)))
8037 ((or (org-at-heading-p)
8038 (condition-case nil (progn (org-back-to-heading) t) (error nil)))
8039 ;; we will sort the children of the current headline
8040 (org-back-to-heading)
8041 (setq start (point)
8042 end (progn (org-end-of-subtree t t)
8043 (or (bolp) (insert "\n"))
8044 (org-back-over-empty-lines)
8045 (point))
8046 what "children")
8047 (goto-char start)
8048 (show-subtree)
8049 (outline-next-heading))
8051 ;; we will sort the top-level entries in this file
8052 (goto-char (point-min))
8053 (or (org-at-heading-p) (outline-next-heading))
8054 (setq start (point))
8055 (goto-char (point-max))
8056 (beginning-of-line 1)
8057 (when (looking-at ".*?\\S-")
8058 ;; File ends in a non-white line
8059 (end-of-line 1)
8060 (insert "\n"))
8061 (setq end (point-max))
8062 (setq what "top-level")
8063 (goto-char start)
8064 (show-all)))
8066 (setq beg (point))
8067 (if (>= beg end) (error "Nothing to sort"))
8069 (looking-at "\\(\\*+\\)")
8070 (setq stars (match-string 1)
8071 re (concat "^" (regexp-quote stars) " +")
8072 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8073 txt (buffer-substring beg end))
8074 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8075 (if (and (not (equal stars "*")) (string-match re2 txt))
8076 (error "Region to sort contains a level above the first entry"))
8078 (unless sorting-type
8079 (message
8080 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8081 [t]ime [s]cheduled [d]eadline [c]reated
8082 A/N/T/S/D/C/P/O/F means reversed:"
8083 what)
8084 (setq sorting-type (read-char-exclusive))
8086 (and (= (downcase sorting-type) ?f)
8087 (setq getkey-func
8088 (org-icompleting-read "Sort using function: "
8089 obarray 'fboundp t nil nil))
8090 (setq getkey-func (intern getkey-func)))
8092 (and (= (downcase sorting-type) ?r)
8093 (setq property
8094 (org-icompleting-read "Property: "
8095 (mapcar 'list (org-buffer-property-keys t))
8096 nil t))))
8098 (message "Sorting entries...")
8100 (save-restriction
8101 (narrow-to-region start end)
8102 (let ((dcst (downcase sorting-type))
8103 (case-fold-search nil)
8104 (now (current-time)))
8105 (sort-subr
8106 (/= dcst sorting-type)
8107 ;; This function moves to the beginning character of the "record" to
8108 ;; be sorted.
8109 (lambda nil
8110 (if (re-search-forward re nil t)
8111 (goto-char (match-beginning 0))
8112 (goto-char (point-max))))
8113 ;; This function moves to the last character of the "record" being
8114 ;; sorted.
8115 (lambda nil
8116 (save-match-data
8117 (condition-case nil
8118 (outline-forward-same-level 1)
8119 (error
8120 (goto-char (point-max))))))
8121 ;; This function returns the value that gets sorted against.
8122 (lambda nil
8123 (cond
8124 ((= dcst ?n)
8125 (if (looking-at org-complex-heading-regexp)
8126 (string-to-number (match-string 4))
8127 nil))
8128 ((= dcst ?a)
8129 (if (looking-at org-complex-heading-regexp)
8130 (funcall case-func (match-string 4))
8131 nil))
8132 ((= dcst ?t)
8133 (let ((end (save-excursion (outline-next-heading) (point))))
8134 (if (or (re-search-forward org-ts-regexp end t)
8135 (re-search-forward org-ts-regexp-both end t))
8136 (org-time-string-to-seconds (match-string 0))
8137 (org-float-time now))))
8138 ((= dcst ?c)
8139 (let ((end (save-excursion (outline-next-heading) (point))))
8140 (if (re-search-forward
8141 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
8142 end t)
8143 (org-time-string-to-seconds (match-string 0))
8144 (org-float-time now))))
8145 ((= dcst ?s)
8146 (let ((end (save-excursion (outline-next-heading) (point))))
8147 (if (re-search-forward org-scheduled-time-regexp end t)
8148 (org-time-string-to-seconds (match-string 1))
8149 (org-float-time now))))
8150 ((= dcst ?d)
8151 (let ((end (save-excursion (outline-next-heading) (point))))
8152 (if (re-search-forward org-deadline-time-regexp end t)
8153 (org-time-string-to-seconds (match-string 1))
8154 (org-float-time now))))
8155 ((= dcst ?p)
8156 (if (re-search-forward org-priority-regexp (point-at-eol) t)
8157 (string-to-char (match-string 2))
8158 org-default-priority))
8159 ((= dcst ?r)
8160 (or (org-entry-get nil property) ""))
8161 ((= dcst ?o)
8162 (if (looking-at org-complex-heading-regexp)
8163 (- 9999 (length (member (match-string 2)
8164 org-todo-keywords-1)))))
8165 ((= dcst ?f)
8166 (if getkey-func
8167 (progn
8168 (setq tmp (funcall getkey-func))
8169 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
8170 tmp)
8171 (error "Invalid key function `%s'" getkey-func)))
8172 (t (error "Invalid sorting type `%c'" sorting-type))))
8174 (cond
8175 ((= dcst ?a) 'string<)
8176 ((= dcst ?f) compare-func)
8177 ((member dcst '(?p ?t ?s ?d ?c)) '<)
8178 (t nil)))))
8179 (run-hooks 'org-after-sorting-entries-or-items-hook)
8180 (message "Sorting entries...done")))
8182 (defun org-do-sort (table what &optional with-case sorting-type)
8183 "Sort TABLE of WHAT according to SORTING-TYPE.
8184 The user will be prompted for the SORTING-TYPE if the call to this
8185 function does not specify it. WHAT is only for the prompt, to indicate
8186 what is being sorted. The sorting key will be extracted from
8187 the car of the elements of the table.
8188 If WITH-CASE is non-nil, the sorting will be case-sensitive."
8189 (unless sorting-type
8190 (message
8191 "Sort %s: [a]lphabetic. [n]umeric. [t]ime. A/N/T means reversed:"
8192 what)
8193 (setq sorting-type (read-char-exclusive)))
8194 (let ((dcst (downcase sorting-type))
8195 extractfun comparefun)
8196 ;; Define the appropriate functions
8197 (cond
8198 ((= dcst ?n)
8199 (setq extractfun 'string-to-number
8200 comparefun (if (= dcst sorting-type) '< '>)))
8201 ((= dcst ?a)
8202 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
8203 (lambda(x) (downcase (org-sort-remove-invisible x))))
8204 comparefun (if (= dcst sorting-type)
8205 'string<
8206 (lambda (a b) (and (not (string< a b))
8207 (not (string= a b)))))))
8208 ((= dcst ?t)
8209 (setq extractfun
8210 (lambda (x)
8211 (if (or (string-match org-ts-regexp x)
8212 (string-match org-ts-regexp-both x))
8213 (org-float-time
8214 (org-time-string-to-time (match-string 0 x)))
8216 comparefun (if (= dcst sorting-type) '< '>)))
8217 (t (error "Invalid sorting type `%c'" sorting-type)))
8219 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
8220 table)
8221 (lambda (a b) (funcall comparefun (car a) (car b))))))
8224 ;;; The orgstruct minor mode
8226 ;; Define a minor mode which can be used in other modes in order to
8227 ;; integrate the org-mode structure editing commands.
8229 ;; This is really a hack, because the org-mode structure commands use
8230 ;; keys which normally belong to the major mode. Here is how it
8231 ;; works: The minor mode defines all the keys necessary to operate the
8232 ;; structure commands, but wraps the commands into a function which
8233 ;; tests if the cursor is currently at a headline or a plain list
8234 ;; item. If that is the case, the structure command is used,
8235 ;; temporarily setting many Org-mode variables like regular
8236 ;; expressions for filling etc. However, when any of those keys is
8237 ;; used at a different location, function uses `key-binding' to look
8238 ;; up if the key has an associated command in another currently active
8239 ;; keymap (minor modes, major mode, global), and executes that
8240 ;; command. There might be problems if any of the keys is otherwise
8241 ;; used as a prefix key.
8243 ;; Another challenge is that the key binding for TAB can be tab or \C-i,
8244 ;; likewise the binding for RET can be return or \C-m. Orgtbl-mode
8245 ;; addresses this by checking explicitly for both bindings.
8247 (defvar orgstruct-mode-map (make-sparse-keymap)
8248 "Keymap for the minor `orgstruct-mode'.")
8250 (defvar org-local-vars nil
8251 "List of local variables, for use by `orgstruct-mode'.")
8253 ;;;###autoload
8254 (define-minor-mode orgstruct-mode
8255 "Toggle the minor mode `orgstruct-mode'.
8256 This mode is for using Org-mode structure commands in other
8257 modes. The following keys behave as if Org-mode were active, if
8258 the cursor is on a headline, or on a plain list item (both as
8259 defined by Org-mode).
8261 M-up Move entry/item up
8262 M-down Move entry/item down
8263 M-left Promote
8264 M-right Demote
8265 M-S-up Move entry/item up
8266 M-S-down Move entry/item down
8267 M-S-left Promote subtree
8268 M-S-right Demote subtree
8269 M-q Fill paragraph and items like in Org-mode
8270 C-c ^ Sort entries
8271 C-c - Cycle list bullet
8272 TAB Cycle item visibility
8273 M-RET Insert new heading/item
8274 S-M-RET Insert new TODO heading / Checkbox item
8275 C-c C-c Set tags / toggle checkbox"
8276 nil " OrgStruct" nil
8277 (org-load-modules-maybe)
8278 (and (orgstruct-setup) (defun orgstruct-setup () nil)))
8280 ;;;###autoload
8281 (defun turn-on-orgstruct ()
8282 "Unconditionally turn on `orgstruct-mode'."
8283 (orgstruct-mode 1))
8285 (defun orgstruct++-mode (&optional arg)
8286 "Toggle `orgstruct-mode', the enhanced version of it.
8287 In addition to setting orgstruct-mode, this also exports all indentation
8288 and autofilling variables from org-mode into the buffer. It will also
8289 recognize item context in multiline items.
8290 Note that turning off orgstruct-mode will *not* remove the
8291 indentation/paragraph settings. This can only be done by refreshing the
8292 major mode, for example with \\[normal-mode]."
8293 (interactive "P")
8294 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
8295 (if (< arg 1)
8296 (orgstruct-mode -1)
8297 (orgstruct-mode 1)
8298 (let (var val)
8299 (mapc
8300 (lambda (x)
8301 (when (string-match
8302 "^\\(paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
8303 (symbol-name (car x)))
8304 (setq var (car x) val (nth 1 x))
8305 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
8306 org-local-vars)
8307 (org-set-local 'orgstruct-is-++ t))))
8309 (defvar orgstruct-is-++ nil
8310 "Is `orgstruct-mode' in ++ version in the current-buffer?")
8311 (make-variable-buffer-local 'orgstruct-is-++)
8313 ;;;###autoload
8314 (defun turn-on-orgstruct++ ()
8315 "Unconditionally turn on `orgstruct++-mode'."
8316 (orgstruct++-mode 1))
8318 (defun orgstruct-error ()
8319 "Error when there is no default binding for a structure key."
8320 (interactive)
8321 (error "This key has no function outside structure elements"))
8323 (defun orgstruct-setup ()
8324 "Setup orgstruct keymaps."
8325 (let ((nfunc 0)
8326 (bindings
8327 (list
8328 '([(meta up)] org-metaup)
8329 '([(meta down)] org-metadown)
8330 '([(meta left)] org-metaleft)
8331 '([(meta right)] org-metaright)
8332 '([(meta shift up)] org-shiftmetaup)
8333 '([(meta shift down)] org-shiftmetadown)
8334 '([(meta shift left)] org-shiftmetaleft)
8335 '([(meta shift right)] org-shiftmetaright)
8336 '([?\e (up)] org-metaup)
8337 '([?\e (down)] org-metadown)
8338 '([?\e (left)] org-metaleft)
8339 '([?\e (right)] org-metaright)
8340 '([?\e (shift up)] org-shiftmetaup)
8341 '([?\e (shift down)] org-shiftmetadown)
8342 '([?\e (shift left)] org-shiftmetaleft)
8343 '([?\e (shift right)] org-shiftmetaright)
8344 '([(shift up)] org-shiftup)
8345 '([(shift down)] org-shiftdown)
8346 '([(shift left)] org-shiftleft)
8347 '([(shift right)] org-shiftright)
8348 '("\C-c\C-c" org-ctrl-c-ctrl-c)
8349 '("\M-q" fill-paragraph)
8350 '("\C-c^" org-sort)
8351 '("\C-c-" org-cycle-list-bullet)))
8352 elt key fun cmd)
8353 (while (setq elt (pop bindings))
8354 (setq nfunc (1+ nfunc))
8355 (setq key (org-key (car elt))
8356 fun (nth 1 elt)
8357 cmd (orgstruct-make-binding fun nfunc key))
8358 (org-defkey orgstruct-mode-map key cmd))
8360 ;; Special treatment needed for TAB and RET
8361 (org-defkey orgstruct-mode-map [(tab)]
8362 (orgstruct-make-binding 'org-cycle 102 [(tab)] "\C-i"))
8363 (org-defkey orgstruct-mode-map "\C-i"
8364 (orgstruct-make-binding 'org-cycle 103 "\C-i" [(tab)]))
8366 (org-defkey orgstruct-mode-map "\M-\C-m"
8367 (orgstruct-make-binding 'org-insert-heading 105
8368 "\M-\C-m" [(meta return)]))
8369 (org-defkey orgstruct-mode-map [(meta return)]
8370 (orgstruct-make-binding 'org-insert-heading 106
8371 [(meta return)] "\M-\C-m"))
8373 (org-defkey orgstruct-mode-map [(shift meta return)]
8374 (orgstruct-make-binding 'org-insert-todo-heading 107
8375 [(meta return)] "\M-\C-m"))
8377 (org-defkey orgstruct-mode-map "\e\C-m"
8378 (orgstruct-make-binding 'org-insert-heading 108
8379 "\e\C-m" [?\e (return)]))
8380 (org-defkey orgstruct-mode-map [?\e (return)]
8381 (orgstruct-make-binding 'org-insert-heading 109
8382 [?\e (return)] "\e\C-m"))
8383 (org-defkey orgstruct-mode-map [?\e (shift return)]
8384 (orgstruct-make-binding 'org-insert-todo-heading 110
8385 [?\e (return)] "\e\C-m"))
8387 (unless org-local-vars
8388 (setq org-local-vars (org-get-local-variables)))
8392 (defun orgstruct-make-binding (fun n &rest keys)
8393 "Create a function for binding in the structure minor mode.
8394 FUN is the command to call inside a table. N is used to create a unique
8395 command name. KEYS are keys that should be checked in for a command
8396 to execute outside of tables."
8397 (eval
8398 (list 'defun
8399 (intern (concat "orgstruct-hijacker-command-" (int-to-string n)))
8400 '(arg)
8401 (concat "In Structure, run `" (symbol-name fun) "'.\n"
8402 "Outside of structure, run the binding of `"
8403 (mapconcat (lambda (x) (format "%s" x)) keys "' or `")
8404 "'.")
8405 '(interactive "p")
8406 (list 'if
8407 `(org-context-p 'headline 'item
8408 (and orgstruct-is-++
8409 ,(and (memq fun '(org-insert-heading org-insert-todo-heading)) t)
8410 'item-body))
8411 (list 'org-run-like-in-org-mode (list 'quote fun))
8412 (list 'let '(orgstruct-mode)
8413 (list 'call-interactively
8414 (append '(or)
8415 (mapcar (lambda (k)
8416 (list 'key-binding k))
8417 keys)
8418 '('orgstruct-error))))))))
8420 (defun org-context-p (&rest contexts)
8421 "Check if local context is any of CONTEXTS.
8422 Possible values in the list of contexts are `table', `headline', and `item'."
8423 (let ((pos (point)))
8424 (goto-char (point-at-bol))
8425 (prog1 (or (and (memq 'table contexts)
8426 (looking-at "[ \t]*|"))
8427 (and (memq 'headline contexts)
8428 (looking-at org-outline-regexp))
8429 (and (memq 'item contexts)
8430 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
8431 (and (memq 'item-body contexts)
8432 (org-in-item-p)))
8433 (goto-char pos))))
8435 (defun org-get-local-variables ()
8436 "Return a list of all local variables in an org-mode buffer."
8437 (let (varlist)
8438 (with-current-buffer (get-buffer-create "*Org tmp*")
8439 (erase-buffer)
8440 (org-mode)
8441 (setq varlist (buffer-local-variables)))
8442 (kill-buffer "*Org tmp*")
8443 (delq nil
8444 (mapcar
8445 (lambda (x)
8446 (setq x
8447 (if (symbolp x)
8448 (list x)
8449 (list (car x) (list 'quote (cdr x)))))
8450 (if (string-match
8451 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
8452 (symbol-name (car x)))
8453 x nil))
8454 varlist))))
8456 (defun org-clone-local-variables (from-buffer &optional regexp)
8457 "Clone local variables from FROM-BUFFER.
8458 Optional argument REGEXP selects variables to clone."
8459 (mapc
8460 (lambda (pair)
8461 (and (symbolp (car pair))
8462 (or (null regexp)
8463 (string-match regexp (symbol-name (car pair))))
8464 (set (make-local-variable (car pair))
8465 (cdr pair))))
8466 (buffer-local-variables from-buffer)))
8468 ;;;###autoload
8469 (defun org-run-like-in-org-mode (cmd)
8470 "Run a command, pretending that the current buffer is in Org-mode.
8471 This will temporarily bind local variables that are typically bound in
8472 Org-mode to the values they have in Org-mode, and then interactively
8473 call CMD."
8474 (org-load-modules-maybe)
8475 (unless org-local-vars
8476 (setq org-local-vars (org-get-local-variables)))
8477 (eval (list 'let org-local-vars
8478 (list 'call-interactively (list 'quote cmd)))))
8480 ;;;; Archiving
8482 (defun org-get-category (&optional pos force-refresh)
8483 "Get the category applying to position POS."
8484 (if force-refresh (org-refresh-category-properties))
8485 (let ((pos (or pos (point))))
8486 (or (get-text-property pos 'org-category)
8487 (progn (org-refresh-category-properties)
8488 (get-text-property pos 'org-category)))))
8490 (defun org-refresh-category-properties ()
8491 "Refresh category text properties in the buffer."
8492 (let ((def-cat (cond
8493 ((null org-category)
8494 (if buffer-file-name
8495 (file-name-sans-extension
8496 (file-name-nondirectory buffer-file-name))
8497 "???"))
8498 ((symbolp org-category) (symbol-name org-category))
8499 (t org-category)))
8500 beg end cat pos optionp)
8501 (org-unmodified
8502 (save-excursion
8503 (save-restriction
8504 (widen)
8505 (goto-char (point-min))
8506 (put-text-property (point) (point-max) 'org-category def-cat)
8507 (while (re-search-forward
8508 "^\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
8509 (setq pos (match-end 0)
8510 optionp (equal (char-after (match-beginning 0)) ?#)
8511 cat (org-trim (match-string 2)))
8512 (if optionp
8513 (setq beg (point-at-bol) end (point-max))
8514 (org-back-to-heading t)
8515 (setq beg (point) end (org-end-of-subtree t t)))
8516 (put-text-property beg end 'org-category cat)
8517 (put-text-property beg end 'org-category-position beg)
8518 (goto-char pos)))))))
8521 ;;;; Link Stuff
8523 ;;; Link abbreviations
8525 (defun org-link-expand-abbrev (link)
8526 "Apply replacements as defined in `org-link-abbrev-alist."
8527 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
8528 (let* ((key (match-string 1 link))
8529 (as (or (assoc key org-link-abbrev-alist-local)
8530 (assoc key org-link-abbrev-alist)))
8531 (tag (and (match-end 2) (match-string 3 link)))
8532 rpl)
8533 (if (not as)
8534 link
8535 (setq rpl (cdr as))
8536 (cond
8537 ((symbolp rpl) (funcall rpl tag))
8538 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
8539 ((string-match "%h" rpl)
8540 (replace-match (url-hexify-string (or tag "")) t t rpl))
8541 (t (concat rpl tag)))))
8542 link))
8544 ;;; Storing and inserting links
8546 (defvar org-insert-link-history nil
8547 "Minibuffer history for links inserted with `org-insert-link'.")
8549 (defvar org-stored-links nil
8550 "Contains the links stored with `org-store-link'.")
8552 (defvar org-store-link-plist nil
8553 "Plist with info about the most recently link created with `org-store-link'.")
8555 (defvar org-link-protocols nil
8556 "Link protocols added to Org-mode using `org-add-link-type'.")
8558 (defvar org-store-link-functions nil
8559 "List of functions that are called to create and store a link.
8560 Each function will be called in turn until one returns a non-nil
8561 value. Each function should check if it is responsible for creating
8562 this link (for example by looking at the major mode).
8563 If not, it must exit and return nil.
8564 If yes, it should return a non-nil value after a calling
8565 `org-store-link-props' with a list of properties and values.
8566 Special properties are:
8568 :type The link prefix, like \"http\". This must be given.
8569 :link The link, like \"http://www.astro.uva.nl/~dominik\".
8570 This is obligatory as well.
8571 :description Optional default description for the second pair
8572 of brackets in an Org-mode link. The user can still change
8573 this when inserting this link into an Org-mode buffer.
8575 In addition to these, any additional properties can be specified
8576 and then used in remember templates.")
8578 (defun org-add-link-type (type &optional follow export)
8579 "Add TYPE to the list of `org-link-types'.
8580 Re-compute all regular expressions depending on `org-link-types'
8582 FOLLOW and EXPORT are two functions.
8584 FOLLOW should take the link path as the single argument and do whatever
8585 is necessary to follow the link, for example find a file or display
8586 a mail message.
8588 EXPORT should format the link path for export to one of the export formats.
8589 It should be a function accepting three arguments:
8591 path the path of the link, the text after the prefix (like \"http:\")
8592 desc the description of the link, if any, or a description added by
8593 org-export-normalize-links if there is none
8594 format the export format, a symbol like `html' or `latex' or `ascii'..
8596 The function may use the FORMAT information to return different values
8597 depending on the format. The return value will be put literally into
8598 the exported file. If the return value is nil, this means Org should
8599 do what it normally does with links which do not have EXPORT defined.
8601 Org-mode has a built-in default for exporting links. If you are happy with
8602 this default, there is no need to define an export function for the link
8603 type. For a simple example of an export function, see `org-bbdb.el'."
8604 (add-to-list 'org-link-types type t)
8605 (org-make-link-regexps)
8606 (if (assoc type org-link-protocols)
8607 (setcdr (assoc type org-link-protocols) (list follow export))
8608 (push (list type follow export) org-link-protocols)))
8610 (defvar org-agenda-buffer-name)
8612 ;;;###autoload
8613 (defun org-store-link (arg)
8614 "\\<org-mode-map>Store an org-link to the current location.
8615 This link is added to `org-stored-links' and can later be inserted
8616 into an org-buffer with \\[org-insert-link].
8618 For some link types, a prefix arg is interpreted:
8619 For links to usenet articles, arg negates `org-gnus-prefer-web-links'.
8620 For file links, arg negates `org-context-in-file-links'."
8621 (interactive "P")
8622 (org-load-modules-maybe)
8623 (setq org-store-link-plist nil) ; reset
8624 (org-with-limited-levels
8625 (let (link cpltxt desc description search txt custom-id agenda-link)
8626 (cond
8628 ((run-hook-with-args-until-success 'org-store-link-functions)
8629 (setq link (plist-get org-store-link-plist :link)
8630 desc (or (plist-get org-store-link-plist :description) link)))
8632 ((equal (buffer-name) "*Org Edit Src Example*")
8633 (let (label gc)
8634 (while (or (not label)
8635 (save-excursion
8636 (save-restriction
8637 (widen)
8638 (goto-char (point-min))
8639 (re-search-forward
8640 (regexp-quote (format org-coderef-label-format label))
8641 nil t))))
8642 (when label (message "Label exists already") (sit-for 2))
8643 (setq label (read-string "Code line label: " label)))
8644 (end-of-line 1)
8645 (setq link (format org-coderef-label-format label))
8646 (setq gc (- 79 (length link)))
8647 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
8648 (insert link)
8649 (setq link (concat "(" label ")") desc nil)))
8651 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
8652 ;; We are in the agenda, link to referenced location
8653 (let ((m (or (get-text-property (point) 'org-hd-marker)
8654 (get-text-property (point) 'org-marker))))
8655 (when m
8656 (org-with-point-at m
8657 (setq agenda-link
8658 (if (org-called-interactively-p 'any)
8659 (call-interactively 'org-store-link)
8660 (org-store-link nil)))))))
8662 ((eq major-mode 'calendar-mode)
8663 (let ((cd (calendar-cursor-to-date)))
8664 (setq link
8665 (format-time-string
8666 (car org-time-stamp-formats)
8667 (apply 'encode-time
8668 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
8669 nil nil nil))))
8670 (org-store-link-props :type "calendar" :date cd)))
8672 ((eq major-mode 'w3-mode)
8673 (setq cpltxt (if (and (buffer-name)
8674 (not (string-match "Untitled" (buffer-name))))
8675 (buffer-name)
8676 (url-view-url t))
8677 link (org-make-link (url-view-url t)))
8678 (org-store-link-props :type "w3" :url (url-view-url t)))
8680 ((eq major-mode 'w3m-mode)
8681 (setq cpltxt (or w3m-current-title w3m-current-url)
8682 link (org-make-link w3m-current-url))
8683 (org-store-link-props :type "w3m" :url (url-view-url t)))
8685 ((setq search (run-hook-with-args-until-success
8686 'org-create-file-search-functions))
8687 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
8688 "::" search))
8689 (setq cpltxt (or description link)))
8691 ((eq major-mode 'image-mode)
8692 (setq cpltxt (concat "file:"
8693 (abbreviate-file-name buffer-file-name))
8694 link (org-make-link cpltxt))
8695 (org-store-link-props :type "image" :file buffer-file-name))
8697 ((eq major-mode 'dired-mode)
8698 ;; link to the file in the current line
8699 (let ((file (dired-get-filename nil t)))
8700 (setq file (if file
8701 (abbreviate-file-name
8702 (expand-file-name (dired-get-filename nil t)))
8703 ;; otherwise, no file so use current directory.
8704 default-directory))
8705 (setq cpltxt (concat "file:" file)
8706 link (org-make-link cpltxt))))
8708 ((and (buffer-file-name (buffer-base-buffer)) (eq major-mode 'org-mode))
8709 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
8710 (cond
8711 ((org-in-regexp "<<\\(.*?\\)>>")
8712 (setq cpltxt
8713 (concat "file:"
8714 (abbreviate-file-name
8715 (buffer-file-name (buffer-base-buffer)))
8716 "::" (match-string 1))
8717 link (org-make-link cpltxt)))
8718 ((and (featurep 'org-id)
8719 (or (eq org-link-to-org-use-id t)
8720 (and (eq org-link-to-org-use-id 'create-if-interactive)
8721 (org-called-interactively-p 'any))
8722 (and (eq org-link-to-org-use-id
8723 'create-if-interactive-and-no-custom-id)
8724 (org-called-interactively-p 'any)
8725 (not custom-id))
8726 (and org-link-to-org-use-id
8727 (org-entry-get nil "ID"))))
8728 ;; We can make a link using the ID.
8729 (setq link (condition-case nil
8730 (prog1 (org-id-store-link)
8731 (setq desc (plist-get org-store-link-plist
8732 :description)))
8733 (error
8734 ;; probably before first headline, link to file only
8735 (concat "file:"
8736 (abbreviate-file-name
8737 (buffer-file-name (buffer-base-buffer))))))))
8739 ;; Just link to current headline
8740 (setq cpltxt (concat "file:"
8741 (abbreviate-file-name
8742 (buffer-file-name (buffer-base-buffer)))))
8743 ;; Add a context search string
8744 (when (org-xor org-context-in-file-links arg)
8745 (setq txt (cond
8746 ((org-at-heading-p) nil)
8747 ((org-region-active-p)
8748 (buffer-substring (region-beginning) (region-end)))
8749 (t nil)))
8750 (when (or (null txt) (string-match "\\S-" txt))
8751 (setq cpltxt
8752 (concat cpltxt "::"
8753 (condition-case nil
8754 (org-make-org-heading-search-string txt)
8755 (error "")))
8756 desc (or (nth 4 (ignore-errors
8757 (org-heading-components))) "NONE"))))
8758 (if (string-match "::\\'" cpltxt)
8759 (setq cpltxt (substring cpltxt 0 -2)))
8760 (setq link (org-make-link cpltxt)))))
8762 ((buffer-file-name (buffer-base-buffer))
8763 ;; Just link to this file here.
8764 (setq cpltxt (concat "file:"
8765 (abbreviate-file-name
8766 (buffer-file-name (buffer-base-buffer)))))
8767 ;; Add a context string
8768 (when (org-xor org-context-in-file-links arg)
8769 (setq txt (if (org-region-active-p)
8770 (buffer-substring (region-beginning) (region-end))
8771 (buffer-substring (point-at-bol) (point-at-eol))))
8772 ;; Only use search option if there is some text.
8773 (when (string-match "\\S-" txt)
8774 (setq cpltxt
8775 (concat cpltxt "::" (org-make-org-heading-search-string txt))
8776 desc "NONE")))
8777 (setq link (org-make-link cpltxt)))
8779 ((org-called-interactively-p 'interactive)
8780 (error "Cannot link to a buffer which is not visiting a file"))
8782 (t (setq link nil)))
8784 (if (consp link) (setq cpltxt (car link) link (cdr link)))
8785 (setq link (or link cpltxt)
8786 desc (or desc cpltxt))
8787 (if (equal desc "NONE") (setq desc nil))
8789 (if (and (or (org-called-interactively-p 'any) executing-kbd-macro) link)
8790 (progn
8791 (setq org-stored-links
8792 (cons (list link desc) org-stored-links))
8793 (message "Stored: %s" (or desc link))
8794 (when custom-id
8795 (setq link (concat "file:" (abbreviate-file-name (buffer-file-name))
8796 "::#" custom-id))
8797 (setq org-stored-links
8798 (cons (list link desc) org-stored-links))))
8799 (or agenda-link (and link (org-make-link-string link desc)))))))
8801 (defun org-store-link-props (&rest plist)
8802 "Store link properties, extract names and addresses."
8803 (let (x adr)
8804 (when (setq x (plist-get plist :from))
8805 (setq adr (mail-extract-address-components x))
8806 (setq plist (plist-put plist :fromname (car adr)))
8807 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
8808 (when (setq x (plist-get plist :to))
8809 (setq adr (mail-extract-address-components x))
8810 (setq plist (plist-put plist :toname (car adr)))
8811 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
8812 (let ((from (plist-get plist :from))
8813 (to (plist-get plist :to)))
8814 (when (and from to org-from-is-user-regexp)
8815 (setq plist
8816 (plist-put plist :fromto
8817 (if (string-match org-from-is-user-regexp from)
8818 (concat "to %t")
8819 (concat "from %f"))))))
8820 (setq org-store-link-plist plist))
8822 (defun org-add-link-props (&rest plist)
8823 "Add these properties to the link property list."
8824 (let (key value)
8825 (while plist
8826 (setq key (pop plist) value (pop plist))
8827 (setq org-store-link-plist
8828 (plist-put org-store-link-plist key value)))))
8830 (defun org-email-link-description (&optional fmt)
8831 "Return the description part of an email link.
8832 This takes information from `org-store-link-plist' and formats it
8833 according to FMT (default from `org-email-link-description-format')."
8834 (setq fmt (or fmt org-email-link-description-format))
8835 (let* ((p org-store-link-plist)
8836 (to (plist-get p :toaddress))
8837 (from (plist-get p :fromaddress))
8838 (table
8839 (list
8840 (cons "%c" (plist-get p :fromto))
8841 (cons "%F" (plist-get p :from))
8842 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
8843 (cons "%T" (plist-get p :to))
8844 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
8845 (cons "%s" (plist-get p :subject))
8846 (cons "%d" (plist-get p :date))
8847 (cons "%m" (plist-get p :message-id)))))
8848 (when (string-match "%c" fmt)
8849 ;; Check if the user wrote this message
8850 (if (and org-from-is-user-regexp from to
8851 (save-match-data (string-match org-from-is-user-regexp from)))
8852 (setq fmt (replace-match "to %t" t t fmt))
8853 (setq fmt (replace-match "from %f" t t fmt))))
8854 (org-replace-escapes fmt table)))
8856 (defun org-make-org-heading-search-string (&optional string heading)
8857 "Make search string for STRING or current headline."
8858 (interactive)
8859 (let ((s (or string (org-get-heading)))
8860 (lines org-context-in-file-links))
8861 (unless (and string (not heading))
8862 ;; We are using a headline, clean up garbage in there.
8863 (if (string-match org-todo-regexp s)
8864 (setq s (replace-match "" t t s)))
8865 (if (string-match (org-re ":[[:alnum:]_@#%:]+:[ \t]*$") s)
8866 (setq s (replace-match "" t t s)))
8867 (setq s (org-trim s))
8868 (if (string-match (concat "^\\(" org-quote-string "\\|"
8869 org-comment-string "\\)") s)
8870 (setq s (replace-match "" t t s)))
8871 (while (string-match org-ts-regexp s)
8872 (setq s (replace-match "" t t s))))
8873 (or string (setq s (concat "*" s))) ; Add * for headlines
8874 (when (and string (integerp lines) (> lines 0))
8875 (let ((slines (org-split-string s "\n")))
8876 (when (< lines (length slines))
8877 (setq s (mapconcat
8878 'identity
8879 (reverse (nthcdr (- (length slines) lines)
8880 (reverse slines))) "\n")))))
8881 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
8883 (defun org-make-link (&rest strings)
8884 "Concatenate STRINGS."
8885 (apply 'concat strings))
8887 (defun org-make-link-string (link &optional description)
8888 "Make a link with brackets, consisting of LINK and DESCRIPTION."
8889 (unless (string-match "\\S-" link)
8890 (error "Empty link"))
8891 (when (and description
8892 (stringp description)
8893 (not (string-match "\\S-" description)))
8894 (setq description nil))
8895 (when (stringp description)
8896 ;; Remove brackets from the description, they are fatal.
8897 (while (string-match "\\[" description)
8898 (setq description (replace-match "{" t t description)))
8899 (while (string-match "\\]" description)
8900 (setq description (replace-match "}" t t description))))
8901 (when (equal link description)
8902 ;; No description needed, it is identical
8903 (setq description nil))
8904 (when (and (not description)
8905 (not (string-match (org-image-file-name-regexp) link))
8906 (not (equal link (org-link-escape link))))
8907 (setq description (org-extract-attributes link)))
8908 (setq link
8909 (cond ((string-match (org-image-file-name-regexp) link) link)
8910 ((string-match org-link-types-re link)
8911 (concat (match-string 1 link)
8912 (org-link-escape (substring link (match-end 1)))))
8913 (t (org-link-escape link))))
8914 (concat "[[" link "]"
8915 (if description (concat "[" description "]") "")
8916 "]"))
8918 (defconst org-link-escape-chars
8919 '(?\ ?\[ ?\] ?\; ?\= ?\+)
8920 "List of characters that should be escaped in link.
8921 This is the list that is used for internal purposes.")
8923 (defvar org-url-encoding-use-url-hexify nil)
8925 (defconst org-link-escape-chars-browser
8926 '(?\ )
8927 "List of escapes for characters that are problematic in links.
8928 This is the list that is used before handing over to the browser.")
8930 (defun org-link-escape (text &optional table merge)
8931 "Return percent escaped representation of TEXT.
8932 TEXT is a string with the text to escape.
8933 Optional argument TABLE is a list with characters that should be
8934 escaped. When nil, `org-link-escape-chars' is used.
8935 If optional argument MERGE is set, merge TABLE into
8936 `org-link-escape-chars'."
8937 (if (and org-url-encoding-use-url-hexify (not table))
8938 (url-hexify-string text)
8939 (cond
8940 ((and table merge)
8941 (mapc (lambda (defchr)
8942 (unless (member defchr table)
8943 (setq table (cons defchr table)))) org-link-escape-chars))
8944 ((null table)
8945 (setq table org-link-escape-chars)))
8946 (mapconcat
8947 (lambda (char)
8948 (if (or (member char table)
8949 (< char 32) (= char 37) (> char 126))
8950 (mapconcat (lambda (sequence-element)
8951 (format "%%%.2X" sequence-element))
8952 (or (encode-coding-char char 'utf-8)
8953 (error "Unable to percent escape character: %s"
8954 (char-to-string char))) "")
8955 (char-to-string char))) text "")))
8957 (defun org-link-unescape (str)
8958 "Unhex hexified Unicode strings as returned from the JavaScript function
8959 encodeURIComponent. E.g. `%C3%B6' is the german Umlaut `ö'."
8960 (unless (and (null str) (string= "" str))
8961 (let ((pos 0) (case-fold-search t) unhexed)
8962 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
8963 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
8964 (setq str (replace-match unhexed t t str))
8965 (setq pos (+ pos (length unhexed))))))
8966 str)
8968 (defun org-link-unescape-compound (hex)
8969 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German Umlaut `ö'.
8970 Note: this function also decodes single byte encodings like
8971 `%E1' (\"á\") if not followed by another `%[A-F0-9]{2}' group."
8972 (save-match-data
8973 (let* ((bytes (cdr (split-string hex "%")))
8974 (ret "")
8975 (eat 0)
8976 (sum 0))
8977 (while bytes
8978 (let* ((val (string-to-number (pop bytes) 16))
8979 (shift-xor
8980 (if (= 0 eat)
8981 (cond
8982 ((>= val 252) (cons 6 252))
8983 ((>= val 248) (cons 5 248))
8984 ((>= val 240) (cons 4 240))
8985 ((>= val 224) (cons 3 224))
8986 ((>= val 192) (cons 2 192))
8987 (t (cons 0 0)))
8988 (cons 6 128))))
8989 (if (>= val 192) (setq eat (car shift-xor)))
8990 (setq val (logxor val (cdr shift-xor)))
8991 (setq sum (+ (lsh sum (car shift-xor)) val))
8992 (if (> eat 0) (setq eat (- eat 1)))
8993 (cond
8994 ((= 0 eat) ;multi byte
8995 (setq ret (concat ret (org-char-to-string sum)))
8996 (setq sum 0))
8997 ((not bytes) ; single byte(s)
8998 (setq ret (org-link-unescape-single-byte-sequence hex))))
8999 )) ;; end (while bytes
9000 ret )))
9002 (defun org-link-unescape-single-byte-sequence (hex)
9003 "Unhexify hex-encoded single byte character sequences."
9004 (mapconcat (lambda (byte)
9005 (char-to-string (string-to-number byte 16)))
9006 (cdr (split-string hex "%")) ""))
9008 (defun org-xor (a b)
9009 "Exclusive or."
9010 (if a (not b) b))
9012 (defun org-fixup-message-id-for-http (s)
9013 "Replace special characters in a message id, so it can be used in an http query."
9014 (when (string-match "%" s)
9015 (setq s (mapconcat (lambda (c)
9016 (if (eq c ?%)
9017 "%25"
9018 (char-to-string c)))
9019 s "")))
9020 (while (string-match "<" s)
9021 (setq s (replace-match "%3C" t t s)))
9022 (while (string-match ">" s)
9023 (setq s (replace-match "%3E" t t s)))
9024 (while (string-match "@" s)
9025 (setq s (replace-match "%40" t t s)))
9028 ;;;###autoload
9029 (defun org-insert-link-global ()
9030 "Insert a link like Org-mode does.
9031 This command can be called in any mode to insert a link in Org-mode syntax."
9032 (interactive)
9033 (org-load-modules-maybe)
9034 (org-run-like-in-org-mode 'org-insert-link))
9036 (defun org-insert-link (&optional complete-file link-location default-description)
9037 "Insert a link. At the prompt, enter the link.
9039 Completion can be used to insert any of the link protocol prefixes like
9040 http or ftp in use.
9042 The history can be used to select a link previously stored with
9043 `org-store-link'. When the empty string is entered (i.e. if you just
9044 press RET at the prompt), the link defaults to the most recently
9045 stored link. As SPC triggers completion in the minibuffer, you need to
9046 use M-SPC or C-q SPC to force the insertion of a space character.
9048 You will also be prompted for a description, and if one is given, it will
9049 be displayed in the buffer instead of the link.
9051 If there is already a link at point, this command will allow you to edit link
9052 and description parts.
9054 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
9055 be selected using completion. The path to the file will be relative to the
9056 current directory if the file is in the current directory or a subdirectory.
9057 Otherwise, the link will be the absolute path as completed in the minibuffer
9058 \(i.e. normally ~/path/to/file). You can configure this behavior using the
9059 option `org-link-file-path-type'.
9061 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
9062 the current directory or below.
9064 With three \\[universal-argument] prefixes, negate the meaning of
9065 `org-keep-stored-link-after-insertion'.
9067 If `org-make-link-description-function' is non-nil, this function will be
9068 called with the link target, and the result will be the default
9069 link description.
9071 If the LINK-LOCATION parameter is non-nil, this value will be
9072 used as the link location instead of reading one interactively.
9074 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
9075 be used as the default description."
9076 (interactive "P")
9077 (let* ((wcf (current-window-configuration))
9078 (region (if (org-region-active-p)
9079 (buffer-substring (region-beginning) (region-end))))
9080 (remove (and region (list (region-beginning) (region-end))))
9081 (desc region)
9082 tmphist ; byte-compile incorrectly complains about this
9083 (link link-location)
9084 entry file all-prefixes)
9085 (cond
9086 (link-location) ; specified by arg, just use it.
9087 ((org-in-regexp org-bracket-link-regexp 1)
9088 ;; We do have a link at point, and we are going to edit it.
9089 (setq remove (list (match-beginning 0) (match-end 0)))
9090 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
9091 (setq link (read-string "Link: "
9092 (org-link-unescape
9093 (org-match-string-no-properties 1)))))
9094 ((or (org-in-regexp org-angle-link-re)
9095 (org-in-regexp org-plain-link-re))
9096 ;; Convert to bracket link
9097 (setq remove (list (match-beginning 0) (match-end 0))
9098 link (read-string "Link: "
9099 (org-remove-angle-brackets (match-string 0)))))
9100 ((member complete-file '((4) (16)))
9101 ;; Completing read for file names.
9102 (setq link (org-file-complete-link complete-file)))
9104 ;; Read link, with completion for stored links.
9105 (with-output-to-temp-buffer "*Org Links*"
9106 (princ "Insert a link.
9107 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
9108 (when org-stored-links
9109 (princ "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
9110 (princ (mapconcat
9111 (lambda (x)
9112 (if (nth 1 x) (concat (car x) " (" (nth 1 x) ")") (car x)))
9113 (reverse org-stored-links) "\n"))))
9114 (let ((cw (selected-window)))
9115 (select-window (get-buffer-window "*Org Links*" 'visible))
9116 (with-current-buffer "*Org Links*" (setq truncate-lines t))
9117 (unless (pos-visible-in-window-p (point-max))
9118 (org-fit-window-to-buffer))
9119 (and (window-live-p cw) (select-window cw)))
9120 ;; Fake a link history, containing the stored links.
9121 (setq tmphist (append (mapcar 'car org-stored-links)
9122 org-insert-link-history))
9123 (setq all-prefixes (append (mapcar 'car org-link-abbrev-alist-local)
9124 (mapcar 'car org-link-abbrev-alist)
9125 org-link-types))
9126 (unwind-protect
9127 (progn
9128 (setq link
9129 (let ((org-completion-use-ido nil)
9130 (org-completion-use-iswitchb nil))
9131 (org-completing-read
9132 "Link: "
9133 (append
9134 (mapcar (lambda (x) (list (concat x ":")))
9135 all-prefixes)
9136 (mapcar 'car org-stored-links))
9137 nil nil nil
9138 'tmphist
9139 (car (car org-stored-links)))))
9140 (if (not (string-match "\\S-" link))
9141 (error "No link selected"))
9142 (if (or (member link all-prefixes)
9143 (and (equal ":" (substring link -1))
9144 (member (substring link 0 -1) all-prefixes)
9145 (setq link (substring link 0 -1))))
9146 (setq link (org-link-try-special-completion link))))
9147 (set-window-configuration wcf)
9148 (kill-buffer "*Org Links*"))
9149 (setq entry (assoc link org-stored-links))
9150 (or entry (push link org-insert-link-history))
9151 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
9152 (not org-keep-stored-link-after-insertion))
9153 (setq org-stored-links (delq (assoc link org-stored-links)
9154 org-stored-links)))
9155 (setq desc (or desc (nth 1 entry)))))
9157 (if (string-match org-plain-link-re link)
9158 ;; URL-like link, normalize the use of angular brackets.
9159 (setq link (org-make-link (org-remove-angle-brackets link))))
9161 ;; Check if we are linking to the current file with a search option
9162 ;; If yes, simplify the link by using only the search option.
9163 (when (and buffer-file-name
9164 (string-match "^file:\\(.+?\\)::\\([^>]+\\)" link))
9165 (let* ((path (match-string 1 link))
9166 (case-fold-search nil)
9167 (search (match-string 2 link)))
9168 (save-match-data
9169 (if (equal (file-truename buffer-file-name) (file-truename path))
9170 ;; We are linking to this same file, with a search option
9171 (setq link search)))))
9173 ;; Check if we can/should use a relative path. If yes, simplify the link
9174 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
9175 (let* ((type (match-string 1 link))
9176 (path (match-string 2 link))
9177 (origpath path)
9178 (case-fold-search nil))
9179 (cond
9180 ((or (eq org-link-file-path-type 'absolute)
9181 (equal complete-file '(16)))
9182 (setq path (abbreviate-file-name (expand-file-name path))))
9183 ((eq org-link-file-path-type 'noabbrev)
9184 (setq path (expand-file-name path)))
9185 ((eq org-link-file-path-type 'relative)
9186 (setq path (file-relative-name path)))
9188 (save-match-data
9189 (if (string-match (concat "^" (regexp-quote
9190 (expand-file-name
9191 (file-name-as-directory
9192 default-directory))))
9193 (expand-file-name path))
9194 ;; We are linking a file with relative path name.
9195 (setq path (substring (expand-file-name path)
9196 (match-end 0)))
9197 (setq path (abbreviate-file-name (expand-file-name path)))))))
9198 (setq link (concat type path))
9199 (if (equal desc origpath)
9200 (setq desc path))))
9202 (if org-make-link-description-function
9203 (setq desc (funcall org-make-link-description-function link desc))
9204 (if default-description (setq desc default-description)))
9206 (setq desc (read-string "Description: " desc))
9207 (unless (string-match "\\S-" desc) (setq desc nil))
9208 (if remove (apply 'delete-region remove))
9209 (insert (org-make-link-string link desc))))
9211 (defun org-link-try-special-completion (type)
9212 "If there is completion support for link type TYPE, offer it."
9213 (let ((fun (intern (concat "org-" type "-complete-link"))))
9214 (if (functionp fun)
9215 (funcall fun)
9216 (read-string "Link (no completion support): " (concat type ":")))))
9218 (defun org-file-complete-link (&optional arg)
9219 "Create a file link using completion."
9220 (let (file link)
9221 (setq file (read-file-name "File: "))
9222 (let ((pwd (file-name-as-directory (expand-file-name ".")))
9223 (pwd1 (file-name-as-directory (abbreviate-file-name
9224 (expand-file-name ".")))))
9225 (cond
9226 ((equal arg '(16))
9227 (setq link (org-make-link
9228 "file:"
9229 (abbreviate-file-name (expand-file-name file)))))
9230 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
9231 (setq link (org-make-link "file:" (match-string 1 file))))
9232 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
9233 (expand-file-name file))
9234 (setq link (org-make-link
9235 "file:" (match-string 1 (expand-file-name file)))))
9236 (t (setq link (org-make-link "file:" file)))))
9237 link))
9239 (defun org-completing-read (&rest args)
9240 "Completing-read with SPACE being a normal character."
9241 (let ((enable-recursive-minibuffers t)
9242 (minibuffer-local-completion-map
9243 (copy-keymap minibuffer-local-completion-map)))
9244 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
9245 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
9246 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
9247 (apply 'org-icompleting-read args)))
9249 (defun org-completing-read-no-i (&rest args)
9250 (let (org-completion-use-ido org-completion-use-iswitchb)
9251 (apply 'org-completing-read args)))
9253 (defun org-iswitchb-completing-read (prompt choices &rest args)
9254 "Use iswitch as a completing-read replacement to choose from choices.
9255 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
9256 from."
9257 (let* ((iswitchb-use-virtual-buffers nil)
9258 (iswitchb-make-buflist-hook
9259 (lambda ()
9260 (setq iswitchb-temp-buflist choices))))
9261 (iswitchb-read-buffer prompt)))
9263 (defun org-icompleting-read (&rest args)
9264 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
9265 (org-without-partial-completion
9266 (if (and org-completion-use-ido
9267 (fboundp 'ido-completing-read)
9268 (boundp 'ido-mode) ido-mode
9269 (listp (second args)))
9270 (let ((ido-enter-matching-directory nil))
9271 (apply 'ido-completing-read (concat (car args))
9272 (if (consp (car (nth 1 args)))
9273 (mapcar 'car (nth 1 args))
9274 (nth 1 args))
9275 (cddr args)))
9276 (if (and org-completion-use-iswitchb
9277 (boundp 'iswitchb-mode) iswitchb-mode
9278 (listp (second args)))
9279 (apply 'org-iswitchb-completing-read (concat (car args))
9280 (if (consp (car (nth 1 args)))
9281 (mapcar 'car (nth 1 args))
9282 (nth 1 args))
9283 (cddr args))
9284 (apply 'completing-read args)))))
9286 (defun org-extract-attributes (s)
9287 "Extract the attributes cookie from a string and set as text property."
9288 (let (a attr (start 0) key value)
9289 (save-match-data
9290 (when (string-match "{{\\([^}]+\\)}}$" s)
9291 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
9292 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
9293 (setq key (match-string 1 a) value (match-string 2 a)
9294 start (match-end 0)
9295 attr (plist-put attr (intern key) value))))
9296 (org-add-props s nil 'org-attr attr))
9299 (defun org-extract-attributes-from-string (tag)
9300 (let (key value attr)
9301 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"\\s-?" tag)
9302 (setq key (match-string 1 tag) value (match-string 2 tag)
9303 tag (replace-match "" t t tag)
9304 attr (plist-put attr (intern key) value)))
9305 (cons tag attr)))
9307 (defun org-attributes-to-string (plist)
9308 "Format a property list into an HTML attribute list."
9309 (let ((s "") key value)
9310 (while plist
9311 (setq key (pop plist) value (pop plist))
9312 (and value
9313 (setq s (concat s " " (symbol-name key) "=\"" value "\""))))
9316 ;;; Opening/following a link
9318 (defvar org-link-search-failed nil)
9320 (defvar org-open-link-functions nil
9321 "Hook for functions finding a plain text link.
9322 These functions must take a single argument, the link content.
9323 They will be called for links that look like [[link text][description]]
9324 when LINK TEXT does not have a protocol like \"http:\" and does not look
9325 like a filename (e.g. \"./blue.png\").
9327 These functions will be called *before* Org attempts to resolve the
9328 link by doing text searches in the current buffer - so if you want a
9329 link \"[[target]]\" to still find \"<<target>>\", your function should
9330 handle this as a special case.
9332 When the function does handle the link, it must return a non-nil value.
9333 If it decides that it is not responsible for this link, it must return
9334 nil to indicate that that Org-mode can continue with other options
9335 like exact and fuzzy text search.")
9337 (defun org-next-link ()
9338 "Move forward to the next link.
9339 If the link is in hidden text, expose it."
9340 (interactive)
9341 (when (and org-link-search-failed (eq this-command last-command))
9342 (goto-char (point-min))
9343 (message "Link search wrapped back to beginning of buffer"))
9344 (setq org-link-search-failed nil)
9345 (let* ((pos (point))
9346 (ct (org-context))
9347 (a (assoc :link ct)))
9348 (if a (goto-char (nth 2 a)))
9349 (if (re-search-forward org-any-link-re nil t)
9350 (progn
9351 (goto-char (match-beginning 0))
9352 (if (outline-invisible-p) (org-show-context)))
9353 (goto-char pos)
9354 (setq org-link-search-failed t)
9355 (error "No further link found"))))
9357 (defun org-previous-link ()
9358 "Move backward to the previous link.
9359 If the link is in hidden text, expose it."
9360 (interactive)
9361 (when (and org-link-search-failed (eq this-command last-command))
9362 (goto-char (point-max))
9363 (message "Link search wrapped back to end of buffer"))
9364 (setq org-link-search-failed nil)
9365 (let* ((pos (point))
9366 (ct (org-context))
9367 (a (assoc :link ct)))
9368 (if a (goto-char (nth 1 a)))
9369 (if (re-search-backward org-any-link-re nil t)
9370 (progn
9371 (goto-char (match-beginning 0))
9372 (if (outline-invisible-p) (org-show-context)))
9373 (goto-char pos)
9374 (setq org-link-search-failed t)
9375 (error "No further link found"))))
9377 (defun org-translate-link (s)
9378 "Translate a link string if a translation function has been defined."
9379 (if (and org-link-translation-function
9380 (fboundp org-link-translation-function)
9381 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
9382 (progn
9383 (setq s (funcall org-link-translation-function
9384 (match-string 1) (match-string 2)))
9385 (concat (car s) ":" (cdr s)))
9388 (defun org-translate-link-from-planner (type path)
9389 "Translate a link from Emacs Planner syntax so that Org can follow it.
9390 This is still an experimental function, your mileage may vary."
9391 (cond
9392 ((member type '("http" "https" "news" "ftp"))
9393 ;; standard Internet links are the same.
9394 nil)
9395 ((and (equal type "irc") (string-match "^//" path))
9396 ;; Planner has two / at the beginning of an irc link, we have 1.
9397 ;; We should have zero, actually....
9398 (setq path (substring path 1)))
9399 ((and (equal type "lisp") (string-match "^/" path))
9400 ;; Planner has a slash, we do not.
9401 (setq type "elisp" path (substring path 1)))
9402 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
9403 ;; A typical message link. Planner has the id after the final slash,
9404 ;; we separate it with a hash mark
9405 (setq path (concat (match-string 1 path) "#"
9406 (org-remove-angle-brackets (match-string 2 path)))))
9408 (cons type path))
9410 (defun org-find-file-at-mouse (ev)
9411 "Open file link or URL at mouse."
9412 (interactive "e")
9413 (mouse-set-point ev)
9414 (org-open-at-point 'in-emacs))
9416 (defun org-open-at-mouse (ev)
9417 "Open file link or URL at mouse.
9418 See the docstring of `org-open-file' for details."
9419 (interactive "e")
9420 (mouse-set-point ev)
9421 (if (eq major-mode 'org-agenda-mode)
9422 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
9423 (org-open-at-point))
9425 (defvar org-window-config-before-follow-link nil
9426 "The window configuration before following a link.
9427 This is saved in case the need arises to restore it.")
9429 (defvar org-open-link-marker (make-marker)
9430 "Marker pointing to the location where `org-open-at-point; was called.")
9432 ;;;###autoload
9433 (defun org-open-at-point-global ()
9434 "Follow a link like Org-mode does.
9435 This command can be called in any mode to follow a link that has
9436 Org-mode syntax."
9437 (interactive)
9438 (org-run-like-in-org-mode 'org-open-at-point))
9440 ;;;###autoload
9441 (defun org-open-link-from-string (s &optional arg reference-buffer)
9442 "Open a link in the string S, as if it was in Org-mode."
9443 (interactive "sLink: \nP")
9444 (let ((reference-buffer (or reference-buffer (current-buffer))))
9445 (with-temp-buffer
9446 (let ((org-inhibit-startup t))
9447 (org-mode)
9448 (insert s)
9449 (goto-char (point-min))
9450 (when reference-buffer
9451 (setq org-link-abbrev-alist-local
9452 (with-current-buffer reference-buffer
9453 org-link-abbrev-alist-local)))
9454 (org-open-at-point arg reference-buffer)))))
9456 (defvar org-open-at-point-functions nil
9457 "Hook that is run when following a link at point.
9459 Functions in this hook must return t if they identify and follow
9460 a link at point. If they don't find anything interesting at point,
9461 they must return nil.")
9463 (defun org-open-at-point (&optional arg reference-buffer)
9464 "Open link at or after point.
9465 If there is no link at point, this function will search forward up to
9466 the end of the current line.
9467 Normally, files will be opened by an appropriate application. If the
9468 optional prefix argument ARG is non-nil, Emacs will visit the file.
9469 With a double prefix argument, try to open outside of Emacs, in the
9470 application the system uses for this file type."
9471 (interactive "P")
9472 ;; if in a code block, then open the block's results
9473 (unless (call-interactively #'org-babel-open-src-block-result)
9474 (org-load-modules-maybe)
9475 (move-marker org-open-link-marker (point))
9476 (setq org-window-config-before-follow-link (current-window-configuration))
9477 (org-remove-occur-highlights nil nil t)
9478 (cond
9479 ((and (org-at-heading-p)
9480 (not (org-in-regexp
9481 (concat org-plain-link-re "\\|"
9482 org-bracket-link-regexp "\\|"
9483 org-angle-link-re "\\|"
9484 "[ \t]:[^ \t\n]+:[ \t]*$")))
9485 (not (get-text-property (point) 'org-linked-text)))
9486 (or (org-offer-links-in-entry arg)
9487 (progn (require 'org-attach) (org-attach-reveal 'if-exists))))
9488 ((run-hook-with-args-until-success 'org-open-at-point-functions))
9489 ((org-at-timestamp-p t) (org-follow-timestamp-link))
9490 ((and (or (org-footnote-at-reference-p) (org-footnote-at-definition-p))
9491 (not (org-in-regexp org-bracket-link-regexp)))
9492 (org-footnote-action))
9494 (let (type path link line search (pos (point)))
9495 (catch 'match
9496 (save-excursion
9497 (skip-chars-forward "^]\n\r")
9498 (when (org-in-regexp org-bracket-link-regexp 1)
9499 (setq link (org-extract-attributes
9500 (org-link-unescape (org-match-string-no-properties 1))))
9501 (while (string-match " *\n *" link)
9502 (setq link (replace-match " " t t link)))
9503 (setq link (org-link-expand-abbrev link))
9504 (cond
9505 ((or (file-name-absolute-p link)
9506 (string-match "^\\.\\.?/" link))
9507 (setq type "file" path link))
9508 ((string-match org-link-re-with-space3 link)
9509 (setq type (match-string 1 link) path (match-string 2 link)))
9510 (t (setq type "thisfile" path link)))
9511 (throw 'match t)))
9513 (when (get-text-property (point) 'org-linked-text)
9514 (setq type "thisfile"
9515 pos (if (get-text-property (1+ (point)) 'org-linked-text)
9516 (1+ (point)) (point))
9517 path (buffer-substring
9518 (or (previous-single-property-change pos 'org-linked-text)
9519 (point-min))
9520 (or (next-single-property-change pos 'org-linked-text)
9521 (point-max))))
9522 (throw 'match t))
9524 (save-excursion
9525 (when (or (org-in-regexp org-angle-link-re)
9526 (org-in-regexp org-plain-link-re))
9527 (setq type (match-string 1)
9528 path (org-link-unescape (match-string 2)))
9529 (throw 'match t)))
9530 (save-excursion
9531 (when (org-in-regexp (org-re "\\(:[[:alnum:]_@#%:]+\\):[ \t]*$"))
9532 (setq type "tags"
9533 path (match-string 1))
9534 (while (string-match ":" path)
9535 (setq path (replace-match "+" t t path)))
9536 (throw 'match t)))
9537 (when (org-in-regexp "<\\([^><\n]+\\)>")
9538 (setq type "tree-match"
9539 path (match-string 1))
9540 (throw 'match t)))
9541 (unless path
9542 (error "No link found"))
9544 ;; switch back to reference buffer
9545 ;; needed when if called in a temporary buffer through
9546 ;; org-open-link-from-string
9547 (with-current-buffer (or reference-buffer (current-buffer))
9549 ;; Remove any trailing spaces in path
9550 (if (string-match " +\\'" path)
9551 (setq path (replace-match "" t t path)))
9552 (if (and org-link-translation-function
9553 (fboundp org-link-translation-function))
9554 ;; Check if we need to translate the link
9555 (let ((tmp (funcall org-link-translation-function type path)))
9556 (setq type (car tmp) path (cdr tmp))))
9558 (cond
9560 ((assoc type org-link-protocols)
9561 (funcall (nth 1 (assoc type org-link-protocols)) path))
9563 ((equal type "mailto")
9564 (let ((cmd (car org-link-mailto-program))
9565 (args (cdr org-link-mailto-program)) args1
9566 (address path) (subject "") a)
9567 (if (string-match "\\(.*\\)::\\(.*\\)" path)
9568 (setq address (match-string 1 path)
9569 subject (org-link-escape (match-string 2 path))))
9570 (while args
9571 (cond
9572 ((not (stringp (car args))) (push (pop args) args1))
9573 (t (setq a (pop args))
9574 (if (string-match "%a" a)
9575 (setq a (replace-match address t t a)))
9576 (if (string-match "%s" a)
9577 (setq a (replace-match subject t t a)))
9578 (push a args1))))
9579 (apply cmd (nreverse args1))))
9581 ((member type '("http" "https" "ftp" "news"))
9582 (browse-url (concat type ":" (if (org-string-match-p "[[:nonascii:] ]" path)
9583 (org-link-escape
9584 path org-link-escape-chars-browser)
9585 path))))
9587 ((string= type "doi")
9588 (browse-url (concat "http://dx.doi.org/" (if (org-string-match-p "[[:nonascii:] ]" path)
9589 (org-link-escape
9590 path org-link-escape-chars-browser)
9591 path))))
9593 ((member type '("message"))
9594 (browse-url (concat type ":" path)))
9596 ((string= type "tags")
9597 (org-tags-view arg path))
9599 ((string= type "tree-match")
9600 (org-occur (concat "\\[" (regexp-quote path) "\\]")))
9602 ((string= type "file")
9603 (if (string-match "::\\([0-9]+\\)\\'" path)
9604 (setq line (string-to-number (match-string 1 path))
9605 path (substring path 0 (match-beginning 0)))
9606 (if (string-match "::\\(.+\\)\\'" path)
9607 (setq search (match-string 1 path)
9608 path (substring path 0 (match-beginning 0)))))
9609 (if (string-match "[*?{]" (file-name-nondirectory path))
9610 (dired path)
9611 (org-open-file path arg line search)))
9613 ((string= type "shell")
9614 (let ((cmd path))
9615 (if (or (and (not (string= org-confirm-shell-link-not-regexp ""))
9616 (string-match org-confirm-shell-link-not-regexp cmd))
9617 (not org-confirm-shell-link-function)
9618 (funcall org-confirm-shell-link-function
9619 (format "Execute \"%s\" in shell? "
9620 (org-add-props cmd nil
9621 'face 'org-warning))))
9622 (progn
9623 (message "Executing %s" cmd)
9624 (shell-command cmd))
9625 (error "Abort"))))
9627 ((string= type "elisp")
9628 (let ((cmd path))
9629 (if (or (and (not (string= org-confirm-elisp-link-not-regexp ""))
9630 (string-match org-confirm-elisp-link-not-regexp cmd))
9631 (not org-confirm-elisp-link-function)
9632 (funcall org-confirm-elisp-link-function
9633 (format "Execute \"%s\" as elisp? "
9634 (org-add-props cmd nil
9635 'face 'org-warning))))
9636 (message "%s => %s" cmd
9637 (if (equal (string-to-char cmd) ?\()
9638 (eval (read cmd))
9639 (call-interactively (read cmd))))
9640 (error "Abort"))))
9642 ((and (string= type "thisfile")
9643 (run-hook-with-args-until-success
9644 'org-open-link-functions path)))
9646 ((string= type "thisfile")
9647 (if arg
9648 (switch-to-buffer-other-window
9649 (org-get-buffer-for-internal-link (current-buffer)))
9650 (org-mark-ring-push))
9651 (let ((cmd `(org-link-search
9652 ,path
9653 ,(cond ((equal arg '(4)) ''occur)
9654 ((equal arg '(16)) ''org-occur)
9655 (t nil))
9656 ,pos)))
9657 (condition-case nil (let ((org-link-search-inhibit-query t))
9658 (eval cmd))
9659 (error (progn (widen) (eval cmd))))))
9662 (browse-url-at-point)))))))
9663 (move-marker org-open-link-marker nil)
9664 (run-hook-with-args 'org-follow-link-hook)))
9666 (defun org-offer-links-in-entry (&optional nth zero)
9667 "Offer links in the current entry and follow the selected link.
9668 If there is only one link, follow it immediately as well.
9669 If NTH is an integer, immediately pick the NTH link found.
9670 If ZERO is a string, check also this string for a link, and if
9671 there is one, offer it as link number zero."
9672 (let ((re (concat "\\(" org-bracket-link-regexp "\\)\\|"
9673 "\\(" org-angle-link-re "\\)\\|"
9674 "\\(" org-plain-link-re "\\)"))
9675 (cnt ?0)
9676 (in-emacs (if (integerp nth) nil nth))
9677 have-zero end links link c)
9678 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
9679 (push (match-string 0 zero) links)
9680 (setq cnt (1- cnt) have-zero t))
9681 (save-excursion
9682 (org-back-to-heading t)
9683 (setq end (save-excursion (outline-next-heading) (point)))
9684 (while (re-search-forward re end t)
9685 (push (match-string 0) links))
9686 (setq links (org-uniquify (reverse links))))
9688 (cond
9689 ((null links)
9690 (message "No links"))
9691 ((equal (length links) 1)
9692 (setq link (list (car links))))
9693 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
9694 (setq link (list (nth (if have-zero nth (1- nth)) links))))
9695 (t ; we have to select a link
9696 (save-excursion
9697 (save-window-excursion
9698 (delete-other-windows)
9699 (with-output-to-temp-buffer "*Select Link*"
9700 (mapc (lambda (l)
9701 (if (not (string-match org-bracket-link-regexp l))
9702 (princ (format "[%c] %s\n" (incf cnt)
9703 (org-remove-angle-brackets l)))
9704 (if (match-end 3)
9705 (princ (format "[%c] %s (%s)\n" (incf cnt)
9706 (match-string 3 l) (match-string 1 l)))
9707 (princ (format "[%c] %s\n" (incf cnt)
9708 (match-string 1 l))))))
9709 links))
9710 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
9711 (message "Select link to open, RET to open all:")
9712 (setq c (read-char-exclusive))
9713 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
9714 (when (equal c ?q) (error "Abort"))
9715 (if (equal c ?\C-m)
9716 (setq link links)
9717 (setq nth (- c ?0))
9718 (if have-zero (setq nth (1+ nth)))
9719 (unless (and (integerp nth) (>= (length links) nth))
9720 (error "Invalid link selection"))
9721 (setq link (list (nth (1- nth) links))))))
9722 (if link
9723 (let ((buf (current-buffer)))
9724 (dolist (l link)
9725 (org-open-link-from-string l in-emacs buf))
9727 nil)))
9729 ;; Add special file links that specify the way of opening
9731 (org-add-link-type "file+sys" 'org-open-file-with-system)
9732 (org-add-link-type "file+emacs" 'org-open-file-with-emacs)
9733 (defun org-open-file-with-system (path)
9734 "Open file at PATH using the system way of opening it."
9735 (org-open-file path 'system))
9736 (defun org-open-file-with-emacs (path)
9737 "Open file at PATH in Emacs."
9738 (org-open-file path 'emacs))
9739 (defun org-remove-file-link-modifiers ()
9740 "Remove the file link modifiers in `file+sys:' and `file+emacs:' links."
9741 (goto-char (point-min))
9742 (while (re-search-forward "\\<file\\+\\(sys\\|emacs\\):" nil t)
9743 (org-if-unprotected
9744 (replace-match "file:" t t))))
9745 (eval-after-load "org-exp"
9746 '(add-hook 'org-export-preprocess-before-normalizing-links-hook
9747 'org-remove-file-link-modifiers))
9749 ;;;; Time estimates
9751 (defun org-get-effort (&optional pom)
9752 "Get the effort estimate for the current entry."
9753 (org-entry-get pom org-effort-property))
9755 ;;; File search
9757 (defvar org-create-file-search-functions nil
9758 "List of functions to construct the right search string for a file link.
9759 These functions are called in turn with point at the location to
9760 which the link should point.
9762 A function in the hook should first test if it would like to
9763 handle this file type, for example by checking the `major-mode'
9764 or the file extension. If it decides not to handle this file, it
9765 should just return nil to give other functions a chance. If it
9766 does handle the file, it must return the search string to be used
9767 when following the link. The search string will be part of the
9768 file link, given after a double colon, and `org-open-at-point'
9769 will automatically search for it. If special measures must be
9770 taken to make the search successful, another function should be
9771 added to the companion hook `org-execute-file-search-functions',
9772 which see.
9774 A function in this hook may also use `setq' to set the variable
9775 `description' to provide a suggestion for the descriptive text to
9776 be used for this link when it gets inserted into an Org-mode
9777 buffer with \\[org-insert-link].")
9779 (defvar org-execute-file-search-functions nil
9780 "List of functions to execute a file search triggered by a link.
9782 Functions added to this hook must accept a single argument, the
9783 search string that was part of the file link, the part after the
9784 double colon. The function must first check if it would like to
9785 handle this search, for example by checking the `major-mode' or
9786 the file extension. If it decides not to handle this search, it
9787 should just return nil to give other functions a chance. If it
9788 does handle the search, it must return a non-nil value to keep
9789 other functions from trying.
9791 Each function can access the current prefix argument through the
9792 variable `current-prefix-argument'. Note that a single prefix is
9793 used to force opening a link in Emacs, so it may be good to only
9794 use a numeric or double prefix to guide the search function.
9796 In case this is needed, a function in this hook can also restore
9797 the window configuration before `org-open-at-point' was called using:
9799 (set-window-configuration org-window-config-before-follow-link)")
9801 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
9802 (defun org-link-search (s &optional type avoid-pos stealth)
9803 "Search for a link search option.
9804 If S is surrounded by forward slashes, it is interpreted as a
9805 regular expression. In org-mode files, this will create an `org-occur'
9806 sparse tree. In ordinary files, `occur' will be used to list matches.
9807 If the current buffer is in `dired-mode', grep will be used to search
9808 in all files. If AVOID-POS is given, ignore matches near that position.
9810 When optional argument STEALTH is non-nil, do not modify
9811 visibility around point, thus ignoring
9812 `org-show-hierarchy-above', `org-show-following-heading' and
9813 `org-show-siblings' variables."
9814 (let ((case-fold-search t)
9815 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
9816 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
9817 (append '(("") (" ") ("\t") ("\n"))
9818 org-emphasis-alist)
9819 "\\|") "\\)"))
9820 (pos (point))
9821 (pre nil) (post nil)
9822 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
9823 (cond
9824 ;; First check if there are any special search functions
9825 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
9826 ;; Now try the builtin stuff
9827 ((and (equal (string-to-char s0) ?#)
9828 (> (length s0) 1)
9829 (save-excursion
9830 (goto-char (point-min))
9831 (and
9832 (re-search-forward
9833 (concat "^[ \t]*:CUSTOM_ID:[ \t]+" (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
9834 (setq type 'dedicated
9835 pos (match-beginning 0))))
9836 ;; There is an exact target for this
9837 (goto-char pos)
9838 (org-back-to-heading t)))
9839 ((save-excursion
9840 (goto-char (point-min))
9841 (and
9842 (re-search-forward
9843 (concat "<<" (regexp-quote s0) ">>") nil t)
9844 (setq type 'dedicated
9845 pos (match-beginning 0))))
9846 ;; There is an exact target for this
9847 (goto-char pos))
9848 ((and (string-match "^(\\(.*\\))$" s0)
9849 (save-excursion
9850 (goto-char (point-min))
9851 (and
9852 (re-search-forward
9853 (concat "[^[]" (regexp-quote
9854 (format org-coderef-label-format
9855 (match-string 1 s0))))
9856 nil t)
9857 (setq type 'dedicated
9858 pos (1+ (match-beginning 0))))))
9859 ;; There is a coderef target for this
9860 (goto-char pos))
9861 ((string-match "^/\\(.*\\)/$" s)
9862 ;; A regular expression
9863 (cond
9864 ((eq major-mode 'org-mode)
9865 (org-occur (match-string 1 s)))
9866 ;;((eq major-mode 'dired-mode)
9867 ;; (grep (concat "grep -n -e '" (match-string 1 s) "' *")))
9868 (t (org-do-occur (match-string 1 s)))))
9869 ((and (eq major-mode 'org-mode) org-link-search-must-match-exact-headline)
9870 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
9871 (goto-char (point-min))
9872 (cond
9873 ((let (case-fold-search)
9874 (re-search-forward (format org-complex-heading-regexp-format
9875 (regexp-quote s))
9876 nil t))
9877 ;; OK, found a match
9878 (setq type 'dedicated)
9879 (goto-char (match-beginning 0)))
9880 ((and (not org-link-search-inhibit-query)
9881 (eq org-link-search-must-match-exact-headline 'query-to-create)
9882 (y-or-n-p "No match - create this as a new heading? "))
9883 (goto-char (point-max))
9884 (or (bolp) (newline))
9885 (insert "* " s "\n")
9886 (beginning-of-line 0))
9888 (goto-char pos)
9889 (error "No match"))))
9891 ;; A normal search string
9892 (when (equal (string-to-char s) ?*)
9893 ;; Anchor on headlines, post may include tags.
9894 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
9895 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
9896 s (substring s 1)))
9897 (remove-text-properties
9898 0 (length s)
9899 '(face nil mouse-face nil keymap nil fontified nil) s)
9900 ;; Make a series of regular expressions to find a match
9901 (setq words (org-split-string s "[ \n\r\t]+")
9903 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
9904 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
9905 "\\)" markers)
9906 re2a_ (concat "\\(" (mapconcat 'downcase words "[ \t\r\n]+") "\\)[ \t\r\n]")
9907 re2a (concat "[ \t\r\n]" re2a_)
9908 re4_ (concat "\\(" (mapconcat 'downcase words "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
9909 re4 (concat "[^a-zA-Z_]" re4_)
9911 re1 (concat pre re2 post)
9912 re3 (concat pre (if pre re4_ re4) post)
9913 re5 (concat pre ".*" re4)
9914 re2 (concat pre re2)
9915 re2a (concat pre (if pre re2a_ re2a))
9916 re4 (concat pre (if pre re4_ re4))
9917 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
9918 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
9919 re5 "\\)"
9921 (cond
9922 ((eq type 'org-occur) (org-occur reall))
9923 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
9924 (t (goto-char (point-min))
9925 (setq type 'fuzzy)
9926 (if (or (and (org-search-not-self 1 re0 nil t) (setq type 'dedicated))
9927 (org-search-not-self 1 re1 nil t)
9928 (org-search-not-self 1 re2 nil t)
9929 (org-search-not-self 1 re2a nil t)
9930 (org-search-not-self 1 re3 nil t)
9931 (org-search-not-self 1 re4 nil t)
9932 (org-search-not-self 1 re5 nil t)
9934 (goto-char (match-beginning 1))
9935 (goto-char pos)
9936 (error "No match"))))))
9937 (and (eq major-mode 'org-mode)
9938 (not stealth)
9939 (org-show-context 'link-search))
9940 type))
9942 (defun org-search-not-self (group &rest args)
9943 "Execute `re-search-forward', but only accept matches that do not
9944 enclose the position of `org-open-link-marker'."
9945 (let ((m org-open-link-marker))
9946 (catch 'exit
9947 (while (apply 're-search-forward args)
9948 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
9949 (goto-char (match-end group))
9950 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
9951 (> (match-beginning 0) (marker-position m))
9952 (< (match-end 0) (marker-position m)))
9953 (save-match-data
9954 (or (not (org-in-regexp
9955 org-bracket-link-analytic-regexp 1))
9956 (not (match-end 4)) ; no description
9957 (and (<= (match-beginning 4) (point))
9958 (>= (match-end 4) (point))))))
9959 (throw 'exit (point))))))))
9961 (defun org-get-buffer-for-internal-link (buffer)
9962 "Return a buffer to be used for displaying the link target of internal links."
9963 (cond
9964 ((not org-display-internal-link-with-indirect-buffer)
9965 buffer)
9966 ((string-match "(Clone)$" (buffer-name buffer))
9967 (message "Buffer is already a clone, not making another one")
9968 ;; we also do not modify visibility in this case
9969 buffer)
9970 (t ; make a new indirect buffer for displaying the link
9971 (let* ((bn (buffer-name buffer))
9972 (ibn (concat bn "(Clone)"))
9973 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
9974 (with-current-buffer ib (org-overview))
9975 ib))))
9977 (defun org-do-occur (regexp &optional cleanup)
9978 "Call the Emacs command `occur'.
9979 If CLEANUP is non-nil, remove the printout of the regular expression
9980 in the *Occur* buffer. This is useful if the regex is long and not useful
9981 to read."
9982 (occur regexp)
9983 (when cleanup
9984 (let ((cwin (selected-window)) win beg end)
9985 (when (setq win (get-buffer-window "*Occur*"))
9986 (select-window win))
9987 (goto-char (point-min))
9988 (when (re-search-forward "match[a-z]+" nil t)
9989 (setq beg (match-end 0))
9990 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
9991 (setq end (1- (match-beginning 0)))))
9992 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
9993 (goto-char (point-min))
9994 (select-window cwin))))
9996 ;;; The mark ring for links jumps
9998 (defvar org-mark-ring nil
9999 "Mark ring for positions before jumps in Org-mode.")
10000 (defvar org-mark-ring-last-goto nil
10001 "Last position in the mark ring used to go back.")
10002 ;; Fill and close the ring
10003 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
10004 (loop for i from 1 to org-mark-ring-length do
10005 (push (make-marker) org-mark-ring))
10006 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
10007 org-mark-ring)
10009 (defun org-mark-ring-push (&optional pos buffer)
10010 "Put the current position or POS into the mark ring and rotate it."
10011 (interactive)
10012 (setq pos (or pos (point)))
10013 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
10014 (move-marker (car org-mark-ring)
10015 (or pos (point))
10016 (or buffer (current-buffer)))
10017 (message "%s"
10018 (substitute-command-keys
10019 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
10021 (defun org-mark-ring-goto (&optional n)
10022 "Jump to the previous position in the mark ring.
10023 With prefix arg N, jump back that many stored positions. When
10024 called several times in succession, walk through the entire ring.
10025 Org-mode commands jumping to a different position in the current file,
10026 or to another Org-mode file, automatically push the old position
10027 onto the ring."
10028 (interactive "p")
10029 (let (p m)
10030 (if (eq last-command this-command)
10031 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
10032 (setq p org-mark-ring))
10033 (setq org-mark-ring-last-goto p)
10034 (setq m (car p))
10035 (org-pop-to-buffer-same-window (marker-buffer m))
10036 (goto-char m)
10037 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
10039 (defun org-remove-angle-brackets (s)
10040 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
10041 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
10043 (defun org-add-angle-brackets (s)
10044 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
10045 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
10047 (defun org-remove-double-quotes (s)
10048 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
10049 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
10052 ;;; Following specific links
10054 (defun org-follow-timestamp-link ()
10055 (cond
10056 ((org-at-date-range-p t)
10057 (let ((org-agenda-start-on-weekday)
10058 (t1 (match-string 1))
10059 (t2 (match-string 2)))
10060 (setq t1 (time-to-days (org-time-string-to-time t1))
10061 t2 (time-to-days (org-time-string-to-time t2)))
10062 (org-agenda-list nil t1 (1+ (- t2 t1)))))
10063 ((org-at-timestamp-p t)
10064 (org-agenda-list nil (time-to-days (org-time-string-to-time
10065 (substring (match-string 1) 0 10)))
10067 (t (error "This should not happen"))))
10070 ;;; Following file links
10071 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
10072 (declare-function mailcap-extension-to-mime "mailcap" (extn))
10073 (declare-function mailcap-mime-info
10074 "mailcap" (string &optional request no-decode))
10075 (defvar org-wait nil)
10076 (defun org-open-file (path &optional in-emacs line search)
10077 "Open the file at PATH.
10078 First, this expands any special file name abbreviations. Then the
10079 configuration variable `org-file-apps' is checked if it contains an
10080 entry for this file type, and if yes, the corresponding command is launched.
10082 If no application is found, Emacs simply visits the file.
10084 With optional prefix argument IN-EMACS, Emacs will visit the file.
10085 With a double \\[universal-argument] \\[universal-argument] \
10086 prefix arg, Org tries to avoid opening in Emacs
10087 and to use an external application to visit the file.
10089 Optional LINE specifies a line to go to, optional SEARCH a string
10090 to search for. If LINE or SEARCH is given, the file will be
10091 opened in Emacs, unless an entry from org-file-apps that makes
10092 use of groups in a regexp matches.
10094 If you want to change the way frames are used when following a
10095 link, please customize `org-link-frame-setup'.
10097 If the file does not exist, an error is thrown."
10098 (let* ((file (if (equal path "")
10099 buffer-file-name
10100 (substitute-in-file-name (expand-file-name path))))
10101 (file-apps (append org-file-apps (org-default-apps)))
10102 (apps (org-remove-if
10103 'org-file-apps-entry-match-against-dlink-p file-apps))
10104 (apps-dlink (org-remove-if-not
10105 'org-file-apps-entry-match-against-dlink-p file-apps))
10106 (remp (and (assq 'remote apps) (org-file-remote-p file)))
10107 (dirp (if remp nil (file-directory-p file)))
10108 (file (if (and dirp org-open-directory-means-index-dot-org)
10109 (concat (file-name-as-directory file) "index.org")
10110 file))
10111 (a-m-a-p (assq 'auto-mode apps))
10112 (dfile (downcase file))
10113 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
10114 (link (cond ((and (eq line nil)
10115 (eq search nil))
10116 file)
10117 (line
10118 (concat file "::" (number-to-string line)))
10119 (search
10120 (concat file "::" search))))
10121 (dlink (downcase link))
10122 (old-buffer (current-buffer))
10123 (old-pos (point))
10124 (old-mode major-mode)
10125 ext cmd link-match-data)
10126 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
10127 (setq ext (match-string 1 dfile))
10128 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
10129 (setq ext (match-string 1 dfile))))
10130 (cond
10131 ((member in-emacs '((16) system))
10132 (setq cmd (cdr (assoc 'system apps))))
10133 (in-emacs (setq cmd 'emacs))
10135 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
10136 (and dirp (cdr (assoc 'directory apps)))
10137 ; first, try matching against apps-dlink
10138 ; if we get a match here, store the match data for later
10139 (let ((match (assoc-default dlink apps-dlink
10140 'string-match)))
10141 (if match
10142 (progn (setq link-match-data (match-data))
10143 match)
10144 (progn (setq in-emacs (or in-emacs line search))
10145 nil))) ; if we have no match in apps-dlink,
10146 ; always open the file in emacs if line or search
10147 ; is given (for backwards compatibility)
10148 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
10149 'string-match)
10150 (cdr (assoc ext apps))
10151 (cdr (assoc t apps))))))
10152 (when (eq cmd 'system)
10153 (setq cmd (cdr (assoc 'system apps))))
10154 (when (eq cmd 'default)
10155 (setq cmd (cdr (assoc t apps))))
10156 (when (eq cmd 'mailcap)
10157 (require 'mailcap)
10158 (mailcap-parse-mailcaps)
10159 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
10160 (command (mailcap-mime-info mime-type)))
10161 (if (stringp command)
10162 (setq cmd command)
10163 (setq cmd 'emacs))))
10164 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
10165 (not (file-exists-p file))
10166 (not org-open-non-existing-files))
10167 (error "No such file: %s" file))
10168 (cond
10169 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
10170 ;; Remove quotes around the file name - we'll use shell-quote-argument.
10171 (while (string-match "['\"]%s['\"]" cmd)
10172 (setq cmd (replace-match "%s" t t cmd)))
10173 (while (string-match "%s" cmd)
10174 (setq cmd (replace-match
10175 (save-match-data
10176 (shell-quote-argument
10177 (convert-standard-filename file)))
10178 t t cmd)))
10180 ;; Replace "%1", "%2" etc. in command with group matches from regex
10181 (save-match-data
10182 (let ((match-index 1)
10183 (number-of-groups (- (/ (length link-match-data) 2) 1)))
10184 (set-match-data link-match-data)
10185 (while (<= match-index number-of-groups)
10186 (let ((regex (concat "%" (number-to-string match-index)))
10187 (replace-with (match-string match-index dlink)))
10188 (while (string-match regex cmd)
10189 (setq cmd (replace-match replace-with t t cmd))))
10190 (setq match-index (+ match-index 1)))))
10192 (save-window-excursion
10193 (start-process-shell-command cmd nil cmd)
10194 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))
10196 ((or (stringp cmd)
10197 (eq cmd 'emacs))
10198 (funcall (cdr (assq 'file org-link-frame-setup)) file)
10199 (widen)
10200 (if line (org-goto-line line)
10201 (if search (org-link-search search))))
10202 ((consp cmd)
10203 (let ((file (convert-standard-filename file)))
10204 (save-match-data
10205 (set-match-data link-match-data)
10206 (eval cmd))))
10207 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
10208 (and (eq major-mode 'org-mode) (eq old-mode 'org-mode)
10209 (or (not (equal old-buffer (current-buffer)))
10210 (not (equal old-pos (point))))
10211 (org-mark-ring-push old-pos old-buffer))))
10213 (defun org-file-apps-entry-match-against-dlink-p (entry)
10214 "This function returns non-nil if `entry' uses a regular
10215 expression which should be matched against the whole link by
10216 org-open-file.
10218 It assumes that is the case when the entry uses a regular
10219 expression which has at least one grouping construct and the
10220 action is either a lisp form or a command string containing
10221 '%1', i.e. using at least one subexpression match as a
10222 parameter."
10223 (let ((selector (car entry))
10224 (action (cdr entry)))
10225 (if (stringp selector)
10226 (and (> (regexp-opt-depth selector) 0)
10227 (or (and (stringp action)
10228 (string-match "%[0-9]" action))
10229 (consp action)))
10230 nil)))
10232 (defun org-default-apps ()
10233 "Return the default applications for this operating system."
10234 (cond
10235 ((eq system-type 'darwin)
10236 org-file-apps-defaults-macosx)
10237 ((eq system-type 'windows-nt)
10238 org-file-apps-defaults-windowsnt)
10239 (t org-file-apps-defaults-gnu)))
10241 (defun org-apps-regexp-alist (list &optional add-auto-mode)
10242 "Convert extensions to regular expressions in the cars of LIST.
10243 Also, weed out any non-string entries, because the return value is used
10244 only for regexp matching.
10245 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
10246 point to the symbol `emacs', indicating that the file should
10247 be opened in Emacs."
10248 (append
10249 (delq nil
10250 (mapcar (lambda (x)
10251 (if (not (stringp (car x)))
10253 (if (string-match "\\W" (car x))
10255 (cons (concat "\\." (car x) "\\'") (cdr x)))))
10256 list))
10257 (if add-auto-mode
10258 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
10260 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
10261 (defun org-file-remote-p (file)
10262 "Test whether FILE specifies a location on a remote system.
10263 Return non-nil if the location is indeed remote.
10265 For example, the filename \"/user@host:/foo\" specifies a location
10266 on the system \"/user@host:\"."
10267 (cond ((fboundp 'file-remote-p)
10268 (file-remote-p file))
10269 ((fboundp 'tramp-handle-file-remote-p)
10270 (tramp-handle-file-remote-p file))
10271 ((and (boundp 'ange-ftp-name-format)
10272 (string-match (car ange-ftp-name-format) file))
10274 (t nil)))
10277 ;;;; Refiling
10279 (defun org-get-org-file ()
10280 "Read a filename, with default directory `org-directory'."
10281 (let ((default (or org-default-notes-file remember-data-file)))
10282 (read-file-name (format "File name [%s]: " default)
10283 (file-name-as-directory org-directory)
10284 default)))
10286 (defun org-notes-order-reversed-p ()
10287 "Check if the current file should receive notes in reversed order."
10288 (cond
10289 ((not org-reverse-note-order) nil)
10290 ((eq t org-reverse-note-order) t)
10291 ((not (listp org-reverse-note-order)) nil)
10292 (t (catch 'exit
10293 (let ((all org-reverse-note-order)
10294 entry)
10295 (while (setq entry (pop all))
10296 (if (string-match (car entry) buffer-file-name)
10297 (throw 'exit (cdr entry))))
10298 nil)))))
10300 (defvar org-refile-target-table nil
10301 "The list of refile targets, created by `org-refile'.")
10303 (defvar org-agenda-new-buffers nil
10304 "Buffers created to visit agenda files.")
10306 (defvar org-refile-cache nil
10307 "Cache for refile targets.")
10309 (defvar org-refile-markers nil
10310 "All the markers used for caching refile locations.")
10312 (defun org-refile-marker (pos)
10313 "Get a new refile marker, but only if caching is in use."
10314 (if (not org-refile-use-cache)
10316 (let ((m (make-marker)))
10317 (move-marker m pos)
10318 (push m org-refile-markers)
10319 m)))
10321 (defun org-refile-cache-clear ()
10322 "Clear the refile cache and disable all the markers."
10323 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
10324 (setq org-refile-markers nil)
10325 (setq org-refile-cache nil)
10326 (message "Refile cache has been cleared"))
10328 (defun org-refile-cache-check-set (set)
10329 "Check if all the markers in the cache still have live buffers."
10330 (let (marker)
10331 (catch 'exit
10332 (while (and set (setq marker (nth 3 (pop set))))
10333 ;; if org-refile-use-outline-path is 'file, marker may be nil
10334 (when (and marker (null (marker-buffer marker)))
10335 (message "not found") (sit-for 3)
10336 (throw 'exit nil)))
10337 t)))
10339 (defun org-refile-cache-put (set &rest identifiers)
10340 "Push the refile targets SET into the cache, under IDENTIFIERS."
10341 (let* ((key (sha1 (prin1-to-string identifiers)))
10342 (entry (assoc key org-refile-cache)))
10343 (if entry
10344 (setcdr entry set)
10345 (push (cons key set) org-refile-cache))))
10347 (defun org-refile-cache-get (&rest identifiers)
10348 "Retrieve the cached value for refile targets given by IDENTIFIERS."
10349 (cond
10350 ((not org-refile-cache) nil)
10351 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
10353 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
10354 org-refile-cache))))
10355 (and set (org-refile-cache-check-set set) set)))))
10357 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
10358 "Produce a table with refile targets."
10359 (let ((case-fold-search nil)
10360 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
10361 (entries (or org-refile-targets '((nil . (:level . 1)))))
10362 targets tgs txt re files f desc descre fast-path-p level pos0)
10363 (message "Getting targets...")
10364 (with-current-buffer (or default-buffer (current-buffer))
10365 (while (setq entry (pop entries))
10366 (setq files (car entry) desc (cdr entry))
10367 (setq fast-path-p nil)
10368 (cond
10369 ((null files) (setq files (list (current-buffer))))
10370 ((eq files 'org-agenda-files)
10371 (setq files (org-agenda-files 'unrestricted)))
10372 ((and (symbolp files) (fboundp files))
10373 (setq files (funcall files)))
10374 ((and (symbolp files) (boundp files))
10375 (setq files (symbol-value files))))
10376 (if (stringp files) (setq files (list files)))
10377 (cond
10378 ((eq (car desc) :tag)
10379 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
10380 ((eq (car desc) :todo)
10381 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
10382 ((eq (car desc) :regexp)
10383 (setq descre (cdr desc)))
10384 ((eq (car desc) :level)
10385 (setq descre (concat "^\\*\\{" (number-to-string
10386 (if org-odd-levels-only
10387 (1- (* 2 (cdr desc)))
10388 (cdr desc)))
10389 "\\}[ \t]")))
10390 ((eq (car desc) :maxlevel)
10391 (setq fast-path-p t)
10392 (setq descre (concat "^\\*\\{1," (number-to-string
10393 (if org-odd-levels-only
10394 (1- (* 2 (cdr desc)))
10395 (cdr desc)))
10396 "\\}[ \t]")))
10397 (t (error "Bad refiling target description %s" desc)))
10398 (while (setq f (pop files))
10399 (with-current-buffer
10400 (if (bufferp f) f (org-get-agenda-file-buffer f))
10402 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
10403 (progn
10404 (if (bufferp f) (setq f (buffer-file-name
10405 (buffer-base-buffer f))))
10406 (setq f (and f (expand-file-name f)))
10407 (if (eq org-refile-use-outline-path 'file)
10408 (push (list (file-name-nondirectory f) f nil nil) tgs))
10409 (save-excursion
10410 (save-restriction
10411 (widen)
10412 (goto-char (point-min))
10413 (while (re-search-forward descre nil t)
10414 (goto-char (setq pos0 (point-at-bol)))
10415 (catch 'next
10416 (when org-refile-target-verify-function
10417 (save-match-data
10418 (or (funcall org-refile-target-verify-function)
10419 (throw 'next t))))
10420 (when (and (looking-at org-complex-heading-regexp)
10421 (not (member (match-string 4) excluded-entries))
10422 (match-string 4))
10423 (setq level (org-reduced-level
10424 (- (match-end 1) (match-beginning 1)))
10425 txt (org-link-display-format (match-string 4))
10426 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
10427 re (format org-complex-heading-regexp-format
10428 (regexp-quote (match-string 4))))
10429 (when org-refile-use-outline-path
10430 (setq txt (mapconcat
10431 'org-protect-slash
10432 (append
10433 (if (eq org-refile-use-outline-path
10434 'file)
10435 (list (file-name-nondirectory
10436 (buffer-file-name
10437 (buffer-base-buffer))))
10438 (if (eq org-refile-use-outline-path
10439 'full-file-path)
10440 (list (buffer-file-name
10441 (buffer-base-buffer)))))
10442 (org-get-outline-path fast-path-p
10443 level txt)
10444 (list txt))
10445 "/")))
10446 (push (list txt f re (org-refile-marker (point)))
10447 tgs)))
10448 (when (= (point) pos0)
10449 ;; verification function has not moved point
10450 (goto-char (point-at-eol))))))))
10451 (when org-refile-use-cache
10452 (org-refile-cache-put tgs (buffer-file-name) descre))
10453 (setq targets (append tgs targets))
10454 ))))
10455 (message "Getting targets...done")
10456 (nreverse targets)))
10458 (defun org-protect-slash (s)
10459 (while (string-match "/" s)
10460 (setq s (replace-match "\\" t t s)))
10463 (defvar org-olpa (make-vector 20 nil))
10465 (defun org-get-outline-path (&optional fastp level heading)
10466 "Return the outline path to the current entry, as a list.
10468 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
10469 routine which makes outline path derivations for an entire file,
10470 avoiding backtracing. Refile target collection makes use of that."
10471 (if fastp
10472 (progn
10473 (if (> level 19)
10474 (error "Outline path failure, more than 19 levels"))
10475 (loop for i from level upto 19 do
10476 (aset org-olpa i nil))
10477 (prog1
10478 (delq nil (append org-olpa nil))
10479 (aset org-olpa level heading)))
10480 (let (rtn case-fold-search)
10481 (save-excursion
10482 (save-restriction
10483 (widen)
10484 (while (org-up-heading-safe)
10485 (when (looking-at org-complex-heading-regexp)
10486 (push (org-match-string-no-properties 4) rtn)))
10487 rtn)))))
10489 (defun org-format-outline-path (path &optional width prefix)
10490 "Format the outline path PATH for display.
10491 Width is the maximum number of characters that is available.
10492 Prefix is a prefix to be included in the returned string,
10493 such as the file name."
10494 (setq width (or width 79))
10495 (if prefix (setq width (- width (length prefix))))
10496 (if (not path)
10497 (or prefix "")
10498 (let* ((nsteps (length path))
10499 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
10500 (maxwidth (if (<= total-width width)
10501 10000 ;; everything fits
10502 ;; we need to shorten the level headings
10503 (/ (- width nsteps) nsteps)))
10504 (org-odd-levels-only nil)
10505 (n 0)
10506 (total (1+ (length prefix))))
10507 (setq maxwidth (max maxwidth 10))
10508 (concat prefix
10509 (mapconcat
10510 (lambda (h)
10511 (setq n (1+ n))
10512 (if (and (= n nsteps) (< maxwidth 10000))
10513 (setq maxwidth (- total-width total)))
10514 (if (< (length h) maxwidth)
10515 (progn (setq total (+ total (length h) 1)) h)
10516 (setq h (substring h 0 (- maxwidth 2))
10517 total (+ total maxwidth 1))
10518 (if (string-match "[ \t]+\\'" h)
10519 (setq h (substring h 0 (match-beginning 0))))
10520 (setq h (concat h "..")))
10521 (org-add-props h nil 'face
10522 (nth (% (1- n) org-n-level-faces)
10523 org-level-faces))
10525 path "/")))))
10527 (defun org-display-outline-path (&optional file current)
10528 "Display the current outline path in the echo area."
10529 (interactive "P")
10530 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
10531 (case-fold-search nil)
10532 (path (and (eq major-mode 'org-mode) (org-get-outline-path))))
10533 (if current (setq path (append path
10534 (save-excursion
10535 (org-back-to-heading t)
10536 (if (looking-at org-complex-heading-regexp)
10537 (list (match-string 4)))))))
10538 (message "%s"
10539 (org-format-outline-path
10540 path
10541 (1- (frame-width))
10542 (and file bfn (concat (file-name-nondirectory bfn) "/"))))))
10544 (defvar org-refile-history nil
10545 "History for refiling operations.")
10547 (defvar org-after-refile-insert-hook nil
10548 "Hook run after `org-refile' has inserted its stuff at the new location.
10549 Note that this is still *before* the stuff will be removed from
10550 the *old* location.")
10552 (defvar org-capture-last-stored-marker)
10553 (defun org-refile (&optional goto default-buffer rfloc)
10554 "Move the entry or entries at point to another heading.
10555 The list of target headings is compiled using the information in
10556 `org-refile-targets', which see.
10558 At the target location, the entry is filed as a subitem of the target
10559 heading. Depending on `org-reverse-note-order', the new subitem will
10560 either be the first or the last subitem.
10562 If there is an active region, all entries in that region will be moved.
10563 However, the region must fulfill the requirement that the first heading
10564 is the first one sets the top-level of the moved text - at most siblings
10565 below it are allowed.
10567 With prefix arg GOTO, the command will only visit the target location
10568 and not actually move anything.
10570 With a double prefix arg \\[universal-argument] \\[universal-argument], \
10571 go to the location where the last refiling operation has put the subtree.
10572 With a prefix argument of `2', refile to the running clock.
10574 RFLOC can be a refile location obtained in a different way.
10576 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
10578 If you are using target caching (see `org-refile-use-cache'),
10579 You have to clear the target cache in order to find new targets.
10580 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
10581 prefix argument (`C-u C-u C-u C-c C-w')."
10583 (interactive "P")
10584 (if (member goto '(0 (64)))
10585 (org-refile-cache-clear)
10586 (let* ((cbuf (current-buffer))
10587 (regionp (org-region-active-p))
10588 (region-start (and regionp (region-beginning)))
10589 (region-end (and regionp (region-end)))
10590 (region-length (and regionp (- region-end region-start)))
10591 (filename (buffer-file-name (buffer-base-buffer cbuf)))
10592 pos it nbuf file re level reversed)
10593 (setq last-command nil)
10594 (when regionp
10595 (goto-char region-start)
10596 (or (bolp) (goto-char (point-at-bol)))
10597 (setq region-start (point))
10598 (unless (or (org-kill-is-subtree-p
10599 (buffer-substring region-start region-end))
10600 (prog1 org-refile-active-region-within-subtree
10601 (org-toggle-heading)))
10602 (error "The region is not a (sequence of) subtree(s)")))
10603 (if (equal goto '(16))
10604 (org-refile-goto-last-stored)
10605 (when (or
10606 (and (equal goto 2)
10607 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
10608 (prog1
10609 (setq it (list (or org-clock-heading "running clock")
10610 (buffer-file-name
10611 (marker-buffer org-clock-hd-marker))
10613 (marker-position org-clock-hd-marker)))
10614 (setq goto nil)))
10615 (setq it (or rfloc
10616 (let (heading-text)
10617 (save-excursion
10618 (unless goto
10619 (org-back-to-heading t)
10620 (setq heading-text
10621 (nth 4 (org-heading-components))))
10622 (org-refile-get-location
10623 (cond (goto "Goto")
10624 (regionp "Refile region to")
10625 (t (concat "Refile subtree \""
10626 heading-text "\" to")))
10627 default-buffer
10628 org-refile-allow-creating-parent-nodes
10629 goto))))))
10630 (setq file (nth 1 it)
10631 re (nth 2 it)
10632 pos (nth 3 it))
10633 (if (and (not goto)
10635 (equal (buffer-file-name) file)
10636 (if regionp
10637 (and (>= pos region-start)
10638 (<= pos region-end))
10639 (and (>= pos (point))
10640 (< pos (save-excursion
10641 (org-end-of-subtree t t))))))
10642 (error "Cannot refile to position inside the tree or region"))
10644 (setq nbuf (or (find-buffer-visiting file)
10645 (find-file-noselect file)))
10646 (if goto
10647 (progn
10648 (org-pop-to-buffer-same-window nbuf)
10649 (goto-char pos)
10650 (org-show-context 'org-goto))
10651 (if regionp
10652 (progn
10653 (org-kill-new (buffer-substring region-start region-end))
10654 (org-save-markers-in-region region-start region-end))
10655 (org-copy-subtree 1 nil t))
10656 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
10657 (find-file-noselect file)))
10658 (setq reversed (org-notes-order-reversed-p))
10659 (save-excursion
10660 (save-restriction
10661 (widen)
10662 (if pos
10663 (progn
10664 (goto-char pos)
10665 (looking-at org-outline-regexp)
10666 (setq level (org-get-valid-level (funcall outline-level) 1))
10667 (goto-char
10668 (if reversed
10669 (or (outline-next-heading) (point-max))
10670 (or (save-excursion (org-get-next-sibling))
10671 (org-end-of-subtree t t)
10672 (point-max)))))
10673 (setq level 1)
10674 (if (not reversed)
10675 (goto-char (point-max))
10676 (goto-char (point-min))
10677 (or (outline-next-heading) (goto-char (point-max)))))
10678 (if (not (bolp)) (newline))
10679 (org-paste-subtree level)
10680 (when org-log-refile
10681 (org-add-log-setup 'refile nil nil 'findpos
10682 org-log-refile)
10683 (unless (eq org-log-refile 'note)
10684 (save-excursion (org-add-log-note))))
10685 (and org-auto-align-tags (org-set-tags nil t))
10686 (bookmark-set "org-refile-last-stored")
10687 ;; If we are refiling for capture, make sure that the
10688 ;; last-capture pointers point here
10689 (when (org-bound-and-true-p org-refile-for-capture)
10690 (bookmark-set "org-capture-last-stored-marker")
10691 (move-marker org-capture-last-stored-marker (point)))
10692 (if (fboundp 'deactivate-mark) (deactivate-mark))
10693 (run-hooks 'org-after-refile-insert-hook))))
10694 (if regionp
10695 (delete-region (point) (+ (point) region-length))
10696 (org-cut-subtree))
10697 (when (featurep 'org-inlinetask)
10698 (org-inlinetask-remove-END-maybe))
10699 (setq org-markers-to-move nil)
10700 (message "Refiled to \"%s\" in file %s" (car it) file)))))))
10702 (defun org-refile-goto-last-stored ()
10703 "Go to the location where the last refile was stored."
10704 (interactive)
10705 (bookmark-jump "org-refile-last-stored")
10706 (message "This is the location of the last refile"))
10708 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
10709 no-exclude)
10710 "Prompt the user for a refile location, using PROMPT.
10711 PROMPT should not be suffixed with a colon and a space, because
10712 this function appends the default value from
10713 `org-refile-history' automatically, if that is not empty.
10714 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
10715 this is used for the GOTO interface."
10716 (let ((org-refile-targets org-refile-targets)
10717 (org-refile-use-outline-path org-refile-use-outline-path)
10718 excluded-entries)
10719 (when (and (eq major-mode 'org-mode)
10720 (not org-refile-use-cache)
10721 (not no-exclude))
10722 (org-map-tree
10723 (lambda()
10724 (setq excluded-entries
10725 (append excluded-entries (list (org-get-heading t t)))))))
10726 (setq org-refile-target-table
10727 (org-refile-get-targets default-buffer excluded-entries)))
10728 (unless org-refile-target-table
10729 (error "No refile targets"))
10730 (let* ((prompt (concat prompt
10731 (and (car org-refile-history)
10732 (concat " (default " (car org-refile-history) ")"))
10733 ": "))
10734 (cbuf (current-buffer))
10735 (partial-completion-mode nil)
10736 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
10737 (cfunc (if (and org-refile-use-outline-path
10738 org-outline-path-complete-in-steps)
10739 'org-olpath-completing-read
10740 'org-icompleting-read))
10741 (extra (if org-refile-use-outline-path "/" ""))
10742 (filename (and cfn (expand-file-name cfn)))
10743 (tbl (mapcar
10744 (lambda (x)
10745 (if (and (not (member org-refile-use-outline-path
10746 '(file full-file-path)))
10747 (not (equal filename (nth 1 x))))
10748 (cons (concat (car x) extra " ("
10749 (file-name-nondirectory (nth 1 x)) ")")
10750 (cdr x))
10751 (cons (concat (car x) extra) (cdr x))))
10752 org-refile-target-table))
10753 (completion-ignore-case t)
10754 pa answ parent-target child parent old-hist)
10755 (setq old-hist org-refile-history)
10756 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
10757 nil 'org-refile-history (car org-refile-history)))
10758 (setq pa (or (assoc answ tbl) (assoc (concat answ "/") tbl)))
10759 (org-refile-check-position pa)
10760 (if pa
10761 (progn
10762 (when (or (not org-refile-history)
10763 (not (eq old-hist org-refile-history))
10764 (not (equal (car pa) (car org-refile-history))))
10765 (setq org-refile-history
10766 (cons (car pa) (if (assoc (car org-refile-history) tbl)
10767 org-refile-history
10768 (cdr org-refile-history))))
10769 (if (equal (car org-refile-history) (nth 1 org-refile-history))
10770 (pop org-refile-history)))
10772 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
10773 (progn
10774 (setq parent (match-string 1 answ)
10775 child (match-string 2 answ))
10776 (setq parent-target (or (assoc parent tbl)
10777 (assoc (concat parent "/") tbl)))
10778 (when (and parent-target
10779 (or (eq new-nodes t)
10780 (and (eq new-nodes 'confirm)
10781 (y-or-n-p (format "Create new node \"%s\"? "
10782 child)))))
10783 (org-refile-new-child parent-target child)))
10784 (error "Invalid target location")))))
10786 (defun org-refile-check-position (refile-pointer)
10787 "Check if the refile pointer matches the readline to which it points."
10788 (let* ((file (nth 1 refile-pointer))
10789 (re (nth 2 refile-pointer))
10790 (pos (nth 3 refile-pointer))
10791 buffer)
10792 (when (org-string-nw-p re)
10793 (setq buffer (if (markerp pos)
10794 (marker-buffer pos)
10795 (or (find-buffer-visiting file)
10796 (find-file-noselect file))))
10797 (with-current-buffer buffer
10798 (save-excursion
10799 (save-restriction
10800 (widen)
10801 (goto-char pos)
10802 (beginning-of-line 1)
10803 (unless (org-looking-at-p re)
10804 (error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling"))))))))
10806 (defun org-refile-new-child (parent-target child)
10807 "Use refile target PARENT-TARGET to add new CHILD below it."
10808 (unless parent-target
10809 (error "Cannot find parent for new node"))
10810 (let ((file (nth 1 parent-target))
10811 (pos (nth 3 parent-target))
10812 level)
10813 (with-current-buffer (or (find-buffer-visiting file)
10814 (find-file-noselect file))
10815 (save-excursion
10816 (save-restriction
10817 (widen)
10818 (if pos
10819 (goto-char pos)
10820 (goto-char (point-max))
10821 (if (not (bolp)) (newline)))
10822 (when (looking-at org-outline-regexp)
10823 (setq level (funcall outline-level))
10824 (org-end-of-subtree t t))
10825 (org-back-over-empty-lines)
10826 (insert "\n" (make-string
10827 (if pos (org-get-valid-level level 1) 1) ?*)
10828 " " child "\n")
10829 (beginning-of-line 0)
10830 (list (concat (car parent-target) "/" child) file "" (point)))))))
10832 (defun org-olpath-completing-read (prompt collection &rest args)
10833 "Read an outline path like a file name."
10834 (let ((thetable collection)
10835 (org-completion-use-ido nil) ; does not work with ido.
10836 (org-completion-use-iswitchb nil)) ; or iswitchb
10837 (apply
10838 'org-icompleting-read prompt
10839 (lambda (string predicate &optional flag)
10840 (let (rtn r f (l (length string)))
10841 (cond
10842 ((eq flag nil)
10843 ;; try completion
10844 (try-completion string thetable))
10845 ((eq flag t)
10846 ;; all-completions
10847 (setq rtn (all-completions string thetable predicate))
10848 (mapcar
10849 (lambda (x)
10850 (setq r (substring x l))
10851 (if (string-match " ([^)]*)$" x)
10852 (setq f (match-string 0 x))
10853 (setq f ""))
10854 (if (string-match "/" r)
10855 (concat string (substring r 0 (match-end 0)) f)
10857 rtn))
10858 ((eq flag 'lambda)
10859 ;; exact match?
10860 (assoc string thetable)))
10862 args)))
10864 ;;;; Dynamic blocks
10866 (defun org-find-dblock (name)
10867 "Find the first dynamic block with name NAME in the buffer.
10868 If not found, stay at current position and return nil."
10869 (let (pos)
10870 (save-excursion
10871 (goto-char (point-min))
10872 (setq pos (and (re-search-forward (concat "^[ \t]*#\\+BEGIN:[ \t]+" name "\\>")
10873 nil t)
10874 (match-beginning 0))))
10875 (if pos (goto-char pos))
10876 pos))
10878 (defconst org-dblock-start-re
10879 "^[ \t]*#\\+BEGIN:[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
10880 "Matches the start line of a dynamic block, with parameters.")
10882 (defconst org-dblock-end-re "^[ \t]*#\\+END\\([: \t\r\n]\\|$\\)"
10883 "Matches the end of a dynamic block.")
10885 (defun org-create-dblock (plist)
10886 "Create a dynamic block section, with parameters taken from PLIST.
10887 PLIST must contain a :name entry which is used as name of the block."
10888 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
10889 (end-of-line 1)
10890 (newline))
10891 (let ((col (current-column))
10892 (name (plist-get plist :name)))
10893 (insert "#+BEGIN: " name)
10894 (while plist
10895 (if (eq (car plist) :name)
10896 (setq plist (cddr plist))
10897 (insert " " (prin1-to-string (pop plist)))))
10898 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
10899 (beginning-of-line -2)))
10901 (defun org-prepare-dblock ()
10902 "Prepare dynamic block for refresh.
10903 This empties the block, puts the cursor at the insert position and returns
10904 the property list including an extra property :name with the block name."
10905 (unless (looking-at org-dblock-start-re)
10906 (error "Not at a dynamic block"))
10907 (let* ((begdel (1+ (match-end 0)))
10908 (name (org-no-properties (match-string 1)))
10909 (params (append (list :name name)
10910 (read (concat "(" (match-string 3) ")")))))
10911 (save-excursion
10912 (beginning-of-line 1)
10913 (skip-chars-forward " \t")
10914 (setq params (plist-put params :indentation-column (current-column))))
10915 (unless (re-search-forward org-dblock-end-re nil t)
10916 (error "Dynamic block not terminated"))
10917 (setq params
10918 (append params
10919 (list :content (buffer-substring
10920 begdel (match-beginning 0)))))
10921 (delete-region begdel (match-beginning 0))
10922 (goto-char begdel)
10923 (open-line 1)
10924 params))
10926 (defun org-map-dblocks (&optional command)
10927 "Apply COMMAND to all dynamic blocks in the current buffer.
10928 If COMMAND is not given, use `org-update-dblock'."
10929 (let ((cmd (or command 'org-update-dblock)))
10930 (save-excursion
10931 (goto-char (point-min))
10932 (while (re-search-forward org-dblock-start-re nil t)
10933 (goto-char (match-beginning 0))
10934 (save-excursion
10935 (condition-case nil
10936 (funcall cmd)
10937 (error (message "Error during update of dynamic block"))))
10938 (unless (re-search-forward org-dblock-end-re nil t)
10939 (error "Dynamic block not terminated"))))))
10941 (defun org-dblock-update (&optional arg)
10942 "User command for updating dynamic blocks.
10943 Update the dynamic block at point. With prefix ARG, update all dynamic
10944 blocks in the buffer."
10945 (interactive "P")
10946 (if arg
10947 (org-update-all-dblocks)
10948 (or (looking-at org-dblock-start-re)
10949 (org-beginning-of-dblock))
10950 (org-update-dblock)))
10952 (defun org-update-dblock ()
10953 "Update the dynamic block at point.
10954 This means to empty the block, parse for parameters and then call
10955 the correct writing function."
10956 (interactive)
10957 (save-window-excursion
10958 (let* ((pos (point))
10959 (line (org-current-line))
10960 (params (org-prepare-dblock))
10961 (name (plist-get params :name))
10962 (indent (plist-get params :indentation-column))
10963 (cmd (intern (concat "org-dblock-write:" name))))
10964 (message "Updating dynamic block `%s' at line %d..." name line)
10965 (funcall cmd params)
10966 (message "Updating dynamic block `%s' at line %d...done" name line)
10967 (goto-char pos)
10968 (when (and indent (> indent 0))
10969 (setq indent (make-string indent ?\ ))
10970 (save-excursion
10971 (org-beginning-of-dblock)
10972 (forward-line 1)
10973 (while (not (looking-at org-dblock-end-re))
10974 (insert indent)
10975 (beginning-of-line 2))
10976 (when (looking-at org-dblock-end-re)
10977 (and (looking-at "[ \t]+")
10978 (replace-match ""))
10979 (insert indent)))))))
10981 (defun org-beginning-of-dblock ()
10982 "Find the beginning of the dynamic block at point.
10983 Error if there is no such block at point."
10984 (let ((pos (point))
10985 beg)
10986 (end-of-line 1)
10987 (if (and (re-search-backward org-dblock-start-re nil t)
10988 (setq beg (match-beginning 0))
10989 (re-search-forward org-dblock-end-re nil t)
10990 (> (match-end 0) pos))
10991 (goto-char beg)
10992 (goto-char pos)
10993 (error "Not in a dynamic block"))))
10995 (defun org-update-all-dblocks ()
10996 "Update all dynamic blocks in the buffer.
10997 This function can be used in a hook."
10998 (interactive)
10999 (when (eq major-mode 'org-mode)
11000 (org-map-dblocks 'org-update-dblock)))
11003 ;;;; Completion
11005 (defconst org-additional-option-like-keywords
11006 '("BEGIN_HTML" "END_HTML" "HTML:" "ATTR_HTML:"
11007 "BEGIN_DocBook" "END_DocBook" "DocBook:" "ATTR_DocBook:"
11008 "BEGIN_LaTeX" "END_LaTeX" "LaTeX:" "LATEX_HEADER:"
11009 "LATEX_CLASS:" "LATEX_CLASS_OPTIONS:" "ATTR_LaTeX:"
11010 "BEGIN:" "END:"
11011 "ORGTBL" "TBLFM:" "TBLNAME:"
11012 "BEGIN_EXAMPLE" "END_EXAMPLE"
11013 "BEGIN_QUOTE" "END_QUOTE"
11014 "BEGIN_VERSE" "END_VERSE"
11015 "BEGIN_CENTER" "END_CENTER"
11016 "BEGIN_SRC" "END_SRC"
11017 "BEGIN_RESULT" "END_RESULT"
11018 "NAME:" "RESULTS:"
11019 "HEADER:" "HEADERS:"
11020 "CATEGORY:" "COLUMNS:" "PROPERTY:"
11021 "CAPTION:" "LABEL:"
11022 "SETUPFILE:"
11023 "INCLUDE:"
11024 "BIND:"
11025 "MACRO:"))
11027 (defcustom org-structure-template-alist
11029 ("s" "#+BEGIN_SRC ?\n\n#+END_SRC"
11030 "<src lang=\"?\">\n\n</src>")
11031 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE"
11032 "<example>\n?\n</example>")
11033 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE"
11034 "<quote>\n?\n</quote>")
11035 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE"
11036 "<verse>\n?\n</verse>")
11037 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER"
11038 "<center>\n?\n</center>")
11039 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX"
11040 "<literal style=\"latex\">\n?\n</literal>")
11041 ("L" "#+LaTeX: "
11042 "<literal style=\"latex\">?</literal>")
11043 ("h" "#+BEGIN_HTML\n?\n#+END_HTML"
11044 "<literal style=\"html\">\n?\n</literal>")
11045 ("H" "#+HTML: "
11046 "<literal style=\"html\">?</literal>")
11047 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
11048 ("A" "#+ASCII: ")
11049 ("i" "#+INDEX: ?"
11050 "#+INDEX: ?")
11051 ("I" "#+INCLUDE %file ?"
11052 "<include file=%file markup=\"?\">")
11054 "Structure completion elements.
11055 This is a list of abbreviation keys and values. The value gets inserted
11056 if you type `<' followed by the key and then press the completion key,
11057 usually `M-TAB'. %file will be replaced by a file name after prompting
11058 for the file using completion. The cursor will be placed at the position
11059 of the `?` in the template.
11060 There are two templates for each key, the first uses the original Org syntax,
11061 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
11062 the default when the /org-mtags.el/ module has been loaded. See also the
11063 variable `org-mtags-prefer-muse-templates'."
11064 :group 'org-completion
11065 :type '(repeat
11066 (string :tag "Key")
11067 (string :tag "Template")
11068 (string :tag "Muse Template")))
11070 (defun org-try-structure-completion ()
11071 "Try to complete a structure template before point.
11072 This looks for strings like \"<e\" on an otherwise empty line and
11073 expands them."
11074 (let ((l (buffer-substring (point-at-bol) (point)))
11076 (when (and (looking-at "[ \t]*$")
11077 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
11078 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
11079 (org-complete-expand-structure-template (+ -1 (point-at-bol)
11080 (match-beginning 1)) a)
11081 t)))
11083 (defun org-complete-expand-structure-template (start cell)
11084 "Expand a structure template."
11085 (let* ((musep (org-bound-and-true-p org-mtags-prefer-muse-templates))
11086 (rpl (nth (if musep 2 1) cell))
11087 (ind ""))
11088 (delete-region start (point))
11089 (when (string-match "\\`#\\+" rpl)
11090 (cond
11091 ((bolp))
11092 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
11093 (setq ind (buffer-substring (point-at-bol) (point))))
11094 (t (newline))))
11095 (setq start (point))
11096 (if (string-match "%file" rpl)
11097 (setq rpl (replace-match
11098 (concat
11099 "\""
11100 (save-match-data
11101 (abbreviate-file-name (read-file-name "Include file: ")))
11102 "\"")
11103 t t rpl)))
11104 (setq rpl (mapconcat 'identity (split-string rpl "\n")
11105 (concat "\n" ind)))
11106 (insert rpl)
11107 (if (re-search-backward "\\?" start t) (delete-char 1))))
11109 ;;;; TODO, DEADLINE, Comments
11111 (defun org-toggle-comment ()
11112 "Change the COMMENT state of an entry."
11113 (interactive)
11114 (save-excursion
11115 (org-back-to-heading)
11116 (let (case-fold-search)
11117 (cond
11118 ((looking-at (format org-heading-keyword-regexp-format
11119 org-comment-string))
11120 (goto-char (match-end 1))
11121 (looking-at (concat " +" org-comment-string))
11122 (replace-match "" t t)
11123 (when (eolp) (insert " ")))
11124 ((looking-at org-outline-regexp)
11125 (goto-char (match-end 0))
11126 (insert org-comment-string " "))))))
11128 (defvar org-last-todo-state-is-todo nil
11129 "This is non-nil when the last TODO state change led to a TODO state.
11130 If the last change removed the TODO tag or switched to DONE, then
11131 this is nil.")
11133 (defvar org-setting-tags nil) ; dynamically skipped
11135 (defvar org-todo-setup-filter-hook nil
11136 "Hook for functions that pre-filter todo specs.
11137 Each function takes a todo spec and returns either nil or the spec
11138 transformed into canonical form." )
11140 (defvar org-todo-get-default-hook nil
11141 "Hook for functions that get a default item for todo.
11142 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
11143 nil or a string to be used for the todo mark." )
11145 (defvar org-agenda-headline-snapshot-before-repeat)
11147 (defun org-current-effective-time ()
11148 "Return current time adjusted for `org-extend-today-until' variable"
11149 (let* ((ct (org-current-time))
11150 (dct (decode-time ct))
11151 (ct1
11152 (if (and org-use-effective-time
11153 (< (nth 2 dct) org-extend-today-until))
11154 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct))
11155 ct)))
11156 ct1))
11158 (defun org-todo-yesterday (&optional arg)
11159 "Like `org-todo' but the time of change will be 23:59 of yesterday."
11160 (interactive "P")
11161 (if (eq major-mode 'org-agenda-mode)
11162 (apply 'org-agenda-todo-yesterday arg)
11163 (let* ((hour (third (decode-time
11164 (org-current-time))))
11165 (org-extend-today-until (1+ hour)))
11166 (org-todo arg))))
11168 (defun org-todo (&optional arg)
11169 "Change the TODO state of an item.
11170 The state of an item is given by a keyword at the start of the heading,
11171 like
11172 *** TODO Write paper
11173 *** DONE Call mom
11175 The different keywords are specified in the variable `org-todo-keywords'.
11176 By default the available states are \"TODO\" and \"DONE\".
11177 So for this example: when the item starts with TODO, it is changed to DONE.
11178 When it starts with DONE, the DONE is removed. And when neither TODO nor
11179 DONE are present, add TODO at the beginning of the heading.
11181 With \\[universal-argument] prefix arg, use completion to determine the new \
11182 state.
11183 With numeric prefix arg, switch to that state.
11184 With a double \\[universal-argument] prefix, switch to the next set of TODO \
11185 keywords (nextset).
11186 With a triple \\[universal-argument] prefix, circumvent any state blocking.
11187 With a numeric prefix arg of 0, inhibit note taking for the change.
11189 For calling through lisp, arg is also interpreted in the following way:
11190 'none -> empty state
11191 \"\"(empty string) -> switch to empty state
11192 'done -> switch to DONE
11193 'nextset -> switch to the next set of keywords
11194 'previousset -> switch to the previous set of keywords
11195 \"WAITING\" -> switch to the specified keyword, but only if it
11196 really is a member of `org-todo-keywords'."
11197 (interactive "P")
11198 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
11199 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
11200 'region-start-level 'region))
11201 org-loop-over-headlines-in-active-region)
11202 (org-map-entries
11203 `(org-todo ,arg)
11204 org-loop-over-headlines-in-active-region
11205 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
11206 (if (equal arg '(16)) (setq arg 'nextset))
11207 (let ((org-blocker-hook org-blocker-hook)
11208 (case-fold-search nil))
11209 (when (equal arg '(64))
11210 (setq arg nil org-blocker-hook nil))
11211 (when (and org-blocker-hook
11212 (or org-inhibit-blocking
11213 (org-entry-get nil "NOBLOCKING")))
11214 (setq org-blocker-hook nil))
11215 (save-excursion
11216 (catch 'exit
11217 (org-back-to-heading t)
11218 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
11219 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
11220 (looking-at "\\(?: *\\|[ \t]*$\\)"))
11221 (let* ((match-data (match-data))
11222 (startpos (point-at-bol))
11223 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
11224 (org-log-done org-log-done)
11225 (org-log-repeat org-log-repeat)
11226 (org-todo-log-states org-todo-log-states)
11227 (org-inhibit-logging
11228 (if (equal arg 0)
11229 (progn (setq arg nil) 'note) org-inhibit-logging))
11230 (this (match-string 1))
11231 (hl-pos (match-beginning 0))
11232 (head (org-get-todo-sequence-head this))
11233 (ass (assoc head org-todo-kwd-alist))
11234 (interpret (nth 1 ass))
11235 (done-word (nth 3 ass))
11236 (final-done-word (nth 4 ass))
11237 (last-state (or this ""))
11238 (completion-ignore-case t)
11239 (member (member this org-todo-keywords-1))
11240 (tail (cdr member))
11241 (state (cond
11242 ((and org-todo-key-trigger
11243 (or (and (equal arg '(4))
11244 (eq org-use-fast-todo-selection 'prefix))
11245 (and (not arg) org-use-fast-todo-selection
11246 (not (eq org-use-fast-todo-selection
11247 'prefix)))))
11248 ;; Use fast selection
11249 (org-fast-todo-selection))
11250 ((and (equal arg '(4))
11251 (or (not org-use-fast-todo-selection)
11252 (not org-todo-key-trigger)))
11253 ;; Read a state with completion
11254 (org-icompleting-read
11255 "State: " (mapcar (lambda(x) (list x))
11256 org-todo-keywords-1)
11257 nil t))
11258 ((eq arg 'right)
11259 (if this
11260 (if tail (car tail) nil)
11261 (car org-todo-keywords-1)))
11262 ((eq arg 'left)
11263 (if (equal member org-todo-keywords-1)
11265 (if this
11266 (nth (- (length org-todo-keywords-1)
11267 (length tail) 2)
11268 org-todo-keywords-1)
11269 (org-last org-todo-keywords-1))))
11270 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
11271 (setq arg nil))) ; hack to fall back to cycling
11272 (arg
11273 ;; user or caller requests a specific state
11274 (cond
11275 ((equal arg "") nil)
11276 ((eq arg 'none) nil)
11277 ((eq arg 'done) (or done-word (car org-done-keywords)))
11278 ((eq arg 'nextset)
11279 (or (car (cdr (member head org-todo-heads)))
11280 (car org-todo-heads)))
11281 ((eq arg 'previousset)
11282 (let ((org-todo-heads (reverse org-todo-heads)))
11283 (or (car (cdr (member head org-todo-heads)))
11284 (car org-todo-heads))))
11285 ((car (member arg org-todo-keywords-1)))
11286 ((stringp arg)
11287 (error "State `%s' not valid in this file" arg))
11288 ((nth (1- (prefix-numeric-value arg))
11289 org-todo-keywords-1))))
11290 ((null member) (or head (car org-todo-keywords-1)))
11291 ((equal this final-done-word) nil) ;; -> make empty
11292 ((null tail) nil) ;; -> first entry
11293 ((memq interpret '(type priority))
11294 (if (eq this-command last-command)
11295 (car tail)
11296 (if (> (length tail) 0)
11297 (or done-word (car org-done-keywords))
11298 nil)))
11300 (car tail))))
11301 (state (or
11302 (run-hook-with-args-until-success
11303 'org-todo-get-default-hook state last-state)
11304 state))
11305 (next (if state (concat " " state " ") " "))
11306 (change-plist (list :type 'todo-state-change :from this :to state
11307 :position startpos))
11308 dolog now-done-p)
11309 (when org-blocker-hook
11310 (setq org-last-todo-state-is-todo
11311 (not (member this org-done-keywords)))
11312 (unless (save-excursion
11313 (save-match-data
11314 (org-with-wide-buffer
11315 (run-hook-with-args-until-failure
11316 'org-blocker-hook change-plist))))
11317 (if (org-called-interactively-p 'interactive)
11318 (error "TODO state change from %s to %s blocked" this state)
11319 ;; fail silently
11320 (message "TODO state change from %s to %s blocked" this state)
11321 (throw 'exit nil))))
11322 (store-match-data match-data)
11323 (replace-match next t t)
11324 (unless (pos-visible-in-window-p hl-pos)
11325 (message "TODO state changed to %s" (org-trim next)))
11326 (unless head
11327 (setq head (org-get-todo-sequence-head state)
11328 ass (assoc head org-todo-kwd-alist)
11329 interpret (nth 1 ass)
11330 done-word (nth 3 ass)
11331 final-done-word (nth 4 ass)))
11332 (when (memq arg '(nextset previousset))
11333 (message "Keyword-Set %d/%d: %s"
11334 (- (length org-todo-sets) -1
11335 (length (memq (assoc state org-todo-sets) org-todo-sets)))
11336 (length org-todo-sets)
11337 (mapconcat 'identity (assoc state org-todo-sets) " ")))
11338 (setq org-last-todo-state-is-todo
11339 (not (member state org-done-keywords)))
11340 (setq now-done-p (and (member state org-done-keywords)
11341 (not (member this org-done-keywords))))
11342 (and logging (org-local-logging logging))
11343 (when (and (or org-todo-log-states org-log-done)
11344 (not (eq org-inhibit-logging t))
11345 (not (memq arg '(nextset previousset))))
11346 ;; we need to look at recording a time and note
11347 (setq dolog (or (nth 1 (assoc state org-todo-log-states))
11348 (nth 2 (assoc this org-todo-log-states))))
11349 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
11350 (setq dolog 'time))
11351 (when (and state
11352 (member state org-not-done-keywords)
11353 (not (member this org-not-done-keywords)))
11354 ;; This is now a todo state and was not one before
11355 ;; If there was a CLOSED time stamp, get rid of it.
11356 (org-add-planning-info nil nil 'closed))
11357 (when (and now-done-p org-log-done)
11358 ;; It is now done, and it was not done before
11359 (org-add-planning-info 'closed (org-current-effective-time))
11360 (if (and (not dolog) (eq 'note org-log-done))
11361 (org-add-log-setup 'done state this 'findpos 'note)))
11362 (when (and state dolog)
11363 ;; This is a non-nil state, and we need to log it
11364 (org-add-log-setup 'state state this 'findpos dolog)))
11365 ;; Fixup tag positioning
11366 (org-todo-trigger-tag-changes state)
11367 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
11368 (when org-provide-todo-statistics
11369 (org-update-parent-todo-statistics))
11370 (run-hooks 'org-after-todo-state-change-hook)
11371 (if (and arg (not (member state org-done-keywords)))
11372 (setq head (org-get-todo-sequence-head state)))
11373 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
11374 ;; Do we need to trigger a repeat?
11375 (when now-done-p
11376 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
11377 ;; This is for the agenda, take a snapshot of the headline.
11378 (save-match-data
11379 (setq org-agenda-headline-snapshot-before-repeat
11380 (org-get-heading))))
11381 (org-auto-repeat-maybe state))
11382 ;; Fixup cursor location if close to the keyword
11383 (if (and (outline-on-heading-p)
11384 (not (bolp))
11385 (save-excursion (beginning-of-line 1)
11386 (looking-at org-todo-line-regexp))
11387 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
11388 (progn
11389 (goto-char (or (match-end 2) (match-end 1)))
11390 (and (looking-at " ") (just-one-space))))
11391 (when org-trigger-hook
11392 (save-excursion
11393 (run-hook-with-args 'org-trigger-hook change-plist)))))))))
11395 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
11396 "Block turning an entry into a TODO, using the hierarchy.
11397 This checks whether the current task should be blocked from state
11398 changes. Such blocking occurs when:
11400 1. The task has children which are not all in a completed state.
11402 2. A task has a parent with the property :ORDERED:, and there
11403 are siblings prior to the current task with incomplete
11404 status.
11406 3. The parent of the task is blocked because it has siblings that should
11407 be done first, or is child of a block grandparent TODO entry."
11409 (if (not org-enforce-todo-dependencies)
11410 t ; if locally turned off don't block
11411 (catch 'dont-block
11412 ;; If this is not a todo state change, or if this entry is already DONE,
11413 ;; do not block
11414 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
11415 (member (plist-get change-plist :from)
11416 (cons 'done org-done-keywords))
11417 (member (plist-get change-plist :to)
11418 (cons 'todo org-not-done-keywords))
11419 (not (plist-get change-plist :to)))
11420 (throw 'dont-block t))
11421 ;; If this task has children, and any are undone, it's blocked
11422 (save-excursion
11423 (org-back-to-heading t)
11424 (let ((this-level (funcall outline-level)))
11425 (outline-next-heading)
11426 (let ((child-level (funcall outline-level)))
11427 (while (and (not (eobp))
11428 (> child-level this-level))
11429 ;; this todo has children, check whether they are all
11430 ;; completed
11431 (if (and (not (org-entry-is-done-p))
11432 (org-entry-is-todo-p))
11433 (throw 'dont-block nil))
11434 (outline-next-heading)
11435 (setq child-level (funcall outline-level))))))
11436 ;; Otherwise, if the task's parent has the :ORDERED: property, and
11437 ;; any previous siblings are undone, it's blocked
11438 (save-excursion
11439 (org-back-to-heading t)
11440 (let* ((pos (point))
11441 (parent-pos (and (org-up-heading-safe) (point))))
11442 (if (not parent-pos) (throw 'dont-block t)) ; no parent
11443 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
11444 (forward-line 1)
11445 (re-search-forward org-not-done-heading-regexp pos t))
11446 (throw 'dont-block nil)) ; block, there is an older sibling not done.
11447 ;; Search further up the hierarchy, to see if an ancestor is blocked
11448 (while t
11449 (goto-char parent-pos)
11450 (if (not (looking-at org-not-done-heading-regexp))
11451 (throw 'dont-block t)) ; do not block, parent is not a TODO
11452 (setq pos (point))
11453 (setq parent-pos (and (org-up-heading-safe) (point)))
11454 (if (not parent-pos) (throw 'dont-block t)) ; no parent
11455 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
11456 (forward-line 1)
11457 (re-search-forward org-not-done-heading-regexp pos t))
11458 (throw 'dont-block nil)))))))) ; block, older sibling not done.
11460 (defcustom org-track-ordered-property-with-tag nil
11461 "Should the ORDERED property also be shown as a tag?
11462 The ORDERED property decides if an entry should require subtasks to be
11463 completed in sequence. Since a property is not very visible, setting
11464 this option means that toggling the ORDERED property with the command
11465 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
11466 not relevant for the behavior, but it makes things more visible.
11468 Note that toggling the tag with tags commands will not change the property
11469 and therefore not influence behavior!
11471 This can be t, meaning the tag ORDERED should be used, It can also be a
11472 string to select a different tag for this task."
11473 :group 'org-todo
11474 :type '(choice
11475 (const :tag "No tracking" nil)
11476 (const :tag "Track with ORDERED tag" t)
11477 (string :tag "Use other tag")))
11479 (defun org-toggle-ordered-property ()
11480 "Toggle the ORDERED property of the current entry.
11481 For better visibility, you can track the value of this property with a tag.
11482 See variable `org-track-ordered-property-with-tag'."
11483 (interactive)
11484 (let* ((t1 org-track-ordered-property-with-tag)
11485 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
11486 (save-excursion
11487 (org-back-to-heading)
11488 (if (org-entry-get nil "ORDERED")
11489 (progn
11490 (org-delete-property "ORDERED")
11491 (and tag (org-toggle-tag tag 'off))
11492 (message "Subtasks can be completed in arbitrary order"))
11493 (org-entry-put nil "ORDERED" "t")
11494 (and tag (org-toggle-tag tag 'on))
11495 (message "Subtasks must be completed in sequence")))))
11497 (defvar org-blocked-by-checkboxes) ; dynamically scoped
11498 (defun org-block-todo-from-checkboxes (change-plist)
11499 "Block turning an entry into a TODO, using checkboxes.
11500 This checks whether the current task should be blocked from state
11501 changes because there are unchecked boxes in this entry."
11502 (if (not org-enforce-todo-checkbox-dependencies)
11503 t ; if locally turned off don't block
11504 (catch 'dont-block
11505 ;; If this is not a todo state change, or if this entry is already DONE,
11506 ;; do not block
11507 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
11508 (member (plist-get change-plist :from)
11509 (cons 'done org-done-keywords))
11510 (member (plist-get change-plist :to)
11511 (cons 'todo org-not-done-keywords))
11512 (not (plist-get change-plist :to)))
11513 (throw 'dont-block t))
11514 ;; If this task has checkboxes that are not checked, it's blocked
11515 (save-excursion
11516 (org-back-to-heading t)
11517 (let ((beg (point)) end)
11518 (outline-next-heading)
11519 (setq end (point))
11520 (goto-char beg)
11521 (if (org-list-search-forward
11522 (concat (org-item-beginning-re)
11523 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
11524 "\\[[- ]\\]")
11525 end t)
11526 (progn
11527 (if (boundp 'org-blocked-by-checkboxes)
11528 (setq org-blocked-by-checkboxes t))
11529 (throw 'dont-block nil)))))
11530 t))) ; do not block
11532 (defun org-entry-blocked-p ()
11533 "Is the current entry blocked?"
11534 (if (org-entry-get nil "NOBLOCKING")
11535 nil ;; Never block this entry
11536 (not
11537 (run-hook-with-args-until-failure
11538 'org-blocker-hook
11539 (list :type 'todo-state-change
11540 :position (point)
11541 :from 'todo
11542 :to 'done)))))
11544 (defun org-update-statistics-cookies (all)
11545 "Update the statistics cookie, either from TODO or from checkboxes.
11546 This should be called with the cursor in a line with a statistics cookie."
11547 (interactive "P")
11548 (if all
11549 (progn
11550 (org-update-checkbox-count 'all)
11551 (org-map-entries 'org-update-parent-todo-statistics))
11552 (if (not (org-at-heading-p))
11553 (org-update-checkbox-count)
11554 (let ((pos (move-marker (make-marker) (point)))
11555 end l1 l2)
11556 (ignore-errors (org-back-to-heading t))
11557 (if (not (org-at-heading-p))
11558 (org-update-checkbox-count)
11559 (setq l1 (org-outline-level))
11560 (setq end (save-excursion
11561 (outline-next-heading)
11562 (if (org-at-heading-p) (setq l2 (org-outline-level)))
11563 (point)))
11564 (if (and (save-excursion
11565 (re-search-forward
11566 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
11567 (not (save-excursion (re-search-forward
11568 ":COOKIE_DATA:.*\\<todo\\>" end t))))
11569 (org-update-checkbox-count)
11570 (if (and l2 (> l2 l1))
11571 (progn
11572 (goto-char end)
11573 (org-update-parent-todo-statistics))
11574 (goto-char pos)
11575 (beginning-of-line 1)
11576 (while (re-search-forward
11577 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
11578 (point-at-eol) t)
11579 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
11580 (goto-char pos)
11581 (move-marker pos nil)))))
11583 (defvar org-entry-property-inherited-from) ;; defined below
11584 (defun org-update-parent-todo-statistics ()
11585 "Update any statistics cookie in the parent of the current headline.
11586 When `org-hierarchical-todo-statistics' is nil, statistics will cover
11587 the entire subtree and this will travel up the hierarchy and update
11588 statistics everywhere."
11589 (let* ((prop (save-excursion (org-up-heading-safe)
11590 (org-entry-get nil "COOKIE_DATA" 'inherit)))
11591 (recursive (or (not org-hierarchical-todo-statistics)
11592 (and prop (string-match "\\<recursive\\>" prop))))
11593 (lim (or (and prop (marker-position org-entry-property-inherited-from))
11595 (first t)
11596 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
11597 level ltoggle l1 new ndel
11598 (cnt-all 0) (cnt-done 0) is-percent kwd
11599 checkbox-beg ov ovs ove cookie-present)
11600 (catch 'exit
11601 (save-excursion
11602 (beginning-of-line 1)
11603 (setq ltoggle (funcall outline-level))
11604 ;; Three situations are to consider:
11606 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
11607 ;; to the top-level ancestor on the headline;
11609 ;; 2. If parent has "recursive" property, repeat up to the
11610 ;; headline setting that property, taking inheritance into
11611 ;; account;
11613 ;; 3. Else, move up to direct parent and proceed only once.
11614 (while (and (setq level (org-up-heading-safe))
11615 (or recursive first)
11616 (>= (point) lim))
11617 (setq first nil cookie-present nil)
11618 (unless (and level
11619 (not (string-match
11620 "\\<checkbox\\>"
11621 (downcase (or (org-entry-get nil "COOKIE_DATA")
11622 "")))))
11623 (throw 'exit nil))
11624 (while (re-search-forward box-re (point-at-eol) t)
11625 (setq cnt-all 0 cnt-done 0 cookie-present t)
11626 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
11627 (save-match-data
11628 (unless (outline-next-heading) (throw 'exit nil))
11629 (while (and (looking-at org-complex-heading-regexp)
11630 (> (setq l1 (length (match-string 1))) level))
11631 (setq kwd (and (or recursive (= l1 ltoggle))
11632 (match-string 2)))
11633 (if (or (eq org-provide-todo-statistics 'all-headlines)
11634 (and (listp org-provide-todo-statistics)
11635 (or (member kwd org-provide-todo-statistics)
11636 (member kwd org-done-keywords))))
11637 (setq cnt-all (1+ cnt-all))
11638 (if (eq org-provide-todo-statistics t)
11639 (and kwd (setq cnt-all (1+ cnt-all)))))
11640 (and (member kwd org-done-keywords)
11641 (setq cnt-done (1+ cnt-done)))
11642 (outline-next-heading)))
11643 (setq new
11644 (if is-percent
11645 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
11646 (format "[%d/%d]" cnt-done cnt-all))
11647 ndel (- (match-end 0) checkbox-beg))
11648 ;; handle overlays when updating cookie from column view
11649 (when (setq ov (car (overlays-at checkbox-beg)))
11650 (setq ovs (overlay-start ov) ove (overlay-end ov))
11651 (delete-overlay ov))
11652 (goto-char checkbox-beg)
11653 (insert new)
11654 (delete-region (point) (+ (point) ndel))
11655 (when org-auto-align-tags (org-fix-tags-on-the-fly))
11656 (when ov (move-overlay ov ovs ove)))
11657 (when cookie-present
11658 (run-hook-with-args 'org-after-todo-statistics-hook
11659 cnt-done (- cnt-all cnt-done))))))
11660 (run-hooks 'org-todo-statistics-hook)))
11662 (defvar org-after-todo-statistics-hook nil
11663 "Hook that is called after a TODO statistics cookie has been updated.
11664 Each function is called with two arguments: the number of not-done entries
11665 and the number of done entries.
11667 For example, the following function, when added to this hook, will switch
11668 an entry to DONE when all children are done, and back to TODO when new
11669 entries are set to a TODO status. Note that this hook is only called
11670 when there is a statistics cookie in the headline!
11672 (defun org-summary-todo (n-done n-not-done)
11673 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
11674 (let (org-log-done org-log-states) ; turn off logging
11675 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
11678 (defvar org-todo-statistics-hook nil
11679 "Hook that is run whenever Org thinks TODO statistics should be updated.
11680 This hook runs even if there is no statistics cookie present, in which case
11681 `org-after-todo-statistics-hook' would not run.")
11683 (defun org-todo-trigger-tag-changes (state)
11684 "Apply the changes defined in `org-todo-state-tags-triggers'."
11685 (let ((l org-todo-state-tags-triggers)
11686 changes)
11687 (when (or (not state) (equal state ""))
11688 (setq changes (append changes (cdr (assoc "" l)))))
11689 (when (and (stringp state) (> (length state) 0))
11690 (setq changes (append changes (cdr (assoc state l)))))
11691 (when (member state org-not-done-keywords)
11692 (setq changes (append changes (cdr (assoc 'todo l)))))
11693 (when (member state org-done-keywords)
11694 (setq changes (append changes (cdr (assoc 'done l)))))
11695 (dolist (c changes)
11696 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
11698 (defun org-local-logging (value)
11699 "Get logging settings from a property VALUE."
11700 (let* (words w a)
11701 ;; directly set the variables, they are already local.
11702 (setq org-log-done nil
11703 org-log-repeat nil
11704 org-todo-log-states nil)
11705 (setq words (org-split-string value))
11706 (while (setq w (pop words))
11707 (cond
11708 ((setq a (assoc w org-startup-options))
11709 (and (member (nth 1 a) '(org-log-done org-log-repeat))
11710 (set (nth 1 a) (nth 2 a))))
11711 ((setq a (org-extract-log-state-settings w))
11712 (and (member (car a) org-todo-keywords-1)
11713 (push a org-todo-log-states)))))))
11715 (defun org-get-todo-sequence-head (kwd)
11716 "Return the head of the TODO sequence to which KWD belongs.
11717 If KWD is not set, check if there is a text property remembering the
11718 right sequence."
11719 (let (p)
11720 (cond
11721 ((not kwd)
11722 (or (get-text-property (point-at-bol) 'org-todo-head)
11723 (progn
11724 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
11725 nil (point-at-eol)))
11726 (get-text-property p 'org-todo-head))))
11727 ((not (member kwd org-todo-keywords-1))
11728 (car org-todo-keywords-1))
11729 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
11731 (defun org-fast-todo-selection ()
11732 "Fast TODO keyword selection with single keys.
11733 Returns the new TODO keyword, or nil if no state change should occur."
11734 (let* ((fulltable org-todo-key-alist)
11735 (done-keywords org-done-keywords) ;; needed for the faces.
11736 (maxlen (apply 'max (mapcar
11737 (lambda (x)
11738 (if (stringp (car x)) (string-width (car x)) 0))
11739 fulltable)))
11740 (expert nil)
11741 (fwidth (+ maxlen 3 1 3))
11742 (ncol (/ (- (window-width) 4) fwidth))
11743 tg cnt e c tbl
11744 groups ingroup)
11745 (save-excursion
11746 (save-window-excursion
11747 (if expert
11748 (set-buffer (get-buffer-create " *Org todo*"))
11749 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
11750 (erase-buffer)
11751 (org-set-local 'org-done-keywords done-keywords)
11752 (setq tbl fulltable cnt 0)
11753 (while (setq e (pop tbl))
11754 (cond
11755 ((equal e '(:startgroup))
11756 (push '() groups) (setq ingroup t)
11757 (when (not (= cnt 0))
11758 (setq cnt 0)
11759 (insert "\n"))
11760 (insert "{ "))
11761 ((equal e '(:endgroup))
11762 (setq ingroup nil cnt 0)
11763 (insert "}\n"))
11764 ((equal e '(:newline))
11765 (when (not (= cnt 0))
11766 (setq cnt 0)
11767 (insert "\n")
11768 (setq e (car tbl))
11769 (while (equal (car tbl) '(:newline))
11770 (insert "\n")
11771 (setq tbl (cdr tbl)))))
11773 (setq tg (car e) c (cdr e))
11774 (if ingroup (push tg (car groups)))
11775 (setq tg (org-add-props tg nil 'face
11776 (org-get-todo-face tg)))
11777 (if (and (= cnt 0) (not ingroup)) (insert " "))
11778 (insert "[" c "] " tg (make-string
11779 (- fwidth 4 (length tg)) ?\ ))
11780 (when (= (setq cnt (1+ cnt)) ncol)
11781 (insert "\n")
11782 (if ingroup (insert " "))
11783 (setq cnt 0)))))
11784 (insert "\n")
11785 (goto-char (point-min))
11786 (if (not expert) (org-fit-window-to-buffer))
11787 (message "[a-z..]:Set [SPC]:clear")
11788 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
11789 (cond
11790 ((or (= c ?\C-g)
11791 (and (= c ?q) (not (rassoc c fulltable))))
11792 (setq quit-flag t))
11793 ((= c ?\ ) nil)
11794 ((setq e (rassoc c fulltable) tg (car e))
11796 (t (setq quit-flag t)))))))
11798 (defun org-entry-is-todo-p ()
11799 (member (org-get-todo-state) org-not-done-keywords))
11801 (defun org-entry-is-done-p ()
11802 (member (org-get-todo-state) org-done-keywords))
11804 (defun org-get-todo-state ()
11805 (save-excursion
11806 (org-back-to-heading t)
11807 (and (looking-at org-todo-line-regexp)
11808 (match-end 2)
11809 (match-string 2))))
11811 (defun org-at-date-range-p (&optional inactive-ok)
11812 "Is the cursor inside a date range?"
11813 (interactive)
11814 (save-excursion
11815 (catch 'exit
11816 (let ((pos (point)))
11817 (skip-chars-backward "^[<\r\n")
11818 (skip-chars-backward "<[")
11819 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
11820 (>= (match-end 0) pos)
11821 (throw 'exit t))
11822 (skip-chars-backward "^<[\r\n")
11823 (skip-chars-backward "<[")
11824 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
11825 (>= (match-end 0) pos)
11826 (throw 'exit t)))
11827 nil)))
11829 (defun org-get-repeat (&optional tagline)
11830 "Check if there is a deadline/schedule with repeater in this entry."
11831 (save-match-data
11832 (save-excursion
11833 (org-back-to-heading t)
11834 (and (re-search-forward (if tagline
11835 (concat tagline "\\s-*" org-repeat-re)
11836 org-repeat-re)
11837 (org-entry-end-position) t)
11838 (match-string-no-properties 1)))))
11840 (defvar org-last-changed-timestamp)
11841 (defvar org-last-inserted-timestamp)
11842 (defvar org-log-post-message)
11843 (defvar org-log-note-purpose)
11844 (defvar org-log-note-how)
11845 (defvar org-log-note-extra)
11846 (defun org-auto-repeat-maybe (done-word)
11847 "Check if the current headline contains a repeated deadline/schedule.
11848 If yes, set TODO state back to what it was and change the base date
11849 of repeating deadline/scheduled time stamps to new date.
11850 This function is run automatically after each state change to a DONE state."
11851 ;; last-state is dynamically scoped into this function
11852 (let* ((repeat (org-get-repeat))
11853 (aa (assoc last-state org-todo-kwd-alist))
11854 (interpret (nth 1 aa))
11855 (head (nth 2 aa))
11856 (whata '(("d" . day) ("m" . month) ("y" . year)))
11857 (msg "Entry repeats: ")
11858 (org-log-done nil)
11859 (org-todo-log-states nil)
11860 re type n what ts time to-state)
11861 (when repeat
11862 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
11863 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
11864 org-todo-repeat-to-state))
11865 (unless (and to-state (member to-state org-todo-keywords-1))
11866 (setq to-state (if (eq interpret 'type) last-state head)))
11867 (org-todo to-state)
11868 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
11869 (org-entry-put nil "LAST_REPEAT" (format-time-string
11870 (org-time-stamp-format t t))))
11871 (when org-log-repeat
11872 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
11873 (memq 'org-add-log-note post-command-hook))
11874 ;; OK, we are already setup for some record
11875 (if (eq org-log-repeat 'note)
11876 ;; make sure we take a note, not only a time stamp
11877 (setq org-log-note-how 'note))
11878 ;; Set up for taking a record
11879 (org-add-log-setup 'state (or done-word (car org-done-keywords))
11880 last-state
11881 'findpos org-log-repeat)))
11882 (org-back-to-heading t)
11883 (org-add-planning-info nil nil 'closed)
11884 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
11885 org-deadline-time-regexp "\\)\\|\\("
11886 org-ts-regexp "\\)"))
11887 (while (re-search-forward
11888 re (save-excursion (outline-next-heading) (point)) t)
11889 (setq type (if (match-end 1) org-scheduled-string
11890 (if (match-end 3) org-deadline-string "Plain:"))
11891 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
11892 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts)
11893 (setq n (string-to-number (match-string 2 ts))
11894 what (match-string 3 ts))
11895 (if (equal what "w") (setq n (* n 7) what "d"))
11896 ;; Preparation, see if we need to modify the start date for the change
11897 (when (match-end 1)
11898 (setq time (save-match-data (org-time-string-to-time ts)))
11899 (cond
11900 ((equal (match-string 1 ts) ".")
11901 ;; Shift starting date to today
11902 (org-timestamp-change
11903 (- (org-today) (time-to-days time))
11904 'day))
11905 ((equal (match-string 1 ts) "+")
11906 (let ((nshiftmax 10) (nshift 0))
11907 (while (or (= nshift 0)
11908 (<= (time-to-days time)
11909 (time-to-days (current-time))))
11910 (when (= (incf nshift) nshiftmax)
11911 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
11912 (error "Abort")))
11913 (org-timestamp-change n (cdr (assoc what whata)))
11914 (org-at-timestamp-p t)
11915 (setq ts (match-string 1))
11916 (setq time (save-match-data (org-time-string-to-time ts)))))
11917 (org-timestamp-change (- n) (cdr (assoc what whata)))
11918 ;; rematch, so that we have everything in place for the real shift
11919 (org-at-timestamp-p t)
11920 (setq ts (match-string 1))
11921 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts))))
11922 (org-timestamp-change n (cdr (assoc what whata)))
11923 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
11924 (setq org-log-post-message msg)
11925 (message "%s" msg))))
11927 (defun org-show-todo-tree (arg)
11928 "Make a compact tree which shows all headlines marked with TODO.
11929 The tree will show the lines where the regexp matches, and all higher
11930 headlines above the match.
11931 With a \\[universal-argument] prefix, prompt for a regexp to match.
11932 With a numeric prefix N, construct a sparse tree for the Nth element
11933 of `org-todo-keywords-1'."
11934 (interactive "P")
11935 (let ((case-fold-search nil)
11936 (kwd-re
11937 (cond ((null arg) org-not-done-regexp)
11938 ((equal arg '(4))
11939 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
11940 (mapcar 'list org-todo-keywords-1))))
11941 (concat "\\("
11942 (mapconcat 'identity (org-split-string kwd "|") "\\|")
11943 "\\)\\>")))
11944 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
11945 (regexp-quote (nth (1- (prefix-numeric-value arg))
11946 org-todo-keywords-1)))
11947 (t (error "Invalid prefix argument: %s" arg)))))
11948 (message "%d TODO entries found"
11949 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
11951 (defun org-deadline (&optional remove time)
11952 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
11953 With argument REMOVE, remove any deadline from the item.
11954 With argument TIME, set the deadline at the corresponding date. TIME
11955 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
11956 (interactive "P")
11957 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
11958 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
11959 'region-start-level 'region))
11960 org-loop-over-headlines-in-active-region)
11961 (org-map-entries
11962 `(org-deadline ',remove ,time)
11963 org-loop-over-headlines-in-active-region
11964 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
11965 (let* ((old-date (org-entry-get nil "DEADLINE"))
11966 (repeater (and old-date
11967 (string-match
11968 "\\([.+-]+[0-9]+[dwmy]\\(?:[/ ][-+]?[0-9]+[dwmy]\\)?\\) ?"
11969 old-date)
11970 (match-string 1 old-date))))
11971 (if remove
11972 (progn
11973 (when (and old-date org-log-redeadline)
11974 (org-add-log-setup 'deldeadline nil old-date 'findpos
11975 org-log-redeadline))
11976 (org-remove-timestamp-with-keyword org-deadline-string)
11977 (message "Item no longer has a deadline."))
11978 (org-add-planning-info 'deadline time 'closed)
11979 (when (and old-date org-log-redeadline
11980 (not (equal old-date
11981 (substring org-last-inserted-timestamp 1 -1))))
11982 (org-add-log-setup 'redeadline nil old-date 'findpos
11983 org-log-redeadline))
11984 (when repeater
11985 (save-excursion
11986 (org-back-to-heading t)
11987 (when (re-search-forward (concat org-deadline-string " "
11988 org-last-inserted-timestamp)
11989 (save-excursion
11990 (outline-next-heading) (point)) t)
11991 (goto-char (1- (match-end 0)))
11992 (insert " " repeater)
11993 (setq org-last-inserted-timestamp
11994 (concat (substring org-last-inserted-timestamp 0 -1)
11995 " " repeater
11996 (substring org-last-inserted-timestamp -1))))))
11997 (message "Deadline on %s" org-last-inserted-timestamp)))))
11999 (defun org-schedule (&optional remove time)
12000 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
12001 With argument REMOVE, remove any scheduling date from the item.
12002 With argument TIME, scheduled at the corresponding date. TIME can
12003 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
12004 (interactive "P")
12005 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12006 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12007 'region-start-level 'region))
12008 org-loop-over-headlines-in-active-region)
12009 (org-map-entries
12010 `(org-schedule ',remove ,time)
12011 org-loop-over-headlines-in-active-region
12012 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12013 (let* ((old-date (org-entry-get nil "SCHEDULED"))
12014 (repeater (and old-date
12015 (string-match
12016 "\\([.+-]+[0-9]+[dwmy]\\(?:[/ ][-+]?[0-9]+[dwmy]\\)?\\) ?"
12017 old-date)
12018 (match-string 1 old-date))))
12019 (if remove
12020 (progn
12021 (when (and old-date org-log-reschedule)
12022 (org-add-log-setup 'delschedule nil old-date 'findpos
12023 org-log-reschedule))
12024 (org-remove-timestamp-with-keyword org-scheduled-string)
12025 (message "Item is no longer scheduled."))
12026 (org-add-planning-info 'scheduled time 'closed)
12027 (when (and old-date org-log-reschedule
12028 (not (equal old-date
12029 (substring org-last-inserted-timestamp 1 -1))))
12030 (org-add-log-setup 'reschedule nil old-date 'findpos
12031 org-log-reschedule))
12032 (when repeater
12033 (save-excursion
12034 (org-back-to-heading t)
12035 (when (re-search-forward (concat org-scheduled-string " "
12036 org-last-inserted-timestamp)
12037 (save-excursion
12038 (outline-next-heading) (point)) t)
12039 (goto-char (1- (match-end 0)))
12040 (insert " " repeater)
12041 (setq org-last-inserted-timestamp
12042 (concat (substring org-last-inserted-timestamp 0 -1)
12043 " " repeater
12044 (substring org-last-inserted-timestamp -1))))))
12045 (message "Scheduled to %s" org-last-inserted-timestamp)))))
12047 (defun org-get-scheduled-time (pom &optional inherit)
12048 "Get the scheduled time as a time tuple, of a format suitable
12049 for calling org-schedule with, or if there is no scheduling,
12050 returns nil."
12051 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
12052 (when time
12053 (apply 'encode-time (org-parse-time-string time)))))
12055 (defun org-get-deadline-time (pom &optional inherit)
12056 "Get the deadline as a time tuple, of a format suitable for
12057 calling org-deadline with, or if there is no scheduling, returns
12058 nil."
12059 (let ((time (org-entry-get pom "DEADLINE" inherit)))
12060 (when time
12061 (apply 'encode-time (org-parse-time-string time)))))
12063 (defun org-remove-timestamp-with-keyword (keyword)
12064 "Remove all time stamps with KEYWORD in the current entry."
12065 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
12066 beg)
12067 (save-excursion
12068 (org-back-to-heading t)
12069 (setq beg (point))
12070 (outline-next-heading)
12071 (while (re-search-backward re beg t)
12072 (replace-match "")
12073 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
12074 (equal (char-before) ?\ ))
12075 (backward-delete-char 1)
12076 (if (string-match "^[ \t]*$" (buffer-substring
12077 (point-at-bol) (point-at-eol)))
12078 (delete-region (point-at-bol)
12079 (min (point-max) (1+ (point-at-eol))))))))))
12081 (defun org-add-planning-info (what &optional time &rest remove)
12082 "Insert new timestamp with keyword in the line directly after the headline.
12083 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
12084 If non is given, the user is prompted for a date.
12085 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
12086 be removed."
12087 (interactive)
12088 (let (org-time-was-given org-end-time-was-given ts
12089 end default-time default-input)
12091 (catch 'exit
12092 (when (and (memq what '(scheduled deadline))
12093 (or (not time)
12094 (and (stringp time)
12095 (string-match "^[-+]+[0-9]" time))))
12096 ;; Try to get a default date/time from existing timestamp
12097 (save-excursion
12098 (org-back-to-heading t)
12099 (setq end (save-excursion (outline-next-heading) (point)))
12100 (when (re-search-forward (if (eq what 'scheduled)
12101 org-scheduled-time-regexp
12102 org-deadline-time-regexp)
12103 end t)
12104 (setq ts (match-string 1)
12105 default-time
12106 (apply 'encode-time (org-parse-time-string ts))
12107 default-input (and ts (org-get-compact-tod ts))))))
12108 (when what
12109 (setq time
12110 (if (stringp time)
12111 ;; This is a string (relative or absolute), set proper date
12112 (apply 'encode-time
12113 (org-read-date-analyze
12114 time default-time (decode-time default-time)))
12115 ;; If necessary, get the time from the user
12116 (or time (org-read-date nil 'to-time nil nil
12117 default-time default-input)))))
12119 (when (and org-insert-labeled-timestamps-at-point
12120 (member what '(scheduled deadline)))
12121 (insert
12122 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
12123 (org-insert-time-stamp time org-time-was-given
12124 nil nil nil (list org-end-time-was-given))
12125 (setq what nil))
12126 (save-excursion
12127 (save-restriction
12128 (let (col list elt ts buffer-invisibility-spec)
12129 (org-back-to-heading t)
12130 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
12131 (goto-char (match-end 1))
12132 (setq col (current-column))
12133 (goto-char (match-end 0))
12134 (if (eobp) (insert "\n") (forward-char 1))
12135 (when (and (not what)
12136 (not (looking-at
12137 (concat "[ \t]*"
12138 org-keyword-time-not-clock-regexp))))
12139 ;; Nothing to add, nothing to remove...... :-)
12140 (throw 'exit nil))
12141 (if (and (not (looking-at org-outline-regexp))
12142 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
12143 "[^\r\n]*"))
12144 (not (equal (match-string 1) org-clock-string)))
12145 (narrow-to-region (match-beginning 0) (match-end 0))
12146 (insert-before-markers "\n")
12147 (backward-char 1)
12148 (narrow-to-region (point) (point))
12149 (and org-adapt-indentation (org-indent-to-column col)))
12150 ;; Check if we have to remove something.
12151 (setq list (cons what remove))
12152 (while list
12153 (setq elt (pop list))
12154 (when (or (and (eq elt 'scheduled)
12155 (re-search-forward org-scheduled-time-regexp nil t))
12156 (and (eq elt 'deadline)
12157 (re-search-forward org-deadline-time-regexp nil t))
12158 (and (eq elt 'closed)
12159 (re-search-forward org-closed-time-regexp nil t)))
12160 (replace-match "")
12161 (if (looking-at "--+<[^>]+>") (replace-match ""))))
12162 (and (looking-at "[ \t]+") (replace-match ""))
12163 (and org-adapt-indentation (bolp) (org-indent-to-column col))
12164 (when what
12165 (insert
12166 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
12167 (cond ((eq what 'scheduled) org-scheduled-string)
12168 ((eq what 'deadline) org-deadline-string)
12169 ((eq what 'closed) org-closed-string))
12170 " ")
12171 (setq ts (org-insert-time-stamp
12172 time
12173 (or org-time-was-given
12174 (and (eq what 'closed) org-log-done-with-time))
12175 (eq what 'closed)
12176 nil nil (list org-end-time-was-given)))
12177 (insert
12178 (if (not (or (bolp) (eq (char-before) ?\ )
12179 (memq (char-after) '(32 10))
12180 (eobp))) " " ""))
12181 (end-of-line 1))
12182 (goto-char (point-min))
12183 (widen)
12184 (if (and (looking-at "[ \t]*\n")
12185 (equal (char-before) ?\n))
12186 (delete-region (1- (point)) (point-at-eol)))
12187 ts))))))
12189 (defvar org-log-note-marker (make-marker))
12190 (defvar org-log-note-purpose nil)
12191 (defvar org-log-note-state nil)
12192 (defvar org-log-note-previous-state nil)
12193 (defvar org-log-note-how nil)
12194 (defvar org-log-note-extra nil)
12195 (defvar org-log-note-window-configuration nil)
12196 (defvar org-log-note-return-to (make-marker))
12197 (defvar org-log-note-effective-time nil
12198 "Remembered current time so that dynamically scoped
12199 `org-extend-today-until' affects tha timestamps in state change
12200 log")
12202 (defvar org-log-post-message nil
12203 "Message to be displayed after a log note has been stored.
12204 The auto-repeater uses this.")
12206 (defun org-add-note ()
12207 "Add a note to the current entry.
12208 This is done in the same way as adding a state change note."
12209 (interactive)
12210 (org-add-log-setup 'note nil nil 'findpos nil))
12212 (defvar org-property-end-re)
12213 (defun org-add-log-setup (&optional purpose state prev-state
12214 findpos how extra)
12215 "Set up the post command hook to take a note.
12216 If this is about to TODO state change, the new state is expected in STATE.
12217 When FINDPOS is non-nil, find the correct position for the note in
12218 the current entry. If not, assume that it can be inserted at point.
12219 HOW is an indicator what kind of note should be created.
12220 EXTRA is additional text that will be inserted into the notes buffer."
12221 (let* ((org-log-into-drawer (org-log-into-drawer))
12222 (drawer (cond ((stringp org-log-into-drawer)
12223 org-log-into-drawer)
12224 (org-log-into-drawer "LOGBOOK")
12225 (t nil))))
12226 (save-restriction
12227 (save-excursion
12228 (when findpos
12229 (org-back-to-heading t)
12230 (narrow-to-region (point) (save-excursion
12231 (outline-next-heading) (point)))
12232 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"
12233 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
12234 "[^\r\n]*\\)?"))
12235 (goto-char (match-end 0))
12236 (cond
12237 (drawer
12238 (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*$")
12239 nil t)
12240 (progn
12241 (goto-char (match-end 0))
12242 (or org-log-states-order-reversed
12243 (and (re-search-forward org-property-end-re nil t)
12244 (goto-char (1- (match-beginning 0))))))
12245 (insert "\n:" drawer ":\n:END:")
12246 (beginning-of-line 0)
12247 (org-indent-line-function)
12248 (beginning-of-line 2)
12249 (org-indent-line-function)
12250 (end-of-line 0)))
12251 ((and org-log-state-notes-insert-after-drawers
12252 (save-excursion
12253 (forward-line) (looking-at org-drawer-regexp)))
12254 (forward-line)
12255 (while (looking-at org-drawer-regexp)
12256 (goto-char (match-end 0))
12257 (re-search-forward org-property-end-re (point-max) t)
12258 (forward-line))
12259 (forward-line -1)))
12260 (unless org-log-states-order-reversed
12261 (and (= (char-after) ?\n) (forward-char 1))
12262 (org-skip-over-state-notes)
12263 (skip-chars-backward " \t\n\r")))
12264 (move-marker org-log-note-marker (point))
12265 (setq org-log-note-purpose purpose
12266 org-log-note-state state
12267 org-log-note-previous-state prev-state
12268 org-log-note-how how
12269 org-log-note-extra extra
12270 org-log-note-effective-time (org-current-effective-time))
12271 (add-hook 'post-command-hook 'org-add-log-note 'append)))))
12273 (defun org-skip-over-state-notes ()
12274 "Skip past the list of State notes in an entry."
12275 (if (looking-at "\n[ \t]*- State") (forward-char 1))
12276 (when (ignore-errors (goto-char (org-in-item-p)))
12277 (let* ((struct (org-list-struct))
12278 (prevs (org-list-prevs-alist struct)))
12279 (while (looking-at "[ \t]*- State")
12280 (goto-char (or (org-list-get-next-item (point) struct prevs)
12281 (org-list-get-item-end (point) struct)))))))
12283 (defun org-add-log-note (&optional purpose)
12284 "Pop up a window for taking a note, and add this note later at point."
12285 (remove-hook 'post-command-hook 'org-add-log-note)
12286 (setq org-log-note-window-configuration (current-window-configuration))
12287 (delete-other-windows)
12288 (move-marker org-log-note-return-to (point))
12289 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
12290 (goto-char org-log-note-marker)
12291 (org-switch-to-buffer-other-window "*Org Note*")
12292 (erase-buffer)
12293 (if (memq org-log-note-how '(time state))
12294 (let (current-prefix-arg) (org-store-log-note))
12295 (let ((org-inhibit-startup t)) (org-mode))
12296 (insert (format "# Insert note for %s.
12297 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
12298 (cond
12299 ((eq org-log-note-purpose 'clock-out) "stopped clock")
12300 ((eq org-log-note-purpose 'done) "closed todo item")
12301 ((eq org-log-note-purpose 'state)
12302 (format "state change from \"%s\" to \"%s\""
12303 (or org-log-note-previous-state "")
12304 (or org-log-note-state "")))
12305 ((eq org-log-note-purpose 'reschedule)
12306 "rescheduling")
12307 ((eq org-log-note-purpose 'delschedule)
12308 "no longer scheduled")
12309 ((eq org-log-note-purpose 'redeadline)
12310 "changing deadline")
12311 ((eq org-log-note-purpose 'deldeadline)
12312 "removing deadline")
12313 ((eq org-log-note-purpose 'refile)
12314 "refiling")
12315 ((eq org-log-note-purpose 'note)
12316 "this entry")
12317 (t (error "This should not happen")))))
12318 (if org-log-note-extra (insert org-log-note-extra))
12319 (org-set-local 'org-finish-function 'org-store-log-note)
12320 (run-hooks 'org-log-buffer-setup-hook)))
12322 (defvar org-note-abort nil) ; dynamically scoped
12323 (defun org-store-log-note ()
12324 "Finish taking a log note, and insert it to where it belongs."
12325 (let ((txt (buffer-string))
12326 (note (cdr (assq org-log-note-purpose org-log-note-headings)))
12327 lines ind bul)
12328 (kill-buffer (current-buffer))
12329 (while (string-match "\\`#.*\n[ \t\n]*" txt)
12330 (setq txt (replace-match "" t t txt)))
12331 (if (string-match "\\s-+\\'" txt)
12332 (setq txt (replace-match "" t t txt)))
12333 (setq lines (org-split-string txt "\n"))
12334 (when (and note (string-match "\\S-" note))
12335 (setq note
12336 (org-replace-escapes
12337 note
12338 (list (cons "%u" (user-login-name))
12339 (cons "%U" user-full-name)
12340 (cons "%t" (format-time-string
12341 (org-time-stamp-format 'long 'inactive)
12342 org-log-note-effective-time))
12343 (cons "%T" (format-time-string
12344 (org-time-stamp-format 'long nil)
12345 org-log-note-effective-time))
12346 (cons "%d" (format-time-string
12347 (org-time-stamp-format nil 'inactive)
12348 org-log-note-effective-time))
12349 (cons "%D" (format-time-string
12350 (org-time-stamp-format nil nil)
12351 org-log-note-effective-time))
12352 (cons "%s" (if org-log-note-state
12353 (concat "\"" org-log-note-state "\"")
12354 ""))
12355 (cons "%S" (if org-log-note-previous-state
12356 (concat "\"" org-log-note-previous-state "\"")
12357 "\"\"")))))
12358 (if lines (setq note (concat note " \\\\")))
12359 (push note lines))
12360 (when (or current-prefix-arg org-note-abort)
12361 (when org-log-into-drawer
12362 (org-remove-empty-drawer-at
12363 (if (stringp org-log-into-drawer) org-log-into-drawer "LOGBOOK")
12364 org-log-note-marker))
12365 (setq lines nil))
12366 (when lines
12367 (with-current-buffer (marker-buffer org-log-note-marker)
12368 (save-excursion
12369 (goto-char org-log-note-marker)
12370 (move-marker org-log-note-marker nil)
12371 (end-of-line 1)
12372 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
12373 (setq ind (save-excursion
12374 (if (ignore-errors (goto-char (org-in-item-p)))
12375 (let ((struct (org-list-struct)))
12376 (org-list-get-ind
12377 (org-list-get-top-point struct) struct))
12378 (skip-chars-backward " \r\t\n")
12379 (cond
12380 ((and (org-at-heading-p)
12381 org-adapt-indentation)
12382 (1+ (org-current-level)))
12383 ((org-at-heading-p) 0)
12384 (t (org-get-indentation))))))
12385 (setq bul (org-list-bullet-string "-"))
12386 (org-indent-line-to ind)
12387 (insert bul (pop lines))
12388 (let ((ind-body (+ (length bul) ind)))
12389 (while lines
12390 (insert "\n")
12391 (org-indent-line-to ind-body)
12392 (insert (pop lines))))
12393 (message "Note stored")
12394 (org-back-to-heading t)
12395 (org-cycle-hide-drawers 'children)))))
12396 (set-window-configuration org-log-note-window-configuration)
12397 (with-current-buffer (marker-buffer org-log-note-return-to)
12398 (goto-char org-log-note-return-to))
12399 (move-marker org-log-note-return-to nil)
12400 (and org-log-post-message (message "%s" org-log-post-message)))
12402 (defun org-remove-empty-drawer-at (drawer pos)
12403 "Remove an empty drawer DRAWER at position POS.
12404 POS may also be a marker."
12405 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
12406 (save-excursion
12407 (save-restriction
12408 (widen)
12409 (goto-char pos)
12410 (if (org-in-regexp
12411 (concat "^[ \t]*:" drawer ":[ \t]*\n[ \t]*:END:[ \t]*\n?") 2)
12412 (replace-match ""))))))
12414 (defun org-sparse-tree (&optional arg)
12415 "Create a sparse tree, prompt for the details.
12416 This command can create sparse trees. You first need to select the type
12417 of match used to create the tree:
12419 t Show all TODO entries.
12420 T Show entries with a specific TODO keyword.
12421 m Show entries selected by a tags/property match.
12422 p Enter a property name and its value (both with completion on existing
12423 names/values) and show entries with that property.
12424 r Show entries matching a regular expression (`/' can be used as well)
12425 d Show deadlines due within `org-deadline-warning-days'.
12426 b Show deadlines and scheduled items before a date.
12427 a Show deadlines and scheduled items after a date."
12428 (interactive "P")
12429 (let (ans kwd value)
12430 (message "Sparse tree: [r]egexp [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty\n [d]eadlines [b]efore-date [a]fter-date [D]ates range")
12431 (setq ans (read-char-exclusive))
12432 (cond
12433 ((equal ans ?d)
12434 (call-interactively 'org-check-deadlines))
12435 ((equal ans ?b)
12436 (call-interactively 'org-check-before-date))
12437 ((equal ans ?a)
12438 (call-interactively 'org-check-after-date))
12439 ((equal ans ?D)
12440 (call-interactively 'org-check-dates-range))
12441 ((equal ans ?t)
12442 (org-show-todo-tree nil))
12443 ((equal ans ?T)
12444 (org-show-todo-tree '(4)))
12445 ((member ans '(?T ?m))
12446 (call-interactively 'org-match-sparse-tree))
12447 ((member ans '(?p ?P))
12448 (setq kwd (org-icompleting-read "Property: "
12449 (mapcar 'list (org-buffer-property-keys))))
12450 (setq value (org-icompleting-read "Value: "
12451 (mapcar 'list (org-property-values kwd))))
12452 (unless (string-match "\\`{.*}\\'" value)
12453 (setq value (concat "\"" value "\"")))
12454 (org-match-sparse-tree arg (concat kwd "=" value)))
12455 ((member ans '(?r ?R ?/))
12456 (call-interactively 'org-occur))
12457 (t (error "No such sparse tree command \"%c\"" ans)))))
12459 (defvar org-occur-highlights nil
12460 "List of overlays used for occur matches.")
12461 (make-variable-buffer-local 'org-occur-highlights)
12462 (defvar org-occur-parameters nil
12463 "Parameters of the active org-occur calls.
12464 This is a list, each call to org-occur pushes as cons cell,
12465 containing the regular expression and the callback, onto the list.
12466 The list can contain several entries if `org-occur' has been called
12467 several time with the KEEP-PREVIOUS argument. Otherwise, this list
12468 will only contain one set of parameters. When the highlights are
12469 removed (for example with `C-c C-c', or with the next edit (depending
12470 on `org-remove-highlights-with-change'), this variable is emptied
12471 as well.")
12472 (make-variable-buffer-local 'org-occur-parameters)
12474 (defun org-occur (regexp &optional keep-previous callback)
12475 "Make a compact tree which shows all matches of REGEXP.
12476 The tree will show the lines where the regexp matches, and all higher
12477 headlines above the match. It will also show the heading after the match,
12478 to make sure editing the matching entry is easy.
12479 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
12480 call to `org-occur' will be kept, to allow stacking of calls to this
12481 command.
12482 If CALLBACK is non-nil, it is a function which is called to confirm
12483 that the match should indeed be shown."
12484 (interactive "sRegexp: \nP")
12485 (when (equal regexp "")
12486 (error "Regexp cannot be empty"))
12487 (unless keep-previous
12488 (org-remove-occur-highlights nil nil t))
12489 (push (cons regexp callback) org-occur-parameters)
12490 (let ((cnt 0))
12491 (save-excursion
12492 (goto-char (point-min))
12493 (if (or (not keep-previous) ; do not want to keep
12494 (not org-occur-highlights)) ; no previous matches
12495 ;; hide everything
12496 (org-overview))
12497 (while (re-search-forward regexp nil t)
12498 (when (or (not callback)
12499 (save-match-data (funcall callback)))
12500 (setq cnt (1+ cnt))
12501 (when org-highlight-sparse-tree-matches
12502 (org-highlight-new-match (match-beginning 0) (match-end 0)))
12503 (org-show-context 'occur-tree))))
12504 (when org-remove-highlights-with-change
12505 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
12506 nil 'local))
12507 (unless org-sparse-tree-open-archived-trees
12508 (org-hide-archived-subtrees (point-min) (point-max)))
12509 (run-hooks 'org-occur-hook)
12510 (if (org-called-interactively-p 'interactive)
12511 (message "%d match(es) for regexp %s" cnt regexp))
12512 cnt))
12514 (defun org-occur-next-match (&optional n reset)
12515 "Function for `next-error-function' to find sparse tree matches.
12516 N is the number of matches to move, when negative move backwards.
12517 RESET is entirely ignored - this function always goes back to the
12518 starting point when no match is found."
12519 (let* ((limit (if (< n 0) (point-min) (point-max)))
12520 (search-func (if (< n 0)
12521 'previous-single-char-property-change
12522 'next-single-char-property-change))
12523 (n (abs n))
12524 (pos (point))
12526 (catch 'exit
12527 (while (setq p1 (funcall search-func (point) 'org-type))
12528 (when (equal p1 limit)
12529 (goto-char pos)
12530 (error "No more matches"))
12531 (when (equal (get-char-property p1 'org-type) 'org-occur)
12532 (setq n (1- n))
12533 (when (= n 0)
12534 (goto-char p1)
12535 (throw 'exit (point))))
12536 (goto-char p1))
12537 (goto-char p1)
12538 (error "No more matches"))))
12540 (defun org-show-context (&optional key)
12541 "Make sure point and context are visible.
12542 How much context is shown depends upon the variables
12543 `org-show-hierarchy-above', `org-show-following-heading',
12544 `org-show-entry-below' and `org-show-siblings'."
12545 (let ((heading-p (org-at-heading-p t))
12546 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
12547 (following-p (org-get-alist-option org-show-following-heading key))
12548 (entry-p (org-get-alist-option org-show-entry-below key))
12549 (siblings-p (org-get-alist-option org-show-siblings key)))
12550 (catch 'exit
12551 ;; Show heading or entry text
12552 (if (and heading-p (not entry-p))
12553 (org-flag-heading nil) ; only show the heading
12554 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
12555 (org-show-hidden-entry))) ; show entire entry
12556 (when following-p
12557 ;; Show next sibling, or heading below text
12558 (save-excursion
12559 (and (if heading-p (org-goto-sibling) (outline-next-heading))
12560 (org-flag-heading nil))))
12561 (when siblings-p (org-show-siblings))
12562 (when hierarchy-p
12563 ;; show all higher headings, possibly with siblings
12564 (save-excursion
12565 (while (and (condition-case nil
12566 (progn (org-up-heading-all 1) t)
12567 (error nil))
12568 (not (bobp)))
12569 (org-flag-heading nil)
12570 (when siblings-p (org-show-siblings))))))))
12572 (defvar org-reveal-start-hook nil
12573 "Hook run before revealing a location.")
12575 (defun org-reveal (&optional siblings)
12576 "Show current entry, hierarchy above it, and the following headline.
12577 This can be used to show a consistent set of context around locations
12578 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
12579 not t for the search context.
12581 With optional argument SIBLINGS, on each level of the hierarchy all
12582 siblings are shown. This repairs the tree structure to what it would
12583 look like when opened with hierarchical calls to `org-cycle'.
12584 With double optional argument \\[universal-argument] \\[universal-argument], \
12585 go to the parent and show the
12586 entire tree."
12587 (interactive "P")
12588 (run-hooks 'org-reveal-start-hook)
12589 (let ((org-show-hierarchy-above t)
12590 (org-show-following-heading t)
12591 (org-show-siblings (if siblings t org-show-siblings)))
12592 (org-show-context nil))
12593 (when (equal siblings '(16))
12594 (save-excursion
12595 (when (org-up-heading-safe)
12596 (org-show-subtree)
12597 (run-hook-with-args 'org-cycle-hook 'subtree)))))
12599 (defun org-highlight-new-match (beg end)
12600 "Highlight from BEG to END and mark the highlight is an occur headline."
12601 (let ((ov (make-overlay beg end)))
12602 (overlay-put ov 'face 'secondary-selection)
12603 (overlay-put ov 'org-type 'org-occur)
12604 (push ov org-occur-highlights)))
12606 (defun org-remove-occur-highlights (&optional beg end noremove)
12607 "Remove the occur highlights from the buffer.
12608 BEG and END are ignored. If NOREMOVE is nil, remove this function
12609 from the `before-change-functions' in the current buffer."
12610 (interactive)
12611 (unless org-inhibit-highlight-removal
12612 (mapc 'delete-overlay org-occur-highlights)
12613 (setq org-occur-highlights nil)
12614 (setq org-occur-parameters nil)
12615 (unless noremove
12616 (remove-hook 'before-change-functions
12617 'org-remove-occur-highlights 'local))))
12619 ;;;; Priorities
12621 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
12622 "Regular expression matching the priority indicator.")
12624 (defvar org-remove-priority-next-time nil)
12626 (defun org-priority-up ()
12627 "Increase the priority of the current item."
12628 (interactive)
12629 (org-priority 'up))
12631 (defun org-priority-down ()
12632 "Decrease the priority of the current item."
12633 (interactive)
12634 (org-priority 'down))
12636 (defun org-priority (&optional action)
12637 "Change the priority of an item by ARG.
12638 ACTION can be `set', `up', `down', or a character."
12639 (interactive)
12640 (unless org-enable-priority-commands
12641 (error "Priority commands are disabled"))
12642 (setq action (or action 'set))
12643 (let (current new news have remove)
12644 (save-excursion
12645 (org-back-to-heading t)
12646 (if (looking-at org-priority-regexp)
12647 (setq current (string-to-char (match-string 2))
12648 have t))
12649 (cond
12650 ((eq action 'remove)
12651 (setq remove t new ?\ ))
12652 ((or (eq action 'set)
12653 (if (featurep 'xemacs) (characterp action) (integerp action)))
12654 (if (not (eq action 'set))
12655 (setq new action)
12656 (message "Priority %c-%c, SPC to remove: "
12657 org-highest-priority org-lowest-priority)
12658 (save-match-data
12659 (setq new (read-char-exclusive))))
12660 (if (and (= (upcase org-highest-priority) org-highest-priority)
12661 (= (upcase org-lowest-priority) org-lowest-priority))
12662 (setq new (upcase new)))
12663 (cond ((equal new ?\ ) (setq remove t))
12664 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
12665 (error "Priority must be between `%c' and `%c'"
12666 org-highest-priority org-lowest-priority))))
12667 ((eq action 'up)
12668 (setq new (if have
12669 (1- current) ; normal cycling
12670 ;; last priority was empty
12671 (if (eq last-command this-command)
12672 org-lowest-priority ; wrap around empty to lowest
12673 ;; default
12674 (if org-priority-start-cycle-with-default
12675 org-default-priority
12676 (1- org-default-priority))))))
12677 ((eq action 'down)
12678 (setq new (if have
12679 (1+ current) ; normal cycling
12680 ;; last priority was empty
12681 (if (eq last-command this-command)
12682 org-highest-priority ; wrap around empty to highest
12683 ;; default
12684 (if org-priority-start-cycle-with-default
12685 org-default-priority
12686 (1+ org-default-priority))))))
12687 (t (error "Invalid action")))
12688 (if (or (< (upcase new) org-highest-priority)
12689 (> (upcase new) org-lowest-priority))
12690 (if (and (memq action '(up down))
12691 (not have) (not (eq last-command this-command)))
12692 ;; `new' is from default priority
12693 (error
12694 "The default can not be set, see `org-default-priority' why")
12695 ;; normal cycling: `new' is beyond highest/lowest priority
12696 ;; and is wrapped around to the empty priority
12697 (setq remove t)))
12698 (setq news (format "%c" new))
12699 (if have
12700 (if remove
12701 (replace-match "" t t nil 1)
12702 (replace-match news t t nil 2))
12703 (if remove
12704 (error "No priority cookie found in line")
12705 (let ((case-fold-search nil))
12706 (looking-at org-todo-line-regexp))
12707 (if (match-end 2)
12708 (progn
12709 (goto-char (match-end 2))
12710 (insert " [#" news "]"))
12711 (goto-char (match-beginning 3))
12712 (insert "[#" news "] "))))
12713 (org-preserve-lc (org-set-tags nil 'align)))
12714 (if remove
12715 (message "Priority removed")
12716 (message "Priority of current item set to %s" news))))
12718 (defun org-get-priority (s)
12719 "Find priority cookie and return priority."
12720 (if (functionp org-get-priority-function)
12721 (funcall org-get-priority-function)
12722 (save-match-data
12723 (if (not (string-match org-priority-regexp s))
12724 (* 1000 (- org-lowest-priority org-default-priority))
12725 (* 1000 (- org-lowest-priority
12726 (string-to-char (match-string 2 s))))))))
12728 ;;;; Tags
12730 (defvar org-agenda-archives-mode)
12731 (defvar org-map-continue-from nil
12732 "Position from where mapping should continue.
12733 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
12735 (defvar org-scanner-tags nil
12736 "The current tag list while the tags scanner is running.")
12737 (defvar org-trust-scanner-tags nil
12738 "Should `org-get-tags-at' use the tags for the scanner.
12739 This is for internal dynamical scoping only.
12740 When this is non-nil, the function `org-get-tags-at' will return the value
12741 of `org-scanner-tags' instead of building the list by itself. This
12742 can lead to large speed-ups when the tags scanner is used in a file with
12743 many entries, and when the list of tags is retrieved, for example to
12744 obtain a list of properties. Building the tags list for each entry in such
12745 a file becomes an N^2 operation - but with this variable set, it scales
12746 as N.")
12748 (defun org-scan-tags (action matcher &optional todo-only start-level)
12749 "Scan headline tags with inheritance and produce output ACTION.
12751 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
12752 or `agenda' to produce an entry list for an agenda view. It can also be
12753 a Lisp form or a function that should be called at each matched headline, in
12754 this case the return value is a list of all return values from these calls.
12756 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
12757 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
12758 only lines with a TODO keyword are included in the output.
12760 START-LEVEL can be a string with asterisks, reducing the scope to
12761 headlines matching this string."
12762 (require 'org-agenda)
12763 (let* ((re (concat "^"
12764 (if start-level
12765 ;; Get the correct level to match
12766 (concat "\\*\\{" (number-to-string start-level) "\\} ")
12767 org-outline-regexp)
12768 " *\\(\\<\\("
12769 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
12770 (org-re
12771 "\\>\\)\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
12772 (props (list 'face 'default
12773 'done-face 'org-agenda-done
12774 'undone-face 'default
12775 'mouse-face 'highlight
12776 'org-not-done-regexp org-not-done-regexp
12777 'org-todo-regexp org-todo-regexp
12778 'org-complex-heading-regexp org-complex-heading-regexp
12779 'help-echo
12780 (format "mouse-2 or RET jump to org file %s"
12781 (abbreviate-file-name
12782 (or (buffer-file-name (buffer-base-buffer))
12783 (buffer-name (buffer-base-buffer)))))))
12784 (case-fold-search nil)
12785 (org-map-continue-from nil)
12786 lspos tags
12787 (tags-alist (list (cons 0 org-file-tags)))
12788 (llast 0) rtn rtn1 level category i txt
12789 todo marker entry priority)
12790 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
12791 (setq action (list 'lambda nil action)))
12792 (save-excursion
12793 (goto-char (point-min))
12794 (when (eq action 'sparse-tree)
12795 (org-overview)
12796 (org-remove-occur-highlights))
12797 (while (re-search-forward re nil t)
12798 (setq org-map-continue-from nil)
12799 (catch :skip
12800 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
12801 tags (if (match-end 4) (org-match-string-no-properties 4)))
12802 (goto-char (setq lspos (match-beginning 0)))
12803 (setq level (org-reduced-level (funcall outline-level))
12804 category (org-get-category))
12805 (setq i llast llast level)
12806 ;; remove tag lists from same and sublevels
12807 (while (>= i level)
12808 (when (setq entry (assoc i tags-alist))
12809 (setq tags-alist (delete entry tags-alist)))
12810 (setq i (1- i)))
12811 ;; add the next tags
12812 (when tags
12813 (setq tags (org-split-string tags ":")
12814 tags-alist
12815 (cons (cons level tags) tags-alist)))
12816 ;; compile tags for current headline
12817 (setq tags-list
12818 (if org-use-tag-inheritance
12819 (apply 'append (mapcar 'cdr (reverse tags-alist)))
12820 tags)
12821 org-scanner-tags tags-list)
12822 (when org-use-tag-inheritance
12823 (setcdr (car tags-alist)
12824 (mapcar (lambda (x)
12825 (setq x (copy-sequence x))
12826 (org-add-prop-inherited x))
12827 (cdar tags-alist))))
12828 (when (and tags org-use-tag-inheritance
12829 (or (not (eq t org-use-tag-inheritance))
12830 org-tags-exclude-from-inheritance))
12831 ;; selective inheritance, remove uninherited ones
12832 (setcdr (car tags-alist)
12833 (org-remove-uninherited-tags (cdar tags-alist))))
12834 (when (and
12836 ;; eval matcher only when the todo condition is OK
12837 (and (or (not todo-only) (member todo org-not-done-keywords))
12838 (let ((case-fold-search t)) (eval matcher)))
12840 ;; Call the skipper, but return t if it does not skip,
12841 ;; so that the `and' form continues evaluating
12842 (progn
12843 (unless (eq action 'sparse-tree) (org-agenda-skip))
12846 ;; Check if timestamps are deselecting this entry
12847 (or (not todo-only)
12848 (and (member todo org-not-done-keywords)
12849 (or (not org-agenda-tags-todo-honor-ignore-options)
12850 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item)))))
12852 ;; Extra check for the archive tag
12853 ;; FIXME: Does the skipper already do this????
12855 (not (member org-archive-tag tags-list))
12856 ;; we have an archive tag, should we use this anyway?
12857 (or (not org-agenda-skip-archived-trees)
12858 (and (eq action 'agenda) org-agenda-archives-mode))))
12860 ;; select this headline
12862 (cond
12863 ((eq action 'sparse-tree)
12864 (and org-highlight-sparse-tree-matches
12865 (org-get-heading) (match-end 0)
12866 (org-highlight-new-match
12867 (match-beginning 0) (match-beginning 1)))
12868 (org-show-context 'tags-tree))
12869 ((eq action 'agenda)
12870 (setq txt (org-agenda-format-item
12872 (concat
12873 (if (eq org-tags-match-list-sublevels 'indented)
12874 (make-string (1- level) ?.) "")
12875 (org-get-heading))
12876 category
12877 tags-list)
12878 priority (org-get-priority txt))
12879 (goto-char lspos)
12880 (setq marker (org-agenda-new-marker))
12881 (org-add-props txt props
12882 'org-marker marker 'org-hd-marker marker 'org-category category
12883 'todo-state todo
12884 'priority priority 'type "tagsmatch")
12885 (push txt rtn))
12886 ((functionp action)
12887 (setq org-map-continue-from nil)
12888 (save-excursion
12889 (setq rtn1 (funcall action))
12890 (push rtn1 rtn)))
12891 (t (error "Invalid action")))
12893 ;; if we are to skip sublevels, jump to end of subtree
12894 (unless org-tags-match-list-sublevels
12895 (org-end-of-subtree t)
12896 (backward-char 1))))
12897 ;; Get the correct position from where to continue
12898 (if org-map-continue-from
12899 (goto-char org-map-continue-from)
12900 (and (= (point) lspos) (end-of-line 1)))))
12901 (when (and (eq action 'sparse-tree)
12902 (not org-sparse-tree-open-archived-trees))
12903 (org-hide-archived-subtrees (point-min) (point-max)))
12904 (nreverse rtn)))
12906 (defun org-remove-uninherited-tags (tags)
12907 "Remove all tags that are not inherited from the list TAGS."
12908 (cond
12909 ((eq org-use-tag-inheritance t)
12910 (if org-tags-exclude-from-inheritance
12911 (org-delete-all org-tags-exclude-from-inheritance tags)
12912 tags))
12913 ((not org-use-tag-inheritance) nil)
12914 ((stringp org-use-tag-inheritance)
12915 (delq nil (mapcar
12916 (lambda (x)
12917 (if (and (string-match org-use-tag-inheritance x)
12918 (not (member x org-tags-exclude-from-inheritance)))
12919 x nil))
12920 tags)))
12921 ((listp org-use-tag-inheritance)
12922 (delq nil (mapcar
12923 (lambda (x)
12924 (if (member x org-use-tag-inheritance) x nil))
12925 tags)))))
12927 (defvar todo-only) ;; dynamically scoped
12929 (defun org-match-sparse-tree (&optional todo-only match)
12930 "Create a sparse tree according to tags string MATCH.
12931 MATCH can contain positive and negative selection of tags, like
12932 \"+WORK+URGENT-WITHBOSS\".
12933 If optional argument TODO-ONLY is non-nil, only select lines that are
12934 also TODO lines."
12935 (interactive "P")
12936 (org-prepare-agenda-buffers (list (current-buffer)))
12937 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
12939 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
12941 (defvar org-cached-props nil)
12942 (defun org-cached-entry-get (pom property)
12943 (if (or (eq t org-use-property-inheritance)
12944 (and (stringp org-use-property-inheritance)
12945 (string-match org-use-property-inheritance property))
12946 (and (listp org-use-property-inheritance)
12947 (member property org-use-property-inheritance)))
12948 ;; Caching is not possible, check it directly
12949 (org-entry-get pom property 'inherit)
12950 ;; Get all properties, so that we can do complicated checks easily
12951 (cdr (assoc property (or org-cached-props
12952 (setq org-cached-props
12953 (org-entry-properties pom)))))))
12955 (defun org-global-tags-completion-table (&optional files)
12956 "Return the list of all tags in all agenda buffer/files.
12957 Optional FILES argument is a list of files to which can be used
12958 instead of the agenda files."
12959 (save-excursion
12960 (org-uniquify
12961 (delq nil
12962 (apply 'append
12963 (mapcar
12964 (lambda (file)
12965 (set-buffer (find-file-noselect file))
12966 (append (org-get-buffer-tags)
12967 (mapcar (lambda (x) (if (stringp (car-safe x))
12968 (list (car-safe x)) nil))
12969 org-tag-alist)))
12970 (if (and files (car files))
12971 files
12972 (org-agenda-files))))))))
12974 (defun org-make-tags-matcher (match)
12975 "Create the TAGS/TODO matcher form for the selection string MATCH."
12976 ;; todo-only is scoped dynamically into this function, and the function
12977 ;; may change it if the matcher asks for it.
12978 (unless match
12979 ;; Get a new match request, with completion
12980 (let ((org-last-tags-completion-table
12981 (org-global-tags-completion-table)))
12982 (setq match (org-completing-read-no-i
12983 "Match: " 'org-tags-completion-function nil nil nil
12984 'org-tags-history))))
12986 ;; Parse the string and create a lisp form
12987 (let ((match0 match)
12988 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
12989 minus tag mm
12990 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
12991 orterms term orlist re-p str-p level-p level-op time-p
12992 prop-p pn pv po gv rest)
12993 (if (string-match "/+" match)
12994 ;; match contains also a todo-matching request
12995 (progn
12996 (setq tagsmatch (substring match 0 (match-beginning 0))
12997 todomatch (substring match (match-end 0)))
12998 (if (string-match "^!" todomatch)
12999 (setq todo-only t todomatch (substring todomatch 1)))
13000 (if (string-match "^\\s-*$" todomatch)
13001 (setq todomatch nil)))
13002 ;; only matching tags
13003 (setq tagsmatch match todomatch nil))
13005 ;; Make the tags matcher
13006 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
13007 (setq tagsmatcher t)
13008 (setq orterms (org-split-string tagsmatch "|") orlist nil)
13009 (while (setq term (pop orterms))
13010 (while (and (equal (substring term -1) "\\") orterms)
13011 (setq term (concat term "|" (pop orterms)))) ; repair bad split
13012 (while (string-match re term)
13013 (setq rest (substring term (match-end 0))
13014 minus (and (match-end 1)
13015 (equal (match-string 1 term) "-"))
13016 tag (save-match-data (replace-regexp-in-string
13017 "\\\\-" "-"
13018 (match-string 2 term)))
13019 re-p (equal (string-to-char tag) ?{)
13020 level-p (match-end 4)
13021 prop-p (match-end 5)
13022 mm (cond
13023 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
13024 (level-p
13025 (setq level-op (org-op-to-function (match-string 3 term)))
13026 `(,level-op level ,(string-to-number
13027 (match-string 4 term))))
13028 (prop-p
13029 (setq pn (match-string 5 term)
13030 po (match-string 6 term)
13031 pv (match-string 7 term)
13032 re-p (equal (string-to-char pv) ?{)
13033 str-p (equal (string-to-char pv) ?\")
13034 time-p (save-match-data
13035 (string-match "^\"[[<].*[]>]\"$" pv))
13036 pv (if (or re-p str-p) (substring pv 1 -1) pv))
13037 (if time-p (setq pv (org-matcher-time pv)))
13038 (setq po (org-op-to-function po (if time-p 'time str-p)))
13039 (cond
13040 ((equal pn "CATEGORY")
13041 (setq gv '(get-text-property (point) 'org-category)))
13042 ((equal pn "TODO")
13043 (setq gv 'todo))
13045 (setq gv `(org-cached-entry-get nil ,pn))))
13046 (if re-p
13047 (if (eq po 'org<>)
13048 `(not (string-match ,pv (or ,gv "")))
13049 `(string-match ,pv (or ,gv "")))
13050 (if str-p
13051 `(,po (or ,gv "") ,pv)
13052 `(,po (string-to-number (or ,gv ""))
13053 ,(string-to-number pv) ))))
13054 (t `(member ,tag tags-list)))
13055 mm (if minus (list 'not mm) mm)
13056 term rest)
13057 (push mm tagsmatcher))
13058 (push (if (> (length tagsmatcher) 1)
13059 (cons 'and tagsmatcher)
13060 (car tagsmatcher))
13061 orlist)
13062 (setq tagsmatcher nil))
13063 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
13064 (setq tagsmatcher
13065 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
13066 ;; Make the todo matcher
13067 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
13068 (setq todomatcher t)
13069 (setq orterms (org-split-string todomatch "|") orlist nil)
13070 (while (setq term (pop orterms))
13071 (while (string-match re term)
13072 (setq minus (and (match-end 1)
13073 (equal (match-string 1 term) "-"))
13074 kwd (match-string 2 term)
13075 re-p (equal (string-to-char kwd) ?{)
13076 term (substring term (match-end 0))
13077 mm (if re-p
13078 `(string-match ,(substring kwd 1 -1) todo)
13079 (list 'equal 'todo kwd))
13080 mm (if minus (list 'not mm) mm))
13081 (push mm todomatcher))
13082 (push (if (> (length todomatcher) 1)
13083 (cons 'and todomatcher)
13084 (car todomatcher))
13085 orlist)
13086 (setq todomatcher nil))
13087 (setq todomatcher (if (> (length orlist) 1)
13088 (cons 'or orlist) (car orlist))))
13090 ;; Return the string and lisp forms of the matcher
13091 (setq matcher (if todomatcher
13092 (list 'and tagsmatcher todomatcher)
13093 tagsmatcher))
13094 (cons match0 matcher)))
13096 (defun org-op-to-function (op &optional stringp)
13097 "Turn an operator into the appropriate function."
13098 (setq op
13099 (cond
13100 ((equal op "<" ) '(< string< org-time<))
13101 ((equal op ">" ) '(> org-string> org-time>))
13102 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
13103 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
13104 ((member op '("=" "==")) '(= string= org-time=))
13105 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
13106 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
13108 (defun org<> (a b) (not (= a b)))
13109 (defun org-string<= (a b) (or (string= a b) (string< a b)))
13110 (defun org-string>= (a b) (not (string< a b)))
13111 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
13112 (defun org-string<> (a b) (not (string= a b)))
13113 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
13114 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
13115 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
13116 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
13117 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
13118 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
13119 (defun org-2ft (s)
13120 "Convert S to a floating point time.
13121 If S is already a number, just return it. If it is a string, parse
13122 it as a time string and apply `float-time' to it. If S is nil, just return 0."
13123 (cond
13124 ((numberp s) s)
13125 ((stringp s)
13126 (condition-case nil
13127 (float-time (apply 'encode-time (org-parse-time-string s)))
13128 (error 0.)))
13129 (t 0.)))
13131 (defun org-time-today ()
13132 "Time in seconds today at 0:00.
13133 Returns the float number of seconds since the beginning of the
13134 epoch to the beginning of today (00:00)."
13135 (float-time (apply 'encode-time
13136 (append '(0 0 0) (nthcdr 3 (decode-time))))))
13138 (defun org-matcher-time (s)
13139 "Interpret a time comparison value."
13140 (save-match-data
13141 (cond
13142 ((string= s "<now>") (float-time))
13143 ((string= s "<today>") (org-time-today))
13144 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
13145 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
13146 ((string-match "^<\\([-+][0-9]+\\)\\([dwmy]\\)>$" s)
13147 (+ (org-time-today)
13148 (* (string-to-number (match-string 1 s))
13149 (cdr (assoc (match-string 2 s)
13150 '(("d" . 86400.0) ("w" . 604800.0)
13151 ("m" . 2678400.0) ("y" . 31557600.0)))))))
13152 (t (org-2ft s)))))
13154 (defun org-match-any-p (re list)
13155 "Does re match any element of list?"
13156 (setq list (mapcar (lambda (x) (string-match re x)) list))
13157 (delq nil list))
13159 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
13160 (defvar org-tags-overlay (make-overlay 1 1))
13161 (org-detach-overlay org-tags-overlay)
13163 (defun org-get-local-tags-at (&optional pos)
13164 "Get a list of tags defined in the current headline."
13165 (org-get-tags-at pos 'local))
13167 (defun org-get-local-tags ()
13168 "Get a list of tags defined in the current headline."
13169 (org-get-tags-at nil 'local))
13171 (defun org-get-tags-at (&optional pos local)
13172 "Get a list of all headline tags applicable at POS.
13173 POS defaults to point. If tags are inherited, the list contains
13174 the targets in the same sequence as the headlines appear, i.e.
13175 the tags of the current headline come last.
13176 When LOCAL is non-nil, only return tags from the current headline,
13177 ignore inherited ones."
13178 (interactive)
13179 (if (and org-trust-scanner-tags
13180 (or (not pos) (equal pos (point)))
13181 (not local))
13182 org-scanner-tags
13183 (let (tags ltags lastpos parent)
13184 (save-excursion
13185 (save-restriction
13186 (widen)
13187 (goto-char (or pos (point)))
13188 (save-match-data
13189 (catch 'done
13190 (condition-case nil
13191 (progn
13192 (org-back-to-heading t)
13193 (while (not (equal lastpos (point)))
13194 (setq lastpos (point))
13195 (when (looking-at
13196 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
13197 (setq ltags (org-split-string
13198 (org-match-string-no-properties 1) ":"))
13199 (when parent
13200 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
13201 (setq tags (append
13202 (if parent
13203 (org-remove-uninherited-tags ltags)
13204 ltags)
13205 tags)))
13206 (or org-use-tag-inheritance (throw 'done t))
13207 (if local (throw 'done t))
13208 (or (org-up-heading-safe) (error nil))
13209 (setq parent t)))
13210 (error nil)))))
13211 (if local
13212 tags
13213 (append (org-remove-uninherited-tags org-file-tags) tags))))))
13215 (defun org-add-prop-inherited (s)
13216 (add-text-properties 0 (length s) '(inherited t) s)
13219 (defun org-toggle-tag (tag &optional onoff)
13220 "Toggle the tag TAG for the current line.
13221 If ONOFF is `on' or `off', don't toggle but set to this state."
13222 (let (res current)
13223 (save-excursion
13224 (org-back-to-heading t)
13225 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
13226 (point-at-eol) t)
13227 (progn
13228 (setq current (match-string 1))
13229 (replace-match ""))
13230 (setq current ""))
13231 (setq current (nreverse (org-split-string current ":")))
13232 (cond
13233 ((eq onoff 'on)
13234 (setq res t)
13235 (or (member tag current) (push tag current)))
13236 ((eq onoff 'off)
13237 (or (not (member tag current)) (setq current (delete tag current))))
13238 (t (if (member tag current)
13239 (setq current (delete tag current))
13240 (setq res t)
13241 (push tag current))))
13242 (end-of-line 1)
13243 (if current
13244 (progn
13245 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
13246 (org-set-tags nil t))
13247 (delete-horizontal-space))
13248 (run-hooks 'org-after-tags-change-hook))
13249 res))
13251 (defun org-align-tags-here (to-col)
13252 ;; Assumes that this is a headline
13253 (let ((pos (point)) (col (current-column)) ncol tags-l p)
13254 (beginning-of-line 1)
13255 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
13256 (< pos (match-beginning 2)))
13257 (progn
13258 (setq tags-l (- (match-end 2) (match-beginning 2)))
13259 (goto-char (match-beginning 1))
13260 (insert " ")
13261 (delete-region (point) (1+ (match-beginning 2)))
13262 (setq ncol (max (current-column)
13263 (1+ col)
13264 (if (> to-col 0)
13265 to-col
13266 (- (abs to-col) tags-l))))
13267 (setq p (point))
13268 (insert (make-string (- ncol (current-column)) ?\ ))
13269 (setq ncol (current-column))
13270 (when indent-tabs-mode (tabify p (point-at-eol)))
13271 (org-move-to-column (min ncol col) t))
13272 (goto-char pos))))
13274 (defun org-set-tags-command (&optional arg just-align)
13275 "Call the set-tags command for the current entry."
13276 (interactive "P")
13277 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
13278 (org-set-tags arg just-align)
13279 (save-excursion
13280 (org-back-to-heading t)
13281 (org-set-tags arg just-align))))
13283 (defun org-set-tags-to (data)
13284 "Set the tags of the current entry to DATA, replacing the current tags.
13285 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
13286 If DATA is nil or the empty string, any tags will be removed."
13287 (interactive "sTags: ")
13288 (setq data
13289 (cond
13290 ((eq data nil) "")
13291 ((equal data "") "")
13292 ((stringp data)
13293 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
13294 ":"))
13295 ((listp data)
13296 (concat ":" (mapconcat 'identity data ":") ":"))
13297 (t nil)))
13298 (when data
13299 (save-excursion
13300 (org-back-to-heading t)
13301 (when (looking-at org-complex-heading-regexp)
13302 (if (match-end 5)
13303 (progn
13304 (goto-char (match-beginning 5))
13305 (insert data)
13306 (delete-region (point) (point-at-eol))
13307 (org-set-tags nil 'align))
13308 (goto-char (point-at-eol))
13309 (insert " " data)
13310 (org-set-tags nil 'align)))
13311 (beginning-of-line 1)
13312 (if (looking-at ".*?\\([ \t]+\\)$")
13313 (delete-region (match-beginning 1) (match-end 1))))))
13315 (defun org-align-all-tags ()
13316 "Align the tags i all headings."
13317 (interactive)
13318 (save-excursion
13319 (or (ignore-errors (org-back-to-heading t))
13320 (outline-next-heading))
13321 (if (org-at-heading-p)
13322 (org-set-tags t)
13323 (message "No headings"))))
13325 (defvar org-indent-indentation-per-level)
13326 (defun org-set-tags (&optional arg just-align)
13327 "Set the tags for the current headline.
13328 With prefix ARG, realign all tags in headings in the current buffer."
13329 (interactive "P")
13330 (let* ((re org-outline-regexp-bol)
13331 (current (unless arg (org-get-tags-string)))
13332 (col (current-column))
13333 (org-setting-tags t)
13334 table current-tags inherited-tags ; computed below when needed
13335 tags p0 c0 c1 rpl di tc level)
13336 (if arg
13337 (save-excursion
13338 (goto-char (point-min))
13339 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
13340 (while (re-search-forward re nil t)
13341 (org-set-tags nil t)
13342 (end-of-line 1)))
13343 (message "All tags realigned to column %d" org-tags-column))
13344 (if just-align
13345 (setq tags current)
13346 ;; Get a new set of tags from the user
13347 (save-excursion
13348 (setq table (append org-tag-persistent-alist
13349 (or org-tag-alist (org-get-buffer-tags))
13350 (and
13351 org-complete-tags-always-offer-all-agenda-tags
13352 (org-global-tags-completion-table
13353 (org-agenda-files))))
13354 org-last-tags-completion-table table
13355 current-tags (org-split-string current ":")
13356 inherited-tags (nreverse
13357 (nthcdr (length current-tags)
13358 (nreverse (org-get-tags-at))))
13359 tags
13360 (if (or (eq t org-use-fast-tag-selection)
13361 (and org-use-fast-tag-selection
13362 (delq nil (mapcar 'cdr table))))
13363 (org-fast-tag-selection
13364 current-tags inherited-tags table
13365 (if org-fast-tag-selection-include-todo
13366 org-todo-key-alist))
13367 (let ((org-add-colon-after-tag-completion t))
13368 (org-trim
13369 (org-icompleting-read "Tags: "
13370 'org-tags-completion-function
13371 nil nil current 'org-tags-history))))))
13372 (while (string-match "[-+&]+" tags)
13373 ;; No boolean logic, just a list
13374 (setq tags (replace-match ":" t t tags))))
13376 (setq tags (replace-regexp-in-string "[,]" ":" tags))
13378 (if org-tags-sort-function
13379 (setq tags (mapconcat 'identity
13380 (sort (org-split-string
13381 tags (org-re "[^[:alnum:]_@#%]+"))
13382 org-tags-sort-function) ":")))
13384 (if (string-match "\\`[\t ]*\\'" tags)
13385 (setq tags "")
13386 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
13387 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
13389 ;; Insert new tags at the correct column
13390 (beginning-of-line 1)
13391 (setq level (or (and (looking-at org-outline-regexp)
13392 (- (match-end 0) (point) 1))
13394 (cond
13395 ((and (equal current "") (equal tags "")))
13396 ((re-search-forward
13397 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
13398 (point-at-eol) t)
13399 (if (equal tags "")
13400 (setq rpl "")
13401 (goto-char (match-beginning 0))
13402 (setq c0 (current-column)
13403 ;; compute offset for the case of org-indent-mode active
13404 di (if org-indent-mode
13405 (* (1- org-indent-indentation-per-level) (1- level))
13407 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
13408 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
13409 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (length tags))))
13410 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
13411 (replace-match rpl t t)
13412 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
13413 tags)
13414 (t (error "Tags alignment failed")))
13415 (org-move-to-column col)
13416 (unless just-align
13417 (run-hooks 'org-after-tags-change-hook)))))
13419 (defun org-change-tag-in-region (beg end tag off)
13420 "Add or remove TAG for each entry in the region.
13421 This works in the agenda, and also in an org-mode buffer."
13422 (interactive
13423 (list (region-beginning) (region-end)
13424 (let ((org-last-tags-completion-table
13425 (if (eq major-mode 'org-mode)
13426 (org-get-buffer-tags)
13427 (org-global-tags-completion-table))))
13428 (org-icompleting-read
13429 "Tag: " 'org-tags-completion-function nil nil nil
13430 'org-tags-history))
13431 (progn
13432 (message "[s]et or [r]emove? ")
13433 (equal (read-char-exclusive) ?r))))
13434 (if (fboundp 'deactivate-mark) (deactivate-mark))
13435 (let ((agendap (equal major-mode 'org-agenda-mode))
13436 l1 l2 m buf pos newhead (cnt 0))
13437 (goto-char end)
13438 (setq l2 (1- (org-current-line)))
13439 (goto-char beg)
13440 (setq l1 (org-current-line))
13441 (loop for l from l1 to l2 do
13442 (org-goto-line l)
13443 (setq m (get-text-property (point) 'org-hd-marker))
13444 (when (or (and (eq major-mode 'org-mode) (org-at-heading-p))
13445 (and agendap m))
13446 (setq buf (if agendap (marker-buffer m) (current-buffer))
13447 pos (if agendap m (point)))
13448 (with-current-buffer buf
13449 (save-excursion
13450 (save-restriction
13451 (goto-char pos)
13452 (setq cnt (1+ cnt))
13453 (org-toggle-tag tag (if off 'off 'on))
13454 (setq newhead (org-get-heading)))))
13455 (and agendap (org-agenda-change-all-lines newhead m))))
13456 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
13458 (defun org-tags-completion-function (string predicate &optional flag)
13459 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
13460 (confirm (lambda (x) (stringp (car x)))))
13461 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
13462 (setq s1 (match-string 1 string)
13463 s2 (match-string 2 string))
13464 (setq s1 "" s2 string))
13465 (cond
13466 ((eq flag nil)
13467 ;; try completion
13468 (setq rtn (try-completion s2 ctable confirm))
13469 (if (stringp rtn)
13470 (setq rtn
13471 (concat s1 s2 (substring rtn (length s2))
13472 (if (and org-add-colon-after-tag-completion
13473 (assoc rtn ctable))
13474 ":" ""))))
13475 rtn)
13476 ((eq flag t)
13477 ;; all-completions
13478 (all-completions s2 ctable confirm)
13480 ((eq flag 'lambda)
13481 ;; exact match?
13482 (assoc s2 ctable)))
13485 (defun org-fast-tag-insert (kwd tags face &optional end)
13486 "Insert KDW, and the TAGS, the latter with face FACE. Also insert END."
13487 (insert (format "%-12s" (concat kwd ":"))
13488 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
13489 (or end "")))
13491 (defun org-fast-tag-show-exit (flag)
13492 (save-excursion
13493 (org-goto-line 3)
13494 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
13495 (replace-match ""))
13496 (when flag
13497 (end-of-line 1)
13498 (org-move-to-column (- (window-width) 19) t)
13499 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
13501 (defun org-set-current-tags-overlay (current prefix)
13502 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
13503 (if (featurep 'xemacs)
13504 (org-overlay-display org-tags-overlay (concat prefix s)
13505 'secondary-selection)
13506 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
13507 (org-overlay-display org-tags-overlay (concat prefix s)))))
13509 (defvar org-last-tag-selection-key nil)
13510 (defun org-fast-tag-selection (current inherited table &optional todo-table)
13511 "Fast tag selection with single keys.
13512 CURRENT is the current list of tags in the headline, INHERITED is the
13513 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
13514 possibly with grouping information. TODO-TABLE is a similar table with
13515 TODO keywords, should these have keys assigned to them.
13516 If the keys are nil, a-z are automatically assigned.
13517 Returns the new tags string, or nil to not change the current settings."
13518 (let* ((fulltable (append table todo-table))
13519 (maxlen (apply 'max (mapcar
13520 (lambda (x)
13521 (if (stringp (car x)) (string-width (car x)) 0))
13522 fulltable)))
13523 (buf (current-buffer))
13524 (expert (eq org-fast-tag-selection-single-key 'expert))
13525 (buffer-tags nil)
13526 (fwidth (+ maxlen 3 1 3))
13527 (ncol (/ (- (window-width) 4) fwidth))
13528 (i-face 'org-done)
13529 (c-face 'org-todo)
13530 tg cnt e c char c1 c2 ntable tbl rtn
13531 ov-start ov-end ov-prefix
13532 (exit-after-next org-fast-tag-selection-single-key)
13533 (done-keywords org-done-keywords)
13534 groups ingroup)
13535 (save-excursion
13536 (beginning-of-line 1)
13537 (if (looking-at
13538 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
13539 (setq ov-start (match-beginning 1)
13540 ov-end (match-end 1)
13541 ov-prefix "")
13542 (setq ov-start (1- (point-at-eol))
13543 ov-end (1+ ov-start))
13544 (skip-chars-forward "^\n\r")
13545 (setq ov-prefix
13546 (concat
13547 (buffer-substring (1- (point)) (point))
13548 (if (> (current-column) org-tags-column)
13550 (make-string (- org-tags-column (current-column)) ?\ ))))))
13551 (move-overlay org-tags-overlay ov-start ov-end)
13552 (save-window-excursion
13553 (if expert
13554 (set-buffer (get-buffer-create " *Org tags*"))
13555 (delete-other-windows)
13556 (split-window-vertically)
13557 (org-switch-to-buffer-other-window (get-buffer-create " *Org tags*")))
13558 (erase-buffer)
13559 (org-set-local 'org-done-keywords done-keywords)
13560 (org-fast-tag-insert "Inherited" inherited i-face "\n")
13561 (org-fast-tag-insert "Current" current c-face "\n\n")
13562 (org-fast-tag-show-exit exit-after-next)
13563 (org-set-current-tags-overlay current ov-prefix)
13564 (setq tbl fulltable char ?a cnt 0)
13565 (while (setq e (pop tbl))
13566 (cond
13567 ((equal (car e) :startgroup)
13568 (push '() groups) (setq ingroup t)
13569 (when (not (= cnt 0))
13570 (setq cnt 0)
13571 (insert "\n"))
13572 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
13573 ((equal (car e) :endgroup)
13574 (setq ingroup nil cnt 0)
13575 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
13576 ((equal e '(:newline))
13577 (when (not (= cnt 0))
13578 (setq cnt 0)
13579 (insert "\n")
13580 (setq e (car tbl))
13581 (while (equal (car tbl) '(:newline))
13582 (insert "\n")
13583 (setq tbl (cdr tbl)))))
13585 (setq tg (copy-sequence (car e)) c2 nil)
13586 (if (cdr e)
13587 (setq c (cdr e))
13588 ;; automatically assign a character.
13589 (setq c1 (string-to-char
13590 (downcase (substring
13591 tg (if (= (string-to-char tg) ?@) 1 0)))))
13592 (if (or (rassoc c1 ntable) (rassoc c1 table))
13593 (while (or (rassoc char ntable) (rassoc char table))
13594 (setq char (1+ char)))
13595 (setq c2 c1))
13596 (setq c (or c2 char)))
13597 (if ingroup (push tg (car groups)))
13598 (setq tg (org-add-props tg nil 'face
13599 (cond
13600 ((not (assoc tg table))
13601 (org-get-todo-face tg))
13602 ((member tg current) c-face)
13603 ((member tg inherited) i-face)
13604 (t nil))))
13605 (if (and (= cnt 0) (not ingroup)) (insert " "))
13606 (insert "[" c "] " tg (make-string
13607 (- fwidth 4 (length tg)) ?\ ))
13608 (push (cons tg c) ntable)
13609 (when (= (setq cnt (1+ cnt)) ncol)
13610 (insert "\n")
13611 (if ingroup (insert " "))
13612 (setq cnt 0)))))
13613 (setq ntable (nreverse ntable))
13614 (insert "\n")
13615 (goto-char (point-min))
13616 (if (not expert) (org-fit-window-to-buffer))
13617 (setq rtn
13618 (catch 'exit
13619 (while t
13620 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
13621 (if (not groups) "no " "")
13622 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
13623 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13624 (setq org-last-tag-selection-key c)
13625 (cond
13626 ((= c ?\r) (throw 'exit t))
13627 ((= c ?!)
13628 (setq groups (not groups))
13629 (goto-char (point-min))
13630 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
13631 ((= c ?\C-c)
13632 (if (not expert)
13633 (org-fast-tag-show-exit
13634 (setq exit-after-next (not exit-after-next)))
13635 (setq expert nil)
13636 (delete-other-windows)
13637 (set-window-buffer (split-window-vertically) " *Org tags*")
13638 (org-switch-to-buffer-other-window " *Org tags*")
13639 (org-fit-window-to-buffer)))
13640 ((or (= c ?\C-g)
13641 (and (= c ?q) (not (rassoc c ntable))))
13642 (org-detach-overlay org-tags-overlay)
13643 (setq quit-flag t))
13644 ((= c ?\ )
13645 (setq current nil)
13646 (if exit-after-next (setq exit-after-next 'now)))
13647 ((= c ?\t)
13648 (condition-case nil
13649 (setq tg (org-icompleting-read
13650 "Tag: "
13651 (or buffer-tags
13652 (with-current-buffer buf
13653 (org-get-buffer-tags)))))
13654 (quit (setq tg "")))
13655 (when (string-match "\\S-" tg)
13656 (add-to-list 'buffer-tags (list tg))
13657 (if (member tg current)
13658 (setq current (delete tg current))
13659 (push tg current)))
13660 (if exit-after-next (setq exit-after-next 'now)))
13661 ((setq e (rassoc c todo-table) tg (car e))
13662 (with-current-buffer buf
13663 (save-excursion (org-todo tg)))
13664 (if exit-after-next (setq exit-after-next 'now)))
13665 ((setq e (rassoc c ntable) tg (car e))
13666 (if (member tg current)
13667 (setq current (delete tg current))
13668 (loop for g in groups do
13669 (if (member tg g)
13670 (mapc (lambda (x)
13671 (setq current (delete x current)))
13672 g)))
13673 (push tg current))
13674 (if exit-after-next (setq exit-after-next 'now))))
13676 ;; Create a sorted list
13677 (setq current
13678 (sort current
13679 (lambda (a b)
13680 (assoc b (cdr (memq (assoc a ntable) ntable))))))
13681 (if (eq exit-after-next 'now) (throw 'exit t))
13682 (goto-char (point-min))
13683 (beginning-of-line 2)
13684 (delete-region (point) (point-at-eol))
13685 (org-fast-tag-insert "Current" current c-face)
13686 (org-set-current-tags-overlay current ov-prefix)
13687 (while (re-search-forward
13688 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
13689 (setq tg (match-string 1))
13690 (add-text-properties
13691 (match-beginning 1) (match-end 1)
13692 (list 'face
13693 (cond
13694 ((member tg current) c-face)
13695 ((member tg inherited) i-face)
13696 (t (get-text-property (match-beginning 1) 'face))))))
13697 (goto-char (point-min)))))
13698 (org-detach-overlay org-tags-overlay)
13699 (if rtn
13700 (mapconcat 'identity current ":")
13701 nil))))
13703 (defun org-get-tags-string ()
13704 "Get the TAGS string in the current headline."
13705 (unless (org-at-heading-p t)
13706 (error "Not on a heading"))
13707 (save-excursion
13708 (beginning-of-line 1)
13709 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
13710 (org-match-string-no-properties 1)
13711 "")))
13713 (defun org-get-tags ()
13714 "Get the list of tags specified in the current headline."
13715 (org-split-string (org-get-tags-string) ":"))
13717 (defun org-get-buffer-tags ()
13718 "Get a table of all tags used in the buffer, for completion."
13719 (let (tags)
13720 (save-excursion
13721 (goto-char (point-min))
13722 (while (re-search-forward
13723 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
13724 (when (equal (char-after (point-at-bol 0)) ?*)
13725 (mapc (lambda (x) (add-to-list 'tags x))
13726 (org-split-string (org-match-string-no-properties 1) ":")))))
13727 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
13728 (mapcar 'list tags)))
13730 ;;;; The mapping API
13732 ;;;###autoload
13733 (defun org-map-entries (func &optional match scope &rest skip)
13734 "Call FUNC at each headline selected by MATCH in SCOPE.
13736 FUNC is a function or a lisp form. The function will be called without
13737 arguments, with the cursor positioned at the beginning of the headline.
13738 The return values of all calls to the function will be collected and
13739 returned as a list.
13741 The call to FUNC will be wrapped into a save-excursion form, so FUNC
13742 does not need to preserve point. After evaluation, the cursor will be
13743 moved to the end of the line (presumably of the headline of the
13744 processed entry) and search continues from there. Under some
13745 circumstances, this may not produce the wanted results. For example,
13746 if you have removed (e.g. archived) the current (sub)tree it could
13747 mean that the next entry will be skipped entirely. In such cases, you
13748 can specify the position from where search should continue by making
13749 FUNC set the variable `org-map-continue-from' to the desired buffer
13750 position.
13752 MATCH is a tags/property/todo match as it is used in the agenda tags view.
13753 Only headlines that are matched by this query will be considered during
13754 the iteration. When MATCH is nil or t, all headlines will be
13755 visited by the iteration.
13757 SCOPE determines the scope of this command. It can be any of:
13759 nil The current buffer, respecting the restriction if any
13760 tree The subtree started with the entry at point
13761 region The entries within the active region, if any
13762 region-start-level
13763 The entries within the active region, but only those at
13764 the same level than the first one.
13765 file The current buffer, without restriction
13766 file-with-archives
13767 The current buffer, and any archives associated with it
13768 agenda All agenda files
13769 agenda-with-archives
13770 All agenda files with any archive files associated with them
13771 \(file1 file2 ...)
13772 If this is a list, all files in the list will be scanned
13774 The remaining args are treated as settings for the skipping facilities of
13775 the scanner. The following items can be given here:
13777 archive skip trees with the archive tag.
13778 comment skip trees with the COMMENT keyword
13779 function or Emacs Lisp form:
13780 will be used as value for `org-agenda-skip-function', so whenever
13781 the function returns t, FUNC will not be called for that
13782 entry and search will continue from the point where the
13783 function leaves it.
13785 If your function needs to retrieve the tags including inherited tags
13786 at the *current* entry, you can use the value of the variable
13787 `org-scanner-tags' which will be much faster than getting the value
13788 with `org-get-tags-at'. If your function gets properties with
13789 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
13790 to t around the call to `org-entry-properties' to get the same speedup.
13791 Note that if your function moves around to retrieve tags and properties at
13792 a *different* entry, you cannot use these techniques."
13793 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
13794 (not (org-region-active-p)))
13795 (let* ((org-agenda-archives-mode nil) ; just to make sure
13796 (org-agenda-skip-archived-trees (memq 'archive skip))
13797 (org-agenda-skip-comment-trees (memq 'comment skip))
13798 (org-agenda-skip-function
13799 (car (org-delete-all '(comment archive) skip)))
13800 (org-tags-match-list-sublevels t)
13801 (start-level (eq scope 'region-start-level))
13802 matcher file res
13803 org-todo-keywords-for-agenda
13804 org-done-keywords-for-agenda
13805 org-todo-keyword-alist-for-agenda
13806 org-drawers-for-agenda
13807 org-tag-alist-for-agenda)
13809 (cond
13810 ((eq match t) (setq matcher t))
13811 ((eq match nil) (setq matcher t))
13812 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
13814 (save-excursion
13815 (save-restriction
13816 (cond ((eq scope 'tree)
13817 (org-back-to-heading t)
13818 (org-narrow-to-subtree)
13819 (setq scope nil))
13820 ((and (or (eq scope 'region) (eq scope 'region-start-level))
13821 (org-region-active-p))
13822 ;; If needed, set start-level to a string like "2"
13823 (when start-level
13824 (save-excursion
13825 (goto-char (region-beginning))
13826 (unless (org-at-heading-p) (outline-next-heading))
13827 (setq start-level (org-current-level))))
13828 (narrow-to-region (region-beginning)
13829 (save-excursion
13830 (goto-char (region-end))
13831 (unless (and (bolp) (org-at-heading-p))
13832 (outline-next-heading))
13833 (point)))
13834 (setq scope nil)))
13836 (if (not scope)
13837 (progn
13838 (org-prepare-agenda-buffers
13839 (list (buffer-file-name (current-buffer))))
13840 (setq res (org-scan-tags func matcher nil start-level)))
13841 ;; Get the right scope
13842 (cond
13843 ((and scope (listp scope) (symbolp (car scope)))
13844 (setq scope (eval scope)))
13845 ((eq scope 'agenda)
13846 (setq scope (org-agenda-files t)))
13847 ((eq scope 'agenda-with-archives)
13848 (setq scope (org-agenda-files t))
13849 (setq scope (org-add-archive-files scope)))
13850 ((eq scope 'file)
13851 (setq scope (list (buffer-file-name))))
13852 ((eq scope 'file-with-archives)
13853 (setq scope (org-add-archive-files (list (buffer-file-name))))))
13854 (org-prepare-agenda-buffers scope)
13855 (while (setq file (pop scope))
13856 (with-current-buffer (org-find-base-buffer-visiting file)
13857 (save-excursion
13858 (save-restriction
13859 (widen)
13860 (goto-char (point-min))
13861 (setq res (append res (org-scan-tags func matcher))))))))))
13862 res)))
13864 ;;;; Properties
13866 ;;; Setting and retrieving properties
13868 (defconst org-special-properties
13869 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "CLOSED" "PRIORITY"
13870 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE" "CLOCKSUM")
13871 "The special properties valid in Org-mode.
13873 These are properties that are not defined in the property drawer,
13874 but in some other way.")
13876 (defconst org-default-properties
13877 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
13878 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
13879 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
13880 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
13881 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE"
13882 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
13883 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
13884 "Some properties that are used by Org-mode for various purposes.
13885 Being in this list makes sure that they are offered for completion.")
13887 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
13888 "Regular expression matching the first line of a property drawer.")
13890 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
13891 "Regular expression matching the last line of a property drawer.")
13893 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
13894 "Regular expression matching the first line of a property drawer.")
13896 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
13897 "Regular expression matching the first line of a property drawer.")
13899 (defconst org-property-drawer-re
13900 (concat "\\(" org-property-start-re "\\)[^\000]*\\("
13901 org-property-end-re "\\)\n?")
13902 "Matches an entire property drawer.")
13904 (defconst org-clock-drawer-re
13905 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*\\("
13906 org-property-end-re "\\)\n?")
13907 "Matches an entire clock drawer.")
13909 (defsubst org-re-property (property)
13910 "Return a regexp matching PROPERTY.
13911 Match group 1 will be set to the value "
13912 (concat "^[ \t]*:" (regexp-quote property) ":[ \t]*\\(\\S-.*\\)"))
13914 (defun org-property-action ()
13915 "Do an action on properties."
13916 (interactive)
13917 (let (c)
13918 (org-at-property-p)
13919 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
13920 (setq c (read-char-exclusive))
13921 (cond
13922 ((equal c ?s)
13923 (call-interactively 'org-set-property))
13924 ((equal c ?d)
13925 (call-interactively 'org-delete-property))
13926 ((equal c ?D)
13927 (call-interactively 'org-delete-property-globally))
13928 ((equal c ?c)
13929 (call-interactively 'org-compute-property-at-point))
13930 (t (error "No such property action %c" c)))))
13932 (defun org-set-effort (&optional value)
13933 "Set the effort property of the current entry.
13934 With numerical prefix arg, use the nth allowed value, 0 stands for the 10th
13935 allowed value."
13936 (interactive "P")
13937 (if (equal value 0) (setq value 10))
13938 (let* ((completion-ignore-case t)
13939 (prop org-effort-property)
13940 (cur (org-entry-get nil prop))
13941 (allowed (org-property-get-allowed-values nil prop 'table))
13942 (existing (mapcar 'list (org-property-values prop)))
13944 (val (cond
13945 ((stringp value) value)
13946 ((and allowed (integerp value))
13947 (or (car (nth (1- value) allowed))
13948 (car (org-last allowed))))
13949 (allowed
13950 (message "Select 1-9,0, [RET%s]: %s"
13951 (if cur (concat "=" cur) "")
13952 (mapconcat 'car allowed " "))
13953 (setq rpl (read-char-exclusive))
13954 (if (equal rpl ?\r)
13956 (setq rpl (- rpl ?0))
13957 (if (equal rpl 0) (setq rpl 10))
13958 (if (and (> rpl 0) (<= rpl (length allowed)))
13959 (car (nth (1- rpl) allowed))
13960 (org-completing-read "Effort: " allowed nil))))
13962 (let (org-completion-use-ido org-completion-use-iswitchb)
13963 (org-completing-read
13964 (concat "Effort " (if (and cur (string-match "\\S-" cur))
13965 (concat "[" cur "]") "")
13966 ": ")
13967 existing nil nil "" nil cur))))))
13968 (unless (equal (org-entry-get nil prop) val)
13969 (org-entry-put nil prop val))
13970 (message "%s is now %s" prop val)))
13972 (defun org-at-property-p ()
13973 "Is cursor inside a property drawer?"
13974 (save-excursion
13975 (beginning-of-line 1)
13976 (when (looking-at (org-re "^[ \t]*\\(:\\([[:alpha:]][[:alnum:]_-]*\\):\\)[ \t]*\\(.*\\)"))
13977 (save-match-data ;; Used by calling procedures
13978 (let ((p (point))
13979 (range (unless (org-before-first-heading-p)
13980 (org-get-property-block))))
13981 (and range (<= (car range) p) (< p (cdr range))))))))
13983 (defun org-get-property-block (&optional beg end force)
13984 "Return the (beg . end) range of the body of the property drawer.
13985 BEG and END can be beginning and end of subtree, if not given
13986 they will be found.
13987 If the drawer does not exist and FORCE is non-nil, create the drawer."
13988 (catch 'exit
13989 (save-excursion
13990 (let* ((beg (or beg (progn (org-back-to-heading t) (point))))
13991 (end (or end (progn (outline-next-heading) (point)))))
13992 (goto-char beg)
13993 (if (re-search-forward org-property-start-re end t)
13994 (setq beg (1+ (match-end 0)))
13995 (if force
13996 (save-excursion
13997 (org-insert-property-drawer)
13998 (setq end (progn (outline-next-heading) (point))))
13999 (throw 'exit nil))
14000 (goto-char beg)
14001 (if (re-search-forward org-property-start-re end t)
14002 (setq beg (1+ (match-end 0)))))
14003 (if (re-search-forward org-property-end-re end t)
14004 (setq end (match-beginning 0))
14005 (or force (throw 'exit nil))
14006 (goto-char beg)
14007 (setq end beg)
14008 (org-indent-line-function)
14009 (insert ":END:\n"))
14010 (cons beg end)))))
14012 (defun org-entry-properties (&optional pom which specific)
14013 "Get all properties of the entry at point-or-marker POM.
14014 This includes the TODO keyword, the tags, time strings for deadline,
14015 scheduled, and clocking, and any additional properties defined in the
14016 entry. The return value is an alist, keys may occur multiple times
14017 if the property key was used several times.
14018 POM may also be nil, in which case the current entry is used.
14019 If WHICH is nil or `all', get all properties. If WHICH is
14020 `special' or `standard', only get that subclass. If WHICH
14021 is a string only get exactly this property. SPECIFIC can be a string, the
14022 specific property we are interested in. Specifying it can speed
14023 things up because then unnecessary parsing is avoided."
14024 (setq which (or which 'all))
14025 (org-with-point-at pom
14026 (let ((clockstr (substring org-clock-string 0 -1))
14027 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY" "BLOCKED"))
14028 (case-fold-search nil)
14029 beg end range props sum-props key key1 value string clocksum)
14030 (save-excursion
14031 (when (condition-case nil
14032 (and (eq major-mode 'org-mode) (org-back-to-heading t))
14033 (error nil))
14034 (setq beg (point))
14035 (setq sum-props (get-text-property (point) 'org-summaries))
14036 (setq clocksum (get-text-property (point) :org-clock-minutes))
14037 (outline-next-heading)
14038 (setq end (point))
14039 (when (memq which '(all special))
14040 ;; Get the special properties, like TODO and tags
14041 (goto-char beg)
14042 (when (and (or (not specific) (string= specific "TODO"))
14043 (looking-at org-todo-line-regexp) (match-end 2))
14044 (push (cons "TODO" (org-match-string-no-properties 2)) props))
14045 (when (and (or (not specific) (string= specific "PRIORITY"))
14046 (looking-at org-priority-regexp))
14047 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
14048 (when (or (not specific) (string= specific "FILE"))
14049 (push (cons "FILE" buffer-file-name) props))
14050 (when (and (or (not specific) (string= specific "TAGS"))
14051 (setq value (org-get-tags-string))
14052 (string-match "\\S-" value))
14053 (push (cons "TAGS" value) props))
14054 (when (and (or (not specific) (string= specific "ALLTAGS"))
14055 (setq value (org-get-tags-at)))
14056 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":")
14057 ":"))
14058 props))
14059 (when (or (not specific) (string= specific "BLOCKED"))
14060 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props))
14061 (when (or (not specific)
14062 (member specific
14063 '("SCHEDULED" "DEADLINE" "CLOCK" "CLOSED"
14064 "TIMESTAMP" "TIMESTAMP_IA")))
14065 (catch 'match
14066 (while (re-search-forward org-maybe-keyword-time-regexp end t)
14067 (setq key (if (match-end 1)
14068 (substring (org-match-string-no-properties 1)
14069 0 -1))
14070 string (if (equal key clockstr)
14071 (org-no-properties
14072 (org-trim
14073 (buffer-substring
14074 (match-beginning 3) (goto-char
14075 (point-at-eol)))))
14076 (substring (org-match-string-no-properties 3)
14077 1 -1)))
14078 ;; Get the correct property name from the key. This is
14079 ;; necessary if the user has configured time keywords.
14080 (setq key1 (concat key ":"))
14081 (cond
14082 ((not key)
14083 (setq key
14084 (if (= (char-after (match-beginning 3)) ?\[)
14085 "TIMESTAMP_IA" "TIMESTAMP")))
14086 ((equal key1 org-scheduled-string) (setq key "SCHEDULED"))
14087 ((equal key1 org-deadline-string) (setq key "DEADLINE"))
14088 ((equal key1 org-closed-string) (setq key "CLOSED"))
14089 ((equal key1 org-clock-string) (setq key "CLOCK")))
14090 (if (and specific (equal key specific) (not (equal key "CLOCK")))
14091 (progn
14092 (push (cons key string) props)
14093 ;; no need to search further if match is found
14094 (throw 'match t))
14095 (when (or (equal key "CLOCK") (not (assoc key props)))
14096 (push (cons key string) props))))))
14099 (when (memq which '(all standard))
14100 ;; Get the standard properties, like :PROP: ...
14101 (setq range (org-get-property-block beg end))
14102 (when range
14103 (goto-char (car range))
14104 (while (re-search-forward
14105 (org-re "^[ \t]*:\\([[:alpha:]][[:alnum:]_-]*\\):[ \t]*\\(\\S-.*\\)?")
14106 (cdr range) t)
14107 (setq key (org-match-string-no-properties 1)
14108 value (org-trim (or (org-match-string-no-properties 2) "")))
14109 (unless (member key excluded)
14110 (push (cons key (or value "")) props)))))
14111 (if clocksum
14112 (push (cons "CLOCKSUM"
14113 (org-columns-number-to-string (/ (float clocksum) 60.)
14114 'add_times))
14115 props))
14116 (unless (assoc "CATEGORY" props)
14117 (push (cons "CATEGORY" (org-get-category)) props))
14118 (append sum-props (nreverse props)))))))
14120 (defun org-entry-get (pom property &optional inherit literal-nil)
14121 "Get value of PROPERTY for entry at point-or-marker POM.
14122 If INHERIT is non-nil and the entry does not have the property,
14123 then also check higher levels of the hierarchy.
14124 If INHERIT is the symbol `selective', use inheritance only if the setting
14125 in `org-use-property-inheritance' selects PROPERTY for inheritance.
14126 If the property is present but empty, the return value is the empty string.
14127 If the property is not present at all, nil is returned.
14129 If LITERAL-NIL is set, return the string value \"nil\" as a string,
14130 do not interpret it as the list atom nil. This is used for inheritance
14131 when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
14132 (org-with-point-at pom
14133 (if (and inherit (if (eq inherit 'selective)
14134 (org-property-inherit-p property)
14136 (org-entry-get-with-inheritance property literal-nil)
14137 (if (member property org-special-properties)
14138 ;; We need a special property. Use `org-entry-properties' to
14139 ;; retrieve it, but specify the wanted property
14140 (cdr (assoc property (org-entry-properties nil 'special property)))
14141 (let ((range (unless (org-before-first-heading-p)
14142 (org-get-property-block))))
14143 (when (and range (goto-char (car range)))
14144 ((lambda (val) (when val (if literal-nil val (org-not-nil val))))
14145 (cond
14146 ((re-search-forward
14147 (org-re-property property) (cdr range) t)
14148 (if (match-end 1) (org-match-string-no-properties 1) ""))
14149 ((re-search-forward
14150 (org-re-property (concat property "+")) (cdr range) t)
14151 (cdr (assoc
14152 property
14153 (org-update-property-plist
14154 (concat property "+")
14155 (if (match-end 1) (org-match-string-no-properties 1) "")
14156 (list (or (assoc property org-file-properties)
14157 (assoc property org-global-properties)
14158 (assoc property org-global-properties-fixed)
14159 ))))))))))))))
14161 (defun org-property-or-variable-value (var &optional inherit)
14162 "Check if there is a property fixing the value of VAR.
14163 If yes, return this value. If not, return the current value of the variable."
14164 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
14165 (if (and prop (stringp prop) (string-match "\\S-" prop))
14166 (read prop)
14167 (symbol-value var))))
14169 (defun org-entry-delete (pom property)
14170 "Delete the property PROPERTY from entry at point-or-marker POM."
14171 (org-with-point-at pom
14172 (if (member property org-special-properties)
14173 nil ; cannot delete these properties.
14174 (let ((range (org-get-property-block)))
14175 (if (and range
14176 (goto-char (car range))
14177 (re-search-forward
14178 (org-re-property property)
14179 (cdr range) t))
14180 (progn
14181 (delete-region (match-beginning 0) (1+ (point-at-eol)))
14183 nil)))))
14185 ;; Multi-values properties are properties that contain multiple values
14186 ;; These values are assumed to be single words, separated by whitespace.
14187 (defun org-entry-add-to-multivalued-property (pom property value)
14188 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
14189 (let* ((old (org-entry-get pom property))
14190 (values (and old (org-split-string old "[ \t]"))))
14191 (setq value (org-entry-protect-space value))
14192 (unless (member value values)
14193 (setq values (cons value values))
14194 (org-entry-put pom property
14195 (mapconcat 'identity values " ")))))
14197 (defun org-entry-remove-from-multivalued-property (pom property value)
14198 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
14199 (let* ((old (org-entry-get pom property))
14200 (values (and old (org-split-string old "[ \t]"))))
14201 (setq value (org-entry-protect-space value))
14202 (when (member value values)
14203 (setq values (delete value values))
14204 (org-entry-put pom property
14205 (mapconcat 'identity values " ")))))
14207 (defun org-entry-member-in-multivalued-property (pom property value)
14208 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
14209 (let* ((old (org-entry-get pom property))
14210 (values (and old (org-split-string old "[ \t]"))))
14211 (setq value (org-entry-protect-space value))
14212 (member value values)))
14214 (defun org-entry-get-multivalued-property (pom property)
14215 "Return a list of values in a multivalued property."
14216 (let* ((value (org-entry-get pom property))
14217 (values (and value (org-split-string value "[ \t]"))))
14218 (mapcar 'org-entry-restore-space values)))
14220 (defun org-entry-put-multivalued-property (pom property &rest values)
14221 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
14222 VALUES should be a list of strings. Spaces will be protected."
14223 (org-entry-put pom property
14224 (mapconcat 'org-entry-protect-space values " "))
14225 (let* ((value (org-entry-get pom property))
14226 (values (and value (org-split-string value "[ \t]"))))
14227 (mapcar 'org-entry-restore-space values)))
14229 (defun org-entry-protect-space (s)
14230 "Protect spaces and newline in string S."
14231 (while (string-match " " s)
14232 (setq s (replace-match "%20" t t s)))
14233 (while (string-match "\n" s)
14234 (setq s (replace-match "%0A" t t s)))
14237 (defun org-entry-restore-space (s)
14238 "Restore spaces and newline in string S."
14239 (while (string-match "%20" s)
14240 (setq s (replace-match " " t t s)))
14241 (while (string-match "%0A" s)
14242 (setq s (replace-match "\n" t t s)))
14245 (defvar org-entry-property-inherited-from (make-marker)
14246 "Marker pointing to the entry from where a property was inherited.
14247 Each call to `org-entry-get-with-inheritance' will set this marker to the
14248 location of the entry where the inheritance search matched. If there was
14249 no match, the marker will point nowhere.
14250 Note that also `org-entry-get' calls this function, if the INHERIT flag
14251 is set.")
14253 (defun org-entry-get-with-inheritance (property &optional literal-nil)
14254 "Get entry property, and search higher levels if not present.
14255 The search will stop at the first ancestor which has the property defined.
14256 If the value found is \"nil\", return nil to show that the property
14257 should be considered as undefined (this is the meaning of nil here).
14258 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
14259 (move-marker org-entry-property-inherited-from nil)
14260 (let (tmp)
14261 (unless (org-before-first-heading-p)
14262 (save-excursion
14263 (save-restriction
14264 (widen)
14265 (catch 'ex
14266 (while t
14267 (when (setq tmp (org-entry-get nil property nil 'literal-nil))
14268 (org-back-to-heading t)
14269 (move-marker org-entry-property-inherited-from (point))
14270 (throw 'ex tmp))
14271 (or (org-up-heading-safe) (throw 'ex nil)))))))
14272 (setq tmp (or tmp
14273 (cdr (assoc property org-file-properties))
14274 (cdr (assoc property org-global-properties))
14275 (cdr (assoc property org-global-properties-fixed))))
14276 (if literal-nil tmp (org-not-nil tmp))))
14278 (defvar org-property-changed-functions nil
14279 "Hook called when the value of a property has changed.
14280 Each hook function should accept two arguments, the name of the property
14281 and the new value.")
14283 (defun org-entry-put (pom property value)
14284 "Set PROPERTY to VALUE for entry at point-or-marker POM."
14285 (org-with-point-at pom
14286 (org-back-to-heading t)
14287 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
14288 range)
14289 (cond
14290 ((equal property "TODO")
14291 (when (and (stringp value) (string-match "\\S-" value)
14292 (not (member value org-todo-keywords-1)))
14293 (error "\"%s\" is not a valid TODO state" value))
14294 (if (or (not value)
14295 (not (string-match "\\S-" value)))
14296 (setq value 'none))
14297 (org-todo value)
14298 (org-set-tags nil 'align))
14299 ((equal property "PRIORITY")
14300 (org-priority (if (and value (stringp value) (string-match "\\S-" value))
14301 (string-to-char value) ?\ ))
14302 (org-set-tags nil 'align))
14303 ((equal property "SCHEDULED")
14304 (if (re-search-forward org-scheduled-time-regexp end t)
14305 (cond
14306 ((eq value 'earlier) (org-timestamp-change -1 'day))
14307 ((eq value 'later) (org-timestamp-change 1 'day))
14308 (t (call-interactively 'org-schedule)))
14309 (call-interactively 'org-schedule)))
14310 ((equal property "DEADLINE")
14311 (if (re-search-forward org-deadline-time-regexp end t)
14312 (cond
14313 ((eq value 'earlier) (org-timestamp-change -1 'day))
14314 ((eq value 'later) (org-timestamp-change 1 'day))
14315 (t (call-interactively 'org-deadline)))
14316 (call-interactively 'org-deadline)))
14317 ((member property org-special-properties)
14318 (error "The %s property can not yet be set with `org-entry-put'"
14319 property))
14320 (t ; a non-special property
14321 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
14322 (setq range (org-get-property-block beg end 'force))
14323 (goto-char (car range))
14324 (if (re-search-forward
14325 (org-re-property property) (cdr range) t)
14326 (progn
14327 (delete-region (match-beginning 0) (match-end 0))
14328 (goto-char (match-beginning 0)))
14329 (goto-char (cdr range))
14330 (insert "\n")
14331 (backward-char 1)
14332 (org-indent-line-function))
14333 (insert ":" property ":")
14334 (and value (insert " " value))
14335 (org-indent-line-function)))))
14336 (run-hook-with-args 'org-property-changed-functions property value)))
14338 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
14339 "Get all property keys in the current buffer.
14340 With INCLUDE-SPECIALS, also list the special properties that reflect things
14341 like tags and TODO state.
14342 With INCLUDE-DEFAULTS, also include properties that has special meaning
14343 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING
14344 and others.
14345 With INCLUDE-COLUMNS, also include property names given in COLUMN
14346 formats in the current buffer."
14347 (let (rtn range cfmt s p)
14348 (save-excursion
14349 (save-restriction
14350 (widen)
14351 (goto-char (point-min))
14352 (while (re-search-forward org-property-start-re nil t)
14353 (setq range (org-get-property-block))
14354 (goto-char (car range))
14355 (while (re-search-forward
14356 (org-re "^[ \t]*:\\([-[:alnum:]_]+\\):")
14357 (cdr range) t)
14358 (add-to-list 'rtn (org-match-string-no-properties 1)))
14359 (outline-next-heading))))
14361 (when include-specials
14362 (setq rtn (append org-special-properties rtn)))
14364 (when include-defaults
14365 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties)
14366 (add-to-list 'rtn org-effort-property))
14368 (when include-columns
14369 (save-excursion
14370 (save-restriction
14371 (widen)
14372 (goto-char (point-min))
14373 (while (re-search-forward
14374 "^\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
14375 nil t)
14376 (setq cfmt (match-string 2) s 0)
14377 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
14378 cfmt s)
14379 (setq s (match-end 0)
14380 p (match-string 1 cfmt))
14381 (unless (or (equal p "ITEM")
14382 (member p org-special-properties))
14383 (add-to-list 'rtn (match-string 1 cfmt))))))))
14385 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
14387 (defun org-property-values (key)
14388 "Return a list of all values of property KEY in the current buffer."
14389 (save-excursion
14390 (save-restriction
14391 (widen)
14392 (goto-char (point-min))
14393 (let ((re (org-re-property key))
14394 values)
14395 (while (re-search-forward re nil t)
14396 (add-to-list 'values (org-trim (match-string 1))))
14397 (delete "" values)))))
14399 (defun org-insert-property-drawer ()
14400 "Insert a property drawer into the current entry."
14401 (org-back-to-heading t)
14402 (looking-at org-outline-regexp)
14403 (let ((indent (if org-adapt-indentation
14404 (- (match-end 0) (match-beginning 0))
14406 (beg (point))
14407 (re (concat "^[ \t]*" org-keyword-time-regexp))
14408 end hiddenp)
14409 (outline-next-heading)
14410 (setq end (point))
14411 (goto-char beg)
14412 (while (re-search-forward re end t))
14413 (setq hiddenp (outline-invisible-p))
14414 (end-of-line 1)
14415 (and (equal (char-after) ?\n) (forward-char 1))
14416 (while (looking-at "^[ \t]*\\(:CLOCK:\\|:LOGBOOK:\\|CLOCK:\\|:END:\\)")
14417 (if (member (match-string 1) '("CLOCK:" ":END:"))
14418 ;; just skip this line
14419 (beginning-of-line 2)
14420 ;; Drawer start, find the end
14421 (re-search-forward "^\\*+ \\|^[ \t]*:END:" nil t)
14422 (beginning-of-line 1)))
14423 (org-skip-over-state-notes)
14424 (skip-chars-backward " \t\n\r")
14425 (if (eq (char-before) ?*) (forward-char 1))
14426 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
14427 (beginning-of-line 0)
14428 (org-indent-to-column indent)
14429 (beginning-of-line 2)
14430 (org-indent-to-column indent)
14431 (beginning-of-line 0)
14432 (if hiddenp
14433 (save-excursion
14434 (org-back-to-heading t)
14435 (hide-entry))
14436 (org-flag-drawer t))))
14438 (defun org-insert-drawer (&optional arg drawer)
14439 "Insert a drawer at point.
14441 Optional argument DRAWER, when non-nil, is a string representing
14442 drawer's name. Otherwise, the user is prompted for a name.
14444 If a region is active, insert the drawer around that region
14445 instead.
14447 Point is left between drawer's boundaries."
14448 (interactive "P")
14449 (let* ((logbook (if (stringp org-log-into-drawer) org-log-into-drawer
14450 "LOGBOOK"))
14451 ;; SYSTEM-DRAWERS is a list of drawer names that are used
14452 ;; internally by Org. They are meant to be inserted
14453 ;; automatically.
14454 (system-drawers `("CLOCK" ,logbook "PROPERTIES"))
14455 ;; Remove system drawers from list. Note: For some reason,
14456 ;; `org-completing-read' ignores the predicate while
14457 ;; `completing-read' handles it fine.
14458 (drawer (if arg "PROPERTIES"
14459 (or drawer
14460 (completing-read
14461 "Drawer: " org-drawers
14462 (lambda (d) (not (member d system-drawers))))))))
14463 (cond
14464 ;; With C-u, fall back on `org-insert-property-drawer'
14465 (arg (org-insert-property-drawer))
14466 ;; With an active region, insert a drawer at point.
14467 ((not (org-region-active-p))
14468 (progn
14469 (unless (bolp) (insert "\n"))
14470 (insert (format ":%s:\n\n:END:\n" drawer))
14471 (forward-line -2)))
14472 ;; Otherwise, insert the drawer at point
14474 (let ((rbeg (region-beginning))
14475 (rend (copy-marker (region-end))))
14476 (unwind-protect
14477 (progn
14478 (goto-char rbeg)
14479 (beginning-of-line)
14480 (when (save-excursion
14481 (re-search-forward org-outline-regexp-bol rend t))
14482 (error "Drawers cannot contain headlines"))
14483 ;; Position point at the beginning of the first
14484 ;; non-blank line in region. Insert drawer's opening
14485 ;; there, then indent it.
14486 (org-skip-whitespace)
14487 (beginning-of-line)
14488 (insert ":" drawer ":\n")
14489 (forward-line -1)
14490 (indent-for-tab-command)
14491 ;; Move point to the beginning of the first blank line
14492 ;; after the last non-blank line in region. Insert
14493 ;; drawer's closing, then indent it.
14494 (goto-char rend)
14495 (skip-chars-backward " \r\t\n")
14496 (insert "\n:END:")
14497 (indent-for-tab-command)
14498 (unless (eolp) (insert "\n")))
14499 ;; Clear marker, whatever the outcome of insertion is.
14500 (set-marker rend nil)))))))
14502 (defvar org-property-set-functions-alist nil
14503 "Property set function alist.
14504 Each entry should have the following format:
14506 (PROPERTY . READ-FUNCTION)
14508 The read function will be called with the same argument as
14509 `org-completing-read'.")
14511 (defun org-set-property-function (property)
14512 "Get the function that should be used to set PROPERTY.
14513 This is computed according to `org-property-set-functions-alist'."
14514 (or (cdr (assoc property org-property-set-functions-alist))
14515 'org-completing-read))
14517 (defun org-read-property-value (property)
14518 "Read PROPERTY value from user."
14519 (let* ((completion-ignore-case t)
14520 (allowed (org-property-get-allowed-values nil property 'table))
14521 (cur (org-entry-get nil property))
14522 (prompt (concat property " value"
14523 (if (and cur (string-match "\\S-" cur))
14524 (concat " [" cur "]") "") ": "))
14525 (set-function (org-set-property-function property))
14526 (val (if allowed
14527 (funcall set-function prompt allowed nil
14528 (not (get-text-property 0 'org-unrestricted
14529 (caar allowed))))
14530 (let (org-completion-use-ido org-completion-use-iswitchb)
14531 (funcall set-function prompt
14532 (mapcar 'list (org-property-values property))
14533 nil nil "" nil cur)))))
14534 (if (equal val "")
14536 val)))
14538 (defvar org-last-set-property nil)
14539 (defun org-read-property-name ()
14540 "Read a property name."
14541 (let* ((completion-ignore-case t)
14542 (keys (org-buffer-property-keys nil t t))
14543 (default-prop (or (save-excursion
14544 (save-match-data
14545 (beginning-of-line)
14546 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
14547 (null (string= (match-string 1) "END"))
14548 (match-string 1))))
14549 org-last-set-property))
14550 (property (org-icompleting-read
14551 (concat "Property"
14552 (if default-prop (concat " [" default-prop "]") "")
14553 ": ")
14554 (mapcar 'list keys)
14555 nil nil nil nil
14556 default-prop
14558 (if (member property keys)
14559 property
14560 (or (cdr (assoc (downcase property)
14561 (mapcar (lambda (x) (cons (downcase x) x))
14562 keys)))
14563 property))))
14565 (defun org-set-property (property value)
14566 "In the current entry, set PROPERTY to VALUE.
14567 When called interactively, this will prompt for a property name, offering
14568 completion on existing and default properties. And then it will prompt
14569 for a value, offering completion either on allowed values (via an inherited
14570 xxx_ALL property) or on existing values in other instances of this property
14571 in the current file."
14572 (interactive (list nil nil))
14573 (let* ((property (or property (org-read-property-name)))
14574 (value (or value (org-read-property-value property)))
14575 (fn (assoc property org-properties-postprocess-alist)))
14576 (setq org-last-set-property property)
14577 ;; Possibly postprocess the inserted value:
14578 (when fn (setq value (funcall (cadr fn) value)))
14579 (unless (equal (org-entry-get nil property) value)
14580 (org-entry-put nil property value))))
14582 (defun org-delete-property (property)
14583 "In the current entry, delete PROPERTY."
14584 (interactive
14585 (let* ((completion-ignore-case t)
14586 (prop (org-icompleting-read "Property: "
14587 (org-entry-properties nil 'standard))))
14588 (list prop)))
14589 (message "Property %s %s" property
14590 (if (org-entry-delete nil property)
14591 "deleted"
14592 "was not present in the entry")))
14594 (defun org-delete-property-globally (property)
14595 "Remove PROPERTY globally, from all entries."
14596 (interactive
14597 (let* ((completion-ignore-case t)
14598 (prop (org-icompleting-read
14599 "Globally remove property: "
14600 (mapcar 'list (org-buffer-property-keys)))))
14601 (list prop)))
14602 (save-excursion
14603 (save-restriction
14604 (widen)
14605 (goto-char (point-min))
14606 (let ((cnt 0))
14607 (while (re-search-forward
14608 (org-re-property property)
14609 nil t)
14610 (setq cnt (1+ cnt))
14611 (replace-match ""))
14612 (message "Property \"%s\" removed from %d entries" property cnt)))))
14614 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
14616 (defun org-compute-property-at-point ()
14617 "Compute the property at point.
14618 This looks for an enclosing column format, extracts the operator and
14619 then applies it to the property in the column format's scope."
14620 (interactive)
14621 (unless (org-at-property-p)
14622 (error "Not at a property"))
14623 (let ((prop (org-match-string-no-properties 2)))
14624 (org-columns-get-format-and-top-level)
14625 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
14626 (error "No operator defined for property %s" prop))
14627 (org-columns-compute prop)))
14629 (defvar org-property-allowed-value-functions nil
14630 "Hook for functions supplying allowed values for a specific property.
14631 The functions must take a single argument, the name of the property, and
14632 return a flat list of allowed values. If \":ETC\" is one of
14633 the values, this means that these values are intended as defaults for
14634 completion, but that other values should be allowed too.
14635 The functions must return nil if they are not responsible for this
14636 property.")
14638 (defun org-property-get-allowed-values (pom property &optional table)
14639 "Get allowed values for the property PROPERTY.
14640 When TABLE is non-nil, return an alist that can directly be used for
14641 completion."
14642 (let (vals)
14643 (cond
14644 ((equal property "TODO")
14645 (setq vals (org-with-point-at pom
14646 (append org-todo-keywords-1 '("")))))
14647 ((equal property "PRIORITY")
14648 (let ((n org-lowest-priority))
14649 (while (>= n org-highest-priority)
14650 (push (char-to-string n) vals)
14651 (setq n (1- n)))))
14652 ((member property org-special-properties))
14653 ((setq vals (run-hook-with-args-until-success
14654 'org-property-allowed-value-functions property)))
14656 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
14657 (when (and vals (string-match "\\S-" vals))
14658 (setq vals (car (read-from-string (concat "(" vals ")"))))
14659 (setq vals (mapcar (lambda (x)
14660 (cond ((stringp x) x)
14661 ((numberp x) (number-to-string x))
14662 ((symbolp x) (symbol-name x))
14663 (t "???")))
14664 vals)))))
14665 (when (member ":ETC" vals)
14666 (setq vals (remove ":ETC" vals))
14667 (org-add-props (car vals) '(org-unrestricted t)))
14668 (if table (mapcar 'list vals) vals)))
14670 (defun org-property-previous-allowed-value (&optional previous)
14671 "Switch to the next allowed value for this property."
14672 (interactive)
14673 (org-property-next-allowed-value t))
14675 (defun org-property-next-allowed-value (&optional previous)
14676 "Switch to the next allowed value for this property."
14677 (interactive)
14678 (unless (org-at-property-p)
14679 (error "Not at a property"))
14680 (let* ((key (match-string 2))
14681 (value (match-string 3))
14682 (allowed (or (org-property-get-allowed-values (point) key)
14683 (and (member value '("[ ]" "[-]" "[X]"))
14684 '("[ ]" "[X]"))))
14685 nval)
14686 (unless allowed
14687 (error "Allowed values for this property have not been defined"))
14688 (if previous (setq allowed (reverse allowed)))
14689 (if (member value allowed)
14690 (setq nval (car (cdr (member value allowed)))))
14691 (setq nval (or nval (car allowed)))
14692 (if (equal nval value)
14693 (error "Only one allowed value for this property"))
14694 (org-at-property-p)
14695 (replace-match (concat " :" key ": " nval) t t)
14696 (org-indent-line-function)
14697 (beginning-of-line 1)
14698 (skip-chars-forward " \t")
14699 (run-hook-with-args 'org-property-changed-functions key nval)))
14701 (defun org-find-olp (path &optional this-buffer)
14702 "Return a marker pointing to the entry at outline path OLP.
14703 If anything goes wrong, throw an error.
14704 You can wrap this call to catch the error like this:
14706 (condition-case msg
14707 (org-mobile-locate-entry (match-string 4))
14708 (error (nth 1 msg)))
14710 The return value will then be either a string with the error message,
14711 or a marker if everything is OK.
14713 If THIS-BUFFER is set, the outline path does not contain a file,
14714 only headings."
14715 (let* ((file (if this-buffer buffer-file-name (pop path)))
14716 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
14717 (level 1)
14718 (lmin 1)
14719 (lmax 1)
14720 limit re end found pos heading cnt flevel)
14721 (unless buffer (error "File not found :%s" file))
14722 (with-current-buffer buffer
14723 (save-excursion
14724 (save-restriction
14725 (widen)
14726 (setq limit (point-max))
14727 (goto-char (point-min))
14728 (while (setq heading (pop path))
14729 (setq re (format org-complex-heading-regexp-format
14730 (regexp-quote heading)))
14731 (setq cnt 0 pos (point))
14732 (while (re-search-forward re end t)
14733 (setq level (- (match-end 1) (match-beginning 1)))
14734 (if (and (>= level lmin) (<= level lmax))
14735 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
14736 (when (= cnt 0) (error "Heading not found on level %d: %s"
14737 lmax heading))
14738 (when (> cnt 1) (error "Heading not unique on level %d: %s"
14739 lmax heading))
14740 (goto-char found)
14741 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
14742 (setq end (save-excursion (org-end-of-subtree t t))))
14743 (when (org-at-heading-p)
14744 (move-marker (make-marker) (point))))))))
14746 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
14747 "Find node HEADING in BUFFER.
14748 Return a marker to the heading if it was found, or nil if not.
14749 If POS-ONLY is set, return just the position instead of a marker.
14751 The heading text must match exact, but it may have a TODO keyword,
14752 a priority cookie and tags in the standard locations."
14753 (with-current-buffer (or buffer (current-buffer))
14754 (save-excursion
14755 (save-restriction
14756 (widen)
14757 (goto-char (point-min))
14758 (let (case-fold-search)
14759 (if (re-search-forward
14760 (format org-complex-heading-regexp-format
14761 (regexp-quote heading)) nil t)
14762 (if pos-only
14763 (match-beginning 0)
14764 (move-marker (make-marker) (match-beginning 0)))))))))
14766 (defun org-find-exact-heading-in-directory (heading &optional dir)
14767 "Find Org node headline HEADING in all .org files in directory DIR.
14768 When the target headline is found, return a marker to this location."
14769 (let ((files (directory-files (or dir default-directory)
14770 nil "\\`[^.#].*\\.org\\'"))
14771 file visiting m buffer)
14772 (catch 'found
14773 (while (setq file (pop files))
14774 (message "trying %s" file)
14775 (setq visiting (org-find-base-buffer-visiting file))
14776 (setq buffer (or visiting (find-file-noselect file)))
14777 (setq m (org-find-exact-headline-in-buffer
14778 heading buffer))
14779 (when (and (not m) (not visiting)) (kill-buffer buffer))
14780 (and m (throw 'found m))))))
14782 (defun org-find-entry-with-id (ident)
14783 "Locate the entry that contains the ID property with exact value IDENT.
14784 IDENT can be a string, a symbol or a number, this function will search for
14785 the string representation of it.
14786 Return the position where this entry starts, or nil if there is no such entry."
14787 (interactive "sID: ")
14788 (let ((id (cond
14789 ((stringp ident) ident)
14790 ((symbol-name ident) (symbol-name ident))
14791 ((numberp ident) (number-to-string ident))
14792 (t (error "IDENT %s must be a string, symbol or number" ident))))
14793 (case-fold-search nil))
14794 (save-excursion
14795 (save-restriction
14796 (widen)
14797 (goto-char (point-min))
14798 (when (re-search-forward
14799 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
14800 nil t)
14801 (org-back-to-heading t)
14802 (point))))))
14804 ;;;; Timestamps
14806 (defvar org-last-changed-timestamp nil)
14807 (defvar org-last-inserted-timestamp nil
14808 "The last time stamp inserted with `org-insert-time-stamp'.")
14809 (defvar org-time-was-given) ; dynamically scoped parameter
14810 (defvar org-end-time-was-given) ; dynamically scoped parameter
14811 (defvar org-ts-what) ; dynamically scoped parameter
14813 (defun org-time-stamp (arg &optional inactive)
14814 "Prompt for a date/time and insert a time stamp.
14815 If the user specifies a time like HH:MM, or if this command is called
14816 with a prefix argument, the time stamp will contain date and time.
14817 Otherwise, only the date will be included. All parts of a date not
14818 specified by the user will be filled in from the current date/time.
14819 So if you press just return without typing anything, the time stamp
14820 will represent the current date/time. If there is already a timestamp
14821 at the cursor, it will be modified."
14822 (interactive "P")
14823 (let* ((ts nil)
14824 (default-time
14825 ;; Default time is either today, or, when entering a range,
14826 ;; the range start.
14827 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
14828 (save-excursion
14829 (re-search-backward
14830 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
14831 (- (point) 20) t)))
14832 (apply 'encode-time (org-parse-time-string (match-string 1)))
14833 (current-time)))
14834 (default-input (and ts (org-get-compact-tod ts)))
14835 (repeater (save-excursion
14836 (save-match-data
14837 (beginning-of-line)
14838 (when (re-search-forward
14839 "\\([.+-]+[0-9]+[dwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[dwmy]\\)?\\) ?"
14840 (save-excursion (progn (end-of-line) (point))) t)
14841 (match-string 0)))))
14842 org-time-was-given org-end-time-was-given time)
14843 (cond
14844 ((and (org-at-timestamp-p t)
14845 (memq last-command '(org-time-stamp org-time-stamp-inactive))
14846 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
14847 (insert "--")
14848 (setq time (let ((this-command this-command))
14849 (org-read-date arg 'totime nil nil
14850 default-time default-input inactive)))
14851 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
14852 ((org-at-timestamp-p t)
14853 (setq time (let ((this-command this-command))
14854 (org-read-date arg 'totime nil nil default-time default-input inactive)))
14855 (when (org-at-timestamp-p t) ; just to get the match data
14856 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
14857 (replace-match "")
14858 (setq org-last-changed-timestamp
14859 (org-insert-time-stamp
14860 time (or org-time-was-given arg)
14861 inactive nil nil (list org-end-time-was-given)))
14862 (when repeater (goto-char (1- (point))) (insert " " repeater)
14863 (setq org-last-changed-timestamp
14864 (concat (substring org-last-inserted-timestamp 0 -1)
14865 " " repeater ">"))))
14866 (message "Timestamp updated"))
14868 (setq time (let ((this-command this-command))
14869 (org-read-date arg 'totime nil nil default-time default-input inactive)))
14870 (org-insert-time-stamp time (or org-time-was-given arg) inactive
14871 nil nil (list org-end-time-was-given))))))
14873 ;; FIXME: can we use this for something else, like computing time differences?
14874 (defun org-get-compact-tod (s)
14875 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
14876 (let* ((t1 (match-string 1 s))
14877 (h1 (string-to-number (match-string 2 s)))
14878 (m1 (string-to-number (match-string 3 s)))
14879 (t2 (and (match-end 4) (match-string 5 s)))
14880 (h2 (and t2 (string-to-number (match-string 6 s))))
14881 (m2 (and t2 (string-to-number (match-string 7 s))))
14882 dh dm)
14883 (if (not t2)
14885 (setq dh (- h2 h1) dm (- m2 m1))
14886 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
14887 (concat t1 "+" (number-to-string dh)
14888 (if (/= 0 dm) (concat ":" (number-to-string dm))))))))
14890 (defun org-time-stamp-inactive (&optional arg)
14891 "Insert an inactive time stamp.
14892 An inactive time stamp is enclosed in square brackets instead of angle
14893 brackets. It is inactive in the sense that it does not trigger agenda entries,
14894 does not link to the calendar and cannot be changed with the S-cursor keys.
14895 So these are more for recording a certain time/date."
14896 (interactive "P")
14897 (org-time-stamp arg 'inactive))
14899 (defvar org-date-ovl (make-overlay 1 1))
14900 (overlay-put org-date-ovl 'face 'org-warning)
14901 (org-detach-overlay org-date-ovl)
14903 (defvar org-ans1) ; dynamically scoped parameter
14904 (defvar org-ans2) ; dynamically scoped parameter
14906 (defvar org-plain-time-of-day-regexp) ; defined below
14908 (defvar org-overriding-default-time nil) ; dynamically scoped
14909 (defvar org-read-date-overlay nil)
14910 (defvar org-dcst nil) ; dynamically scoped
14911 (defvar org-read-date-history nil)
14912 (defvar org-read-date-final-answer nil)
14913 (defvar org-read-date-analyze-futurep nil)
14914 (defvar org-read-date-analyze-forced-year nil)
14916 (defun org-read-date (&optional with-time to-time from-string prompt
14917 default-time default-input inactive)
14918 "Read a date, possibly a time, and make things smooth for the user.
14919 The prompt will suggest to enter an ISO date, but you can also enter anything
14920 which will at least partially be understood by `parse-time-string'.
14921 Unrecognized parts of the date will default to the current day, month, year,
14922 hour and minute. If this command is called to replace a timestamp at point,
14923 or to enter the second timestamp of a range, the default time is taken
14924 from the existing stamp. Furthermore, the command prefers the future,
14925 so if you are giving a date where the year is not given, and the day-month
14926 combination is already past in the current year, it will assume you
14927 mean next year. For details, see the manual. A few examples:
14929 3-2-5 --> 2003-02-05
14930 feb 15 --> currentyear-02-15
14931 2/15 --> currentyear-02-15
14932 sep 12 9 --> 2009-09-12
14933 12:45 --> today 12:45
14934 22 sept 0:34 --> currentyear-09-22 0:34
14935 12 --> currentyear-currentmonth-12
14936 Fri --> nearest Friday (today or later)
14937 etc.
14939 Furthermore you can specify a relative date by giving, as the *first* thing
14940 in the input: a plus/minus sign, a number and a letter [dwmy] to indicate
14941 change in days weeks, months, years.
14942 With a single plus or minus, the date is relative to today. With a double
14943 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
14944 +4d --> four days from today
14945 +4 --> same as above
14946 +2w --> two weeks from today
14947 ++5 --> five days from default date
14949 The function understands only English month and weekday abbreviations,
14950 but this can be configured with the variables `parse-time-months' and
14951 `parse-time-weekdays'.
14953 While prompting, a calendar is popped up - you can also select the
14954 date with the mouse (button 1). The calendar shows a period of three
14955 months. To scroll it to other months, use the keys `>' and `<'.
14956 If you don't like the calendar, turn it off with
14957 \(setq org-read-date-popup-calendar nil)
14959 With optional argument TO-TIME, the date will immediately be converted
14960 to an internal time.
14961 With an optional argument WITH-TIME, the prompt will suggest to also
14962 insert a time. Note that when WITH-TIME is not set, you can still
14963 enter a time, and this function will inform the calling routine about
14964 this change. The calling routine may then choose to change the format
14965 used to insert the time stamp into the buffer to include the time.
14966 With optional argument FROM-STRING, read from this string instead from
14967 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
14968 the time/date that is used for everything that is not specified by the
14969 user."
14970 (require 'parse-time)
14971 (let* ((org-time-stamp-rounding-minutes
14972 (if (equal with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
14973 (org-dcst org-display-custom-times)
14974 (ct (org-current-time))
14975 (def (or org-overriding-default-time default-time ct))
14976 (defdecode (decode-time def))
14977 (dummy (progn
14978 (when (< (nth 2 defdecode) org-extend-today-until)
14979 (setcar (nthcdr 2 defdecode) -1)
14980 (setcar (nthcdr 1 defdecode) 59)
14981 (setq def (apply 'encode-time defdecode)
14982 defdecode (decode-time def)))))
14983 (calendar-frame-setup nil)
14984 (calendar-setup nil)
14985 (calendar-move-hook nil)
14986 (calendar-view-diary-initially-flag nil)
14987 (calendar-view-holidays-initially-flag nil)
14988 (timestr (format-time-string
14989 (if with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") def))
14990 (prompt (concat (if prompt (concat prompt " ") "")
14991 (format "Date+time [%s]: " timestr)))
14992 ans (org-ans0 "") org-ans1 org-ans2 final)
14994 (cond
14995 (from-string (setq ans from-string))
14996 (org-read-date-popup-calendar
14997 (save-excursion
14998 (save-window-excursion
14999 (calendar)
15000 (unwind-protect
15001 (progn
15002 (calendar-forward-day (- (time-to-days def)
15003 (calendar-absolute-from-gregorian
15004 (calendar-current-date))))
15005 (org-eval-in-calendar nil t)
15006 (let* ((old-map (current-local-map))
15007 (map (copy-keymap calendar-mode-map))
15008 (minibuffer-local-map (copy-keymap minibuffer-local-map)))
15009 (org-defkey map (kbd "RET") 'org-calendar-select)
15010 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
15011 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
15012 (org-defkey minibuffer-local-map [(meta shift left)]
15013 (lambda () (interactive)
15014 (org-eval-in-calendar '(calendar-backward-month 1))))
15015 (org-defkey minibuffer-local-map [(meta shift right)]
15016 (lambda () (interactive)
15017 (org-eval-in-calendar '(calendar-forward-month 1))))
15018 (org-defkey minibuffer-local-map [(meta shift up)]
15019 (lambda () (interactive)
15020 (org-eval-in-calendar '(calendar-backward-year 1))))
15021 (org-defkey minibuffer-local-map [(meta shift down)]
15022 (lambda () (interactive)
15023 (org-eval-in-calendar '(calendar-forward-year 1))))
15024 (org-defkey minibuffer-local-map [?\e (shift left)]
15025 (lambda () (interactive)
15026 (org-eval-in-calendar '(calendar-backward-month 1))))
15027 (org-defkey minibuffer-local-map [?\e (shift right)]
15028 (lambda () (interactive)
15029 (org-eval-in-calendar '(calendar-forward-month 1))))
15030 (org-defkey minibuffer-local-map [?\e (shift up)]
15031 (lambda () (interactive)
15032 (org-eval-in-calendar '(calendar-backward-year 1))))
15033 (org-defkey minibuffer-local-map [?\e (shift down)]
15034 (lambda () (interactive)
15035 (org-eval-in-calendar '(calendar-forward-year 1))))
15036 (org-defkey minibuffer-local-map [(shift up)]
15037 (lambda () (interactive)
15038 (org-eval-in-calendar '(calendar-backward-week 1))))
15039 (org-defkey minibuffer-local-map [(shift down)]
15040 (lambda () (interactive)
15041 (org-eval-in-calendar '(calendar-forward-week 1))))
15042 (org-defkey minibuffer-local-map [(shift left)]
15043 (lambda () (interactive)
15044 (org-eval-in-calendar '(calendar-backward-day 1))))
15045 (org-defkey minibuffer-local-map [(shift right)]
15046 (lambda () (interactive)
15047 (org-eval-in-calendar '(calendar-forward-day 1))))
15048 (org-defkey minibuffer-local-map ">"
15049 (lambda () (interactive)
15050 (org-eval-in-calendar '(scroll-calendar-left 1))))
15051 (org-defkey minibuffer-local-map "<"
15052 (lambda () (interactive)
15053 (org-eval-in-calendar '(scroll-calendar-right 1))))
15054 (org-defkey minibuffer-local-map "\C-v"
15055 (lambda () (interactive)
15056 (org-eval-in-calendar
15057 '(calendar-scroll-left-three-months 1))))
15058 (org-defkey minibuffer-local-map "\M-v"
15059 (lambda () (interactive)
15060 (org-eval-in-calendar
15061 '(calendar-scroll-right-three-months 1))))
15062 (run-hooks 'org-read-date-minibuffer-setup-hook)
15063 (unwind-protect
15064 (progn
15065 (use-local-map map)
15066 (setq org-read-date-inactive inactive)
15067 (add-hook 'post-command-hook 'org-read-date-display)
15068 (setq org-ans0 (read-string prompt default-input
15069 'org-read-date-history nil))
15070 ;; org-ans0: from prompt
15071 ;; org-ans1: from mouse click
15072 ;; org-ans2: from calendar motion
15073 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
15074 (remove-hook 'post-command-hook 'org-read-date-display)
15075 (use-local-map old-map)
15076 (when org-read-date-overlay
15077 (delete-overlay org-read-date-overlay)
15078 (setq org-read-date-overlay nil)))))
15079 (bury-buffer "*Calendar*")))))
15081 (t ; Naked prompt only
15082 (unwind-protect
15083 (setq ans (read-string prompt default-input
15084 'org-read-date-history timestr))
15085 (when org-read-date-overlay
15086 (delete-overlay org-read-date-overlay)
15087 (setq org-read-date-overlay nil)))))
15089 (setq final (org-read-date-analyze ans def defdecode))
15091 (when org-read-date-analyze-forced-year
15092 (message "Year was forced into %s"
15093 (if org-read-date-force-compatible-dates
15094 "compatible range (1970-2037)"
15095 "range representable on this machine"))
15096 (ding))
15098 ;; One round trip to get rid of 34th of August and stuff like that....
15099 (setq final (decode-time (apply 'encode-time final)))
15101 (setq org-read-date-final-answer ans)
15103 (if to-time
15104 (apply 'encode-time final)
15105 (if (and (boundp 'org-time-was-given) org-time-was-given)
15106 (format "%04d-%02d-%02d %02d:%02d"
15107 (nth 5 final) (nth 4 final) (nth 3 final)
15108 (nth 2 final) (nth 1 final))
15109 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
15111 (defvar def)
15112 (defvar defdecode)
15113 (defvar with-time)
15114 (defvar org-read-date-inactive)
15115 (defun org-read-date-display ()
15116 "Display the current date prompt interpretation in the minibuffer."
15117 (when org-read-date-display-live
15118 (when org-read-date-overlay
15119 (delete-overlay org-read-date-overlay))
15120 (let ((p (point)))
15121 (end-of-line 1)
15122 (while (not (equal (buffer-substring
15123 (max (point-min) (- (point) 4)) (point))
15124 " "))
15125 (insert " "))
15126 (goto-char p))
15127 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
15128 " " (or org-ans1 org-ans2)))
15129 (org-end-time-was-given nil)
15130 (f (org-read-date-analyze ans def defdecode))
15131 (fmts (if org-dcst
15132 org-time-stamp-custom-formats
15133 org-time-stamp-formats))
15134 (fmt (if (or with-time
15135 (and (boundp 'org-time-was-given) org-time-was-given))
15136 (cdr fmts)
15137 (car fmts)))
15138 (txt (format-time-string fmt (apply 'encode-time f)))
15139 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
15140 (txt (concat "=> " txt)))
15141 (when (and org-end-time-was-given
15142 (string-match org-plain-time-of-day-regexp txt))
15143 (setq txt (concat (substring txt 0 (match-end 0)) "-"
15144 org-end-time-was-given
15145 (substring txt (match-end 0)))))
15146 (when org-read-date-analyze-futurep
15147 (setq txt (concat txt " (=>F)")))
15148 (setq org-read-date-overlay
15149 (make-overlay (1- (point-at-eol)) (point-at-eol)))
15150 (org-overlay-display org-read-date-overlay txt 'secondary-selection))))
15152 (defun org-read-date-analyze (ans def defdecode)
15153 "Analyze the combined answer of the date prompt."
15154 ;; FIXME: cleanup and comment
15155 (let ((nowdecode (decode-time (current-time)))
15156 delta deltan deltaw deltadef year month day
15157 hour minute second wday pm h2 m2 tl wday1
15158 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
15159 (setq org-read-date-analyze-futurep nil
15160 org-read-date-analyze-forced-year nil)
15161 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
15162 (setq ans "+0"))
15164 (when (setq delta (org-read-date-get-relative ans (current-time) def))
15165 (setq ans (replace-match "" t t ans)
15166 deltan (car delta)
15167 deltaw (nth 1 delta)
15168 deltadef (nth 2 delta)))
15170 ;; Check if there is an iso week date in there
15171 ;; If yes, store the info and postpone interpreting it until the rest
15172 ;; of the parsing is done
15173 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
15174 (setq iso-year (if (match-end 1)
15175 (org-small-year-to-year
15176 (string-to-number (match-string 1 ans))))
15177 iso-weekday (if (match-end 3)
15178 (string-to-number (match-string 3 ans)))
15179 iso-week (string-to-number (match-string 2 ans)))
15180 (setq ans (replace-match "" t t ans)))
15182 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
15183 (when (string-match
15184 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
15185 (setq year (if (match-end 2)
15186 (string-to-number (match-string 2 ans))
15187 (progn (setq kill-year t)
15188 (string-to-number (format-time-string "%Y"))))
15189 month (string-to-number (match-string 3 ans))
15190 day (string-to-number (match-string 4 ans)))
15191 (if (< year 100) (setq year (+ 2000 year)))
15192 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
15193 t nil ans)))
15195 ;; Help matching dotted european dates
15196 (when (string-match
15197 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\. ?\\([1-9][0-9][0-9][0-9]\\)?" ans)
15198 (setq year (if (match-end 3)
15199 (string-to-number (match-string 3 ans))
15200 (progn (setq kill-year t)
15201 (string-to-number (format-time-string "%Y"))))
15202 day (string-to-number (match-string 1 ans))
15203 month (string-to-number (match-string 2 ans))
15204 ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
15205 t nil ans)))
15207 ;; Help matching american dates, like 5/30 or 5/30/7
15208 (when (string-match
15209 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
15210 (setq year (if (match-end 4)
15211 (string-to-number (match-string 4 ans))
15212 (progn (setq kill-year t)
15213 (string-to-number (format-time-string "%Y"))))
15214 month (string-to-number (match-string 1 ans))
15215 day (string-to-number (match-string 2 ans)))
15216 (if (< year 100) (setq year (+ 2000 year)))
15217 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
15218 t nil ans)))
15219 ;; Help matching am/pm times, because `parse-time-string' does not do that.
15220 ;; If there is a time with am/pm, and *no* time without it, we convert
15221 ;; so that matching will be successful.
15222 (loop for i from 1 to 2 do ; twice, for end time as well
15223 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
15224 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
15225 (setq hour (string-to-number (match-string 1 ans))
15226 minute (if (match-end 3)
15227 (string-to-number (match-string 3 ans))
15229 pm (equal ?p
15230 (string-to-char (downcase (match-string 4 ans)))))
15231 (if (and (= hour 12) (not pm))
15232 (setq hour 0)
15233 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
15234 (setq ans (replace-match (format "%02d:%02d" hour minute)
15235 t t ans))))
15237 ;; Check if a time range is given as a duration
15238 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
15239 (setq hour (string-to-number (match-string 1 ans))
15240 h2 (+ hour (string-to-number (match-string 3 ans)))
15241 minute (string-to-number (match-string 2 ans))
15242 m2 (+ minute (if (match-end 5) (string-to-number
15243 (match-string 5 ans))0)))
15244 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
15245 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
15246 t t ans)))
15248 ;; Check if there is a time range
15249 (when (boundp 'org-end-time-was-given)
15250 (setq org-time-was-given nil)
15251 (when (and (string-match org-plain-time-of-day-regexp ans)
15252 (match-end 8))
15253 (setq org-end-time-was-given (match-string 8 ans))
15254 (setq ans (concat (substring ans 0 (match-beginning 7))
15255 (substring ans (match-end 7))))))
15257 (setq tl (parse-time-string ans)
15258 day (or (nth 3 tl) (nth 3 defdecode))
15259 month (or (nth 4 tl)
15260 (if (and org-read-date-prefer-future
15261 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
15262 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
15263 (nth 4 defdecode)))
15264 year (or (and (not kill-year) (nth 5 tl))
15265 (if (and org-read-date-prefer-future
15266 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
15267 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
15268 (nth 5 defdecode)))
15269 hour (or (nth 2 tl) (nth 2 defdecode))
15270 minute (or (nth 1 tl) (nth 1 defdecode))
15271 second (or (nth 0 tl) 0)
15272 wday (nth 6 tl))
15274 (when (and (eq org-read-date-prefer-future 'time)
15275 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
15276 (equal day (nth 3 nowdecode))
15277 (equal month (nth 4 nowdecode))
15278 (equal year (nth 5 nowdecode))
15279 (nth 2 tl)
15280 (or (< (nth 2 tl) (nth 2 nowdecode))
15281 (and (= (nth 2 tl) (nth 2 nowdecode))
15282 (nth 1 tl)
15283 (< (nth 1 tl) (nth 1 nowdecode)))))
15284 (setq day (1+ day)
15285 futurep t))
15287 ;; Special date definitions below
15288 (cond
15289 (iso-week
15290 ;; There was an iso week
15291 (require 'cal-iso)
15292 (setq futurep nil)
15293 (setq year (or iso-year year)
15294 day (or iso-weekday wday 1)
15295 wday nil ; to make sure that the trigger below does not match
15296 iso-date (calendar-gregorian-from-absolute
15297 (calendar-absolute-from-iso
15298 (list iso-week day year))))
15299 ; FIXME: Should we also push ISO weeks into the future?
15300 ; (when (and org-read-date-prefer-future
15301 ; (not iso-year)
15302 ; (< (calendar-absolute-from-gregorian iso-date)
15303 ; (time-to-days (current-time))))
15304 ; (setq year (1+ year)
15305 ; iso-date (calendar-gregorian-from-absolute
15306 ; (calendar-absolute-from-iso
15307 ; (list iso-week day year)))))
15308 (setq month (car iso-date)
15309 year (nth 2 iso-date)
15310 day (nth 1 iso-date)))
15311 (deltan
15312 (setq futurep nil)
15313 (unless deltadef
15314 (let ((now (decode-time (current-time))))
15315 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
15316 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
15317 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
15318 ((equal deltaw "m") (setq month (+ month deltan)))
15319 ((equal deltaw "y") (setq year (+ year deltan)))))
15320 ((and wday (not (nth 3 tl)))
15321 (setq futurep nil)
15322 ;; Weekday was given, but no day, so pick that day in the week
15323 ;; on or after the derived date.
15324 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
15325 (unless (equal wday wday1)
15326 (setq day (+ day (% (- wday wday1 -7) 7))))))
15327 (if (and (boundp 'org-time-was-given)
15328 (nth 2 tl))
15329 (setq org-time-was-given t))
15330 (if (< year 100) (setq year (+ 2000 year)))
15331 ;; Check of the date is representable
15332 (if org-read-date-force-compatible-dates
15333 (progn
15334 (if (< year 1970)
15335 (setq year 1970 org-read-date-analyze-forced-year t))
15336 (if (> year 2037)
15337 (setq year 2037 org-read-date-analyze-forced-year t)))
15338 (condition-case nil
15339 (ignore (encode-time second minute hour day month year))
15340 (error
15341 (setq year (nth 5 defdecode))
15342 (setq org-read-date-analyze-forced-year t))))
15343 (setq org-read-date-analyze-futurep futurep)
15344 (list second minute hour day month year)))
15346 (defvar parse-time-weekdays)
15348 (defun org-read-date-get-relative (s today default)
15349 "Check string S for special relative date string.
15350 TODAY and DEFAULT are internal times, for today and for a default.
15351 Return shift list (N what def-flag)
15352 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
15353 N is the number of WHATs to shift.
15354 DEF-FLAG is t when a double ++ or -- indicates shift relative to
15355 the DEFAULT date rather than TODAY."
15356 (require 'parse-time)
15357 (when (and
15358 (string-match
15359 (concat
15360 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
15361 "\\([0-9]+\\)?"
15362 "\\([dwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
15363 "\\([ \t]\\|$\\)") s)
15364 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
15365 (let* ((dir (if (> (match-end 1) (match-beginning 1))
15366 (string-to-char (substring (match-string 1 s) -1))
15367 ?+))
15368 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
15369 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
15370 (what (if (match-end 3) (match-string 3 s) "d"))
15371 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
15372 (date (if rel default today))
15373 (wday (nth 6 (decode-time date)))
15374 delta)
15375 (if wday1
15376 (progn
15377 (setq delta (mod (+ 7 (- wday1 wday)) 7))
15378 (if (= dir ?-) (setq delta (- delta 7)))
15379 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
15380 (list delta "d" rel))
15381 (list (* n (if (= dir ?-) -1 1)) what rel)))))
15383 (defun org-order-calendar-date-args (arg1 arg2 arg3)
15384 "Turn a user-specified date into the internal representation.
15385 The internal representation needed by the calendar is (month day year).
15386 This is a wrapper to handle the brain-dead convention in calendar that
15387 user function argument order change dependent on argument order."
15388 (if (boundp 'calendar-date-style)
15389 (cond
15390 ((eq calendar-date-style 'american)
15391 (list arg1 arg2 arg3))
15392 ((eq calendar-date-style 'european)
15393 (list arg2 arg1 arg3))
15394 ((eq calendar-date-style 'iso)
15395 (list arg2 arg3 arg1)))
15396 (with-no-warnings ;; european-calendar-style is obsolete as of version 23.1
15397 (if (org-bound-and-true-p european-calendar-style)
15398 (list arg2 arg1 arg3)
15399 (list arg1 arg2 arg3)))))
15401 (defun org-eval-in-calendar (form &optional keepdate)
15402 "Eval FORM in the calendar window and return to current window.
15403 Also, store the cursor date in variable org-ans2."
15404 (let ((sf (selected-frame))
15405 (sw (selected-window)))
15406 (select-window (get-buffer-window "*Calendar*" t))
15407 (eval form)
15408 (when (and (not keepdate) (calendar-cursor-to-date))
15409 (let* ((date (calendar-cursor-to-date))
15410 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
15411 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
15412 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
15413 (select-window sw)
15414 (org-select-frame-set-input-focus sf)))
15416 (defun org-calendar-select ()
15417 "Return to `org-read-date' with the date currently selected.
15418 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
15419 (interactive)
15420 (when (calendar-cursor-to-date)
15421 (let* ((date (calendar-cursor-to-date))
15422 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
15423 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
15424 (if (active-minibuffer-window) (exit-minibuffer))))
15426 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
15427 "Insert a date stamp for the date given by the internal TIME.
15428 WITH-HM means use the stamp format that includes the time of the day.
15429 INACTIVE means use square brackets instead of angular ones, so that the
15430 stamp will not contribute to the agenda.
15431 PRE and POST are optional strings to be inserted before and after the
15432 stamp.
15433 The command returns the inserted time stamp."
15434 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
15435 stamp)
15436 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
15437 (insert-before-markers (or pre ""))
15438 (when (listp extra)
15439 (setq extra (car extra))
15440 (if (and (stringp extra)
15441 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
15442 (setq extra (format "-%02d:%02d"
15443 (string-to-number (match-string 1 extra))
15444 (string-to-number (match-string 2 extra))))
15445 (setq extra nil)))
15446 (when extra
15447 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
15448 (insert-before-markers (setq stamp (format-time-string fmt time)))
15449 (insert-before-markers (or post ""))
15450 (setq org-last-inserted-timestamp stamp)))
15452 (defun org-toggle-time-stamp-overlays ()
15453 "Toggle the use of custom time stamp formats."
15454 (interactive)
15455 (setq org-display-custom-times (not org-display-custom-times))
15456 (unless org-display-custom-times
15457 (let ((p (point-min)) (bmp (buffer-modified-p)))
15458 (while (setq p (next-single-property-change p 'display))
15459 (if (and (get-text-property p 'display)
15460 (eq (get-text-property p 'face) 'org-date))
15461 (remove-text-properties
15462 p (setq p (next-single-property-change p 'display))
15463 '(display t))))
15464 (set-buffer-modified-p bmp)))
15465 (if (featurep 'xemacs)
15466 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
15467 (org-restart-font-lock)
15468 (setq org-table-may-need-update t)
15469 (if org-display-custom-times
15470 (message "Time stamps are overlaid with custom format")
15471 (message "Time stamp overlays removed")))
15473 (defun org-display-custom-time (beg end)
15474 "Overlay modified time stamp format over timestamp between BEG and END."
15475 (let* ((ts (buffer-substring beg end))
15476 t1 w1 with-hm tf time str w2 (off 0))
15477 (save-match-data
15478 (setq t1 (org-parse-time-string ts t))
15479 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)?\\'" ts)
15480 (setq off (- (match-end 0) (match-beginning 0)))))
15481 (setq end (- end off))
15482 (setq w1 (- end beg)
15483 with-hm (and (nth 1 t1) (nth 2 t1))
15484 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
15485 time (org-fix-decoded-time t1)
15486 str (org-add-props
15487 (format-time-string
15488 (substring tf 1 -1) (apply 'encode-time time))
15489 nil 'mouse-face 'highlight)
15490 w2 (length str))
15491 (if (not (= w2 w1))
15492 (add-text-properties (1+ beg) (+ 2 beg)
15493 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
15494 (if (featurep 'xemacs)
15495 (progn
15496 (put-text-property beg end 'invisible t)
15497 (put-text-property beg end 'end-glyph (make-glyph str)))
15498 (put-text-property beg end 'display str))))
15500 (defun org-translate-time (string)
15501 "Translate all timestamps in STRING to custom format.
15502 But do this only if the variable `org-display-custom-times' is set."
15503 (when org-display-custom-times
15504 (save-match-data
15505 (let* ((start 0)
15506 (re org-ts-regexp-both)
15507 t1 with-hm inactive tf time str beg end)
15508 (while (setq start (string-match re string start))
15509 (setq beg (match-beginning 0)
15510 end (match-end 0)
15511 t1 (save-match-data
15512 (org-parse-time-string (substring string beg end) t))
15513 with-hm (and (nth 1 t1) (nth 2 t1))
15514 inactive (equal (substring string beg (1+ beg)) "[")
15515 tf (funcall (if with-hm 'cdr 'car)
15516 org-time-stamp-custom-formats)
15517 time (org-fix-decoded-time t1)
15518 str (format-time-string
15519 (concat
15520 (if inactive "[" "<") (substring tf 1 -1)
15521 (if inactive "]" ">"))
15522 (apply 'encode-time time))
15523 string (replace-match str t t string)
15524 start (+ start (length str)))))))
15525 string)
15527 (defun org-fix-decoded-time (time)
15528 "Set 0 instead of nil for the first 6 elements of time.
15529 Don't touch the rest."
15530 (let ((n 0))
15531 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
15533 (defun org-days-to-time (timestamp-string)
15534 "Difference between TIMESTAMP-STRING and now in days."
15535 (- (time-to-days (org-time-string-to-time timestamp-string))
15536 (time-to-days (current-time))))
15538 (defun org-deadline-close (timestamp-string &optional ndays)
15539 "Is the time in TIMESTAMP-STRING close to the current date?"
15540 (setq ndays (or ndays (org-get-wdays timestamp-string)))
15541 (and (< (org-days-to-time timestamp-string) ndays)
15542 (not (org-entry-is-done-p))))
15544 (defun org-get-wdays (ts)
15545 "Get the deadline lead time appropriate for timestring TS."
15546 (cond
15547 ((<= org-deadline-warning-days 0)
15548 ;; 0 or negative, enforce this value no matter what
15549 (- org-deadline-warning-days))
15550 ((string-match "-\\([0-9]+\\)\\([dwmy]\\)\\(\\'\\|>\\| \\)" ts)
15551 ;; lead time is specified.
15552 (floor (* (string-to-number (match-string 1 ts))
15553 (cdr (assoc (match-string 2 ts)
15554 '(("d" . 1) ("w" . 7)
15555 ("m" . 30.4) ("y" . 365.25)))))))
15556 ;; go for the default.
15557 (t org-deadline-warning-days)))
15559 (defun org-calendar-select-mouse (ev)
15560 "Return to `org-read-date' with the date currently selected.
15561 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
15562 (interactive "e")
15563 (mouse-set-point ev)
15564 (when (calendar-cursor-to-date)
15565 (let* ((date (calendar-cursor-to-date))
15566 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
15567 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
15568 (if (active-minibuffer-window) (exit-minibuffer))))
15570 (defun org-check-deadlines (ndays)
15571 "Check if there are any deadlines due or past due.
15572 A deadline is considered due if it happens within `org-deadline-warning-days'
15573 days from today's date. If the deadline appears in an entry marked DONE,
15574 it is not shown. The prefix arg NDAYS can be used to test that many
15575 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
15576 (interactive "P")
15577 (let* ((org-warn-days
15578 (cond
15579 ((equal ndays '(4)) 100000)
15580 (ndays (prefix-numeric-value ndays))
15581 (t (abs org-deadline-warning-days))))
15582 (case-fold-search nil)
15583 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
15584 (callback
15585 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
15587 (message "%d deadlines past-due or due within %d days"
15588 (org-occur regexp nil callback)
15589 org-warn-days)))
15591 (defun org-check-before-date (date)
15592 "Check if there are deadlines or scheduled entries before DATE."
15593 (interactive (list (org-read-date)))
15594 (let ((case-fold-search nil)
15595 (regexp (concat "\\<\\(" org-deadline-string
15596 "\\|" org-scheduled-string
15597 "\\) *<\\([^>]+\\)>"))
15598 (callback
15599 (lambda () (time-less-p
15600 (org-time-string-to-time (match-string 2))
15601 (org-time-string-to-time date)))))
15602 (message "%d entries before %s"
15603 (org-occur regexp nil callback) date)))
15605 (defun org-check-after-date (date)
15606 "Check if there are deadlines or scheduled entries after DATE."
15607 (interactive (list (org-read-date)))
15608 (let ((case-fold-search nil)
15609 (regexp (concat "\\<\\(" org-deadline-string
15610 "\\|" org-scheduled-string
15611 "\\) *<\\([^>]+\\)>"))
15612 (callback
15613 (lambda () (not
15614 (time-less-p
15615 (org-time-string-to-time (match-string 2))
15616 (org-time-string-to-time date))))))
15617 (message "%d entries after %s"
15618 (org-occur regexp nil callback) date)))
15620 (defun org-check-dates-range (start-date end-date)
15621 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
15622 (interactive (list (org-read-date nil nil nil "Range starts")
15623 (org-read-date nil nil nil "Range end")))
15624 (let ((case-fold-search nil)
15625 (regexp (concat "\\<\\(" org-deadline-string
15626 "\\|" org-scheduled-string
15627 "\\) *<\\([^>]+\\)>"))
15628 (callback
15629 (lambda ()
15630 (let ((match (match-string 2)))
15631 (and
15632 (not (time-less-p
15633 (org-time-string-to-time match)
15634 (org-time-string-to-time start-date)))
15635 (time-less-p
15636 (org-time-string-to-time match)
15637 (org-time-string-to-time end-date)))))))
15638 (message "%d entries between %s and %s"
15639 (org-occur regexp nil callback) start-date end-date)))
15641 (defun org-evaluate-time-range (&optional to-buffer)
15642 "Evaluate a time range by computing the difference between start and end.
15643 Normally the result is just printed in the echo area, but with prefix arg
15644 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
15645 If the time range is actually in a table, the result is inserted into the
15646 next column.
15647 For time difference computation, a year is assumed to be exactly 365
15648 days in order to avoid rounding problems."
15649 (interactive "P")
15651 (org-clock-update-time-maybe)
15652 (save-excursion
15653 (unless (org-at-date-range-p t)
15654 (goto-char (point-at-bol))
15655 (re-search-forward org-tr-regexp-both (point-at-eol) t))
15656 (if (not (org-at-date-range-p t))
15657 (error "Not at a time-stamp range, and none found in current line")))
15658 (let* ((ts1 (match-string 1))
15659 (ts2 (match-string 2))
15660 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
15661 (match-end (match-end 0))
15662 (time1 (org-time-string-to-time ts1))
15663 (time2 (org-time-string-to-time ts2))
15664 (t1 (org-float-time time1))
15665 (t2 (org-float-time time2))
15666 (diff (abs (- t2 t1)))
15667 (negative (< (- t2 t1) 0))
15668 ;; (ys (floor (* 365 24 60 60)))
15669 (ds (* 24 60 60))
15670 (hs (* 60 60))
15671 (fy "%dy %dd %02d:%02d")
15672 (fy1 "%dy %dd")
15673 (fd "%dd %02d:%02d")
15674 (fd1 "%dd")
15675 (fh "%02d:%02d")
15676 y d h m align)
15677 (if havetime
15678 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
15680 d (floor (/ diff ds)) diff (mod diff ds)
15681 h (floor (/ diff hs)) diff (mod diff hs)
15682 m (floor (/ diff 60)))
15683 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
15685 d (floor (+ (/ diff ds) 0.5))
15686 h 0 m 0))
15687 (if (not to-buffer)
15688 (message "%s" (org-make-tdiff-string y d h m))
15689 (if (org-at-table-p)
15690 (progn
15691 (goto-char match-end)
15692 (setq align t)
15693 (and (looking-at " *|") (goto-char (match-end 0))))
15694 (goto-char match-end))
15695 (if (looking-at
15696 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
15697 (replace-match ""))
15698 (if negative (insert " -"))
15699 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
15700 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
15701 (insert " " (format fh h m))))
15702 (if align (org-table-align))
15703 (message "Time difference inserted")))))
15705 (defun org-make-tdiff-string (y d h m)
15706 (let ((fmt "")
15707 (l nil))
15708 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
15709 l (push y l)))
15710 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
15711 l (push d l)))
15712 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
15713 l (push h l)))
15714 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
15715 l (push m l)))
15716 (apply 'format fmt (nreverse l))))
15718 (defun org-time-string-to-time (s &optional buffer pos)
15719 (condition-case errdata
15720 (apply 'encode-time (org-parse-time-string s))
15721 (error (error "Bad timestamp `%s'%s\nError was: %s"
15722 s (if (not (and buffer pos))
15724 (format " at %d in buffer `%s'" pos buffer))
15725 (cdr errdata)))))
15727 (defun org-time-string-to-seconds (s)
15728 (org-float-time (org-time-string-to-time s)))
15730 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
15731 "Convert a time stamp to an absolute day number.
15732 If there is a specifier for a cyclic time stamp, get the closest date to
15733 DAYNR.
15734 PREFER and SHOW-ALL are passed through to `org-closest-date'.
15735 The variable date is bound by the calendar when this is called."
15736 (cond
15737 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
15738 (if (org-diary-sexp-entry (match-string 1 s) "" date)
15739 daynr
15740 (+ daynr 1000)))
15741 ((and daynr (string-match "\\+[0-9]+[dwmy]" s))
15742 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
15743 (time-to-days (current-time))) (match-string 0 s)
15744 prefer show-all))
15745 (t (time-to-days
15746 (condition-case errdata
15747 (apply 'encode-time (org-parse-time-string s))
15748 (error (error "Bad timestamp `%s'%s\nError was: %s"
15749 s (if (not (and buffer pos))
15751 (format " at %d in buffer `%s'" pos buffer))
15752 (cdr errdata))))))))
15754 (defun org-days-to-iso-week (days)
15755 "Return the iso week number."
15756 (require 'cal-iso)
15757 (car (calendar-iso-from-absolute days)))
15759 (defun org-small-year-to-year (year)
15760 "Convert 2-digit years into 4-digit years.
15761 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2007.
15762 The year 2000 cannot be abbreviated. Any year larger than 99
15763 is returned unchanged."
15764 (if (< year 38)
15765 (setq year (+ 2000 year))
15766 (if (< year 100)
15767 (setq year (+ 1900 year))))
15768 year)
15770 (defun org-time-from-absolute (d)
15771 "Return the time corresponding to date D.
15772 D may be an absolute day number, or a calendar-type list (month day year)."
15773 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
15774 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
15776 (defun org-calendar-holiday ()
15777 "List of holidays, for Diary display in Org-mode."
15778 (require 'holidays)
15779 (let ((hl (funcall
15780 (if (fboundp 'calendar-check-holidays)
15781 'calendar-check-holidays 'check-calendar-holidays) date)))
15782 (if hl (mapconcat 'identity hl "; "))))
15784 (defun org-diary-sexp-entry (sexp entry date)
15785 "Process a SEXP diary ENTRY for DATE."
15786 (require 'diary-lib)
15787 (let ((result (if calendar-debug-sexp
15788 (let ((stack-trace-on-error t))
15789 (eval (car (read-from-string sexp))))
15790 (condition-case nil
15791 (eval (car (read-from-string sexp)))
15792 (error
15793 (beep)
15794 (message "Bad sexp at line %d in %s: %s"
15795 (org-current-line)
15796 (buffer-file-name) sexp)
15797 (sleep-for 2))))))
15798 (cond ((stringp result) (split-string result "; "))
15799 ((and (consp result)
15800 (not (consp (cdr result)))
15801 (stringp (cdr result))) (cdr result))
15802 ((and (consp result)
15803 (stringp (car result))) result)
15804 (result entry)
15805 (t nil))))
15807 (defun org-diary-to-ical-string (frombuf)
15808 "Get iCalendar entries from diary entries in buffer FROMBUF.
15809 This uses the icalendar.el library."
15810 (let* ((tmpdir (if (featurep 'xemacs)
15811 (temp-directory)
15812 temporary-file-directory))
15813 (tmpfile (make-temp-name
15814 (expand-file-name "orgics" tmpdir)))
15815 buf rtn b e)
15816 (with-current-buffer frombuf
15817 (icalendar-export-region (point-min) (point-max) tmpfile)
15818 (setq buf (find-buffer-visiting tmpfile))
15819 (set-buffer buf)
15820 (goto-char (point-min))
15821 (if (re-search-forward "^BEGIN:VEVENT" nil t)
15822 (setq b (match-beginning 0)))
15823 (goto-char (point-max))
15824 (if (re-search-backward "^END:VEVENT" nil t)
15825 (setq e (match-end 0)))
15826 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
15827 (kill-buffer buf)
15828 (delete-file tmpfile)
15829 rtn))
15831 (defun org-closest-date (start current change prefer show-all)
15832 "Find the date closest to CURRENT that is consistent with START and CHANGE.
15833 When PREFER is `past', return a date that is either CURRENT or past.
15834 When PREFER is `future', return a date that is either CURRENT or future.
15835 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
15836 ;; Make the proper lists from the dates
15837 (catch 'exit
15838 (let ((a1 '(("d" . day) ("w" . week) ("m" . month) ("y" . year)))
15839 dn dw sday cday n1 n2 n0
15840 d m y y1 y2 date1 date2 nmonths nm ny m2)
15842 (setq start (org-date-to-gregorian start)
15843 current (org-date-to-gregorian
15844 (if show-all
15845 current
15846 (time-to-days (current-time))))
15847 sday (calendar-absolute-from-gregorian start)
15848 cday (calendar-absolute-from-gregorian current))
15850 (if (<= cday sday) (throw 'exit sday))
15852 (if (string-match "\\(\\+[0-9]+\\)\\([dwmy]\\)" change)
15853 (setq dn (string-to-number (match-string 1 change))
15854 dw (cdr (assoc (match-string 2 change) a1)))
15855 (error "Invalid change specifier: %s" change))
15856 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
15857 (cond
15858 ((eq dw 'day)
15859 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
15860 n2 (+ n1 dn)))
15861 ((eq dw 'year)
15862 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
15863 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
15864 (setq date1 (list m d y1)
15865 n1 (calendar-absolute-from-gregorian date1)
15866 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
15867 n2 (calendar-absolute-from-gregorian date2)))
15868 ((eq dw 'month)
15869 ;; approx number of month between the two dates
15870 (setq nmonths (floor (/ (- cday sday) 30.436875)))
15871 ;; How often does dn fit in there?
15872 (setq d (nth 1 start) m (car start) y (nth 2 start)
15873 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
15874 m (+ m nm)
15875 ny (floor (/ m 12))
15876 y (+ y ny)
15877 m (- m (* ny 12)))
15878 (while (> m 12) (setq m (- m 12) y (1+ y)))
15879 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
15880 (setq m2 (+ m dn) y2 y)
15881 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
15882 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
15883 (while (<= n2 cday)
15884 (setq n1 n2 m m2 y y2)
15885 (setq m2 (+ m dn) y2 y)
15886 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
15887 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
15888 ;; Make sure n1 is the earlier date
15889 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
15890 (if show-all
15891 (cond
15892 ((eq prefer 'past) (if (= cday n2) n2 n1))
15893 ((eq prefer 'future) (if (= cday n1) n1 n2))
15894 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
15895 (cond
15896 ((eq prefer 'past) (if (= cday n2) n2 n1))
15897 ((eq prefer 'future) (if (= cday n1) n1 n2))
15898 (t (if (= cday n1) n1 n2)))))))
15900 (defun org-date-to-gregorian (date)
15901 "Turn any specification of DATE into a Gregorian date for the calendar."
15902 (cond ((integerp date) (calendar-gregorian-from-absolute date))
15903 ((and (listp date) (= (length date) 3)) date)
15904 ((stringp date)
15905 (setq date (org-parse-time-string date))
15906 (list (nth 4 date) (nth 3 date) (nth 5 date)))
15907 ((listp date)
15908 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
15910 (defun org-parse-time-string (s &optional nodefault)
15911 "Parse the standard Org-mode time string.
15912 This should be a lot faster than the normal `parse-time-string'.
15913 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
15914 hour and minute fields will be nil if not given."
15915 (if (string-match org-ts-regexp0 s)
15916 (list 0
15917 (if (or (match-beginning 8) (not nodefault))
15918 (string-to-number (or (match-string 8 s) "0")))
15919 (if (or (match-beginning 7) (not nodefault))
15920 (string-to-number (or (match-string 7 s) "0")))
15921 (string-to-number (match-string 4 s))
15922 (string-to-number (match-string 3 s))
15923 (string-to-number (match-string 2 s))
15924 nil nil nil)
15925 (error "Not a standard Org-mode time string: %s" s)))
15927 (defun org-timestamp-up (&optional arg)
15928 "Increase the date item at the cursor by one.
15929 If the cursor is on the year, change the year. If it is on the month,
15930 the day or the time, change that.
15931 With prefix ARG, change by that many units."
15932 (interactive "p")
15933 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
15935 (defun org-timestamp-down (&optional arg)
15936 "Decrease the date item at the cursor by one.
15937 If the cursor is on the year, change the year. If it is on the month,
15938 the day or the time, change that.
15939 With prefix ARG, change by that many units."
15940 (interactive "p")
15941 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
15943 (defun org-timestamp-up-day (&optional arg)
15944 "Increase the date in the time stamp by one day.
15945 With prefix ARG, change that many days."
15946 (interactive "p")
15947 (if (and (not (org-at-timestamp-p t))
15948 (org-at-heading-p))
15949 (org-todo 'up)
15950 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
15952 (defun org-timestamp-down-day (&optional arg)
15953 "Decrease the date in the time stamp by one day.
15954 With prefix ARG, change that many days."
15955 (interactive "p")
15956 (if (and (not (org-at-timestamp-p t))
15957 (org-at-heading-p))
15958 (org-todo 'down)
15959 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
15961 (defun org-at-timestamp-p (&optional inactive-ok)
15962 "Determine if the cursor is in or at a timestamp."
15963 (interactive)
15964 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
15965 (pos (point))
15966 (ans (or (looking-at tsr)
15967 (save-excursion
15968 (skip-chars-backward "^[<\n\r\t")
15969 (if (> (point) (point-min)) (backward-char 1))
15970 (and (looking-at tsr)
15971 (> (- (match-end 0) pos) -1))))))
15972 (and ans
15973 (boundp 'org-ts-what)
15974 (setq org-ts-what
15975 (cond
15976 ((= pos (match-beginning 0)) 'bracket)
15977 ;; Point is considered to be "on the bracket" whether
15978 ;; it's really on it or right after it.
15979 ((or (= pos (1- (match-end 0)))
15980 (= pos (match-end 0))) 'bracket)
15981 ((org-pos-in-match-range pos 2) 'year)
15982 ((org-pos-in-match-range pos 3) 'month)
15983 ((org-pos-in-match-range pos 7) 'hour)
15984 ((org-pos-in-match-range pos 8) 'minute)
15985 ((or (org-pos-in-match-range pos 4)
15986 (org-pos-in-match-range pos 5)) 'day)
15987 ((and (> pos (or (match-end 8) (match-end 5)))
15988 (< pos (match-end 0)))
15989 (- pos (or (match-end 8) (match-end 5))))
15990 (t 'day))))
15991 ans))
15993 (defun org-toggle-timestamp-type ()
15994 "Toggle the type (<active> or [inactive]) of a time stamp."
15995 (interactive)
15996 (when (org-at-timestamp-p t)
15997 (let ((beg (match-beginning 0)) (end (match-end 0))
15998 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
15999 (save-excursion
16000 (goto-char beg)
16001 (while (re-search-forward "[][<>]" end t)
16002 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
16003 t t)))
16004 (message "Timestamp is now %sactive"
16005 (if (equal (char-after beg) ?<) "" "in")))))
16007 (defun org-timestamp-change (n &optional what updown)
16008 "Change the date in the time stamp at point.
16009 The date will be changed by N times WHAT. WHAT can be `day', `month',
16010 `year', `minute', `second'. If WHAT is not given, the cursor position
16011 in the timestamp determines what will be changed."
16012 (let ((origin (point)) origin-cat
16013 with-hm inactive
16014 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
16015 org-ts-what
16016 extra rem
16017 ts time time0)
16018 (if (not (org-at-timestamp-p t))
16019 (error "Not at a timestamp"))
16020 (if (and (not what) (eq org-ts-what 'bracket))
16021 (org-toggle-timestamp-type)
16022 ;; Point isn't on brackets. Remember the part of the time-stamp
16023 ;; the point was in. Indeed, size of time-stamps may change,
16024 ;; but point must be kept in the same category nonetheless.
16025 (setq origin-cat org-ts-what)
16026 (if (and (not what) (not (eq org-ts-what 'day))
16027 org-display-custom-times
16028 (get-text-property (point) 'display)
16029 (not (get-text-property (1- (point)) 'display)))
16030 (setq org-ts-what 'day))
16031 (setq org-ts-what (or what org-ts-what)
16032 inactive (= (char-after (match-beginning 0)) ?\[)
16033 ts (match-string 0))
16034 (replace-match "")
16035 (if (string-match
16036 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?[-+][0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)*\\)[]>]"
16038 (setq extra (match-string 1 ts)))
16039 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
16040 (setq with-hm t))
16041 (setq time0 (org-parse-time-string ts))
16042 (when (and updown
16043 (eq org-ts-what 'minute)
16044 (not current-prefix-arg))
16045 ;; This looks like s-up and s-down. Change by one rounding step.
16046 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
16047 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
16048 (setcar (cdr time0) (+ (nth 1 time0)
16049 (if (> n 0) (- rem) (- dm rem))))))
16050 (setq time
16051 (encode-time (or (car time0) 0)
16052 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
16053 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
16054 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
16055 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
16056 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
16057 (nthcdr 6 time0)))
16058 (when (and (member org-ts-what '(hour minute))
16059 extra
16060 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
16061 (setq extra (org-modify-ts-extra
16062 extra
16063 (if (eq org-ts-what 'hour) 2 5)
16064 n dm)))
16065 (when (integerp org-ts-what)
16066 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
16067 (if (eq what 'calendar)
16068 (let ((cal-date (org-get-date-from-calendar)))
16069 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
16070 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
16071 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
16072 (setcar time0 (or (car time0) 0))
16073 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
16074 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
16075 (setq time (apply 'encode-time time0))))
16076 ;; Insert the new time-stamp, and ensure point stays in the same
16077 ;; category as before (i.e. not after the last position in that
16078 ;; category).
16079 (let ((pos (point)))
16080 ;; Stay before inserted string. `save-excursion' is of no use.
16081 (setq org-last-changed-timestamp
16082 (org-insert-time-stamp time with-hm inactive nil nil extra))
16083 (goto-char pos))
16084 (save-match-data
16085 (looking-at org-ts-regexp3)
16086 (goto-char (cond
16087 ;; `day' category ends before `hour' if any, or at
16088 ;; the end of the day name.
16089 ((eq origin-cat 'day)
16090 (min (or (match-beginning 7) (1- (match-end 5))) origin))
16091 ((eq origin-cat 'hour) (min (match-end 7) origin))
16092 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
16093 ((integerp origin-cat) (min (1- (match-end 0)) origin))
16094 ;; `year' and `month' have both fixed size: point
16095 ;; couldn't have moved into another part.
16096 (t origin))))
16097 ;; Update clock if on a CLOCK line.
16098 (org-clock-update-time-maybe)
16099 ;; Try to recenter the calendar window, if any.
16100 (if (and org-calendar-follow-timestamp-change
16101 (get-buffer-window "*Calendar*" t)
16102 (memq org-ts-what '(day month year)))
16103 (org-recenter-calendar (time-to-days time))))))
16105 (defun org-modify-ts-extra (s pos n dm)
16106 "Change the different parts of the lead-time and repeat fields in timestamp."
16107 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
16108 ng h m new rem)
16109 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
16110 (cond
16111 ((or (org-pos-in-match-range pos 2)
16112 (org-pos-in-match-range pos 3))
16113 (setq m (string-to-number (match-string 3 s))
16114 h (string-to-number (match-string 2 s)))
16115 (if (org-pos-in-match-range pos 2)
16116 (setq h (+ h n))
16117 (setq n (* dm (org-no-warnings (signum n))))
16118 (when (not (= 0 (setq rem (% m dm))))
16119 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
16120 (setq m (+ m n)))
16121 (if (< m 0) (setq m (+ m 60) h (1- h)))
16122 (if (> m 59) (setq m (- m 60) h (1+ h)))
16123 (setq h (min 24 (max 0 h)))
16124 (setq ng 1 new (format "-%02d:%02d" h m)))
16125 ((org-pos-in-match-range pos 6)
16126 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
16127 ((org-pos-in-match-range pos 5)
16128 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
16130 ((org-pos-in-match-range pos 9)
16131 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
16132 ((org-pos-in-match-range pos 8)
16133 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
16135 (when ng
16136 (setq s (concat
16137 (substring s 0 (match-beginning ng))
16139 (substring s (match-end ng))))))
16142 (defun org-recenter-calendar (date)
16143 "If the calendar is visible, recenter it to DATE."
16144 (let* ((win (selected-window))
16145 (cwin (get-buffer-window "*Calendar*" t))
16146 (calendar-move-hook nil))
16147 (when cwin
16148 (select-window cwin)
16149 (calendar-goto-date (if (listp date) date
16150 (calendar-gregorian-from-absolute date)))
16151 (select-window win))))
16153 (defun org-goto-calendar (&optional arg)
16154 "Go to the Emacs calendar at the current date.
16155 If there is a time stamp in the current line, go to that date.
16156 A prefix ARG can be used to force the current date."
16157 (interactive "P")
16158 (let ((tsr org-ts-regexp) diff
16159 (calendar-move-hook nil)
16160 (calendar-view-holidays-initially-flag nil)
16161 (calendar-view-diary-initially-flag nil))
16162 (if (or (org-at-timestamp-p)
16163 (save-excursion
16164 (beginning-of-line 1)
16165 (looking-at (concat ".*" tsr))))
16166 (let ((d1 (time-to-days (current-time)))
16167 (d2 (time-to-days
16168 (org-time-string-to-time (match-string 1)))))
16169 (setq diff (- d2 d1))))
16170 (calendar)
16171 (calendar-goto-today)
16172 (if (and diff (not arg)) (calendar-forward-day diff))))
16174 (defun org-get-date-from-calendar ()
16175 "Return a list (month day year) of date at point in calendar."
16176 (with-current-buffer "*Calendar*"
16177 (save-match-data
16178 (calendar-cursor-to-date))))
16180 (defun org-date-from-calendar ()
16181 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
16182 If there is already a time stamp at the cursor position, update it."
16183 (interactive)
16184 (if (org-at-timestamp-p t)
16185 (org-timestamp-change 0 'calendar)
16186 (let ((cal-date (org-get-date-from-calendar)))
16187 (org-insert-time-stamp
16188 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
16190 (defun org-minutes-to-hh:mm-string (m)
16191 "Compute H:MM from a number of minutes."
16192 (let ((h (/ m 60)))
16193 (setq m (- m (* 60 h)))
16194 (format org-time-clocksum-format h m)))
16196 (defun org-hh:mm-string-to-minutes (s)
16197 "Convert a string H:MM to a number of minutes.
16198 If the string is just a number, interpret it as minutes.
16199 In fact, the first hh:mm or number in the string will be taken,
16200 there can be extra stuff in the string.
16201 If no number is found, the return value is 0."
16202 (cond
16203 ((integerp s) s)
16204 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
16205 (+ (* (string-to-number (match-string 1 s)) 60)
16206 (string-to-number (match-string 2 s))))
16207 ((string-match "\\([0-9]+\\)" s)
16208 (string-to-number (match-string 1 s)))
16209 (t 0)))
16211 (defcustom org-effort-durations
16212 `(("h" . 60)
16213 ("d" . ,(* 60 8))
16214 ("w" . ,(* 60 8 5))
16215 ("m" . ,(* 60 8 5 4))
16216 ("y" . ,(* 60 8 5 40)))
16217 "Conversion factor to minutes for an effort modifier.
16219 Each entry has the form (MODIFIER . MINUTES).
16221 In an effort string, a number followed by MODIFIER is multiplied
16222 by the specified number of MINUTES to obtain an effort in
16223 minutes.
16225 For example, if the value of this variable is ((\"hours\" . 60)), then an
16226 effort string \"2hours\" is equivalent to 120 minutes."
16227 :group 'org-agenda
16228 :type '(alist :key-type (string :tag "Modifier")
16229 :value-type (number :tag "Minutes")))
16231 (defun org-duration-string-to-minutes (s)
16232 "Convert a duration string S to minutes.
16234 A bare number is interpreted as minutes, modifiers can be set by
16235 customizing `org-effort-durations' (which see).
16237 Entries containing a colon are interpreted as H:MM by
16238 `org-hh:mm-string-to-minutes'."
16239 (let ((result 0)
16240 (re (concat "\\([0-9]+\\) *\\("
16241 (regexp-opt (mapcar 'car org-effort-durations))
16242 "\\)")))
16243 (while (string-match re s)
16244 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
16245 (string-to-number (match-string 1 s))))
16246 (setq s (replace-match "" nil t s)))
16247 (incf result (org-hh:mm-string-to-minutes s))
16248 result))
16250 ;;;; Files
16252 (defun org-save-all-org-buffers ()
16253 "Save all Org-mode buffers without user confirmation."
16254 (interactive)
16255 (message "Saving all Org-mode buffers...")
16256 (save-some-buffers t (lambda () (eq major-mode 'org-mode)))
16257 (when (featurep 'org-id) (org-id-locations-save))
16258 (message "Saving all Org-mode buffers... done"))
16260 (defun org-revert-all-org-buffers ()
16261 "Revert all Org-mode buffers.
16262 Prompt for confirmation when there are unsaved changes.
16263 Be sure you know what you are doing before letting this function
16264 overwrite your changes.
16266 This function is useful in a setup where one tracks org files
16267 with a version control system, to revert on one machine after pulling
16268 changes from another. I believe the procedure must be like this:
16270 1. M-x org-save-all-org-buffers
16271 2. Pull changes from the other machine, resolve conflicts
16272 3. M-x org-revert-all-org-buffers"
16273 (interactive)
16274 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
16275 (error "Abort"))
16276 (save-excursion
16277 (save-window-excursion
16278 (mapc
16279 (lambda (b)
16280 (when (and (with-current-buffer b (eq major-mode 'org-mode))
16281 (with-current-buffer b buffer-file-name))
16282 (org-pop-to-buffer-same-window b)
16283 (revert-buffer t 'no-confirm)))
16284 (buffer-list))
16285 (when (and (featurep 'org-id) org-id-track-globally)
16286 (org-id-locations-load)))))
16288 ;;;; Agenda files
16290 ;;;###autoload
16291 (defun org-switchb (&optional arg)
16292 "Switch between Org buffers.
16293 With one prefix argument, restrict available buffers to files.
16294 With two prefix arguments, restrict available buffers to agenda files.
16296 Defaults to `iswitchb' for buffer name completion.
16297 Set `org-completion-use-ido' to make it use ido instead."
16298 (interactive "P")
16299 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
16300 ((equal arg '(16)) (org-buffer-list 'agenda))
16301 (t (org-buffer-list))))
16302 (org-completion-use-iswitchb org-completion-use-iswitchb)
16303 (org-completion-use-ido org-completion-use-ido))
16304 (unless (or org-completion-use-ido org-completion-use-iswitchb)
16305 (setq org-completion-use-iswitchb t))
16306 (org-pop-to-buffer-same-window
16307 (org-icompleting-read "Org buffer: "
16308 (mapcar 'list (mapcar 'buffer-name blist))
16309 nil t))))
16311 ;;; Define some older names previously used for this functionality
16312 ;;;###autoload
16313 (defalias 'org-ido-switchb 'org-switchb)
16314 ;;;###autoload
16315 (defalias 'org-iswitchb 'org-switchb)
16317 (defun org-buffer-list (&optional predicate exclude-tmp)
16318 "Return a list of Org buffers.
16319 PREDICATE can be `export', `files' or `agenda'.
16321 export restrict the list to Export buffers.
16322 files restrict the list to buffers visiting Org files.
16323 agenda restrict the list to buffers visiting agenda files.
16325 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
16326 (let* ((bfn nil)
16327 (agenda-files (and (eq predicate 'agenda)
16328 (mapcar 'file-truename (org-agenda-files t))))
16329 (filter
16330 (cond
16331 ((eq predicate 'files)
16332 (lambda (b) (with-current-buffer b (eq major-mode 'org-mode))))
16333 ((eq predicate 'export)
16334 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
16335 ((eq predicate 'agenda)
16336 (lambda (b)
16337 (with-current-buffer b
16338 (and (eq major-mode 'org-mode)
16339 (setq bfn (buffer-file-name b))
16340 (member (file-truename bfn) agenda-files)))))
16341 (t (lambda (b) (with-current-buffer b
16342 (or (eq major-mode 'org-mode)
16343 (string-match "\*Org .*Export"
16344 (buffer-name b)))))))))
16345 (delq nil
16346 (mapcar
16347 (lambda(b)
16348 (if (and (funcall filter b)
16349 (or (not exclude-tmp)
16350 (not (string-match "tmp" (buffer-name b)))))
16352 nil))
16353 (buffer-list)))))
16355 (defun org-agenda-files (&optional unrestricted archives)
16356 "Get the list of agenda files.
16357 Optional UNRESTRICTED means return the full list even if a restriction
16358 is currently in place.
16359 When ARCHIVES is t, include all archive files that are really being
16360 used by the agenda files. If ARCHIVE is `ifmode', do this only if
16361 `org-agenda-archives-mode' is t."
16362 (let ((files
16363 (cond
16364 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
16365 ((stringp org-agenda-files) (org-read-agenda-file-list))
16366 ((listp org-agenda-files) org-agenda-files)
16367 (t (error "Invalid value of `org-agenda-files'")))))
16368 (setq files (apply 'append
16369 (mapcar (lambda (f)
16370 (if (file-directory-p f)
16371 (directory-files
16372 f t org-agenda-file-regexp)
16373 (list f)))
16374 files)))
16375 (when org-agenda-skip-unavailable-files
16376 (setq files (delq nil
16377 (mapcar (function
16378 (lambda (file)
16379 (and (file-readable-p file) file)))
16380 files))))
16381 (when (or (eq archives t)
16382 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
16383 (setq files (org-add-archive-files files)))
16384 files))
16386 (defun org-agenda-file-p (&optional file)
16387 "Return non-nil, if FILE is an agenda file.
16388 If FILE is omitted, use the file associated with the current
16389 buffer."
16390 (member (or file (buffer-file-name))
16391 (org-agenda-files t)))
16393 (defun org-edit-agenda-file-list ()
16394 "Edit the list of agenda files.
16395 Depending on setup, this either uses customize to edit the variable
16396 `org-agenda-files', or it visits the file that is holding the list. In the
16397 latter case, the buffer is set up in a way that saving it automatically kills
16398 the buffer and restores the previous window configuration."
16399 (interactive)
16400 (if (stringp org-agenda-files)
16401 (let ((cw (current-window-configuration)))
16402 (find-file org-agenda-files)
16403 (org-set-local 'org-window-configuration cw)
16404 (org-add-hook 'after-save-hook
16405 (lambda ()
16406 (set-window-configuration
16407 (prog1 org-window-configuration
16408 (kill-buffer (current-buffer))))
16409 (org-install-agenda-files-menu)
16410 (message "New agenda file list installed"))
16411 nil 'local)
16412 (message "%s" (substitute-command-keys
16413 "Edit list and finish with \\[save-buffer]")))
16414 (customize-variable 'org-agenda-files)))
16416 (defun org-store-new-agenda-file-list (list)
16417 "Set new value for the agenda file list and save it correctly."
16418 (if (stringp org-agenda-files)
16419 (let ((fe (org-read-agenda-file-list t)) b u)
16420 (while (setq b (find-buffer-visiting org-agenda-files))
16421 (kill-buffer b))
16422 (with-temp-file org-agenda-files
16423 (insert
16424 (mapconcat
16425 (lambda (f) ;; Keep un-expanded entries.
16426 (if (setq u (assoc f fe))
16427 (cdr u)
16429 list "\n")
16430 "\n")))
16431 (let ((org-mode-hook nil) (org-inhibit-startup t)
16432 (org-insert-mode-line-in-empty-file nil))
16433 (setq org-agenda-files list)
16434 (customize-save-variable 'org-agenda-files org-agenda-files))))
16436 (defun org-read-agenda-file-list (&optional pair-with-expansion)
16437 "Read the list of agenda files from a file.
16438 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
16439 filenames, used by `org-store-new-agenda-file-list' to write back
16440 un-expanded file names."
16441 (when (file-directory-p org-agenda-files)
16442 (error "`org-agenda-files' cannot be a single directory"))
16443 (when (stringp org-agenda-files)
16444 (with-temp-buffer
16445 (insert-file-contents org-agenda-files)
16446 (mapcar
16447 (lambda (f)
16448 (let ((e (expand-file-name (substitute-in-file-name f)
16449 org-directory)))
16450 (if pair-with-expansion
16451 (cons e f)
16452 e)))
16453 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
16455 ;;;###autoload
16456 (defun org-cycle-agenda-files ()
16457 "Cycle through the files in `org-agenda-files'.
16458 If the current buffer visits an agenda file, find the next one in the list.
16459 If the current buffer does not, find the first agenda file."
16460 (interactive)
16461 (let* ((fs (org-agenda-files t))
16462 (files (append fs (list (car fs))))
16463 (tcf (if buffer-file-name (file-truename buffer-file-name)))
16464 file)
16465 (unless files (error "No agenda files"))
16466 (catch 'exit
16467 (while (setq file (pop files))
16468 (if (equal (file-truename file) tcf)
16469 (when (car files)
16470 (find-file (car files))
16471 (throw 'exit t))))
16472 (find-file (car fs)))
16473 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
16475 (defun org-agenda-file-to-front (&optional to-end)
16476 "Move/add the current file to the top of the agenda file list.
16477 If the file is not present in the list, it is added to the front. If it is
16478 present, it is moved there. With optional argument TO-END, add/move to the
16479 end of the list."
16480 (interactive "P")
16481 (let ((org-agenda-skip-unavailable-files nil)
16482 (file-alist (mapcar (lambda (x)
16483 (cons (file-truename x) x))
16484 (org-agenda-files t)))
16485 (ctf (file-truename buffer-file-name))
16486 x had)
16487 (setq x (assoc ctf file-alist) had x)
16489 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
16490 (if to-end
16491 (setq file-alist (append (delq x file-alist) (list x)))
16492 (setq file-alist (cons x (delq x file-alist))))
16493 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
16494 (org-install-agenda-files-menu)
16495 (message "File %s to %s of agenda file list"
16496 (if had "moved" "added") (if to-end "end" "front"))))
16498 (defun org-remove-file (&optional file)
16499 "Remove current file from the list of files in variable `org-agenda-files'.
16500 These are the files which are being checked for agenda entries.
16501 Optional argument FILE means use this file instead of the current."
16502 (interactive)
16503 (let* ((org-agenda-skip-unavailable-files nil)
16504 (file (or file buffer-file-name))
16505 (true-file (file-truename file))
16506 (afile (abbreviate-file-name file))
16507 (files (delq nil (mapcar
16508 (lambda (x)
16509 (if (equal true-file
16510 (file-truename x))
16511 nil x))
16512 (org-agenda-files t)))))
16513 (if (not (= (length files) (length (org-agenda-files t))))
16514 (progn
16515 (org-store-new-agenda-file-list files)
16516 (org-install-agenda-files-menu)
16517 (message "Removed file: %s" afile))
16518 (message "File was not in list: %s (not removed)" afile))))
16520 (defun org-file-menu-entry (file)
16521 (vector file (list 'find-file file) t))
16523 (defun org-check-agenda-file (file)
16524 "Make sure FILE exists. If not, ask user what to do."
16525 (when (not (file-exists-p file))
16526 (message "non-existent agenda file %s. [R]emove from list or [A]bort?"
16527 (abbreviate-file-name file))
16528 (let ((r (downcase (read-char-exclusive))))
16529 (cond
16530 ((equal r ?r)
16531 (org-remove-file file)
16532 (throw 'nextfile t))
16533 (t (error "Abort"))))))
16535 (defun org-get-agenda-file-buffer (file)
16536 "Get a buffer visiting FILE. If the buffer needs to be created, add
16537 it to the list of buffers which might be released later."
16538 (let ((buf (org-find-base-buffer-visiting file)))
16539 (if buf
16540 buf ; just return it
16541 ;; Make a new buffer and remember it
16542 (setq buf (find-file-noselect file))
16543 (if buf (push buf org-agenda-new-buffers))
16544 buf)))
16546 (defun org-release-buffers (blist)
16547 "Release all buffers in list, asking the user for confirmation when needed.
16548 When a buffer is unmodified, it is just killed. When modified, it is saved
16549 \(if the user agrees) and then killed."
16550 (let (buf file)
16551 (while (setq buf (pop blist))
16552 (setq file (buffer-file-name buf))
16553 (when (and (buffer-modified-p buf)
16554 file
16555 (y-or-n-p (format "Save file %s? " file)))
16556 (with-current-buffer buf (save-buffer)))
16557 (kill-buffer buf))))
16559 (defun org-prepare-agenda-buffers (files)
16560 "Create buffers for all agenda files, protect archived trees and comments."
16561 (interactive)
16562 (let ((pa '(:org-archived t))
16563 (pc '(:org-comment t))
16564 (pall '(:org-archived t :org-comment t))
16565 (inhibit-read-only t)
16566 (rea (concat ":" org-archive-tag ":"))
16567 bmp file re)
16568 (save-excursion
16569 (save-restriction
16570 (while (setq file (pop files))
16571 (catch 'nextfile
16572 (if (bufferp file)
16573 (set-buffer file)
16574 (org-check-agenda-file file)
16575 (set-buffer (org-get-agenda-file-buffer file)))
16576 (widen)
16577 (setq bmp (buffer-modified-p))
16578 (org-refresh-category-properties)
16579 (setq org-todo-keywords-for-agenda
16580 (append org-todo-keywords-for-agenda org-todo-keywords-1))
16581 (setq org-done-keywords-for-agenda
16582 (append org-done-keywords-for-agenda org-done-keywords))
16583 (setq org-todo-keyword-alist-for-agenda
16584 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
16585 (setq org-drawers-for-agenda
16586 (append org-drawers-for-agenda org-drawers))
16587 (setq org-tag-alist-for-agenda
16588 (append org-tag-alist-for-agenda org-tag-alist))
16590 (save-excursion
16591 (remove-text-properties (point-min) (point-max) pall)
16592 (when org-agenda-skip-archived-trees
16593 (goto-char (point-min))
16594 (while (re-search-forward rea nil t)
16595 (if (org-at-heading-p t)
16596 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
16597 (goto-char (point-min))
16598 (setq re (format org-heading-keyword-regexp-format
16599 org-comment-string))
16600 (while (re-search-forward re nil t)
16601 (add-text-properties
16602 (match-beginning 0) (org-end-of-subtree t) pc)))
16603 (set-buffer-modified-p bmp)))))
16604 (setq org-todo-keywords-for-agenda
16605 (org-uniquify org-todo-keywords-for-agenda))
16606 (setq org-todo-keyword-alist-for-agenda
16607 (org-uniquify org-todo-keyword-alist-for-agenda)
16608 org-tag-alist-for-agenda (org-uniquify org-tag-alist-for-agenda))))
16610 ;;;; Embedded LaTeX
16612 (defvar org-cdlatex-mode-map (make-sparse-keymap)
16613 "Keymap for the minor `org-cdlatex-mode'.")
16615 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
16616 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
16617 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
16618 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
16619 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
16621 (defvar org-cdlatex-texmathp-advice-is-done nil
16622 "Flag remembering if we have applied the advice to texmathp already.")
16624 (define-minor-mode org-cdlatex-mode
16625 "Toggle the minor `org-cdlatex-mode'.
16626 This mode supports entering LaTeX environment and math in LaTeX fragments
16627 in Org-mode.
16628 \\{org-cdlatex-mode-map}"
16629 nil " OCDL" nil
16630 (when org-cdlatex-mode
16631 (require 'cdlatex)
16632 (run-hooks 'cdlatex-mode-hook)
16633 (cdlatex-compute-tables))
16634 (unless org-cdlatex-texmathp-advice-is-done
16635 (setq org-cdlatex-texmathp-advice-is-done t)
16636 (defadvice texmathp (around org-math-always-on activate)
16637 "Always return t in org-mode buffers.
16638 This is because we want to insert math symbols without dollars even outside
16639 the LaTeX math segments. If Orgmode thinks that point is actually inside
16640 an embedded LaTeX fragment, let texmathp do its job.
16641 \\[org-cdlatex-mode-map]"
16642 (interactive)
16643 (let (p)
16644 (cond
16645 ((not (eq major-mode 'org-mode)) ad-do-it)
16646 ((eq this-command 'cdlatex-math-symbol)
16647 (setq ad-return-value t
16648 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
16650 (let ((p (org-inside-LaTeX-fragment-p)))
16651 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
16652 (setq ad-return-value t
16653 texmathp-why '("Org-mode embedded math" . 0))
16654 (if p ad-do-it)))))))))
16656 (defun turn-on-org-cdlatex ()
16657 "Unconditionally turn on `org-cdlatex-mode'."
16658 (org-cdlatex-mode 1))
16660 (defun org-inside-LaTeX-fragment-p ()
16661 "Test if point is inside a LaTeX fragment.
16662 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
16663 sequence appearing also before point.
16664 Even though the matchers for math are configurable, this function assumes
16665 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
16666 delimiters are skipped when they have been removed by customization.
16667 The return value is nil, or a cons cell with the delimiter and the
16668 position of this delimiter.
16670 This function does a reasonably good job, but can locally be fooled by
16671 for example currency specifications. For example it will assume being in
16672 inline math after \"$22.34\". The LaTeX fragment formatter will only format
16673 fragments that are properly closed, but during editing, we have to live
16674 with the uncertainty caused by missing closing delimiters. This function
16675 looks only before point, not after."
16676 (catch 'exit
16677 (let ((pos (point))
16678 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
16679 (lim (progn
16680 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
16681 (point)))
16682 dd-on str (start 0) m re)
16683 (goto-char pos)
16684 (when dodollar
16685 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
16686 re (nth 1 (assoc "$" org-latex-regexps)))
16687 (while (string-match re str start)
16688 (cond
16689 ((= (match-end 0) (length str))
16690 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
16691 ((= (match-end 0) (- (length str) 5))
16692 (throw 'exit nil))
16693 (t (setq start (match-end 0))))))
16694 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
16695 (goto-char pos)
16696 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
16697 (and (match-beginning 2) (throw 'exit nil))
16698 ;; count $$
16699 (while (re-search-backward "\\$\\$" lim t)
16700 (setq dd-on (not dd-on)))
16701 (goto-char pos)
16702 (if dd-on (cons "$$" m))))))
16704 (defun org-inside-latex-macro-p ()
16705 "Is point inside a LaTeX macro or its arguments?"
16706 (save-match-data
16707 (org-in-regexp
16708 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
16710 (defun org-try-cdlatex-tab ()
16711 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
16712 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
16713 - inside a LaTeX fragment, or
16714 - after the first word in a line, where an abbreviation expansion could
16715 insert a LaTeX environment."
16716 (when org-cdlatex-mode
16717 (cond
16718 ;; Before any word on the line: No expansion possible.
16719 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
16720 ;; Just after first word on the line: Expand it. Make sure it
16721 ;; cannot happen on headlines, though.
16722 ((save-excursion
16723 (skip-chars-backward "a-zA-Z0-9*")
16724 (skip-chars-backward " \t")
16725 (and (bolp) (not (org-at-heading-p))))
16726 (cdlatex-tab) t)
16727 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
16729 (defun org-cdlatex-underscore-caret (&optional arg)
16730 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
16731 Revert to the normal definition outside of these fragments."
16732 (interactive "P")
16733 (if (org-inside-LaTeX-fragment-p)
16734 (call-interactively 'cdlatex-sub-superscript)
16735 (let (org-cdlatex-mode)
16736 (call-interactively (key-binding (vector last-input-event))))))
16738 (defun org-cdlatex-math-modify (&optional arg)
16739 "Execute `cdlatex-math-modify' in LaTeX fragments.
16740 Revert to the normal definition outside of these fragments."
16741 (interactive "P")
16742 (if (org-inside-LaTeX-fragment-p)
16743 (call-interactively 'cdlatex-math-modify)
16744 (let (org-cdlatex-mode)
16745 (call-interactively (key-binding (vector last-input-event))))))
16747 (defvar org-latex-fragment-image-overlays nil
16748 "List of overlays carrying the images of latex fragments.")
16749 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
16751 (defun org-remove-latex-fragment-image-overlays ()
16752 "Remove all overlays with LaTeX fragment images in current buffer."
16753 (mapc 'delete-overlay org-latex-fragment-image-overlays)
16754 (setq org-latex-fragment-image-overlays nil))
16756 (defun org-preview-latex-fragment (&optional subtree)
16757 "Preview the LaTeX fragment at point, or all locally or globally.
16758 If the cursor is in a LaTeX fragment, create the image and overlay
16759 it over the source code. If there is no fragment at point, display
16760 all fragments in the current text, from one headline to the next. With
16761 prefix SUBTREE, display all fragments in the current subtree. With a
16762 double prefix arg \\[universal-argument] \\[universal-argument], or when \
16763 the cursor is before the first headline,
16764 display all fragments in the buffer.
16765 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
16766 (interactive "P")
16767 (unless buffer-file-name
16768 (error "Can't preview LaTeX fragment in a non-file buffer"))
16769 (org-remove-latex-fragment-image-overlays)
16770 (save-excursion
16771 (save-restriction
16772 (let (beg end at msg)
16773 (cond
16774 ((or (equal subtree '(16))
16775 (not (save-excursion
16776 (re-search-backward org-outline-regexp-bol nil t))))
16777 (setq beg (point-min) end (point-max)
16778 msg "Creating images for buffer...%s"))
16779 ((equal subtree '(4))
16780 (org-back-to-heading)
16781 (setq beg (point) end (org-end-of-subtree t)
16782 msg "Creating images for subtree...%s"))
16784 (if (setq at (org-inside-LaTeX-fragment-p))
16785 (goto-char (max (point-min) (- (cdr at) 2)))
16786 (org-back-to-heading))
16787 (setq beg (point) end (progn (outline-next-heading) (point))
16788 msg (if at "Creating image...%s"
16789 "Creating images for entry...%s"))))
16790 (message msg "")
16791 (narrow-to-region beg end)
16792 (goto-char beg)
16793 (org-format-latex
16794 (concat "ltxpng/" (file-name-sans-extension
16795 (file-name-nondirectory
16796 buffer-file-name)))
16797 default-directory 'overlays msg at 'forbuffer 'dvipng)
16798 (message msg "done. Use `C-c C-c' to remove images.")))))
16800 (defvar org-latex-regexps
16801 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
16802 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
16803 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
16804 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
16805 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
16806 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
16807 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
16808 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
16809 "Regular expressions for matching embedded LaTeX.")
16811 (defvar org-export-have-math nil) ;; dynamic scoping
16812 (defun org-format-latex (prefix &optional dir overlays msg at
16813 forbuffer processing-type)
16814 "Replace LaTeX fragments with links to an image, and produce images.
16815 Some of the options can be changed using the variable
16816 `org-format-latex-options'."
16817 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
16818 (let* ((prefixnodir (file-name-nondirectory prefix))
16819 (absprefix (expand-file-name prefix dir))
16820 (todir (file-name-directory absprefix))
16821 (opt org-format-latex-options)
16822 (matchers (plist-get opt :matchers))
16823 (re-list org-latex-regexps)
16824 (org-format-latex-header-extra
16825 (plist-get (org-infile-export-plist) :latex-header-extra))
16826 (cnt 0) txt hash link beg end re e checkdir
16827 executables-checked string
16828 m n block-type block linkfile movefile ov)
16829 ;; Check the different regular expressions
16830 (while (setq e (pop re-list))
16831 (setq m (car e) re (nth 1 e) n (nth 2 e) block-type (nth 3 e)
16832 block (if block-type "\n\n" ""))
16833 (when (member m matchers)
16834 (goto-char (point-min))
16835 (while (re-search-forward re nil t)
16836 (when (and (or (not at) (equal (cdr at) (match-beginning n)))
16837 (not (get-text-property (match-beginning n)
16838 'org-protected))
16839 (or (not overlays)
16840 (not (eq (get-char-property (match-beginning n)
16841 'org-overlay-type)
16842 'org-latex-overlay))))
16843 (setq org-export-have-math t)
16844 (cond
16845 ((eq processing-type 'verbatim)
16846 ;; Leave the text verbatim, just protect it
16847 (add-text-properties (match-beginning n) (match-end n)
16848 '(org-protected t)))
16849 ((eq processing-type 'mathjax)
16850 ;; Prepare for MathJax processing
16851 (setq string (match-string n))
16852 (if (member m '("$" "$1"))
16853 (save-excursion
16854 (delete-region (match-beginning n) (match-end n))
16855 (goto-char (match-beginning n))
16856 (insert (org-add-props (concat "\\(" (substring string 1 -1)
16857 "\\)")
16858 '(org-protected t))))
16859 (add-text-properties (match-beginning n) (match-end n)
16860 '(org-protected t))))
16861 ((eq processing-type 'dvipng)
16862 ;; Process to an image
16863 (setq txt (match-string n)
16864 beg (match-beginning n) end (match-end n)
16865 cnt (1+ cnt))
16866 (let (print-length print-level) ; make sure full list is printed
16867 (setq hash (sha1 (prin1-to-string
16868 (list org-format-latex-header
16869 org-format-latex-header-extra
16870 org-export-latex-default-packages-alist
16871 org-export-latex-packages-alist
16872 org-format-latex-options
16873 forbuffer txt)))
16874 linkfile (format "%s_%s.png" prefix hash)
16875 movefile (format "%s_%s.png" absprefix hash)))
16876 (setq link (concat block "[[file:" linkfile "]]" block))
16877 (if msg (message msg cnt))
16878 (goto-char beg)
16879 (unless checkdir ; make sure the directory exists
16880 (setq checkdir t)
16881 (or (file-directory-p todir) (make-directory todir t)))
16883 (unless executables-checked
16884 (org-check-external-command
16885 "latex" "needed to convert LaTeX fragments to images")
16886 (org-check-external-command
16887 "dvipng" "needed to convert LaTeX fragments to images")
16888 (setq executables-checked t))
16890 (unless (file-exists-p movefile)
16891 (org-create-formula-image
16892 txt movefile opt forbuffer))
16893 (if overlays
16894 (progn
16895 (mapc (lambda (o)
16896 (if (eq (overlay-get o 'org-overlay-type)
16897 'org-latex-overlay)
16898 (delete-overlay o)))
16899 (overlays-in beg end))
16900 (setq ov (make-overlay beg end))
16901 (overlay-put ov 'org-overlay-type 'org-latex-overlay)
16902 (if (featurep 'xemacs)
16903 (progn
16904 (overlay-put ov 'invisible t)
16905 (overlay-put
16906 ov 'end-glyph
16907 (make-glyph (vector 'png :file movefile))))
16908 (overlay-put
16909 ov 'display
16910 (list 'image :type 'png :file movefile :ascent 'center)))
16911 (push ov org-latex-fragment-image-overlays)
16912 (goto-char end))
16913 (delete-region beg end)
16914 (insert (org-add-props link
16915 (list 'org-latex-src
16916 (replace-regexp-in-string
16917 "\"" "" txt)
16918 'org-latex-src-embed-type
16919 (if block-type 'paragraph 'character))))))
16920 ((eq processing-type 'mathml)
16921 ;; Process to MathML
16922 (unless executables-checked
16923 (unless (save-match-data (org-format-latex-mathml-available-p))
16924 (error "LaTeX to MathML converter not configured"))
16925 (setq executables-checked t))
16926 (setq txt (match-string n)
16927 beg (match-beginning n) end (match-end n)
16928 cnt (1+ cnt))
16929 (if msg (message msg cnt))
16930 (goto-char beg)
16931 (delete-region beg end)
16932 (insert (org-format-latex-as-mathml
16933 txt block-type prefix dir)))
16935 (error "Unknown conversion type %s for latex fragments"
16936 processing-type)))))))))
16938 (defun org-create-math-formula (latex-frag &optional mathml-file)
16939 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
16940 Use `org-latex-to-mathml-convert-command'. If the conversion is
16941 sucessful, return the portion between \"<math...> </math>\"
16942 elements otherwise return nil. When MATHML-FILE is specified,
16943 write the results in to that file. When invoked as an
16944 interactive command, prompt for LATEX-FRAG, with initial value
16945 set to the current active region and echo the results for user
16946 inspection."
16947 (interactive (list (let ((frag (when (region-active-p)
16948 (buffer-substring-no-properties
16949 (region-beginning) (region-end)))))
16950 (read-string "LaTeX Fragment: " frag nil frag))))
16951 (unless latex-frag (error "Invalid latex-frag"))
16952 (let* ((tmp-in-file (file-relative-name
16953 (make-temp-name (expand-file-name "ltxmathml-in"))))
16954 (ignore (write-region latex-frag nil tmp-in-file))
16955 (tmp-out-file (file-relative-name
16956 (make-temp-name (expand-file-name "ltxmathml-out"))))
16957 (cmd (format-spec
16958 org-latex-to-mathml-convert-command
16959 `((?j . ,(shell-quote-argument
16960 (expand-file-name org-latex-to-mathml-jar-file)))
16961 (?I . ,(shell-quote-argument tmp-in-file))
16962 (?o . ,(shell-quote-argument tmp-out-file)))))
16963 mathml shell-command-output)
16964 (when (org-called-interactively-p 'any)
16965 (unless (org-format-latex-mathml-available-p)
16966 (error "LaTeX to MathML converter not configured")))
16967 (message "Running %s" cmd)
16968 (setq shell-command-output (shell-command-to-string cmd))
16969 (setq mathml
16970 (when (file-readable-p tmp-out-file)
16971 (with-current-buffer (find-file-noselect tmp-out-file t)
16972 (goto-char (point-min))
16973 (when (re-search-forward
16974 (concat
16975 (regexp-quote
16976 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
16977 "\\(.\\|\n\\)*"
16978 (regexp-quote "</math>")) nil t)
16979 (prog1 (match-string 0) (kill-buffer))))))
16980 (cond
16981 (mathml
16982 (setq mathml
16983 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
16984 (when mathml-file
16985 (write-region mathml nil mathml-file))
16986 (when (org-called-interactively-p 'any)
16987 (message mathml)))
16988 ((message "LaTeX to MathML conversion failed")
16989 (message shell-command-output)))
16990 (delete-file tmp-in-file)
16991 (when (file-exists-p tmp-out-file)
16992 (delete-file tmp-out-file))
16993 mathml))
16995 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
16996 prefix &optional dir)
16997 "Use `org-create-math-formula' but check local cache first."
16998 (let* ((absprefix (expand-file-name prefix dir))
16999 (print-length nil) (print-level nil)
17000 (formula-id (concat
17001 "formula-"
17002 (sha1
17003 (prin1-to-string
17004 (list latex-frag
17005 org-latex-to-mathml-convert-command)))))
17006 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
17007 (formula-cache-dir (file-name-directory formula-cache)))
17009 (unless (file-directory-p formula-cache-dir)
17010 (make-directory formula-cache-dir t))
17012 (unless (file-exists-p formula-cache)
17013 (org-create-math-formula latex-frag formula-cache))
17015 (if (file-exists-p formula-cache)
17016 ;; Successful conversion. Return the link to MathML file.
17017 (org-add-props
17018 (format "[[file:%s]]" (file-relative-name formula-cache dir))
17019 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
17020 'org-latex-src-embed-type (if latex-frag-type
17021 'paragraph 'character)))
17022 ;; Failed conversion. Return the LaTeX fragment verbatim
17023 (add-text-properties
17024 0 (1- (length latex-frag)) '(org-protected t) latex-frag)
17025 latex-frag)))
17027 ;; This function borrows from Ganesh Swami's latex2png.el
17028 (defun org-create-formula-image (string tofile options buffer)
17029 "This calls dvipng."
17030 (require 'org-latex)
17031 (let* ((tmpdir (if (featurep 'xemacs)
17032 (temp-directory)
17033 temporary-file-directory))
17034 (texfilebase (make-temp-name
17035 (expand-file-name "orgtex" tmpdir)))
17036 (texfile (concat texfilebase ".tex"))
17037 (dvifile (concat texfilebase ".dvi"))
17038 (pngfile (concat texfilebase ".png"))
17039 (fnh (if (featurep 'xemacs)
17040 (font-height (get-face-font 'default))
17041 (face-attribute 'default :height nil)))
17042 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
17043 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
17044 (fg (or (plist-get options (if buffer :foreground :html-foreground))
17045 "Black"))
17046 (bg (or (plist-get options (if buffer :background :html-background))
17047 "Transparent")))
17048 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground)))
17049 (if (eq bg 'default) (setq bg (org-dvipng-color :background)))
17050 (with-temp-file texfile
17051 (insert (org-splice-latex-header
17052 org-format-latex-header
17053 org-export-latex-default-packages-alist
17054 org-export-latex-packages-alist t
17055 org-format-latex-header-extra))
17056 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")
17057 (require 'org-latex)
17058 (org-export-latex-fix-inputenc))
17059 (let ((dir default-directory))
17060 (condition-case nil
17061 (progn
17062 (cd tmpdir)
17063 (call-process "latex" nil nil nil texfile))
17064 (error nil))
17065 (cd dir))
17066 (if (not (file-exists-p dvifile))
17067 (progn (message "Failed to create dvi file from %s" texfile) nil)
17068 (condition-case nil
17069 (call-process "dvipng" nil nil nil
17070 "-fg" fg "-bg" bg
17071 "-D" dpi
17072 ;;"-x" scale "-y" scale
17073 "-T" "tight"
17074 "-o" pngfile
17075 dvifile)
17076 (error nil))
17077 (if (not (file-exists-p pngfile))
17078 (if org-format-latex-signal-error
17079 (error "Failed to create png file from %s" texfile)
17080 (message "Failed to create png file from %s" texfile)
17081 nil)
17082 ;; Use the requested file name and clean up
17083 (copy-file pngfile tofile 'replace)
17084 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png") do
17085 (delete-file (concat texfilebase e)))
17086 pngfile))))
17088 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
17089 "Fill a LaTeX header template TPL.
17090 In the template, the following place holders will be recognized:
17092 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
17093 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
17094 [PACKAGES] \\usepackage statements for PKG
17095 [NO-PACKAGES] do not include PKG
17096 [EXTRA] the string EXTRA
17097 [NO-EXTRA] do not include EXTRA
17099 For backward compatibility, if both the positive and the negative place
17100 holder is missing, the positive one (without the \"NO-\") will be
17101 assumed to be present at the end of the template.
17102 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
17103 EXTRA is a string.
17104 SNIPPETS-P indicates if this is run to create snippet images for HTML."
17105 (let (rpl (end ""))
17106 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
17107 (setq rpl (if (or (match-end 1) (not def-pkg))
17108 "" (org-latex-packages-to-string def-pkg snippets-p t))
17109 tpl (replace-match rpl t t tpl))
17110 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
17112 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
17113 (setq rpl (if (or (match-end 1) (not pkg))
17114 "" (org-latex-packages-to-string pkg snippets-p t))
17115 tpl (replace-match rpl t t tpl))
17116 (if pkg (setq end
17117 (concat end "\n"
17118 (org-latex-packages-to-string pkg snippets-p)))))
17120 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
17121 (setq rpl (if (or (match-end 1) (not extra))
17122 "" (concat extra "\n"))
17123 tpl (replace-match rpl t t tpl))
17124 (if (and extra (string-match "\\S-" extra))
17125 (setq end (concat end "\n" extra))))
17127 (if (string-match "\\S-" end)
17128 (concat tpl "\n" end)
17129 tpl)))
17131 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
17132 "Turn an alist of packages into a string with the \\usepackage macros."
17133 (setq pkg (mapconcat (lambda(p)
17134 (cond
17135 ((stringp p) p)
17136 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
17137 (format "%% Package %s omitted" (cadr p)))
17138 ((equal "" (car p))
17139 (format "\\usepackage{%s}" (cadr p)))
17141 (format "\\usepackage[%s]{%s}"
17142 (car p) (cadr p)))))
17144 "\n"))
17145 (if newline (concat pkg "\n") pkg))
17147 (defun org-dvipng-color (attr)
17148 "Return an rgb color specification for dvipng."
17149 (apply 'format "rgb %s %s %s"
17150 (mapcar 'org-normalize-color
17151 (color-values (face-attribute 'default attr nil)))))
17153 (defun org-normalize-color (value)
17154 "Return string to be used as color value for an RGB component."
17155 (format "%g" (/ value 65535.0)))
17157 ;; Image display
17160 (defvar org-inline-image-overlays nil)
17161 (make-variable-buffer-local 'org-inline-image-overlays)
17163 (defun org-toggle-inline-images (&optional include-linked)
17164 "Toggle the display of inline images.
17165 INCLUDE-LINKED is passed to `org-display-inline-images'."
17166 (interactive "P")
17167 (if org-inline-image-overlays
17168 (progn
17169 (org-remove-inline-images)
17170 (message "Inline image display turned off"))
17171 (org-display-inline-images include-linked)
17172 (if org-inline-image-overlays
17173 (message "%d images displayed inline"
17174 (length org-inline-image-overlays))
17175 (message "No images to display inline"))))
17177 (defun org-display-inline-images (&optional include-linked refresh beg end)
17178 "Display inline images.
17179 Normally only links without a description part are inlined, because this
17180 is how it will work for export. When INCLUDE-LINKED is set, also links
17181 with a description part will be inlined. This can be nice for a quick
17182 look at those images, but it does not reflect what exported files will look
17183 like.
17184 When REFRESH is set, refresh existing images between BEG and END.
17185 This will create new image displays only if necessary.
17186 BEG and END default to the buffer boundaries."
17187 (interactive "P")
17188 (unless refresh
17189 (org-remove-inline-images)
17190 (if (fboundp 'clear-image-cache) (clear-image-cache)))
17191 (save-excursion
17192 (save-restriction
17193 (widen)
17194 (setq beg (or beg (point-min)) end (or end (point-max)))
17195 (goto-char (point-min))
17196 (let ((re (concat "\\[\\[\\(\\(file:\\)\\|\\([./~]\\)\\)\\([^]\n]+?"
17197 (substring (org-image-file-name-regexp) 0 -2)
17198 "\\)\\]" (if include-linked "" "\\]")))
17199 old file ov img)
17200 (while (re-search-forward re end t)
17201 (setq old (get-char-property-and-overlay (match-beginning 1)
17202 'org-image-overlay))
17203 (setq file (expand-file-name
17204 (concat (or (match-string 3) "") (match-string 4))))
17205 (when (file-exists-p file)
17206 (if (and (car-safe old) refresh)
17207 (image-refresh (overlay-get (cdr old) 'display))
17208 (setq img (save-match-data (create-image file)))
17209 (when img
17210 (setq ov (make-overlay (match-beginning 0) (match-end 0)))
17211 (overlay-put ov 'display img)
17212 (overlay-put ov 'face 'default)
17213 (overlay-put ov 'org-image-overlay t)
17214 (overlay-put ov 'modification-hooks
17215 (list 'org-display-inline-modification-hook))
17216 (push ov org-inline-image-overlays)))))))))
17218 (defun org-display-inline-modification-hook (ov after beg end &optional len)
17219 "Remove inline-display overlay if a corresponding region is modified."
17220 (let ((inhibit-modification-hooks t))
17221 (when (and ov after)
17222 (delete ov org-inline-image-overlays)
17223 (delete-overlay ov))))
17225 (defun org-remove-inline-images ()
17226 "Remove inline display of images."
17227 (interactive)
17228 (mapc 'delete-overlay org-inline-image-overlays)
17229 (setq org-inline-image-overlays nil))
17231 ;;;; Key bindings
17233 ;; Outline functions from `outline-mode-prefix-map'
17234 ;; that can be remapped in Org:
17235 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
17236 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
17237 (define-key org-mode-map [remap outline-forward-same-level]
17238 'org-forward-same-level)
17239 (define-key org-mode-map [remap outline-backward-same-level]
17240 'org-backward-same-level)
17241 (define-key org-mode-map [remap show-branches]
17242 'org-kill-note-or-show-branches)
17243 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
17244 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
17245 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
17247 ;; Outline functions from `outline-mode-prefix-map'
17248 ;; that can not be remapped in Org:
17249 ;; - the column "key binding" shows whether the Outline function is still
17250 ;; available in Org mode on the same key that it has been bound to in
17251 ;; Outline mode:
17252 ;; - "overridden": key used for a different functionality in Org mode
17253 ;; - else: key still bound to the same Outline function in Org mode
17254 ;; | Outline function | key binding | Org replacement |
17255 ;; |------------------------------------+-------------+-----------------------|
17256 ;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
17257 ;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
17258 ;; | `show-children' | `C-c C-i' | visibility cycling |
17259 ;; | `hide-subtree' | overridden | visibility cycling |
17260 ;; | `outline-up-heading' | `C-c C-u' | still same function |
17261 ;; | `hide-body' | overridden | no replacement |
17262 ;; | `show-all' | overridden | no replacement |
17263 ;; | `hide-entry' | overridden | visibility cycling |
17264 ;; | `show-entry' | overridden | no replacement |
17265 ;; | `hide-leaves' | overridden | no replacement |
17266 ;; | `hide-sublevels' | overridden | no replacement |
17267 ;; | `hide-other' | overridden | no replacement |
17268 ;; | `outline-move-subtree-up' | `C-c C-^' | better: org-shiftup |
17269 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
17271 ;; Make `C-c C-x' a prefix key
17272 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
17274 ;; TAB key with modifiers
17275 (org-defkey org-mode-map "\C-i" 'org-cycle)
17276 (org-defkey org-mode-map [(tab)] 'org-cycle)
17277 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
17278 (org-defkey org-mode-map [(meta tab)] 'pcomplete)
17279 (org-defkey org-mode-map "\M-\t" 'pcomplete)
17280 (org-defkey org-mode-map "\M-\C-i" 'pcomplete)
17281 ;; The following line is necessary under Suse GNU/Linux
17282 (unless (featurep 'xemacs)
17283 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
17284 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
17285 (define-key org-mode-map [backtab] 'org-shifttab)
17287 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
17288 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
17289 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
17291 ;; Cursor keys with modifiers
17292 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
17293 (org-defkey org-mode-map [(meta right)] 'org-metaright)
17294 (org-defkey org-mode-map [(meta up)] 'org-metaup)
17295 (org-defkey org-mode-map [(meta down)] 'org-metadown)
17297 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
17298 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
17299 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
17300 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
17302 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
17303 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
17304 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
17305 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
17307 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
17308 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
17309 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
17310 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
17312 ;; Babel keys
17313 (define-key org-mode-map org-babel-key-prefix org-babel-map)
17314 (mapc (lambda (pair)
17315 (define-key org-babel-map (car pair) (cdr pair)))
17316 org-babel-key-bindings)
17318 ;;; Extra keys for tty access.
17319 ;; We only set them when really needed because otherwise the
17320 ;; menus don't show the simple keys
17322 (when (or org-use-extra-keys
17323 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
17324 (not window-system))
17325 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
17326 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
17327 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
17328 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
17329 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
17330 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
17331 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
17332 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
17333 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
17334 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
17335 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
17336 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
17337 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
17338 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
17339 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
17340 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
17341 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
17342 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
17343 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
17344 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
17345 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
17346 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
17347 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
17348 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
17349 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
17350 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
17351 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
17352 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
17354 ;; All the other keys
17356 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
17357 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
17358 (if (boundp 'narrow-map)
17359 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
17360 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
17361 (if (boundp 'narrow-map)
17362 (org-defkey narrow-map "b" 'org-narrow-to-block)
17363 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
17364 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-same-level)
17365 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-same-level)
17366 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
17367 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
17368 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
17369 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
17370 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
17371 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
17372 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
17373 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
17374 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
17375 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
17376 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
17377 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
17378 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
17379 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
17380 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
17381 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
17382 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
17383 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
17384 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
17385 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
17386 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
17387 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
17388 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
17389 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
17390 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
17391 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
17392 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
17393 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
17394 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
17395 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
17396 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
17397 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
17398 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
17399 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
17400 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
17401 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
17402 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
17403 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
17404 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
17405 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
17406 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
17407 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
17408 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
17409 (org-defkey org-mode-map "\C-c^" 'org-sort)
17410 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
17411 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
17412 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
17413 (org-defkey org-mode-map "\C-m" 'org-return)
17414 (org-defkey org-mode-map "\C-j" 'org-return-indent)
17415 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
17416 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
17417 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
17418 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
17419 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
17420 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
17421 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
17422 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
17423 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
17424 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
17425 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
17426 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
17427 (org-defkey org-mode-map "\C-c\C-e" 'org-export)
17428 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section)
17429 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
17430 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
17431 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
17432 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
17433 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
17434 (org-defkey org-mode-map "\C-c\C-@" 'org-mark-list)
17435 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
17436 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
17438 (org-defkey org-mode-map "\C-c\C-x\C-k" 'org-mark-entry-for-agenda-action)
17439 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
17440 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
17441 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
17443 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
17444 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
17445 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
17446 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
17447 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-cancel)
17448 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
17449 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
17450 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
17451 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
17452 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
17453 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
17454 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
17455 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
17456 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
17457 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
17458 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
17459 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
17460 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
17462 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
17463 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
17464 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
17465 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
17466 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
17468 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
17470 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
17472 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
17473 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
17475 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
17478 (when (featurep 'xemacs)
17479 (org-defkey org-mode-map 'button3 'popup-mode-menu))
17482 (defconst org-speed-commands-default
17484 ("Outline Navigation")
17485 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
17486 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
17487 ("f" . (org-speed-move-safe 'org-forward-same-level))
17488 ("b" . (org-speed-move-safe 'org-backward-same-level))
17489 ("u" . (org-speed-move-safe 'outline-up-heading))
17490 ("j" . org-goto)
17491 ("g" . (org-refile t))
17492 ("Outline Visibility")
17493 ("c" . org-cycle)
17494 ("C" . org-shifttab)
17495 (" " . org-display-outline-path)
17496 ("Outline Structure Editing")
17497 ("U" . org-shiftmetaup)
17498 ("D" . org-shiftmetadown)
17499 ("r" . org-metaright)
17500 ("l" . org-metaleft)
17501 ("R" . org-shiftmetaright)
17502 ("L" . org-shiftmetaleft)
17503 ("i" . (progn (forward-char 1) (call-interactively
17504 'org-insert-heading-respect-content)))
17505 ("^" . org-sort)
17506 ("w" . org-refile)
17507 ("a" . org-archive-subtree-default-with-confirmation)
17508 ("." . org-mark-subtree)
17509 ("Clock Commands")
17510 ("I" . org-clock-in)
17511 ("O" . org-clock-out)
17512 ("Meta Data Editing")
17513 ("t" . org-todo)
17514 ("0" . (org-priority ?\ ))
17515 ("1" . (org-priority ?A))
17516 ("2" . (org-priority ?B))
17517 ("3" . (org-priority ?C))
17518 (";" . org-set-tags-command)
17519 ("e" . org-set-effort)
17520 ("Agenda Views etc")
17521 ("v" . org-agenda)
17522 ("/" . org-sparse-tree)
17523 ("Misc")
17524 ("o" . org-open-at-point)
17525 ("?" . org-speed-command-help)
17526 ("<" . (org-agenda-set-restriction-lock 'subtree))
17527 (">" . (org-agenda-remove-restriction-lock))
17529 "The default speed commands.")
17531 (defun org-print-speed-command (e)
17532 (if (> (length (car e)) 1)
17533 (progn
17534 (princ "\n")
17535 (princ (car e))
17536 (princ "\n")
17537 (princ (make-string (length (car e)) ?-))
17538 (princ "\n"))
17539 (princ (car e))
17540 (princ " ")
17541 (if (symbolp (cdr e))
17542 (princ (symbol-name (cdr e)))
17543 (prin1 (cdr e)))
17544 (princ "\n")))
17546 (defun org-speed-command-help ()
17547 "Show the available speed commands."
17548 (interactive)
17549 (if (not org-use-speed-commands)
17550 (error "Speed commands are not activated, customize `org-use-speed-commands'")
17551 (with-output-to-temp-buffer "*Help*"
17552 (princ "User-defined Speed commands\n===========================\n")
17553 (mapc 'org-print-speed-command org-speed-commands-user)
17554 (princ "\n")
17555 (princ "Built-in Speed commands\n=======================\n")
17556 (mapc 'org-print-speed-command org-speed-commands-default))
17557 (with-current-buffer "*Help*"
17558 (setq truncate-lines t))))
17560 (defun org-speed-move-safe (cmd)
17561 "Execute CMD, but make sure that the cursor always ends up in a headline.
17562 If not, return to the original position and throw an error."
17563 (interactive)
17564 (let ((pos (point)))
17565 (call-interactively cmd)
17566 (unless (and (bolp) (org-at-heading-p))
17567 (goto-char pos)
17568 (error "Boundary reached while executing %s" cmd))))
17570 (defvar org-self-insert-command-undo-counter 0)
17572 (defvar org-table-auto-blank-field) ; defined in org-table.el
17573 (defvar org-speed-command nil)
17575 (defun org-speed-command-default-hook (keys)
17576 "Hook for activating single-letter speed commands.
17577 `org-speed-commands-default' specifies a minimal command set.
17578 Use `org-speed-commands-user' for further customization."
17579 (when (or (and (bolp) (looking-at org-outline-regexp))
17580 (and (functionp org-use-speed-commands)
17581 (funcall org-use-speed-commands)))
17582 (cdr (assoc keys (append org-speed-commands-user
17583 org-speed-commands-default)))))
17585 (defun org-babel-speed-command-hook (keys)
17586 "Hook for activating single-letter code block commands."
17587 (when (and (bolp) (looking-at org-babel-src-block-regexp))
17588 (cdr (assoc keys org-babel-key-bindings))))
17590 (defcustom org-speed-command-hook
17591 '(org-speed-command-default-hook org-babel-speed-command-hook)
17592 "Hook for activating speed commands at strategic locations.
17593 Hook functions are called in sequence until a valid handler is
17594 found.
17596 Each hook takes a single argument, a user-pressed command key
17597 which is also a `self-insert-command' from the global map.
17599 Within the hook, examine the cursor position and the command key
17600 and return nil or a valid handler as appropriate. Handler could
17601 be one of an interactive command, a function, or a form.
17603 Set `org-use-speed-commands' to non-nil value to enable this
17604 hook. The default setting is `org-speed-command-default-hook'."
17605 :group 'org-structure
17606 :type 'hook)
17608 (defun org-self-insert-command (N)
17609 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
17610 If the cursor is in a table looking at whitespace, the whitespace is
17611 overwritten, and the table is not marked as requiring realignment."
17612 (interactive "p")
17613 (org-check-before-invisible-edit 'insert)
17614 (cond
17615 ((and org-use-speed-commands
17616 (setq org-speed-command
17617 (run-hook-with-args-until-success
17618 'org-speed-command-hook (this-command-keys))))
17619 (cond
17620 ((commandp org-speed-command)
17621 (setq this-command org-speed-command)
17622 (call-interactively org-speed-command))
17623 ((functionp org-speed-command)
17624 (funcall org-speed-command))
17625 ((and org-speed-command (listp org-speed-command))
17626 (eval org-speed-command))
17627 (t (let (org-use-speed-commands)
17628 (call-interactively 'org-self-insert-command)))))
17629 ((and
17630 (org-table-p)
17631 (progn
17632 ;; check if we blank the field, and if that triggers align
17633 (and (featurep 'org-table) org-table-auto-blank-field
17634 (member last-command
17635 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand))
17636 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
17637 ;; got extra space, this field does not determine column width
17638 (let (org-table-may-need-update) (org-table-blank-field))
17639 ;; no extra space, this field may determine column width
17640 (org-table-blank-field)))
17642 (eq N 1)
17643 (looking-at "[^|\n]* |"))
17644 (let (org-table-may-need-update)
17645 (goto-char (1- (match-end 0)))
17646 (delete-char -1)
17647 (goto-char (match-beginning 0))
17648 (self-insert-command N)))
17650 (setq org-table-may-need-update t)
17651 (self-insert-command N)
17652 (org-fix-tags-on-the-fly)
17653 (if org-self-insert-cluster-for-undo
17654 (if (not (eq last-command 'org-self-insert-command))
17655 (setq org-self-insert-command-undo-counter 1)
17656 (if (>= org-self-insert-command-undo-counter 20)
17657 (setq org-self-insert-command-undo-counter 1)
17658 (and (> org-self-insert-command-undo-counter 0)
17659 buffer-undo-list (listp buffer-undo-list)
17660 (not (cadr buffer-undo-list)) ; remove nil entry
17661 (setcdr buffer-undo-list (cddr buffer-undo-list)))
17662 (setq org-self-insert-command-undo-counter
17663 (1+ org-self-insert-command-undo-counter))))))))
17665 (defun org-check-before-invisible-edit (kind)
17666 "Check is editing if kind KIND would be dangerous with invisible text around.
17667 The detailed reaction depends on the user option `org-catch-invisible-edits'."
17668 ;; First, try to get out of here as quickly as possible, to reduce overhead
17669 (if (and org-catch-invisible-edits
17670 (or (not (boundp 'visible-mode)) (not visible-mode))
17671 (or (get-char-property (point) 'invisible)
17672 (get-char-property (max (point-min) (1- (point))) 'invisible)))
17673 ;; OK, we need to take a closer look
17674 (let* ((invisible-at-point (get-char-property (point) 'invisible))
17675 (invisible-before-point (if (bobp) nil (get-char-property
17676 (1- (point)) 'invisible)))
17677 (border-and-ok-direction
17679 ;; Check if we are acting predictably before invisible text
17680 (and invisible-at-point (not invisible-before-point)
17681 (memq kind '(insert delete-backward)))
17682 ;; Check if we are acting predictably after invisible text
17683 ;; This works not well, and I have turned it off. It seems
17684 ;; better to always show and stop after invisible text.
17685 ;; (and (not invisible-at-point) invisible-before-point
17686 ;; (memq kind '(insert delete)))
17689 (when (or (memq invisible-at-point '(outline org-hide-block))
17690 (memq invisible-before-point '(outline org-hide-block)))
17691 (if (eq org-catch-invisible-edits 'error)
17692 (error "Editing in invisible areas is prohibited - make visible first"))
17693 ;; Make the area visible
17694 (save-excursion
17695 (if invisible-before-point
17696 (goto-char (previous-single-char-property-change
17697 (point) 'invisible)))
17698 (org-cycle))
17699 (cond
17700 ((eq org-catch-invisible-edits 'show)
17701 ;; That's it, we do the edit after showing
17702 (message
17703 "Unfolding invisible region around point before editing")
17704 (sit-for 1))
17705 ((and (eq org-catch-invisible-edits 'smart)
17706 border-and-ok-direction)
17707 (message "Unfolding invisible region around point before editing"))
17709 ;; Don't do the edit, make the user repeat it in full visibility
17710 (error "Edit in invisible region aborted, repeat to confirm with text visible")))))))
17712 (defun org-fix-tags-on-the-fly ()
17713 (when (and (equal (char-after (point-at-bol)) ?*)
17714 (org-at-heading-p))
17715 (org-align-tags-here org-tags-column)))
17717 (defun org-delete-backward-char (N)
17718 "Like `delete-backward-char', insert whitespace at field end in tables.
17719 When deleting backwards, in tables this function will insert whitespace in
17720 front of the next \"|\" separator, to keep the table aligned. The table will
17721 still be marked for re-alignment if the field did fill the entire column,
17722 because, in this case the deletion might narrow the column."
17723 (interactive "p")
17724 (org-check-before-invisible-edit 'delete-backward)
17725 (if (and (org-table-p)
17726 (eq N 1)
17727 (string-match "|" (buffer-substring (point-at-bol) (point)))
17728 (looking-at ".*?|"))
17729 (let ((pos (point))
17730 (noalign (looking-at "[^|\n\r]* |"))
17731 (c org-table-may-need-update))
17732 (backward-delete-char N)
17733 (if (not overwrite-mode)
17734 (progn
17735 (skip-chars-forward "^|")
17736 (insert " ")
17737 (goto-char (1- pos))))
17738 ;; noalign: if there were two spaces at the end, this field
17739 ;; does not determine the width of the column.
17740 (if noalign (setq org-table-may-need-update c)))
17741 (backward-delete-char N)
17742 (org-fix-tags-on-the-fly)))
17744 (defun org-delete-char (N)
17745 "Like `delete-char', but insert whitespace at field end in tables.
17746 When deleting characters, in tables this function will insert whitespace in
17747 front of the next \"|\" separator, to keep the table aligned. The table will
17748 still be marked for re-alignment if the field did fill the entire column,
17749 because, in this case the deletion might narrow the column."
17750 (interactive "p")
17751 (org-check-before-invisible-edit 'delete)
17752 (if (and (org-table-p)
17753 (not (bolp))
17754 (not (= (char-after) ?|))
17755 (eq N 1))
17756 (if (looking-at ".*?|")
17757 (let ((pos (point))
17758 (noalign (looking-at "[^|\n\r]* |"))
17759 (c org-table-may-need-update))
17760 (replace-match (concat
17761 (substring (match-string 0) 1 -1)
17762 " |"))
17763 (goto-char pos)
17764 ;; noalign: if there were two spaces at the end, this field
17765 ;; does not determine the width of the column.
17766 (if noalign (setq org-table-may-need-update c)))
17767 (delete-char N))
17768 (delete-char N)
17769 (org-fix-tags-on-the-fly)))
17771 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
17772 (put 'org-self-insert-command 'delete-selection t)
17773 (put 'orgtbl-self-insert-command 'delete-selection t)
17774 (put 'org-delete-char 'delete-selection 'supersede)
17775 (put 'org-delete-backward-char 'delete-selection 'supersede)
17776 (put 'org-yank 'delete-selection 'yank)
17778 ;; Make `flyspell-mode' delay after some commands
17779 (put 'org-self-insert-command 'flyspell-delayed t)
17780 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
17781 (put 'org-delete-char 'flyspell-delayed t)
17782 (put 'org-delete-backward-char 'flyspell-delayed t)
17784 ;; Make pabbrev-mode expand after org-mode commands
17785 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
17786 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
17788 ;; How to do this: Measure non-white length of current string
17789 ;; If equal to column width, we should realign.
17791 (defun org-remap (map &rest commands)
17792 "In MAP, remap the functions given in COMMANDS.
17793 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
17794 (let (new old)
17795 (while commands
17796 (setq old (pop commands) new (pop commands))
17797 (if (fboundp 'command-remapping)
17798 (org-defkey map (vector 'remap old) new)
17799 (substitute-key-definition old new map global-map)))))
17801 (when (eq org-enable-table-editor 'optimized)
17802 ;; If the user wants maximum table support, we need to hijack
17803 ;; some standard editing functions
17804 (org-remap org-mode-map
17805 'self-insert-command 'org-self-insert-command
17806 'delete-char 'org-delete-char
17807 'delete-backward-char 'org-delete-backward-char)
17808 (org-defkey org-mode-map "|" 'org-force-self-insert))
17810 (defvar org-ctrl-c-ctrl-c-hook nil
17811 "Hook for functions attaching themselves to `C-c C-c'.
17813 This can be used to add additional functionality to the C-c C-c
17814 key which executes context-dependent commands. This hook is run
17815 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
17816 run after the last test.
17818 Each function will be called with no arguments. The function
17819 must check if the context is appropriate for it to act. If yes,
17820 it should do its thing and then return a non-nil value. If the
17821 context is wrong, just do nothing and return nil.")
17823 (defvar org-ctrl-c-ctrl-c-final-hook nil
17824 "Hook for functions attaching themselves to `C-c C-c'.
17826 This can be used to add additional functionality to the C-c C-c
17827 key which executes context-dependent commands. This hook is run
17828 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
17829 before the first test.
17831 Each function will be called with no arguments. The function
17832 must check if the context is appropriate for it to act. If yes,
17833 it should do its thing and then return a non-nil value. If the
17834 context is wrong, just do nothing and return nil.")
17836 (defvar org-tab-first-hook nil
17837 "Hook for functions to attach themselves to TAB.
17838 See `org-ctrl-c-ctrl-c-hook' for more information.
17839 This hook runs as the first action when TAB is pressed, even before
17840 `org-cycle' messes around with the `outline-regexp' to cater for
17841 inline tasks and plain list item folding.
17842 If any function in this hook returns t, any other actions that
17843 would have been caused by TAB (such as table field motion or visibility
17844 cycling) will not occur.")
17846 (defvar org-tab-after-check-for-table-hook nil
17847 "Hook for functions to attach themselves to TAB.
17848 See `org-ctrl-c-ctrl-c-hook' for more information.
17849 This hook runs after it has been established that the cursor is not in a
17850 table, but before checking if the cursor is in a headline or if global cycling
17851 should be done.
17852 If any function in this hook returns t, not other actions like visibility
17853 cycling will be done.")
17855 (defvar org-tab-after-check-for-cycling-hook nil
17856 "Hook for functions to attach themselves to TAB.
17857 See `org-ctrl-c-ctrl-c-hook' for more information.
17858 This hook runs after it has been established that not table field motion and
17859 not visibility should be done because of current context. This is probably
17860 the place where a package like yasnippets can hook in.")
17862 (defvar org-tab-before-tab-emulation-hook nil
17863 "Hook for functions to attach themselves to TAB.
17864 See `org-ctrl-c-ctrl-c-hook' for more information.
17865 This hook runs after every other options for TAB have been exhausted, but
17866 before indentation and \t insertion takes place.")
17868 (defvar org-metaleft-hook nil
17869 "Hook for functions attaching themselves to `M-left'.
17870 See `org-ctrl-c-ctrl-c-hook' for more information.")
17871 (defvar org-metaright-hook nil
17872 "Hook for functions attaching themselves to `M-right'.
17873 See `org-ctrl-c-ctrl-c-hook' for more information.")
17874 (defvar org-metaup-hook nil
17875 "Hook for functions attaching themselves to `M-up'.
17876 See `org-ctrl-c-ctrl-c-hook' for more information.")
17877 (defvar org-metadown-hook nil
17878 "Hook for functions attaching themselves to `M-down'.
17879 See `org-ctrl-c-ctrl-c-hook' for more information.")
17880 (defvar org-shiftmetaleft-hook nil
17881 "Hook for functions attaching themselves to `M-S-left'.
17882 See `org-ctrl-c-ctrl-c-hook' for more information.")
17883 (defvar org-shiftmetaright-hook nil
17884 "Hook for functions attaching themselves to `M-S-right'.
17885 See `org-ctrl-c-ctrl-c-hook' for more information.")
17886 (defvar org-shiftmetaup-hook nil
17887 "Hook for functions attaching themselves to `M-S-up'.
17888 See `org-ctrl-c-ctrl-c-hook' for more information.")
17889 (defvar org-shiftmetadown-hook nil
17890 "Hook for functions attaching themselves to `M-S-down'.
17891 See `org-ctrl-c-ctrl-c-hook' for more information.")
17892 (defvar org-metareturn-hook nil
17893 "Hook for functions attaching themselves to `M-RET'.
17894 See `org-ctrl-c-ctrl-c-hook' for more information.")
17895 (defvar org-shiftup-hook nil
17896 "Hook for functions attaching themselves to `S-up'.
17897 See `org-ctrl-c-ctrl-c-hook' for more information.")
17898 (defvar org-shiftup-final-hook nil
17899 "Hook for functions attaching themselves to `S-up'.
17900 This one runs after all other options except shift-select have been excluded.
17901 See `org-ctrl-c-ctrl-c-hook' for more information.")
17902 (defvar org-shiftdown-hook nil
17903 "Hook for functions attaching themselves to `S-down'.
17904 See `org-ctrl-c-ctrl-c-hook' for more information.")
17905 (defvar org-shiftdown-final-hook nil
17906 "Hook for functions attaching themselves to `S-down'.
17907 This one runs after all other options except shift-select have been excluded.
17908 See `org-ctrl-c-ctrl-c-hook' for more information.")
17909 (defvar org-shiftleft-hook nil
17910 "Hook for functions attaching themselves to `S-left'.
17911 See `org-ctrl-c-ctrl-c-hook' for more information.")
17912 (defvar org-shiftleft-final-hook nil
17913 "Hook for functions attaching themselves to `S-left'.
17914 This one runs after all other options except shift-select have been excluded.
17915 See `org-ctrl-c-ctrl-c-hook' for more information.")
17916 (defvar org-shiftright-hook nil
17917 "Hook for functions attaching themselves to `S-right'.
17918 See `org-ctrl-c-ctrl-c-hook' for more information.")
17919 (defvar org-shiftright-final-hook nil
17920 "Hook for functions attaching themselves to `S-right'.
17921 This one runs after all other options except shift-select have been excluded.
17922 See `org-ctrl-c-ctrl-c-hook' for more information.")
17924 (defun org-modifier-cursor-error ()
17925 "Throw an error, a modified cursor command was applied in wrong context."
17926 (error "This command is active in special context like tables, headlines or items"))
17928 (defun org-shiftselect-error ()
17929 "Throw an error because Shift-Cursor command was applied in wrong context."
17930 (if (and (boundp 'shift-select-mode) shift-select-mode)
17931 (error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
17932 (error "This command works only in special context like headlines or timestamps")))
17934 (defun org-call-for-shift-select (cmd)
17935 (let ((this-command-keys-shift-translated t))
17936 (call-interactively cmd)))
17938 (defun org-shifttab (&optional arg)
17939 "Global visibility cycling or move to previous table field.
17940 Calls `org-cycle' with argument t, or `org-table-previous-field', depending
17941 on context.
17942 See the individual commands for more information."
17943 (interactive "P")
17944 (cond
17945 ((org-at-table-p) (call-interactively 'org-table-previous-field))
17946 ((integerp arg)
17947 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
17948 (message "Content view to level: %d" arg)
17949 (org-content (prefix-numeric-value arg2))
17950 (setq org-cycle-global-status 'overview)))
17951 (t (call-interactively 'org-global-cycle))))
17953 (defun org-shiftmetaleft ()
17954 "Promote subtree or delete table column.
17955 Calls `org-promote-subtree', `org-outdent-item',
17956 or `org-table-delete-column', depending on context.
17957 See the individual commands for more information."
17958 (interactive)
17959 (cond
17960 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
17961 ((org-at-table-p) (call-interactively 'org-table-delete-column))
17962 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
17963 ((org-at-item-p) (call-interactively 'org-outdent-item-tree))
17964 (t (org-modifier-cursor-error))))
17966 (defun org-shiftmetaright ()
17967 "Demote subtree or insert table column.
17968 Calls `org-demote-subtree', `org-indent-item',
17969 or `org-table-insert-column', depending on context.
17970 See the individual commands for more information."
17971 (interactive)
17972 (cond
17973 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
17974 ((org-at-table-p) (call-interactively 'org-table-insert-column))
17975 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
17976 ((org-at-item-p) (call-interactively 'org-indent-item-tree))
17977 (t (org-modifier-cursor-error))))
17979 (defun org-shiftmetaup (&optional arg)
17980 "Move subtree up or kill table row.
17981 Calls `org-move-subtree-up' or `org-table-kill-row' or
17982 `org-move-item-up' depending on context. See the individual commands
17983 for more information."
17984 (interactive "P")
17985 (cond
17986 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
17987 ((org-at-table-p) (call-interactively 'org-table-kill-row))
17988 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
17989 ((org-at-item-p) (call-interactively 'org-move-item-up))
17990 (t (org-modifier-cursor-error))))
17992 (defun org-shiftmetadown (&optional arg)
17993 "Move subtree down or insert table row.
17994 Calls `org-move-subtree-down' or `org-table-insert-row' or
17995 `org-move-item-down', depending on context. See the individual
17996 commands for more information."
17997 (interactive "P")
17998 (cond
17999 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
18000 ((org-at-table-p) (call-interactively 'org-table-insert-row))
18001 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
18002 ((org-at-item-p) (call-interactively 'org-move-item-down))
18003 (t (org-modifier-cursor-error))))
18005 (defsubst org-hidden-tree-error ()
18006 (error
18007 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
18009 (defun org-metaleft (&optional arg)
18010 "Promote heading or move table column to left.
18011 Calls `org-do-promote' or `org-table-move-column', depending on context.
18012 With no specific context, calls the Emacs default `backward-word'.
18013 See the individual commands for more information."
18014 (interactive "P")
18015 (cond
18016 ((run-hook-with-args-until-success 'org-metaleft-hook))
18017 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
18018 ((org-with-limited-levels
18019 (or (org-at-heading-p)
18020 (and (org-region-active-p)
18021 (save-excursion
18022 (goto-char (region-beginning))
18023 (org-at-heading-p)))))
18024 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
18025 (call-interactively 'org-do-promote))
18026 ;; At an inline task.
18027 ((org-at-heading-p)
18028 (call-interactively 'org-inlinetask-promote))
18029 ((or (org-at-item-p)
18030 (and (org-region-active-p)
18031 (save-excursion
18032 (goto-char (region-beginning))
18033 (org-at-item-p))))
18034 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
18035 (call-interactively 'org-outdent-item))
18036 (t (call-interactively 'backward-word))))
18038 (defun org-metaright (&optional arg)
18039 "Demote subtree or move table column to right.
18040 Calls `org-do-demote' or `org-table-move-column', depending on context.
18041 With no specific context, calls the Emacs default `forward-word'.
18042 See the individual commands for more information."
18043 (interactive "P")
18044 (cond
18045 ((run-hook-with-args-until-success 'org-metaright-hook))
18046 ((org-at-table-p) (call-interactively 'org-table-move-column))
18047 ((org-with-limited-levels
18048 (or (org-at-heading-p)
18049 (and (org-region-active-p)
18050 (save-excursion
18051 (goto-char (region-beginning))
18052 (org-at-heading-p)))))
18053 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
18054 (call-interactively 'org-do-demote))
18055 ;; At an inline task.
18056 ((org-at-heading-p)
18057 (call-interactively 'org-inlinetask-demote))
18058 ((or (org-at-item-p)
18059 (and (org-region-active-p)
18060 (save-excursion
18061 (goto-char (region-beginning))
18062 (org-at-item-p))))
18063 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
18064 (call-interactively 'org-indent-item))
18065 (t (call-interactively 'forward-word))))
18067 (defun org-check-for-hidden (what)
18068 "Check if there are hidden headlines/items in the current visual line.
18069 WHAT can be either `headlines' or `items'. If the current line is
18070 an outline or item heading and it has a folded subtree below it,
18071 this function returns t, nil otherwise."
18072 (let ((re (cond
18073 ((eq what 'headlines) org-outline-regexp-bol)
18074 ((eq what 'items) (org-item-beginning-re))
18075 (t (error "This should not happen"))))
18076 beg end)
18077 (save-excursion
18078 (catch 'exit
18079 (unless (org-region-active-p)
18080 (setq beg (point-at-bol))
18081 (beginning-of-line 2)
18082 (while (and (not (eobp)) ;; this is like `next-line'
18083 (get-char-property (1- (point)) 'invisible))
18084 (beginning-of-line 2))
18085 (setq end (point))
18086 (goto-char beg)
18087 (goto-char (point-at-eol))
18088 (setq end (max end (point)))
18089 (while (re-search-forward re end t)
18090 (if (get-char-property (match-beginning 0) 'invisible)
18091 (throw 'exit t))))
18092 nil))))
18094 (defun org-metaup (&optional arg)
18095 "Move subtree up or move table row up.
18096 Calls `org-move-subtree-up' or `org-table-move-row' or
18097 `org-move-item-up', depending on context. See the individual commands
18098 for more information."
18099 (interactive "P")
18100 (cond
18101 ((run-hook-with-args-until-success 'org-metaup-hook))
18102 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
18103 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
18104 ((org-at-item-p) (call-interactively 'org-move-item-up))
18105 (t (transpose-lines 1) (beginning-of-line -1))))
18107 (defun org-metadown (&optional arg)
18108 "Move subtree down or move table row down.
18109 Calls `org-move-subtree-down' or `org-table-move-row' or
18110 `org-move-item-down', depending on context. See the individual
18111 commands for more information."
18112 (interactive "P")
18113 (cond
18114 ((run-hook-with-args-until-success 'org-metadown-hook))
18115 ((org-at-table-p) (call-interactively 'org-table-move-row))
18116 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
18117 ((org-at-item-p) (call-interactively 'org-move-item-down))
18118 (t (beginning-of-line 2) (transpose-lines 1) (beginning-of-line 0))))
18120 (defun org-shiftup (&optional arg)
18121 "Increase item in timestamp or increase priority of current headline.
18122 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
18123 depending on context. See the individual commands for more information."
18124 (interactive "P")
18125 (cond
18126 ((run-hook-with-args-until-success 'org-shiftup-hook))
18127 ((and org-support-shift-select (org-region-active-p))
18128 (org-call-for-shift-select 'previous-line))
18129 ((org-at-timestamp-p t)
18130 (call-interactively (if org-edit-timestamp-down-means-later
18131 'org-timestamp-down 'org-timestamp-up)))
18132 ((and (not (eq org-support-shift-select 'always))
18133 org-enable-priority-commands
18134 (org-at-heading-p))
18135 (call-interactively 'org-priority-up))
18136 ((and (not org-support-shift-select) (org-at-item-p))
18137 (call-interactively 'org-previous-item))
18138 ((org-clocktable-try-shift 'up arg))
18139 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
18140 (org-support-shift-select
18141 (org-call-for-shift-select 'previous-line))
18142 (t (org-shiftselect-error))))
18144 (defun org-shiftdown (&optional arg)
18145 "Decrease item in timestamp or decrease priority of current headline.
18146 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
18147 depending on context. See the individual commands for more information."
18148 (interactive "P")
18149 (cond
18150 ((run-hook-with-args-until-success 'org-shiftdown-hook))
18151 ((and org-support-shift-select (org-region-active-p))
18152 (org-call-for-shift-select 'next-line))
18153 ((org-at-timestamp-p t)
18154 (call-interactively (if org-edit-timestamp-down-means-later
18155 'org-timestamp-up 'org-timestamp-down)))
18156 ((and (not (eq org-support-shift-select 'always))
18157 org-enable-priority-commands
18158 (org-at-heading-p))
18159 (call-interactively 'org-priority-down))
18160 ((and (not org-support-shift-select) (org-at-item-p))
18161 (call-interactively 'org-next-item))
18162 ((org-clocktable-try-shift 'down arg))
18163 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
18164 (org-support-shift-select
18165 (org-call-for-shift-select 'next-line))
18166 (t (org-shiftselect-error))))
18168 (defun org-shiftright (&optional arg)
18169 "Cycle the thing at point or in the current line, depending on context.
18170 Depending on context, this does one of the following:
18172 - switch a timestamp at point one day into the future
18173 - on a headline, switch to the next TODO keyword.
18174 - on an item, switch entire list to the next bullet type
18175 - on a property line, switch to the next allowed value
18176 - on a clocktable definition line, move time block into the future"
18177 (interactive "P")
18178 (cond
18179 ((run-hook-with-args-until-success 'org-shiftright-hook))
18180 ((and org-support-shift-select (org-region-active-p))
18181 (org-call-for-shift-select 'forward-char))
18182 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
18183 ((and (not (eq org-support-shift-select 'always))
18184 (org-at-heading-p))
18185 (let ((org-inhibit-logging
18186 (not org-treat-S-cursor-todo-selection-as-state-change))
18187 (org-inhibit-blocking
18188 (not org-treat-S-cursor-todo-selection-as-state-change)))
18189 (org-call-with-arg 'org-todo 'right)))
18190 ((or (and org-support-shift-select
18191 (not (eq org-support-shift-select 'always))
18192 (org-at-item-bullet-p))
18193 (and (not org-support-shift-select) (org-at-item-p)))
18194 (org-call-with-arg 'org-cycle-list-bullet nil))
18195 ((and (not (eq org-support-shift-select 'always))
18196 (org-at-property-p))
18197 (call-interactively 'org-property-next-allowed-value))
18198 ((org-clocktable-try-shift 'right arg))
18199 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
18200 (org-support-shift-select
18201 (org-call-for-shift-select 'forward-char))
18202 (t (org-shiftselect-error))))
18204 (defun org-shiftleft (&optional arg)
18205 "Cycle the thing at point or in the current line, depending on context.
18206 Depending on context, this does one of the following:
18208 - switch a timestamp at point one day into the past
18209 - on a headline, switch to the previous TODO keyword.
18210 - on an item, switch entire list to the previous bullet type
18211 - on a property line, switch to the previous allowed value
18212 - on a clocktable definition line, move time block into the past"
18213 (interactive "P")
18214 (cond
18215 ((run-hook-with-args-until-success 'org-shiftleft-hook))
18216 ((and org-support-shift-select (org-region-active-p))
18217 (org-call-for-shift-select 'backward-char))
18218 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
18219 ((and (not (eq org-support-shift-select 'always))
18220 (org-at-heading-p))
18221 (let ((org-inhibit-logging
18222 (not org-treat-S-cursor-todo-selection-as-state-change))
18223 (org-inhibit-blocking
18224 (not org-treat-S-cursor-todo-selection-as-state-change)))
18225 (org-call-with-arg 'org-todo 'left)))
18226 ((or (and org-support-shift-select
18227 (not (eq org-support-shift-select 'always))
18228 (org-at-item-bullet-p))
18229 (and (not org-support-shift-select) (org-at-item-p)))
18230 (org-call-with-arg 'org-cycle-list-bullet 'previous))
18231 ((and (not (eq org-support-shift-select 'always))
18232 (org-at-property-p))
18233 (call-interactively 'org-property-previous-allowed-value))
18234 ((org-clocktable-try-shift 'left arg))
18235 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
18236 (org-support-shift-select
18237 (org-call-for-shift-select 'backward-char))
18238 (t (org-shiftselect-error))))
18240 (defun org-shiftcontrolright ()
18241 "Switch to next TODO set."
18242 (interactive)
18243 (cond
18244 ((and org-support-shift-select (org-region-active-p))
18245 (org-call-for-shift-select 'forward-word))
18246 ((and (not (eq org-support-shift-select 'always))
18247 (org-at-heading-p))
18248 (org-call-with-arg 'org-todo 'nextset))
18249 (org-support-shift-select
18250 (org-call-for-shift-select 'forward-word))
18251 (t (org-shiftselect-error))))
18253 (defun org-shiftcontrolleft ()
18254 "Switch to previous TODO set."
18255 (interactive)
18256 (cond
18257 ((and org-support-shift-select (org-region-active-p))
18258 (org-call-for-shift-select 'backward-word))
18259 ((and (not (eq org-support-shift-select 'always))
18260 (org-at-heading-p))
18261 (org-call-with-arg 'org-todo 'previousset))
18262 (org-support-shift-select
18263 (org-call-for-shift-select 'backward-word))
18264 (t (org-shiftselect-error))))
18266 (defun org-shiftcontrolup ()
18267 "Change timestamps synchronously up in CLOCK log lines."
18268 (interactive)
18269 (cond ((and (not org-support-shift-select)
18270 (org-at-clock-log-p)
18271 (org-at-timestamp-p t))
18272 (org-clock-timestamps-up))
18273 (t (org-shiftselect-error))))
18275 (defun org-shiftcontroldown ()
18276 "Change timestamps synchronously down in CLOCK log lines."
18277 (interactive)
18278 (cond ((and (not org-support-shift-select)
18279 (org-at-clock-log-p)
18280 (org-at-timestamp-p t))
18281 (org-clock-timestamps-down))
18282 (t (org-shiftselect-error))))
18284 (defun org-ctrl-c-ret ()
18285 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
18286 (interactive)
18287 (cond
18288 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
18289 (t (call-interactively 'org-insert-heading))))
18291 (defun org-find-visible ()
18292 (let ((s (point)))
18293 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
18294 (get-char-property s 'invisible)))
18296 (defun org-find-invisible ()
18297 (let ((s (point)))
18298 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
18299 (not (get-char-property s 'invisible))))
18302 (defun org-copy-visible (beg end)
18303 "Copy the visible parts of the region."
18304 (interactive "r")
18305 (let (snippets s)
18306 (save-excursion
18307 (save-restriction
18308 (narrow-to-region beg end)
18309 (setq s (goto-char (point-min)))
18310 (while (not (= (point) (point-max)))
18311 (goto-char (org-find-invisible))
18312 (push (buffer-substring s (point)) snippets)
18313 (setq s (goto-char (org-find-visible))))))
18314 (kill-new (apply 'concat (nreverse snippets)))))
18316 (defun org-copy-special ()
18317 "Copy region in table or copy current subtree.
18318 Calls `org-table-copy' or `org-copy-subtree', depending on context.
18319 See the individual commands for more information."
18320 (interactive)
18321 (call-interactively
18322 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
18324 (defun org-cut-special ()
18325 "Cut region in table or cut current subtree.
18326 Calls `org-table-copy' or `org-cut-subtree', depending on context.
18327 See the individual commands for more information."
18328 (interactive)
18329 (call-interactively
18330 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
18332 (defun org-paste-special (arg)
18333 "Paste rectangular region into table, or past subtree relative to level.
18334 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
18335 See the individual commands for more information."
18336 (interactive "P")
18337 (if (org-at-table-p)
18338 (org-table-paste-rectangle)
18339 (org-paste-subtree arg)))
18341 (defun org-edit-special (&optional arg)
18342 "Call a special editor for the stuff at point.
18343 When at a table, call the formula editor with `org-table-edit-formulas'.
18344 When at the first line of an src example, call `org-edit-src-code'.
18345 When in an #+include line, visit the include file. Otherwise call
18346 `ffap' to visit the file at point."
18347 (interactive)
18348 ;; possibly prep session before editing source
18349 (when arg
18350 (let* ((info (org-babel-get-src-block-info))
18351 (lang (nth 0 info))
18352 (params (nth 2 info))
18353 (session (cdr (assoc :session params))))
18354 (when (and info session) ;; we are in a source-code block with a session
18355 (funcall
18356 (intern (concat "org-babel-prep-session:" lang)) session params))))
18357 (cond ;; proceed with `org-edit-special'
18358 ((save-excursion
18359 (beginning-of-line 1)
18360 (looking-at "\\(?:#\\+\\(?:setupfile\\|include\\):?[ \t]+\"?\\|[ \t]*<include\\>.*?file=\"\\)\\([^\"\n>]+\\)"))
18361 (find-file (org-trim (match-string 1))))
18362 ((org-edit-src-code))
18363 ((org-edit-fixed-width-region))
18364 ((org-at-table.el-p)
18365 (org-edit-src-code))
18366 ((or (org-at-table-p)
18367 (save-excursion
18368 (beginning-of-line 1)
18369 (looking-at "[ \t]*#\\+TBLFM:")))
18370 (call-interactively 'org-table-edit-formulas))
18371 (t (call-interactively 'ffap))))
18373 (defvar org-table-coordinate-overlays) ; defined in org-table.el
18374 (defun org-ctrl-c-ctrl-c (&optional arg)
18375 "Set tags in headline, or update according to changed information at point.
18377 This command does many different things, depending on context:
18379 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
18380 this is what we do.
18382 - If the cursor is on a statistics cookie, update it.
18384 - If the cursor is in a headline, prompt for tags and insert them
18385 into the current line, aligned to `org-tags-column'. When called
18386 with prefix arg, realign all tags in the current buffer.
18388 - If the cursor is in one of the special #+KEYWORD lines, this
18389 triggers scanning the buffer for these lines and updating the
18390 information.
18392 - If the cursor is inside a table, realign the table. This command
18393 works even if the automatic table editor has been turned off.
18395 - If the cursor is on a #+TBLFM line, re-apply the formulas to
18396 the entire table.
18398 - If the cursor is at a footnote reference or definition, jump to
18399 the corresponding definition or references, respectively.
18401 - If the cursor is a the beginning of a dynamic block, update it.
18403 - If the current buffer is a capture buffer, close note and file it.
18405 - If the cursor is on a <<<target>>>, update radio targets and
18406 corresponding links in this buffer.
18408 - If the cursor is on a numbered item in a plain list, renumber the
18409 ordered list.
18411 - If the cursor is on a checkbox, toggle it.
18413 - If the cursor is on a code block, evaluate it. The variable
18414 `org-confirm-babel-evaluate' can be used to control prompting
18415 before code block evaluation, by default every code block
18416 evaluation requires confirmation. Code block evaluation can be
18417 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
18418 (interactive "P")
18419 (let ((org-enable-table-editor t))
18420 (cond
18421 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
18422 org-occur-highlights
18423 org-latex-fragment-image-overlays)
18424 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
18425 (org-remove-occur-highlights)
18426 (org-remove-latex-fragment-image-overlays)
18427 (message "Temporary highlights/overlays removed from current buffer"))
18428 ((and (local-variable-p 'org-finish-function (current-buffer))
18429 (fboundp org-finish-function))
18430 (funcall org-finish-function))
18431 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
18432 ((org-in-regexp org-ts-regexp-both)
18433 (org-timestamp-change 0 'day))
18434 ((or (looking-at org-property-start-re)
18435 (org-at-property-p))
18436 (call-interactively 'org-property-action))
18437 ((org-at-target-p) (call-interactively 'org-update-radio-target-regexp))
18438 ((and (org-in-regexp "\\[\\([0-9]*%\\|[0-9]*/[0-9]*\\)\\]")
18439 (or (org-at-heading-p) (org-at-item-p)))
18440 (call-interactively 'org-update-statistics-cookies))
18441 ((org-at-heading-p) (call-interactively 'org-set-tags))
18442 ((org-at-table.el-p)
18443 (message "Use C-c ' to edit table.el tables"))
18444 ((org-at-table-p)
18445 (org-table-maybe-eval-formula)
18446 (if arg
18447 (call-interactively 'org-table-recalculate)
18448 (org-table-maybe-recalculate-line))
18449 (call-interactively 'org-table-align)
18450 (orgtbl-send-table 'maybe))
18451 ((or (org-footnote-at-reference-p)
18452 (org-footnote-at-definition-p))
18453 (call-interactively 'org-footnote-action))
18454 ((org-at-item-checkbox-p)
18455 ;; Cursor at a checkbox: repair list and update checkboxes. Send
18456 ;; list only if at top item.
18457 (let* ((cbox (match-string 1))
18458 (struct (org-list-struct))
18459 (old-struct (copy-tree struct))
18460 (parents (org-list-parents-alist struct))
18461 (orderedp (org-entry-get nil "ORDERED"))
18462 (firstp (= (org-list-get-top-point struct) (point-at-bol)))
18463 block-item)
18464 ;; Use a light version of `org-toggle-checkbox' to avoid
18465 ;; computing list structure twice.
18466 (let ((new-box (cond
18467 ((equal arg '(16)) "[-]")
18468 ((equal arg '(4)) nil)
18469 ((equal "[X]" cbox) "[ ]")
18470 (t "[X]"))))
18471 (if (and firstp arg)
18472 ;; If at first item of sub-list, remove check-box from
18473 ;; every item at the same level.
18474 (mapc
18475 (lambda (pos) (org-list-set-checkbox pos struct new-box))
18476 (org-list-get-all-items
18477 (point-at-bol) struct (org-list-prevs-alist struct)))
18478 (org-list-set-checkbox (point-at-bol) struct new-box)))
18479 ;; Replicate `org-list-write-struct', while grabbing a return
18480 ;; value from `org-list-struct-fix-box'.
18481 (org-list-struct-fix-ind struct parents 2)
18482 (org-list-struct-fix-item-end struct)
18483 (let ((prevs (org-list-prevs-alist struct)))
18484 (org-list-struct-fix-bul struct prevs)
18485 (org-list-struct-fix-ind struct parents)
18486 (setq block-item
18487 (org-list-struct-fix-box struct parents prevs orderedp)))
18488 (org-list-struct-apply-struct struct old-struct)
18489 (org-update-checkbox-count-maybe)
18490 (when block-item
18491 (message
18492 "Checkboxes were removed due to unchecked box at line %d"
18493 (org-current-line block-item)))
18494 (when firstp (org-list-send-list 'maybe))))
18495 ((org-at-item-p)
18496 ;; Cursor at an item: repair list. Do checkbox related actions
18497 ;; only if function was called with an argument. Send list only
18498 ;; if at top item.
18499 (let* ((struct (org-list-struct))
18500 (firstp (= (org-list-get-top-point struct) (point-at-bol)))
18501 old-struct)
18502 (when arg
18503 (setq old-struct (copy-tree struct))
18504 (if firstp
18505 ;; If at first item of sub-list, add check-box to every
18506 ;; item at the same level.
18507 (mapc
18508 (lambda (pos)
18509 (unless (org-list-get-checkbox pos struct)
18510 (org-list-set-checkbox pos struct "[ ]")))
18511 (org-list-get-all-items
18512 (point-at-bol) struct (org-list-prevs-alist struct)))
18513 (org-list-set-checkbox (point-at-bol) struct "[ ]")))
18514 (org-list-write-struct
18515 struct (org-list-parents-alist struct) old-struct)
18516 (when arg (org-update-checkbox-count-maybe))
18517 (when firstp (org-list-send-list 'maybe))))
18518 ((save-excursion (beginning-of-line 1) (looking-at org-dblock-start-re))
18519 ;; Dynamic block
18520 (beginning-of-line 1)
18521 (save-excursion (org-update-dblock)))
18522 ((save-excursion
18523 (beginning-of-line 1)
18524 (looking-at "[ \t]*#\\+\\([A-Z]+\\)"))
18525 (cond
18526 ((equal (match-string 1) "TBLFM")
18527 ;; Recalculate the table before this line
18528 (save-excursion
18529 (beginning-of-line 1)
18530 (skip-chars-backward " \r\n\t")
18531 (if (org-at-table-p)
18532 (org-call-with-arg 'org-table-recalculate (or arg t)))))
18534 (let ((org-inhibit-startup-visibility-stuff t)
18535 (org-startup-align-all-tables nil))
18536 (when (boundp 'org-table-coordinate-overlays)
18537 (mapc 'delete-overlay org-table-coordinate-overlays)
18538 (setq org-table-coordinate-overlays nil))
18539 (org-save-outline-visibility 'use-markers (org-mode-restart)))
18540 (message "Local setup has been refreshed"))))
18541 ((org-clock-update-time-maybe))
18543 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
18544 (error "C-c C-c can do nothing useful at this location"))))))
18546 (defun org-mode-restart ()
18547 "Restart Org-mode, to scan again for special lines.
18548 Also updates the keyword regular expressions."
18549 (interactive)
18550 (org-mode)
18551 (message "Org-mode restarted"))
18553 (defun org-kill-note-or-show-branches ()
18554 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
18555 (interactive)
18556 (if (not org-finish-function)
18557 (progn
18558 (hide-subtree)
18559 (call-interactively 'show-branches))
18560 (let ((org-note-abort t))
18561 (funcall org-finish-function))))
18563 (defun org-return (&optional indent)
18564 "Goto next table row or insert a newline.
18565 Calls `org-table-next-row' or `newline', depending on context.
18566 See the individual commands for more information."
18567 (interactive)
18568 (cond
18569 ((or (bobp) (org-in-src-block-p))
18570 (if indent (newline-and-indent) (newline)))
18571 ((org-at-table-p)
18572 (org-table-justify-field-maybe)
18573 (call-interactively 'org-table-next-row))
18574 ;; when `newline-and-indent' is called within a list, make sure
18575 ;; text moved stays inside the item.
18576 ((and (org-in-item-p) indent)
18577 (if (and (org-at-item-p) (>= (point) (match-end 0)))
18578 (progn
18579 (save-match-data (newline))
18580 (org-indent-line-to (length (match-string 0))))
18581 (let ((ind (org-get-indentation)))
18582 (newline)
18583 (if (org-looking-back org-list-end-re)
18584 (org-indent-line-function)
18585 (org-indent-line-to ind)))))
18586 ((and org-return-follows-link
18587 (let ((tprop (get-text-property (point) 'face)))
18588 (or (eq tprop 'org-link)
18589 (and (listp tprop) (memq 'org-link tprop)))))
18590 (call-interactively 'org-open-at-point))
18591 ((and (org-at-heading-p)
18592 (looking-at
18593 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
18594 (org-show-entry)
18595 (end-of-line 1)
18596 (newline))
18597 (t (if indent (newline-and-indent) (newline)))))
18599 (defun org-return-indent ()
18600 "Goto next table row or insert a newline and indent.
18601 Calls `org-table-next-row' or `newline-and-indent', depending on
18602 context. See the individual commands for more information."
18603 (interactive)
18604 (org-return t))
18606 (defun org-ctrl-c-star ()
18607 "Compute table, or change heading status of lines.
18608 Calls `org-table-recalculate' or `org-toggle-heading',
18609 depending on context."
18610 (interactive)
18611 (cond
18612 ((org-at-table-p)
18613 (call-interactively 'org-table-recalculate))
18615 ;; Convert all lines in region to list items
18616 (call-interactively 'org-toggle-heading))))
18618 (defun org-ctrl-c-minus ()
18619 "Insert separator line in table or modify bullet status of line.
18620 Also turns a plain line or a region of lines into list items.
18621 Calls `org-table-insert-hline', `org-toggle-item', or
18622 `org-cycle-list-bullet', depending on context."
18623 (interactive)
18624 (cond
18625 ((org-at-table-p)
18626 (call-interactively 'org-table-insert-hline))
18627 ((org-region-active-p)
18628 (call-interactively 'org-toggle-item))
18629 ((org-in-item-p)
18630 (call-interactively 'org-cycle-list-bullet))
18632 (call-interactively 'org-toggle-item))))
18634 (defun org-toggle-item (arg)
18635 "Convert headings or normal lines to items, items to normal lines.
18636 If there is no active region, only the current line is considered.
18638 If the first non blank line in the region is an headline, convert
18639 all headlines to items, shifting text accordingly.
18641 If it is an item, convert all items to normal lines.
18643 If it is normal text, change region into an item. With a prefix
18644 argument ARG, change each line in region into an item."
18645 (interactive "P")
18646 (let ((shift-text
18647 (function
18648 ;; Shift text in current section to IND, from point to END.
18649 ;; The function leaves point to END line.
18650 (lambda (ind end)
18651 (let ((min-i 1000) (end (copy-marker end)))
18652 ;; First determine the minimum indentation (MIN-I) of
18653 ;; the text.
18654 (save-excursion
18655 (catch 'exit
18656 (while (< (point) end)
18657 (let ((i (org-get-indentation)))
18658 (cond
18659 ;; Skip blank lines and inline tasks.
18660 ((looking-at "^[ \t]*$"))
18661 ((looking-at org-outline-regexp-bol))
18662 ;; We can't find less than 0 indentation.
18663 ((zerop i) (throw 'exit (setq min-i 0)))
18664 ((< i min-i) (setq min-i i))))
18665 (forward-line))))
18666 ;; Then indent each line so that a line indented to
18667 ;; MIN-I becomes indented to IND. Ignore blank lines
18668 ;; and inline tasks in the process.
18669 (let ((delta (- ind min-i)))
18670 (while (< (point) end)
18671 (unless (or (looking-at "^[ \t]*$")
18672 (looking-at org-outline-regexp-bol))
18673 (org-indent-line-to (+ (org-get-indentation) delta)))
18674 (forward-line)))))))
18675 (skip-blanks
18676 (function
18677 ;; Return beginning of first non-blank line, starting from
18678 ;; line at POS.
18679 (lambda (pos)
18680 (save-excursion
18681 (goto-char pos)
18682 (skip-chars-forward " \r\t\n")
18683 (point-at-bol)))))
18684 beg end)
18685 ;; Determine boundaries of changes.
18686 (if (org-region-active-p)
18687 (setq beg (funcall skip-blanks (region-beginning))
18688 end (copy-marker (region-end)))
18689 (setq beg (funcall skip-blanks (point-at-bol))
18690 end (copy-marker (point-at-eol))))
18691 ;; Depending on the starting line, choose an action on the text
18692 ;; between BEG and END.
18693 (org-with-limited-levels
18694 (save-excursion
18695 (goto-char beg)
18696 (cond
18697 ;; Case 1. Start at an item: de-itemize. Note that it only
18698 ;; happens when a region is active: `org-ctrl-c-minus'
18699 ;; would call `org-cycle-list-bullet' otherwise.
18700 ((org-at-item-p)
18701 (while (< (point) end)
18702 (when (org-at-item-p)
18703 (skip-chars-forward " \t")
18704 (delete-region (point) (match-end 0)))
18705 (forward-line)))
18706 ;; Case 2. Start at an heading: convert to items.
18707 ((org-at-heading-p)
18708 (let* ((bul (org-list-bullet-string "-"))
18709 (bul-len (length bul))
18710 ;; Indentation of the first heading. It should be
18711 ;; relative to the indentation of its parent, if any.
18712 (start-ind (save-excursion
18713 (cond
18714 ((not org-adapt-indentation) 0)
18715 ((not (outline-previous-heading)) 0)
18716 (t (length (match-string 0))))))
18717 ;; Level of first heading. Further headings will be
18718 ;; compared to it to determine hierarchy in the list.
18719 (ref-level (org-reduced-level (org-outline-level))))
18720 (while (< (point) end)
18721 (let* ((level (org-reduced-level (org-outline-level)))
18722 (delta (max 0 (- level ref-level))))
18723 ;; If current headline is less indented than the first
18724 ;; one, set it as reference, in order to preserve
18725 ;; subtrees.
18726 (when (< level ref-level) (setq ref-level level))
18727 (replace-match bul t t)
18728 (org-indent-line-to (+ start-ind (* delta bul-len)))
18729 ;; Ensure all text down to END (or SECTION-END) belongs
18730 ;; to the newly created item.
18731 (let ((section-end (save-excursion
18732 (or (outline-next-heading) (point)))))
18733 (forward-line)
18734 (funcall shift-text
18735 (+ start-ind (* (1+ delta) bul-len))
18736 (min end section-end)))))))
18737 ;; Case 3. Normal line with ARG: turn each non-item line into
18738 ;; an item.
18739 (arg
18740 (while (< (point) end)
18741 (unless (or (org-at-heading-p) (org-at-item-p))
18742 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
18743 (replace-match
18744 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
18745 (forward-line)))
18746 ;; Case 4. Normal line without ARG: make the first line of
18747 ;; region an item, and shift indentation of others
18748 ;; lines to set them as item's body.
18749 (t (let* ((bul (org-list-bullet-string "-"))
18750 (bul-len (length bul))
18751 (ref-ind (org-get-indentation)))
18752 (skip-chars-forward " \t")
18753 (insert bul)
18754 (forward-line)
18755 (while (< (point) end)
18756 ;; Ensure that lines less indented than first one
18757 ;; still get included in item body.
18758 (funcall shift-text
18759 (+ ref-ind bul-len)
18760 (min end (save-excursion (or (outline-next-heading)
18761 (point)))))
18762 (forward-line)))))))))
18764 (defun org-toggle-heading (&optional nstars)
18765 "Convert headings to normal text, or items or text to headings.
18766 If there is no active region, only the current line is considered.
18768 If the first non blank line is an headline, remove the stars from
18769 all headlines in the region.
18771 If it is a plain list item, turn all plain list items into headings.
18773 If it is a normal line, turn each and every normal line (i.e. not
18774 an heading or an item) in the region into a heading.
18776 When converting a line into a heading, the number of stars is chosen
18777 such that the lines become children of the current entry. However,
18778 when a prefix argument is given, its value determines the number of
18779 stars to add."
18780 (interactive "P")
18781 (let ((skip-blanks
18782 (function
18783 ;; Return beginning of first non-blank line, starting from
18784 ;; line at POS.
18785 (lambda (pos)
18786 (save-excursion
18787 (goto-char pos)
18788 (skip-chars-forward " \r\t\n")
18789 (point-at-bol)))))
18790 beg end)
18791 ;; Determine boundaries of changes. If region ends at a bol, do
18792 ;; not consider the last line to be in the region.
18793 (if (org-region-active-p)
18794 (setq beg (funcall skip-blanks (region-beginning))
18795 end (copy-marker (save-excursion
18796 (goto-char (region-end))
18797 (if (bolp) (point) (point-at-eol)))))
18798 (setq beg (funcall skip-blanks (point-at-bol))
18799 end (copy-marker (point-at-eol))))
18800 ;; Ensure inline tasks don't count as headings.
18801 (org-with-limited-levels
18802 (save-excursion
18803 (goto-char beg)
18804 (cond
18805 ;; Case 1. Started at an heading: de-star headings.
18806 ((org-at-heading-p)
18807 (while (< (point) end)
18808 (when (org-at-heading-p t)
18809 (looking-at org-outline-regexp) (replace-match ""))
18810 (forward-line)))
18811 ;; Case 2. Started at an item: change items into headlines.
18812 ;; One star will be added by `org-list-to-subtree'.
18813 ((org-at-item-p)
18814 (let* ((stars (make-string
18815 (if nstars
18816 ;; subtract the star that will be added again by
18817 ;; `org-list-to-subtree'
18818 (1- (prefix-numeric-value current-prefix-arg))
18819 (or (org-current-level) 0))
18820 ?*))
18821 (add-stars
18822 (cond (nstars "") ; stars from prefix only
18823 ((equal stars "") "") ; before first heading
18824 (org-odd-levels-only "*") ; inside heading, odd
18825 (t "")))) ; inside heading, oddeven
18826 (while (< (point) end)
18827 (when (org-at-item-p)
18828 ;; Pay attention to cases when region ends before list.
18829 (let* ((struct (org-list-struct))
18830 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
18831 (save-restriction
18832 (narrow-to-region (point) list-end)
18833 (insert
18834 (org-list-to-subtree
18835 (org-list-parse-list t)
18836 '(:istart (concat stars add-stars (funcall get-stars depth))
18837 :icount (concat stars add-stars (funcall get-stars depth))))))))
18838 (forward-line))))
18839 ;; Case 3. Started at normal text: make every line an heading,
18840 ;; skipping headlines and items.
18841 (t (let* ((stars (make-string
18842 (if nstars
18843 (prefix-numeric-value current-prefix-arg)
18844 (or (org-current-level) 0))
18845 ?*))
18846 (add-stars
18847 (cond (nstars "") ; stars from prefix only
18848 ((equal stars "") "*") ; before first heading
18849 (org-odd-levels-only "**") ; inside heading, odd
18850 (t "*"))) ; inside heading, oddeven
18851 (rpl (concat stars add-stars " ")))
18852 (while (< (point) end)
18853 (when (and (not (org-at-heading-p)) (not (org-at-item-p))
18854 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
18855 (replace-match (concat rpl (match-string 2))))
18856 (forward-line)))))))))
18858 (defun org-meta-return (&optional arg)
18859 "Insert a new heading or wrap a region in a table.
18860 Calls `org-insert-heading' or `org-table-wrap-region', depending on context.
18861 See the individual commands for more information."
18862 (interactive "P")
18863 (cond
18864 ((run-hook-with-args-until-success 'org-metareturn-hook))
18865 ((or (org-at-drawer-p) (org-at-property-p))
18866 (newline-and-indent))
18867 ((org-at-table-p)
18868 (call-interactively 'org-table-wrap-region))
18869 (t (call-interactively 'org-insert-heading))))
18871 ;;; Menu entries
18873 ;; Define the Org-mode menus
18874 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
18875 '("Tbl"
18876 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
18877 ["Next Field" org-cycle (org-at-table-p)]
18878 ["Previous Field" org-shifttab (org-at-table-p)]
18879 ["Next Row" org-return (org-at-table-p)]
18880 "--"
18881 ["Blank Field" org-table-blank-field (org-at-table-p)]
18882 ["Edit Field" org-table-edit-field (org-at-table-p)]
18883 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
18884 "--"
18885 ("Column"
18886 ["Move Column Left" org-metaleft (org-at-table-p)]
18887 ["Move Column Right" org-metaright (org-at-table-p)]
18888 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
18889 ["Insert Column" org-shiftmetaright (org-at-table-p)])
18890 ("Row"
18891 ["Move Row Up" org-metaup (org-at-table-p)]
18892 ["Move Row Down" org-metadown (org-at-table-p)]
18893 ["Delete Row" org-shiftmetaup (org-at-table-p)]
18894 ["Insert Row" org-shiftmetadown (org-at-table-p)]
18895 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
18896 "--"
18897 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
18898 ("Rectangle"
18899 ["Copy Rectangle" org-copy-special (org-at-table-p)]
18900 ["Cut Rectangle" org-cut-special (org-at-table-p)]
18901 ["Paste Rectangle" org-paste-special (org-at-table-p)]
18902 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
18903 "--"
18904 ("Calculate"
18905 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
18906 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
18907 ["Edit Formulas" org-edit-special (org-at-table-p)]
18908 "--"
18909 ["Recalculate line" org-table-recalculate (org-at-table-p)]
18910 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
18911 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
18912 "--"
18913 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
18914 "--"
18915 ["Sum Column/Rectangle" org-table-sum
18916 (or (org-at-table-p) (org-region-active-p))]
18917 ["Which Column?" org-table-current-column (org-at-table-p)])
18918 ["Debug Formulas"
18919 org-table-toggle-formula-debugger
18920 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
18921 ["Show Col/Row Numbers"
18922 org-table-toggle-coordinate-overlays
18923 :style toggle
18924 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
18925 "--"
18926 ["Create" org-table-create (and (not (org-at-table-p))
18927 org-enable-table-editor)]
18928 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
18929 ["Import from File" org-table-import (not (org-at-table-p))]
18930 ["Export to File" org-table-export (org-at-table-p)]
18931 "--"
18932 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
18934 (easy-menu-define org-org-menu org-mode-map "Org menu"
18935 '("Org"
18936 ("Show/Hide"
18937 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
18938 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
18939 ["Sparse Tree..." org-sparse-tree t]
18940 ["Reveal Context" org-reveal t]
18941 ["Show All" show-all t]
18942 "--"
18943 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
18944 "--"
18945 ["New Heading" org-insert-heading t]
18946 ("Navigate Headings"
18947 ["Up" outline-up-heading t]
18948 ["Next" outline-next-visible-heading t]
18949 ["Previous" outline-previous-visible-heading t]
18950 ["Next Same Level" outline-forward-same-level t]
18951 ["Previous Same Level" outline-backward-same-level t]
18952 "--"
18953 ["Jump" org-goto t])
18954 ("Edit Structure"
18955 ["Move Subtree Up" org-shiftmetaup (not (org-at-table-p))]
18956 ["Move Subtree Down" org-shiftmetadown (not (org-at-table-p))]
18957 "--"
18958 ["Copy Subtree" org-copy-special (not (org-at-table-p))]
18959 ["Cut Subtree" org-cut-special (not (org-at-table-p))]
18960 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
18961 "--"
18962 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
18963 "--"
18964 ["Copy visible text" org-copy-visible t]
18965 "--"
18966 ["Promote Heading" org-metaleft (not (org-at-table-p))]
18967 ["Promote Subtree" org-shiftmetaleft (not (org-at-table-p))]
18968 ["Demote Heading" org-metaright (not (org-at-table-p))]
18969 ["Demote Subtree" org-shiftmetaright (not (org-at-table-p))]
18970 "--"
18971 ["Sort Region/Children" org-sort (not (org-at-table-p))]
18972 "--"
18973 ["Convert to odd levels" org-convert-to-odd-levels t]
18974 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
18975 ("Editing"
18976 ["Emphasis..." org-emphasize t]
18977 ["Edit Source Example" org-edit-special t]
18978 "--"
18979 ["Footnote new/jump" org-footnote-action t]
18980 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
18981 ("Archive"
18982 ["Archive (default method)" org-archive-subtree-default t]
18983 "--"
18984 ["Move Subtree to Archive file" org-advertized-archive-subtree t]
18985 ["Toggle ARCHIVE tag" org-toggle-archive-tag t]
18986 ["Move subtree to Archive sibling" org-archive-to-archive-sibling t]
18988 "--"
18989 ("Hyperlinks"
18990 ["Store Link (Global)" org-store-link t]
18991 ["Find existing link to here" org-occur-link-in-agenda-files t]
18992 ["Insert Link" org-insert-link t]
18993 ["Follow Link" org-open-at-point t]
18994 "--"
18995 ["Next link" org-next-link t]
18996 ["Previous link" org-previous-link t]
18997 "--"
18998 ["Descriptive Links"
18999 org-toggle-link-display
19000 :style radio
19001 :selected org-descriptive-links
19003 ["Literal Links"
19004 org-toggle-link-display
19005 :style radio
19006 :selected (not org-descriptive-links)])
19007 "--"
19008 ("TODO Lists"
19009 ["TODO/DONE/-" org-todo t]
19010 ("Select keyword"
19011 ["Next keyword" org-shiftright (org-at-heading-p)]
19012 ["Previous keyword" org-shiftleft (org-at-heading-p)]
19013 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
19014 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
19015 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
19016 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
19017 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
19018 "--"
19019 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
19020 :selected org-enforce-todo-dependencies :style toggle :active t]
19021 "Settings for tree at point"
19022 ["Do Children sequentially" org-toggle-ordered-property :style radio
19023 :selected (org-entry-get nil "ORDERED")
19024 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
19025 ["Do Children parallel" org-toggle-ordered-property :style radio
19026 :selected (not (org-entry-get nil "ORDERED"))
19027 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
19028 "--"
19029 ["Set Priority" org-priority t]
19030 ["Priority Up" org-shiftup t]
19031 ["Priority Down" org-shiftdown t]
19032 "--"
19033 ["Get news from all feeds" org-feed-update-all t]
19034 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
19035 ["Customize feeds" (customize-variable 'org-feed-alist) t])
19036 ("TAGS and Properties"
19037 ["Set Tags" org-set-tags-command t]
19038 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
19039 "--"
19040 ["Set property" org-set-property t]
19041 ["Column view of properties" org-columns t]
19042 ["Insert Column View DBlock" org-insert-columns-dblock t])
19043 ("Dates and Scheduling"
19044 ["Timestamp" org-time-stamp t]
19045 ["Timestamp (inactive)" org-time-stamp-inactive t]
19046 ("Change Date"
19047 ["1 Day Later" org-shiftright t]
19048 ["1 Day Earlier" org-shiftleft t]
19049 ["1 ... Later" org-shiftup t]
19050 ["1 ... Earlier" org-shiftdown t])
19051 ["Compute Time Range" org-evaluate-time-range t]
19052 ["Schedule Item" org-schedule t]
19053 ["Deadline" org-deadline t]
19054 "--"
19055 ["Custom time format" org-toggle-time-stamp-overlays
19056 :style radio :selected org-display-custom-times]
19057 "--"
19058 ["Goto Calendar" org-goto-calendar t]
19059 ["Date from Calendar" org-date-from-calendar t]
19060 "--"
19061 ["Start/Restart Timer" org-timer-start t]
19062 ["Pause/Continue Timer" org-timer-pause-or-continue t]
19063 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
19064 ["Insert Timer String" org-timer t]
19065 ["Insert Timer Item" org-timer-item t])
19066 ("Logging work"
19067 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
19068 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
19069 ["Clock out" org-clock-out t]
19070 ["Clock cancel" org-clock-cancel t]
19071 "--"
19072 ["Mark as default task" org-clock-mark-default-task t]
19073 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
19074 ["Goto running clock" org-clock-goto t]
19075 "--"
19076 ["Display times" org-clock-display t]
19077 ["Create clock table" org-clock-report t]
19078 "--"
19079 ["Record DONE time"
19080 (progn (setq org-log-done (not org-log-done))
19081 (message "Switching to %s will %s record a timestamp"
19082 (car org-done-keywords)
19083 (if org-log-done "automatically" "not")))
19084 :style toggle :selected org-log-done])
19085 "--"
19086 ["Agenda Command..." org-agenda t]
19087 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
19088 ("File List for Agenda")
19089 ("Special views current file"
19090 ["TODO Tree" org-show-todo-tree t]
19091 ["Check Deadlines" org-check-deadlines t]
19092 ["Timeline" org-timeline t]
19093 ["Tags/Property tree" org-match-sparse-tree t])
19094 "--"
19095 ["Export/Publish..." org-export t]
19096 ("LaTeX"
19097 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
19098 :selected org-cdlatex-mode]
19099 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
19100 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
19101 ["Modify math symbol" org-cdlatex-math-modify
19102 (org-inside-LaTeX-fragment-p)]
19103 ["Insert citation" org-reftex-citation t]
19104 "--"
19105 ["Template for BEAMER" org-insert-beamer-options-template t])
19106 "--"
19107 ("MobileOrg"
19108 ["Push Files and Views" org-mobile-push t]
19109 ["Get Captured and Flagged" org-mobile-pull t]
19110 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
19111 "--"
19112 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
19113 "--"
19114 ("Documentation"
19115 ["Show Version" org-version t]
19116 ["Info Documentation" org-info t])
19117 ("Customize"
19118 ["Browse Org Group" org-customize t]
19119 "--"
19120 ["Expand This Menu" org-create-customize-menu
19121 (fboundp 'customize-menu-create)])
19122 ["Send bug report" org-submit-bug-report t]
19123 "--"
19124 ("Refresh/Reload"
19125 ["Refresh setup current buffer" org-mode-restart t]
19126 ["Reload Org (after update)" org-reload t]
19127 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x r"])
19130 (defun org-info (&optional node)
19131 "Read documentation for Org-mode in the info system.
19132 With optional NODE, go directly to that node."
19133 (interactive)
19134 (info (format "(org)%s" (or node ""))))
19136 ;;;###autoload
19137 (defun org-submit-bug-report ()
19138 "Submit a bug report on Org-mode via mail.
19140 Don't hesitate to report any problems or inaccurate documentation.
19142 If you don't have setup sending mail from (X)Emacs, please copy the
19143 output buffer into your mail program, as it gives us important
19144 information about your Org-mode version and configuration."
19145 (interactive)
19146 (require 'reporter)
19147 (org-load-modules-maybe)
19148 (org-require-autoloaded-modules)
19149 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
19150 (reporter-submit-bug-report
19151 "emacs-orgmode@gnu.org"
19152 (org-version)
19153 (let (list)
19154 (save-window-excursion
19155 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
19156 (delete-other-windows)
19157 (erase-buffer)
19158 (insert "You are about to submit a bug report to the Org-mode mailing list.
19160 We would like to add your full Org-mode and Outline configuration to the
19161 bug report. This greatly simplifies the work of the maintainer and
19162 other experts on the mailing list.
19164 HOWEVER, some variables you have customized may contain private
19165 information. The names of customers, colleagues, or friends, might
19166 appear in the form of file names, tags, todo states, or search strings.
19167 If you answer yes to the prompt, you might want to check and remove
19168 such private information before sending the email.")
19169 (add-text-properties (point-min) (point-max) '(face org-warning))
19170 (when (yes-or-no-p "Include your Org-mode configuration ")
19171 (mapatoms
19172 (lambda (v)
19173 (and (boundp v)
19174 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
19175 (or (and (symbol-value v)
19176 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
19177 (and
19178 (get v 'custom-type) (get v 'standard-value)
19179 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
19180 (push v list)))))
19181 (kill-buffer (get-buffer "*Warn about privacy*"))
19182 list))
19183 nil nil
19184 "Remember to cover the basics, that is, what you expected to happen and
19185 what in fact did happen. You don't know how to make a good report? See
19187 http://orgmode.org/manual/Feedback.html#Feedback
19189 Your bug report will be posted to the Org-mode mailing list.
19190 ------------------------------------------------------------------------")
19191 (save-excursion
19192 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
19193 (replace-match "\\1Bug: \\3 [\\2]")))))
19196 (defun org-install-agenda-files-menu ()
19197 (let ((bl (buffer-list)))
19198 (save-excursion
19199 (while bl
19200 (set-buffer (pop bl))
19201 (if (eq major-mode 'org-mode) (setq bl nil)))
19202 (when (eq major-mode 'org-mode)
19203 (easy-menu-change
19204 '("Org") "File List for Agenda"
19205 (append
19206 (list
19207 ["Edit File List" (org-edit-agenda-file-list) t]
19208 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
19209 ["Remove Current File from List" org-remove-file t]
19210 ["Cycle through agenda files" org-cycle-agenda-files t]
19211 ["Occur in all agenda files" org-occur-in-agenda-files t]
19212 "--")
19213 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
19215 ;;;; Documentation
19217 ;;;###autoload
19218 (defun org-require-autoloaded-modules ()
19219 (interactive)
19220 (mapc 'require
19221 '(org-agenda org-archive org-ascii org-attach org-clock org-colview
19222 org-docbook org-exp org-html org-icalendar
19223 org-id org-latex
19224 org-publish org-remember org-table
19225 org-timer org-xoxo)))
19227 ;;;###autoload
19228 (defun org-reload (&optional uncompiled)
19229 "Reload all org lisp files.
19230 With prefix arg UNCOMPILED, load the uncompiled versions."
19231 (interactive "P")
19232 (require 'find-func)
19233 (let* ((file-re "^\\(org\\|orgtbl\\)\\(\\.el\\|-.*\\.el\\)")
19234 (dir-org (file-name-directory (org-find-library-name "org")))
19235 (dir-org-contrib (ignore-errors
19236 (file-name-directory
19237 (org-find-library-name "org-contribdir"))))
19238 (babel-files
19239 (mapcar (lambda (el) (concat "ob" (when el (format "-%s" el)) ".el"))
19240 (append (list nil "comint" "eval" "exp" "keys"
19241 "lob" "ref" "table" "tangle")
19242 (delq nil
19243 (mapcar
19244 (lambda (lang)
19245 (when (cdr lang) (symbol-name (car lang))))
19246 org-babel-load-languages)))))
19247 (files
19248 (append (directory-files dir-org t file-re)
19249 babel-files
19250 (and dir-org-contrib
19251 (directory-files dir-org-contrib t file-re))))
19252 (remove-re (concat (if (featurep 'xemacs)
19253 "org-colview" "org-colview-xemacs")
19254 "\\'")))
19255 (setq files (mapcar 'file-name-sans-extension files))
19256 (setq files (mapcar
19257 (lambda (x) (if (string-match remove-re x) nil x))
19258 files))
19259 (setq files (delq nil files))
19260 (mapc
19261 (lambda (f)
19262 (when (featurep (intern (file-name-nondirectory f)))
19263 (if (and (not uncompiled)
19264 (file-exists-p (concat f ".elc")))
19265 (load (concat f ".elc") nil nil t)
19266 (load (concat f ".el") nil nil t))))
19267 files))
19268 (org-version))
19270 ;;;###autoload
19271 (defun org-customize ()
19272 "Call the customize function with org as argument."
19273 (interactive)
19274 (org-load-modules-maybe)
19275 (org-require-autoloaded-modules)
19276 (customize-browse 'org))
19278 (defun org-create-customize-menu ()
19279 "Create a full customization menu for Org-mode, insert it into the menu."
19280 (interactive)
19281 (org-load-modules-maybe)
19282 (org-require-autoloaded-modules)
19283 (if (fboundp 'customize-menu-create)
19284 (progn
19285 (easy-menu-change
19286 '("Org") "Customize"
19287 `(["Browse Org group" org-customize t]
19288 "--"
19289 ,(customize-menu-create 'org)
19290 ["Set" Custom-set t]
19291 ["Save" Custom-save t]
19292 ["Reset to Current" Custom-reset-current t]
19293 ["Reset to Saved" Custom-reset-saved t]
19294 ["Reset to Standard Settings" Custom-reset-standard t]))
19295 (message "\"Org\"-menu now contains full customization menu"))
19296 (error "Cannot expand menu (outdated version of cus-edit.el)")))
19298 ;;;; Miscellaneous stuff
19300 ;;; Generally useful functions
19302 (defun org-get-at-bol (property)
19303 "Get text property PROPERTY at beginning of line."
19304 (get-text-property (point-at-bol) property))
19306 (defun org-find-text-property-in-string (prop s)
19307 "Return the first non-nil value of property PROP in string S."
19308 (or (get-text-property 0 prop s)
19309 (get-text-property (or (next-single-property-change 0 prop s) 0)
19310 prop s)))
19312 (defun org-display-warning (message) ;; Copied from Emacs-Muse
19313 "Display the given MESSAGE as a warning."
19314 (if (fboundp 'display-warning)
19315 (display-warning 'org message
19316 (if (featurep 'xemacs) 'warning :warning))
19317 (let ((buf (get-buffer-create "*Org warnings*")))
19318 (with-current-buffer buf
19319 (goto-char (point-max))
19320 (insert "Warning (Org): " message)
19321 (unless (bolp)
19322 (newline)))
19323 (display-buffer buf)
19324 (sit-for 0))))
19326 (defun org-eval (form)
19327 "Eval FORM and return result."
19328 (condition-case error
19329 (eval form)
19330 (error (format "%%![Error: %s]" error))))
19332 (defun org-in-commented-line ()
19333 "Is point in a line starting with `#'?"
19334 (equal (char-after (point-at-bol)) ?#))
19336 (defun org-in-indented-comment-line ()
19337 "Is point in a line starting with `#' after some white space?"
19338 (save-excursion
19339 (save-match-data
19340 (goto-char (point-at-bol))
19341 (looking-at "[ \t]*#"))))
19343 (defun org-in-verbatim-emphasis ()
19344 (save-match-data
19345 (and (org-in-regexp org-emph-re 2) (member (match-string 3) '("=" "~")))))
19347 (defun org-goto-marker-or-bmk (marker &optional bookmark)
19348 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
19349 (if (and marker (marker-buffer marker)
19350 (buffer-live-p (marker-buffer marker)))
19351 (progn
19352 (org-pop-to-buffer-same-window (marker-buffer marker))
19353 (if (or (> marker (point-max)) (< marker (point-min)))
19354 (widen))
19355 (goto-char marker)
19356 (org-show-context 'org-goto))
19357 (if bookmark
19358 (bookmark-jump bookmark)
19359 (error "Cannot find location"))))
19361 (defun org-quote-csv-field (s)
19362 "Quote field for inclusion in CSV material."
19363 (if (string-match "[\",]" s)
19364 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
19367 (defun org-force-self-insert (N)
19368 "Needed to enforce self-insert under remapping."
19369 (interactive "p")
19370 (self-insert-command N))
19372 (defun org-string-width (s)
19373 "Compute width of string, ignoring invisible characters.
19374 This ignores character with invisibility property `org-link', and also
19375 characters with property `org-cwidth', because these will become invisible
19376 upon the next fontification round."
19377 (let (b l)
19378 (when (or (eq t buffer-invisibility-spec)
19379 (assq 'org-link buffer-invisibility-spec))
19380 (while (setq b (text-property-any 0 (length s)
19381 'invisible 'org-link s))
19382 (setq s (concat (substring s 0 b)
19383 (substring s (or (next-single-property-change
19384 b 'invisible s) (length s)))))))
19385 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
19386 (setq s (concat (substring s 0 b)
19387 (substring s (or (next-single-property-change
19388 b 'org-cwidth s) (length s))))))
19389 (setq l (string-width s) b -1)
19390 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
19391 (setq l (- l (get-text-property b 'org-dwidth-n s))))
19394 (defun org-shorten-string (s maxlength)
19395 "Shorten string S so tht it is no longer than MAXLENGTH characters.
19396 If the string is shorter or has length MAXLENGTH, just return the
19397 original string. If it is longer, the functions finds a space in the
19398 string, breaks this string off at that locations and adds three dots
19399 as ellipsis. Including the ellipsis, the string will not be longer
19400 than MAXLENGTH. If finding a good breaking point in the string does
19401 not work, the string is just chopped off in the middle of a word
19402 if necessary."
19403 (if (<= (length s) maxlength)
19405 (let* ((n (max (- maxlength 4) 1))
19406 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
19407 (if (string-match re s)
19408 (concat (match-string 1 s) "...")
19409 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
19411 (defun org-get-indentation (&optional line)
19412 "Get the indentation of the current line, interpreting tabs.
19413 When LINE is given, assume it represents a line and compute its indentation."
19414 (if line
19415 (if (string-match "^ *" (org-remove-tabs line))
19416 (match-end 0))
19417 (save-excursion
19418 (beginning-of-line 1)
19419 (skip-chars-forward " \t")
19420 (current-column))))
19422 (defun org-get-string-indentation (s)
19423 "What indentation has S due to SPACE and TAB at the beginning of the string?"
19424 (let ((n -1) (i 0) (w tab-width) c)
19425 (catch 'exit
19426 (while (< (setq n (1+ n)) (length s))
19427 (setq c (aref s n))
19428 (cond ((= c ?\ ) (setq i (1+ i)))
19429 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
19430 (t (throw 'exit t)))))
19433 (defun org-remove-tabs (s &optional width)
19434 "Replace tabulators in S with spaces.
19435 Assumes that s is a single line, starting in column 0."
19436 (setq width (or width tab-width))
19437 (while (string-match "\t" s)
19438 (setq s (replace-match
19439 (make-string
19440 (- (* width (/ (+ (match-beginning 0) width) width))
19441 (match-beginning 0)) ?\ )
19442 t t s)))
19445 (defun org-fix-indentation (line ind)
19446 "Fix indentation in LINE.
19447 IND is a cons cell with target and minimum indentation.
19448 If the current indentation in LINE is smaller than the minimum,
19449 leave it alone. If it is larger than ind, set it to the target."
19450 (let* ((l (org-remove-tabs line))
19451 (i (org-get-indentation l))
19452 (i1 (car ind)) (i2 (cdr ind)))
19453 (if (>= i i2) (setq l (substring line i2)))
19454 (if (> i1 0)
19455 (concat (make-string i1 ?\ ) l)
19456 l)))
19458 (defun org-remove-indentation (code &optional n)
19459 "Remove the maximum common indentation from the lines in CODE.
19460 N may optionally be the number of spaces to remove."
19461 (with-temp-buffer
19462 (insert code)
19463 (org-do-remove-indentation n)
19464 (buffer-string)))
19466 (defun org-do-remove-indentation (&optional n)
19467 "Remove the maximum common indentation from the buffer."
19468 (untabify (point-min) (point-max))
19469 (let ((min 10000) re)
19470 (if n
19471 (setq min n)
19472 (goto-char (point-min))
19473 (while (re-search-forward "^ *[^ \n]" nil t)
19474 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
19475 (unless (or (= min 0) (= min 10000))
19476 (setq re (format "^ \\{%d\\}" min))
19477 (goto-char (point-min))
19478 (while (re-search-forward re nil t)
19479 (replace-match "")
19480 (end-of-line 1))
19481 min)))
19483 (defun org-fill-template (template alist)
19484 "Find each %key of ALIST in TEMPLATE and replace it."
19485 (let ((case-fold-search nil)
19486 entry key value)
19487 (setq alist (sort (copy-sequence alist)
19488 (lambda (a b) (< (length (car a)) (length (car b))))))
19489 (while (setq entry (pop alist))
19490 (setq template
19491 (replace-regexp-in-string
19492 (concat "%" (regexp-quote (car entry)))
19493 (cdr entry) template t t)))
19494 template))
19496 (defun org-base-buffer (buffer)
19497 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
19498 (if (not buffer)
19499 buffer
19500 (or (buffer-base-buffer buffer)
19501 buffer)))
19503 (defun org-trim (s)
19504 "Remove whitespace at beginning and end of string."
19505 (if (string-match "\\`[ \t\n\r]+" s) (setq s (replace-match "" t t s)))
19506 (if (string-match "[ \t\n\r]+\\'" s) (setq s (replace-match "" t t s)))
19509 (defun org-wrap (string &optional width lines)
19510 "Wrap string to either a number of lines, or a width in characters.
19511 If WIDTH is non-nil, the string is wrapped to that width, however many lines
19512 that costs. If there is a word longer than WIDTH, the text is actually
19513 wrapped to the length of that word.
19514 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
19515 many lines, whatever width that takes.
19516 The return value is a list of lines, without newlines at the end."
19517 (let* ((words (org-split-string string "[ \t\n]+"))
19518 (maxword (apply 'max (mapcar 'org-string-width words)))
19519 w ll)
19520 (cond (width
19521 (org-do-wrap words (max maxword width)))
19522 (lines
19523 (setq w maxword)
19524 (setq ll (org-do-wrap words maxword))
19525 (if (<= (length ll) lines)
19527 (setq ll words)
19528 (while (> (length ll) lines)
19529 (setq w (1+ w))
19530 (setq ll (org-do-wrap words w)))
19531 ll))
19532 (t (error "Cannot wrap this")))))
19534 (defun org-do-wrap (words width)
19535 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
19536 (let (lines line)
19537 (while words
19538 (setq line (pop words))
19539 (while (and words (< (+ (length line) (length (car words))) width))
19540 (setq line (concat line " " (pop words))))
19541 (setq lines (push line lines)))
19542 (nreverse lines)))
19544 (defun org-split-string (string &optional separators)
19545 "Splits STRING into substrings at SEPARATORS.
19546 No empty strings are returned if there are matches at the beginning
19547 and end of string."
19548 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
19549 (start 0)
19550 notfirst
19551 (list nil))
19552 (while (and (string-match rexp string
19553 (if (and notfirst
19554 (= start (match-beginning 0))
19555 (< start (length string)))
19556 (1+ start) start))
19557 (< (match-beginning 0) (length string)))
19558 (setq notfirst t)
19559 (or (eq (match-beginning 0) 0)
19560 (and (eq (match-beginning 0) (match-end 0))
19561 (eq (match-beginning 0) start))
19562 (setq list
19563 (cons (substring string start (match-beginning 0))
19564 list)))
19565 (setq start (match-end 0)))
19566 (or (eq start (length string))
19567 (setq list
19568 (cons (substring string start)
19569 list)))
19570 (nreverse list)))
19572 (defun org-quote-vert (s)
19573 "Replace \"|\" with \"\\vert\"."
19574 (while (string-match "|" s)
19575 (setq s (replace-match "\\vert" t t s)))
19578 (defun org-uuidgen-p (s)
19579 "Is S an ID created by UUIDGEN?"
19580 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
19582 (defun org-in-src-block-p nil
19583 "Whether point is in a code source block."
19584 (let (ov)
19585 (when (setq ov (overlays-at (point)))
19586 (memq 'org-block-background
19587 (overlay-properties
19588 (car ov))))))
19590 (defun org-context ()
19591 "Return a list of contexts of the current cursor position.
19592 If several contexts apply, all are returned.
19593 Each context entry is a list with a symbol naming the context, and
19594 two positions indicating start and end of the context. Possible
19595 contexts are:
19597 :headline anywhere in a headline
19598 :headline-stars on the leading stars in a headline
19599 :todo-keyword on a TODO keyword (including DONE) in a headline
19600 :tags on the TAGS in a headline
19601 :priority on the priority cookie in a headline
19602 :item on the first line of a plain list item
19603 :item-bullet on the bullet/number of a plain list item
19604 :checkbox on the checkbox in a plain list item
19605 :table in an org-mode table
19606 :table-special on a special filed in a table
19607 :table-table in a table.el table
19608 :clocktable in a clocktable
19609 :src-block in a source block
19610 :link on a hyperlink
19611 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT, QUOTE.
19612 :target on a <<target>>
19613 :radio-target on a <<<radio-target>>>
19614 :latex-fragment on a LaTeX fragment
19615 :latex-preview on a LaTeX fragment with overlaid preview image
19617 This function expects the position to be visible because it uses font-lock
19618 faces as a help to recognize the following contexts: :table-special, :link,
19619 and :keyword."
19620 (let* ((f (get-text-property (point) 'face))
19621 (faces (if (listp f) f (list f)))
19622 (case-fold-search t)
19623 (p (point)) clist o)
19624 ;; First the large context
19625 (cond
19626 ((org-at-heading-p t)
19627 (push (list :headline (point-at-bol) (point-at-eol)) clist)
19628 (when (progn
19629 (beginning-of-line 1)
19630 (looking-at org-todo-line-tags-regexp))
19631 (push (org-point-in-group p 1 :headline-stars) clist)
19632 (push (org-point-in-group p 2 :todo-keyword) clist)
19633 (push (org-point-in-group p 4 :tags) clist))
19634 (goto-char p)
19635 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
19636 (if (looking-at "\\[#[A-Z0-9]\\]")
19637 (push (org-point-in-group p 0 :priority) clist)))
19639 ((org-at-item-p)
19640 (push (org-point-in-group p 2 :item-bullet) clist)
19641 (push (list :item (point-at-bol)
19642 (save-excursion (org-end-of-item) (point)))
19643 clist)
19644 (and (org-at-item-checkbox-p)
19645 (push (org-point-in-group p 0 :checkbox) clist)))
19647 ((org-at-table-p)
19648 (push (list :table (org-table-begin) (org-table-end)) clist)
19649 (if (memq 'org-formula faces)
19650 (push (list :table-special
19651 (previous-single-property-change p 'face)
19652 (next-single-property-change p 'face)) clist)))
19653 ((org-at-table-p 'any)
19654 (push (list :table-table) clist)))
19655 (goto-char p)
19657 ;; New the "medium" contexts: clocktables, source blocks
19658 (cond ((org-in-clocktable-p)
19659 (push (list :clocktable
19660 (and (or (looking-at "#\\+BEGIN: clocktable")
19661 (search-backward "#+BEGIN: clocktable" nil t))
19662 (match-beginning 0))
19663 (and (re-search-forward "#\\+END:?" nil t)
19664 (match-end 0))) clist))
19665 ((org-in-src-block-p)
19666 (push (list :src-block
19667 (and (or (looking-at "#\\+BEGIN_SRC")
19668 (search-backward "#+BEGIN_SRC" nil t))
19669 (match-beginning 0))
19670 (and (search-forward "#+END_SRC" nil t)
19671 (match-beginning 0))) clist)))
19672 (goto-char p)
19674 ;; Now the small context
19675 (cond
19676 ((org-at-timestamp-p)
19677 (push (org-point-in-group p 0 :timestamp) clist))
19678 ((memq 'org-link faces)
19679 (push (list :link
19680 (previous-single-property-change p 'face)
19681 (next-single-property-change p 'face)) clist))
19682 ((memq 'org-special-keyword faces)
19683 (push (list :keyword
19684 (previous-single-property-change p 'face)
19685 (next-single-property-change p 'face)) clist))
19686 ((org-at-target-p)
19687 (push (org-point-in-group p 0 :target) clist)
19688 (goto-char (1- (match-beginning 0)))
19689 (if (looking-at org-radio-target-regexp)
19690 (push (org-point-in-group p 0 :radio-target) clist))
19691 (goto-char p))
19692 ((setq o (car (delq nil
19693 (mapcar
19694 (lambda (x)
19695 (if (memq x org-latex-fragment-image-overlays) x))
19696 (overlays-at (point))))))
19697 (push (list :latex-fragment
19698 (overlay-start o) (overlay-end o)) clist)
19699 (push (list :latex-preview
19700 (overlay-start o) (overlay-end o)) clist))
19701 ((org-inside-LaTeX-fragment-p)
19702 ;; FIXME: positions wrong.
19703 (push (list :latex-fragment (point) (point)) clist)))
19705 (setq clist (nreverse (delq nil clist)))
19706 clist))
19708 ;; FIXME: Compare with at-regexp-p Do we need both?
19709 (defun org-in-regexp (re &optional nlines visually)
19710 "Check if point is inside a match of regexp.
19711 Normally only the current line is checked, but you can include NLINES extra
19712 lines both before and after point into the search.
19713 If VISUALLY is set, require that the cursor is not after the match but
19714 really on, so that the block visually is on the match."
19715 (catch 'exit
19716 (let ((pos (point))
19717 (eol (point-at-eol (+ 1 (or nlines 0))))
19718 (inc (if visually 1 0)))
19719 (save-excursion
19720 (beginning-of-line (- 1 (or nlines 0)))
19721 (while (re-search-forward re eol t)
19722 (if (and (<= (match-beginning 0) pos)
19723 (>= (+ inc (match-end 0)) pos))
19724 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
19726 (defun org-at-regexp-p (regexp)
19727 "Is point inside a match of REGEXP in the current line?"
19728 (catch 'exit
19729 (save-excursion
19730 (let ((pos (point)) (end (point-at-eol)))
19731 (beginning-of-line 1)
19732 (while (re-search-forward regexp end t)
19733 (if (and (<= (match-beginning 0) pos)
19734 (>= (match-end 0) pos))
19735 (throw 'exit t)))
19736 nil))))
19738 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
19739 "Non-nil when point is between matches of START-RE and END-RE.
19741 Also return a non-nil value when point is on one of the matches.
19743 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
19744 buffer positions. Default values are the positions of headlines
19745 surrounding the point.
19747 The functions returns a cons cell whose car (resp. cdr) is the
19748 position before START-RE (resp. after END-RE)."
19749 (save-match-data
19750 (let ((pos (point))
19751 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
19752 (limit-down (or lim-down (save-excursion (outline-next-heading))))
19753 beg end)
19754 (save-excursion
19755 ;; Point is on a block when on START-RE or if START-RE can be
19756 ;; found before it...
19757 (and (or (org-at-regexp-p start-re)
19758 (re-search-backward start-re limit-up t))
19759 (setq beg (match-beginning 0))
19760 ;; ... and END-RE after it...
19761 (goto-char (match-end 0))
19762 (re-search-forward end-re limit-down t)
19763 (> (setq end (match-end 0)) pos)
19764 ;; ... without another START-RE in-between.
19765 (goto-char (match-beginning 0))
19766 (not (re-search-backward start-re (1+ beg) t))
19767 ;; Return value.
19768 (cons beg end))))))
19770 (defun org-in-block-p (names)
19771 "Non-nil when point belongs to a block whose name belongs to NAMES.
19773 NAMES is a list of strings containing names of blocks.
19775 Return first block name matched, or nil. Beware that in case of
19776 nested blocks, the returned name may not belong to the closest
19777 block from point."
19778 (save-match-data
19779 (catch 'exit
19780 (let ((case-fold-search t)
19781 (lim-up (save-excursion (outline-previous-heading)))
19782 (lim-down (save-excursion (outline-next-heading))))
19783 (mapc (lambda (name)
19784 (let ((n (regexp-quote name)))
19785 (when (org-between-regexps-p
19786 (concat "^[ \t]*#\\+begin_" n)
19787 (concat "^[ \t]*#\\+end_" n)
19788 lim-up lim-down)
19789 (throw 'exit n))))
19790 names))
19791 nil)))
19793 (defun org-occur-in-agenda-files (regexp &optional nlines)
19794 "Call `multi-occur' with buffers for all agenda files."
19795 (interactive "sOrg-files matching: \np")
19796 (let* ((files (org-agenda-files))
19797 (tnames (mapcar 'file-truename files))
19798 (extra org-agenda-text-search-extra-files)
19800 (when (eq (car extra) 'agenda-archives)
19801 (setq extra (cdr extra))
19802 (setq files (org-add-archive-files files)))
19803 (while (setq f (pop extra))
19804 (unless (member (file-truename f) tnames)
19805 (add-to-list 'files f 'append)
19806 (add-to-list 'tnames (file-truename f) 'append)))
19807 (multi-occur
19808 (mapcar (lambda (x)
19809 (with-current-buffer
19810 (or (get-file-buffer x) (find-file-noselect x))
19811 (widen)
19812 (current-buffer)))
19813 files)
19814 regexp)))
19816 (if (boundp 'occur-mode-find-occurrence-hook)
19817 ;; Emacs 23
19818 (add-hook 'occur-mode-find-occurrence-hook
19819 (lambda ()
19820 (when (eq major-mode 'org-mode)
19821 (org-reveal))))
19822 ;; Emacs 22
19823 (defadvice occur-mode-goto-occurrence
19824 (after org-occur-reveal activate)
19825 (and (eq major-mode 'org-mode) (org-reveal)))
19826 (defadvice occur-mode-goto-occurrence-other-window
19827 (after org-occur-reveal activate)
19828 (and (eq major-mode 'org-mode) (org-reveal)))
19829 (defadvice occur-mode-display-occurrence
19830 (after org-occur-reveal activate)
19831 (when (eq major-mode 'org-mode)
19832 (let ((pos (occur-mode-find-occurrence)))
19833 (with-current-buffer (marker-buffer pos)
19834 (save-excursion
19835 (goto-char pos)
19836 (org-reveal)))))))
19838 (defun org-occur-link-in-agenda-files ()
19839 "Create a link and search for it in the agendas.
19840 The link is not stored in `org-stored-links', it is just created
19841 for the search purpose."
19842 (interactive)
19843 (let ((link (condition-case nil
19844 (org-store-link nil)
19845 (error "Unable to create a link to here"))))
19846 (org-occur-in-agenda-files (regexp-quote link))))
19848 (defun org-uniquify (list)
19849 "Remove duplicate elements from LIST."
19850 (let (res)
19851 (mapc (lambda (x) (add-to-list 'res x 'append)) list)
19852 res))
19854 (defun org-delete-all (elts list)
19855 "Remove all elements in ELTS from LIST."
19856 (while elts
19857 (setq list (delete (pop elts) list)))
19858 list)
19860 (defun org-count (cl-item cl-seq)
19861 "Count the number of occurrences of ITEM in SEQ.
19862 Taken from `count' in cl-seq.el with all keyword arguments removed."
19863 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
19864 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
19865 (while (< cl-start cl-end)
19866 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
19867 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
19868 (setq cl-start (1+ cl-start)))
19869 cl-count))
19871 (defun org-remove-if (predicate seq)
19872 "Remove everything from SEQ that fulfills PREDICATE."
19873 (let (res e)
19874 (while seq
19875 (setq e (pop seq))
19876 (if (not (funcall predicate e)) (push e res)))
19877 (nreverse res)))
19879 (defun org-remove-if-not (predicate seq)
19880 "Remove everything from SEQ that does not fulfill PREDICATE."
19881 (let (res e)
19882 (while seq
19883 (setq e (pop seq))
19884 (if (funcall predicate e) (push e res)))
19885 (nreverse res)))
19887 (defun org-reduce (cl-func cl-seq &rest cl-keys)
19888 "Reduce two-argument FUNCTION across SEQ.
19889 Taken from `reduce' in cl-seq.el with all keyword arguments but
19890 \":initial-value\" removed."
19891 (let ((cl-accum (cond ((memq :initial-value cl-keys)
19892 (cadr (memq :initial-value cl-keys)))
19893 (cl-seq (pop cl-seq))
19894 (t (funcall cl-func)))))
19895 (while cl-seq
19896 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
19897 cl-accum))
19899 (defun org-back-over-empty-lines ()
19900 "Move backwards over whitespace, to the beginning of the first empty line.
19901 Returns the number of empty lines passed."
19902 (let ((pos (point)))
19903 (if (cdr (assoc 'heading org-blank-before-new-entry))
19904 (skip-chars-backward " \t\n\r")
19905 (unless (eobp)
19906 (forward-line -1)))
19907 (beginning-of-line 2)
19908 (goto-char (min (point) pos))
19909 (count-lines (point) pos)))
19911 (defun org-skip-whitespace ()
19912 (skip-chars-forward " \t\n\r"))
19914 (defun org-point-in-group (point group &optional context)
19915 "Check if POINT is in match-group GROUP.
19916 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
19917 match. If the match group does not exist or point is not inside it,
19918 return nil."
19919 (and (match-beginning group)
19920 (>= point (match-beginning group))
19921 (<= point (match-end group))
19922 (if context
19923 (list context (match-beginning group) (match-end group))
19924 t)))
19926 (defun org-switch-to-buffer-other-window (&rest args)
19927 "Switch to buffer in a second window on the current frame.
19928 In particular, do not allow pop-up frames.
19929 Returns the newly created buffer."
19930 (let (pop-up-frames special-display-buffer-names special-display-regexps
19931 special-display-function)
19932 (apply 'switch-to-buffer-other-window args)))
19934 (defun org-combine-plists (&rest plists)
19935 "Create a single property list from all plists in PLISTS.
19936 The process starts by copying the first list, and then setting properties
19937 from the other lists. Settings in the last list are the most significant
19938 ones and overrule settings in the other lists."
19939 (let ((rtn (copy-sequence (pop plists)))
19940 p v ls)
19941 (while plists
19942 (setq ls (pop plists))
19943 (while ls
19944 (setq p (pop ls) v (pop ls))
19945 (setq rtn (plist-put rtn p v))))
19946 rtn))
19948 (defun org-move-line-down (arg)
19949 "Move the current line down. With prefix argument, move it past ARG lines."
19950 (interactive "p")
19951 (let ((col (current-column))
19952 beg end pos)
19953 (beginning-of-line 1) (setq beg (point))
19954 (beginning-of-line 2) (setq end (point))
19955 (beginning-of-line (+ 1 arg))
19956 (setq pos (move-marker (make-marker) (point)))
19957 (insert (delete-and-extract-region beg end))
19958 (goto-char pos)
19959 (org-move-to-column col)))
19961 (defun org-move-line-up (arg)
19962 "Move the current line up. With prefix argument, move it past ARG lines."
19963 (interactive "p")
19964 (let ((col (current-column))
19965 beg end pos)
19966 (beginning-of-line 1) (setq beg (point))
19967 (beginning-of-line 2) (setq end (point))
19968 (beginning-of-line (- arg))
19969 (setq pos (move-marker (make-marker) (point)))
19970 (insert (delete-and-extract-region beg end))
19971 (goto-char pos)
19972 (org-move-to-column col)))
19974 (defun org-replace-escapes (string table)
19975 "Replace %-escapes in STRING with values in TABLE.
19976 TABLE is an association list with keys like \"%a\" and string values.
19977 The sequences in STRING may contain normal field width and padding information,
19978 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
19979 so values can contain further %-escapes if they are define later in TABLE."
19980 (let ((tbl (copy-alist table))
19981 (case-fold-search nil)
19982 (pchg 0)
19983 e re rpl)
19984 (while (setq e (pop tbl))
19985 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
19986 (when (and (cdr e) (string-match re (cdr e)))
19987 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
19988 (safe "SREF"))
19989 (add-text-properties 0 3 (list 'sref sref) safe)
19990 (setcdr e (replace-match safe t t (cdr e)))))
19991 (while (string-match re string)
19992 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
19993 (cdr e)))
19994 (setq string (replace-match rpl t t string))))
19995 (while (setq pchg (next-property-change pchg string))
19996 (let ((sref (get-text-property pchg 'sref string)))
19997 (when (and sref (string-match "SREF" string pchg))
19998 (setq string (replace-match sref t t string)))))
19999 string))
20001 (defun org-sublist (list start end)
20002 "Return a section of LIST, from START to END.
20003 Counting starts at 1."
20004 (let (rtn (c start))
20005 (setq list (nthcdr (1- start) list))
20006 (while (and list (<= c end))
20007 (push (pop list) rtn)
20008 (setq c (1+ c)))
20009 (nreverse rtn)))
20011 (defun org-find-base-buffer-visiting (file)
20012 "Like `find-buffer-visiting' but always return the base buffer and
20013 not an indirect buffer."
20014 (let ((buf (or (get-file-buffer file)
20015 (find-buffer-visiting file))))
20016 (if buf
20017 (or (buffer-base-buffer buf) buf)
20018 nil)))
20020 (defun org-image-file-name-regexp (&optional extensions)
20021 "Return regexp matching the file names of images.
20022 If EXTENSIONS is given, only match these."
20023 (if (and (not extensions) (fboundp 'image-file-name-regexp))
20024 (image-file-name-regexp)
20025 (let ((image-file-name-extensions
20026 (or extensions
20027 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
20028 "xbm" "xpm" "pbm" "pgm" "ppm"))))
20029 (concat "\\."
20030 (regexp-opt (nconc (mapcar 'upcase
20031 image-file-name-extensions)
20032 image-file-name-extensions)
20034 "\\'"))))
20036 (defun org-file-image-p (file &optional extensions)
20037 "Return non-nil if FILE is an image."
20038 (save-match-data
20039 (string-match (org-image-file-name-regexp extensions) file)))
20041 (defun org-get-cursor-date ()
20042 "Return the date at cursor in as a time.
20043 This works in the calendar and in the agenda, anywhere else it just
20044 returns the current time."
20045 (let (date day defd)
20046 (cond
20047 ((eq major-mode 'calendar-mode)
20048 (setq date (calendar-cursor-to-date)
20049 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
20050 ((eq major-mode 'org-agenda-mode)
20051 (setq day (get-text-property (point) 'day))
20052 (if day
20053 (setq date (calendar-gregorian-from-absolute day)
20054 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date)
20055 (nth 2 date))))))
20056 (or defd (current-time))))
20058 (defvar org-agenda-action-marker (make-marker)
20059 "Marker pointing to the entry for the next agenda action.")
20061 (defun org-mark-entry-for-agenda-action ()
20062 "Mark the current entry as target of an agenda action.
20063 Agenda actions are actions executed from the agenda with the key `k',
20064 which make use of the date at the cursor."
20065 (interactive)
20066 (move-marker org-agenda-action-marker
20067 (save-excursion (org-back-to-heading t) (point))
20068 (current-buffer))
20069 (message
20070 "Entry marked for action; press `k' at desired date in agenda or calendar"))
20072 (defun org-mark-subtree ()
20073 "Mark the current subtree.
20074 This puts point at the start of the current subtree, and mark at the end.
20076 If point is in an inline task, mark that task instead."
20077 (interactive)
20078 (let ((inline-task-p
20079 (and (featurep 'org-inlinetask)
20080 (org-inlinetask-in-task-p)))
20081 (beg))
20082 ;; Get beginning of subtree
20083 (cond
20084 (inline-task-p (org-inlinetask-goto-beginning))
20085 ((org-at-heading-p) (beginning-of-line))
20086 (t (org-with-limited-levels (outline-previous-visible-heading 1))))
20087 (setq beg (point))
20088 ;; Get end of it
20089 (if inline-task-p
20090 (org-inlinetask-goto-end)
20091 (org-end-of-subtree))
20092 ;; Mark zone
20093 (push-mark (point) nil t)
20094 (goto-char beg)))
20096 ;;; Paragraph filling stuff.
20097 ;; We want this to be just right, so use the full arsenal.
20099 (defun org-indent-line-function ()
20100 "Indent line depending on context."
20101 (interactive)
20102 (let* ((pos (point))
20103 (itemp (org-at-item-p))
20104 (case-fold-search t)
20105 (org-drawer-regexp (or org-drawer-regexp "\000"))
20106 (inline-task-p (and (featurep 'org-inlinetask)
20107 (org-inlinetask-in-task-p)))
20108 (inline-re (and inline-task-p
20109 (org-inlinetask-outline-regexp)))
20110 column)
20111 (beginning-of-line 1)
20112 (cond
20113 ;; Comments
20114 ((looking-at "# ") (setq column 0))
20115 ;; Headings
20116 ((looking-at org-outline-regexp) (setq column 0))
20117 ;; Included files
20118 ((looking-at "#\\+include:") (setq column 0))
20119 ;; Footnote definition
20120 ((looking-at org-footnote-definition-re) (setq column 0))
20121 ;; Literal examples
20122 ((looking-at "[ \t]*:\\( \\|$\\)")
20123 (setq column (org-get-indentation))) ; do nothing
20124 ;; Lists
20125 ((ignore-errors (goto-char (org-in-item-p)))
20126 (setq column (if itemp
20127 (org-get-indentation)
20128 (org-list-item-body-column (point))))
20129 (goto-char pos))
20130 ;; Drawers
20131 ((and (looking-at "[ \t]*:END:")
20132 (save-excursion (re-search-backward org-drawer-regexp nil t)))
20133 (save-excursion
20134 (goto-char (1- (match-beginning 1)))
20135 (setq column (current-column))))
20136 ;; Special blocks
20137 ((and (looking-at "[ \t]*#\\+end_\\([a-z]+\\)")
20138 (save-excursion
20139 (re-search-backward
20140 (concat "^[ \t]*#\\+begin_" (downcase (match-string 1))) nil t)))
20141 (setq column (org-get-indentation (match-string 0))))
20142 ((and (not (looking-at "[ \t]*#\\+begin_"))
20143 (org-between-regexps-p "^[ \t]*#\\+begin_" "[ \t]*#\\+end_"))
20144 (save-excursion
20145 (re-search-backward "^[ \t]*#\\+begin_\\([a-z]+\\)" nil t))
20146 (setq column
20147 (cond ((equal (downcase (match-string 1)) "src")
20148 ;; src blocks: let `org-edit-src-exit' handle them
20149 (org-get-indentation))
20150 ((equal (downcase (match-string 1)) "example")
20151 (max (org-get-indentation)
20152 (org-get-indentation (match-string 0))))
20154 (org-get-indentation (match-string 0))))))
20155 ;; This line has nothing special, look at the previous relevant
20156 ;; line to compute indentation
20158 (beginning-of-line 0)
20159 (while (and (not (bobp))
20160 (not (looking-at org-drawer-regexp))
20161 ;; When point started in an inline task, do not move
20162 ;; above task starting line.
20163 (not (and inline-task-p (looking-at inline-re)))
20164 ;; Skip drawers, blocks, empty lines, verbatim,
20165 ;; comments, tables, footnotes definitions, lists,
20166 ;; inline tasks.
20167 (or (and (looking-at "[ \t]*:END:")
20168 (re-search-backward org-drawer-regexp nil t))
20169 (and (looking-at "[ \t]*#\\+end_")
20170 (re-search-backward "[ \t]*#\\+begin_"nil t))
20171 (looking-at "[ \t]*[\n:#|]")
20172 (looking-at org-footnote-definition-re)
20173 (and (ignore-errors (goto-char (org-in-item-p)))
20174 (goto-char
20175 (org-list-get-top-point (org-list-struct))))
20176 (and (not inline-task-p)
20177 (featurep 'org-inlinetask)
20178 (org-inlinetask-in-task-p)
20179 (or (org-inlinetask-goto-beginning) t))))
20180 (beginning-of-line 0))
20181 (cond
20182 ;; There was an heading above.
20183 ((looking-at "\\*+[ \t]+")
20184 (if (not org-adapt-indentation)
20185 (setq column 0)
20186 (goto-char (match-end 0))
20187 (setq column (current-column))))
20188 ;; A drawer had started and is unfinished
20189 ((looking-at org-drawer-regexp)
20190 (goto-char (1- (match-beginning 1)))
20191 (setq column (current-column)))
20192 ;; Else, nothing noticeable found: get indentation and go on.
20193 (t (setq column (org-get-indentation))))))
20194 ;; Now apply indentation and move cursor accordingly
20195 (goto-char pos)
20196 (if (<= (current-column) (current-indentation))
20197 (org-indent-line-to column)
20198 (save-excursion (org-indent-line-to column)))
20199 ;; Special polishing for properties, see `org-property-format'
20200 (setq column (current-column))
20201 (beginning-of-line 1)
20202 (if (looking-at
20203 "\\([ \t]+\\)\\(:[-_0-9a-zA-Z]+:\\)[ \t]*\\(\\S-.*\\(\\S-\\|$\\)\\)")
20204 (replace-match (concat (match-string 1)
20205 (format org-property-format
20206 (match-string 2) (match-string 3)))
20207 t t))
20208 (org-move-to-column column)))
20210 (defvar org-adaptive-fill-regexp-backup adaptive-fill-regexp
20211 "Variable to store copy of `adaptive-fill-regexp'.
20212 Since `adaptive-fill-regexp' is set to never match, we need to
20213 store a backup of its value before entering `org-mode' so that
20214 the functionality can be provided as a fall-back.")
20216 (defun org-set-autofill-regexps ()
20217 (interactive)
20218 ;; In the paragraph separator we include headlines, because filling
20219 ;; text in a line directly attached to a headline would otherwise
20220 ;; fill the headline as well.
20221 (org-set-local 'comment-start-skip "^#+[ \t]*")
20222 (org-set-local 'paragraph-separate "\f\\|\\*+ \\|[ ]*$\\|[ \t]*[:|#]")
20223 ;; The paragraph starter includes hand-formatted lists.
20224 (org-set-local
20225 'paragraph-start
20226 (concat
20227 "\f" "\\|"
20228 "[ ]*$" "\\|"
20229 org-outline-regexp "\\|"
20230 "[ \t]*#" "\\|"
20231 (org-item-re) "\\|"
20232 "[ \t]*[:|]" "\\|"
20233 "\\$\\$" "\\|"
20234 "\\\\\\(begin\\|end\\|[][]\\)"))
20235 ;; Inhibit auto-fill for headers, tables and fixed-width lines.
20236 ;; But only if the user has not turned off tables or fixed-width regions
20237 (org-set-local
20238 'auto-fill-inhibit-regexp
20239 (concat org-outline-regexp
20240 "\\|#\\+"
20241 "\\|[ \t]*" org-keyword-time-regexp
20242 (if (or org-enable-table-editor org-enable-fixed-width-editor)
20243 (concat
20244 "\\|[ \t]*["
20245 (if org-enable-table-editor "|" "")
20246 (if org-enable-fixed-width-editor ":" "")
20247 "]"))))
20248 ;; We use our own fill-paragraph function, to make sure that tables
20249 ;; and fixed-width regions are not wrapped. That function will pass
20250 ;; through to `fill-paragraph' when appropriate.
20251 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
20252 ;; Prevent auto-fill from inserting unwanted new items.
20253 (if (boundp 'fill-nobreak-predicate)
20254 (org-set-local 'fill-nobreak-predicate
20255 (if (memq 'org-fill-item-nobreak-p fill-nobreak-predicate)
20256 fill-nobreak-predicate
20257 (cons 'org-fill-item-nobreak-p fill-nobreak-predicate))))
20258 ;; Adaptive filling: To get full control, first make sure that
20259 ;; `adaptive-fill-regexp' never matches. Then install our own matcher.
20260 (unless (local-variable-p 'adaptive-fill-regexp (current-buffer))
20261 (org-set-local 'org-adaptive-fill-regexp-backup
20262 adaptive-fill-regexp))
20263 (org-set-local 'adaptive-fill-regexp "\000")
20264 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
20265 (org-set-local 'adaptive-fill-function
20266 'org-adaptive-fill-function)
20267 (org-set-local
20268 'align-mode-rules-list
20269 '((org-in-buffer-settings
20270 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
20271 (modes . '(org-mode))))))
20273 (defun org-fill-item-nobreak-p ()
20274 "Non-nil when a line break at point would insert a new item."
20275 (and (looking-at (org-item-re)) (org-list-in-valid-context-p)))
20277 (defun org-fill-paragraph (&optional justify)
20278 "Re-align a table, pass through to fill-paragraph if no table."
20279 (let ((table-p (org-at-table-p))
20280 (table.el-p (org-at-table.el-p))
20281 (itemp (org-in-item-p)))
20282 (cond ((and (equal (char-after (point-at-bol)) ?*)
20283 (save-excursion (goto-char (point-at-bol))
20284 (looking-at org-outline-regexp)))
20285 t) ; skip headlines
20286 (table.el-p t) ; skip table.el tables
20287 (table-p (org-table-align) t) ; align Org tables
20288 (itemp ; align text in items
20289 (let* ((struct (save-excursion (goto-char itemp)
20290 (org-list-struct)))
20291 (parents (org-list-parents-alist struct))
20292 (children (org-list-get-children itemp struct parents))
20293 beg end prev next prefix)
20294 ;; Determine in which part of item point is: before
20295 ;; first child, after last child, between two
20296 ;; sub-lists, or simply in item if there's no child.
20297 (cond
20298 ((not children)
20299 (setq prefix (make-string (org-list-item-body-column itemp) ?\ )
20300 beg itemp
20301 end (org-list-get-item-end itemp struct)))
20302 ((< (point) (setq next (car children)))
20303 (setq prefix (make-string (org-list-item-body-column itemp) ?\ )
20304 beg itemp
20305 end next))
20306 ((> (point) (setq prev (car (last children))))
20307 (setq beg (org-list-get-item-end prev struct)
20308 end (org-list-get-item-end itemp struct)
20309 prefix (save-excursion
20310 (goto-char beg)
20311 (skip-chars-forward " \t")
20312 (make-string (current-column) ?\ ))))
20313 (t (catch 'exit
20314 (while (setq next (pop children))
20315 (if (> (point) next)
20316 (setq prev next)
20317 (setq beg (org-list-get-item-end prev struct)
20318 end next
20319 prefix (save-excursion
20320 (goto-char beg)
20321 (skip-chars-forward " \t")
20322 (make-string (current-column) ?\ )))
20323 (throw 'exit nil))))))
20324 ;; Use `fill-paragraph' with buffer narrowed to item
20325 ;; without any child, and with our computed PREFIX.
20326 (flet ((fill-context-prefix (from to &optional flr) prefix))
20327 (save-restriction
20328 (narrow-to-region beg end)
20329 (save-excursion (fill-paragraph justify)))) t))
20330 ;; Special case where point is not in a list but is on
20331 ;; a paragraph adjacent to a list: make sure this paragraph
20332 ;; doesn't get merged with the end of the list by narrowing
20333 ;; buffer first.
20334 ((save-excursion (forward-paragraph -1)
20335 (setq itemp (org-in-item-p)))
20336 (let ((struct (save-excursion (goto-char itemp)
20337 (org-list-struct))))
20338 (save-restriction
20339 (narrow-to-region (org-list-get-bottom-point struct)
20340 (save-excursion (forward-paragraph 1)
20341 (point)))
20342 (fill-paragraph justify) t)))
20343 ;; Else simply call `fill-paragraph'.
20344 (t nil))))
20346 ;; For reference, this is the default value of adaptive-fill-regexp
20347 ;; "[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"
20349 (defun org-adaptive-fill-function ()
20350 "Return a fill prefix for org-mode files."
20351 (let (itemp)
20352 (save-excursion
20353 (cond
20354 ;; Comment line
20355 ((looking-at "#[ \t]+")
20356 (match-string-no-properties 0))
20357 ;; Plain list item
20358 ((org-at-item-p)
20359 (make-string (org-list-item-body-column (point-at-bol)) ?\ ))
20360 ;; Point is in a list after `backward-paragraph': original
20361 ;; point wasn't in the list, or filling would have been taken
20362 ;; care of by `org-auto-fill-function', but the list and the
20363 ;; real paragraph are not separated by a blank line. Thus, move
20364 ;; point after the list to go back to real paragraph and
20365 ;; determine fill-prefix.
20366 ((setq itemp (org-in-item-p))
20367 (goto-char itemp)
20368 (let* ((struct (org-list-struct))
20369 (bottom (org-list-get-bottom-point struct)))
20370 (goto-char bottom)
20371 (make-string (org-get-indentation) ?\ )))
20372 ;; Other text
20373 ((looking-at org-adaptive-fill-regexp-backup)
20374 (match-string-no-properties 0))))))
20376 (defun org-auto-fill-function ()
20377 "Auto-fill function."
20378 (let (itemp prefix)
20379 ;; When in a list, compute an appropriate fill-prefix and make
20380 ;; sure it will be used by `do-auto-fill'.
20381 (if (setq itemp (org-in-item-p))
20382 (progn
20383 (setq prefix (make-string (org-list-item-body-column itemp) ?\ ))
20384 (flet ((fill-context-prefix (from to &optional flr) prefix))
20385 (do-auto-fill)))
20386 ;; Else just use `do-auto-fill'.
20387 (do-auto-fill))))
20389 ;;; Other stuff.
20391 (defun org-toggle-fixed-width-section (arg)
20392 "Toggle the fixed-width export.
20393 If there is no active region, the QUOTE keyword at the current headline is
20394 inserted or removed. When present, it causes the text between this headline
20395 and the next to be exported as fixed-width text, and unmodified.
20396 If there is an active region, this command adds or removes a colon as the
20397 first character of this line. If the first character of a line is a colon,
20398 this line is also exported in fixed-width font."
20399 (interactive "P")
20400 (let* ((cc 0)
20401 (regionp (org-region-active-p))
20402 (beg (if regionp (region-beginning) (point)))
20403 (end (if regionp (region-end)))
20404 (nlines (or arg (if (and beg end) (count-lines beg end) 1)))
20405 (case-fold-search nil)
20406 (re "[ \t]*\\(:\\(?: \\|$\\)\\)")
20407 off)
20408 (if regionp
20409 (save-excursion
20410 (goto-char beg)
20411 (setq cc (current-column))
20412 (beginning-of-line 1)
20413 (setq off (looking-at re))
20414 (while (> nlines 0)
20415 (setq nlines (1- nlines))
20416 (beginning-of-line 1)
20417 (cond
20418 (arg
20419 (org-move-to-column cc t)
20420 (insert ": \n")
20421 (forward-line -1))
20422 ((and off (looking-at re))
20423 (replace-match "" t t nil 1))
20424 ((not off) (org-move-to-column cc t) (insert ": ")))
20425 (forward-line 1)))
20426 (save-excursion
20427 (org-back-to-heading)
20428 (cond
20429 ((looking-at (format org-heading-keyword-regexp-format
20430 org-quote-string))
20431 (goto-char (match-end 1))
20432 (looking-at (concat " +" org-quote-string))
20433 (replace-match "" t t)
20434 (when (eolp) (insert " ")))
20435 ((looking-at org-outline-regexp)
20436 (goto-char (match-end 0))
20437 (insert org-quote-string " ")))))))
20439 (defun org-reftex-citation ()
20440 "Use reftex-citation to insert a citation into the buffer.
20441 This looks for a line like
20443 #+BIBLIOGRAPHY: foo plain option:-d
20445 and derives from it that foo.bib is the bibliography file relevant
20446 for this document. It then installs the necessary environment for RefTeX
20447 to work in this buffer and calls `reftex-citation' to insert a citation
20448 into the buffer.
20450 Export of such citations to both LaTeX and HTML is handled by the contributed
20451 package org-exp-bibtex by Taru Karttunen."
20452 (interactive)
20453 (let ((reftex-docstruct-symbol 'rds)
20454 (reftex-cite-format "\\cite{%l}")
20455 rds bib)
20456 (save-excursion
20457 (save-restriction
20458 (widen)
20459 (let ((case-fold-search t)
20460 (re "^#\\+bibliography:[ \t]+\\([^ \t\n]+\\)"))
20461 (if (not (save-excursion
20462 (or (re-search-forward re nil t)
20463 (re-search-backward re nil t))))
20464 (error "No bibliography defined in file")
20465 (setq bib (concat (match-string 1) ".bib")
20466 rds (list (list 'bib bib)))))))
20467 (call-interactively 'reftex-citation)))
20469 ;;;; Functions extending outline functionality
20471 (defun org-beginning-of-line (&optional arg)
20472 "Go to the beginning of the current line. If that is invisible, continue
20473 to a visible line beginning. This makes the function of C-a more intuitive.
20474 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
20475 first attempt, and only move to after the tags when the cursor is already
20476 beyond the end of the headline."
20477 (interactive "P")
20478 (let ((pos (point))
20479 (special (if (consp org-special-ctrl-a/e)
20480 (car org-special-ctrl-a/e)
20481 org-special-ctrl-a/e))
20482 refpos)
20483 (if (org-bound-and-true-p line-move-visual)
20484 (beginning-of-visual-line 1)
20485 (beginning-of-line 1))
20486 (if (and arg (fboundp 'move-beginning-of-line))
20487 (call-interactively 'move-beginning-of-line)
20488 (if (bobp)
20490 (backward-char 1)
20491 (if (org-truely-invisible-p)
20492 (while (and (not (bobp)) (org-truely-invisible-p))
20493 (backward-char 1)
20494 (beginning-of-line 1))
20495 (forward-char 1))))
20496 (when special
20497 (cond
20498 ((and (looking-at org-complex-heading-regexp)
20499 (= (char-after (match-end 1)) ?\ ))
20500 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
20501 (point-at-eol)))
20502 (goto-char
20503 (if (eq special t)
20504 (cond ((> pos refpos) refpos)
20505 ((= pos (point)) refpos)
20506 (t (point)))
20507 (cond ((> pos (point)) (point))
20508 ((not (eq last-command this-command)) (point))
20509 (t refpos)))))
20510 ((org-at-item-p)
20511 ;; Set special position at first white space character after
20512 ;; bullet, and check-box, if any.
20513 (let ((after-bullet
20514 (progn (looking-at org-list-full-item-re)
20515 (let ((bul (or (match-end 3) (match-end 1))))
20516 (if (= (char-after bul) ? ) (1+ bul) bul)))))
20517 ;; Special case: Move point to special position when
20518 ;; currently after it or at beginning of line.
20519 (if (eq special t)
20520 (when (or (> pos after-bullet) (= (point) pos))
20521 (goto-char after-bullet))
20522 ;; Reversed case: Move point to special position when
20523 ;; point was already at beginning of line and command is
20524 ;; repeated.
20525 (when (and (= (point) pos) (eq last-command this-command))
20526 (goto-char after-bullet)))))))
20527 (org-no-warnings
20528 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
20530 (defun org-end-of-line (&optional arg)
20531 "Go to the end of the line.
20532 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
20533 first attempt, and only move to after the tags when the cursor is already
20534 beyond the end of the headline."
20535 (interactive "P")
20536 (let ((special (if (consp org-special-ctrl-a/e)
20537 (cdr org-special-ctrl-a/e)
20538 org-special-ctrl-a/e)))
20539 (cond
20540 ((or (not special) arg
20541 (not (or (org-at-heading-p) (org-at-item-p) (org-at-drawer-p))))
20542 (call-interactively
20543 (cond ((org-bound-and-true-p line-move-visual) 'end-of-visual-line)
20544 ((fboundp 'move-end-of-line) 'move-end-of-line)
20545 (t 'end-of-line))))
20546 ((org-at-heading-p)
20547 (let ((pos (point)))
20548 (beginning-of-line 1)
20549 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
20550 (if (eq special t)
20551 (if (or (< pos (match-beginning 1))
20552 (= pos (match-end 0)))
20553 (goto-char (match-beginning 1))
20554 (goto-char (match-end 0)))
20555 (if (or (< pos (match-end 0)) (not (eq this-command last-command)))
20556 (goto-char (match-end 0))
20557 (goto-char (match-beginning 1))))
20558 (call-interactively (if (fboundp 'move-end-of-line)
20559 'move-end-of-line
20560 'end-of-line)))))
20561 ((org-at-drawer-p)
20562 (move-end-of-line 1)
20563 (when (overlays-at (1- (point))) (backward-char 1)))
20564 ;; At an item: Move before any hidden text.
20565 (t (call-interactively 'end-of-line)))
20566 (org-no-warnings
20567 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
20569 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
20570 (define-key org-mode-map "\C-e" 'org-end-of-line)
20572 (defun org-backward-sentence (&optional arg)
20573 "Go to beginning of sentence, or beginning of table field.
20574 This will call `backward-sentence' or `org-table-beginning-of-field',
20575 depending on context."
20576 (interactive "P")
20577 (cond
20578 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
20579 (t (call-interactively 'backward-sentence))))
20581 (defun org-forward-sentence (&optional arg)
20582 "Go to end of sentence, or end of table field.
20583 This will call `forward-sentence' or `org-table-end-of-field',
20584 depending on context."
20585 (interactive "P")
20586 (cond
20587 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
20588 (t (call-interactively 'forward-sentence))))
20590 (define-key org-mode-map "\M-a" 'org-backward-sentence)
20591 (define-key org-mode-map "\M-e" 'org-forward-sentence)
20593 (defun org-kill-line (&optional arg)
20594 "Kill line, to tags or end of line."
20595 (interactive "P")
20596 (cond
20597 ((or (not org-special-ctrl-k)
20598 (bolp)
20599 (not (org-at-heading-p)))
20600 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
20601 org-ctrl-k-protect-subtree)
20602 (if (or (eq org-ctrl-k-protect-subtree 'error)
20603 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
20604 (error "C-k aborted - would kill hidden subtree")))
20605 (call-interactively
20606 (if visual-line-mode 'kill-visual-line 'kill-line)))
20607 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
20608 (kill-region (point) (match-beginning 1))
20609 (org-set-tags nil t))
20610 (t (kill-region (point) (point-at-eol)))))
20612 (define-key org-mode-map "\C-k" 'org-kill-line)
20614 (defun org-yank (&optional arg)
20615 "Yank. If the kill is a subtree, treat it specially.
20616 This command will look at the current kill and check if is a single
20617 subtree, or a series of subtrees[1]. If it passes the test, and if the
20618 cursor is at the beginning of a line or after the stars of a currently
20619 empty headline, then the yank is handled specially. How exactly depends
20620 on the value of the following variables, both set by default.
20622 org-yank-folded-subtrees
20623 When set, the subtree(s) will be folded after insertion, but only
20624 if doing so would now swallow text after the yanked text.
20626 org-yank-adjusted-subtrees
20627 When set, the subtree will be promoted or demoted in order to
20628 fit into the local outline tree structure, which means that the level
20629 will be adjusted so that it becomes the smaller one of the two
20630 *visible* surrounding headings.
20632 Any prefix to this command will cause `yank' to be called directly with
20633 no special treatment. In particular, a simple \\[universal-argument] prefix \
20634 will just
20635 plainly yank the text as it is.
20637 \[1] The test checks if the first non-white line is a heading
20638 and if there are no other headings with fewer stars."
20639 (interactive "P")
20640 (org-yank-generic 'yank arg))
20642 (defun org-yank-generic (command arg)
20643 "Perform some yank-like command.
20645 This function implements the behavior described in the `org-yank'
20646 documentation. However, it has been generalized to work for any
20647 interactive command with similar behavior."
20649 ;; pretend to be command COMMAND
20650 (setq this-command command)
20652 (if arg
20653 (call-interactively command)
20655 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
20656 (and (org-kill-is-subtree-p)
20657 (or (bolp)
20658 (and (looking-at "[ \t]*$")
20659 (string-match
20660 "\\`\\*+\\'"
20661 (buffer-substring (point-at-bol) (point)))))))
20662 swallowp)
20663 (cond
20664 ((and subtreep org-yank-folded-subtrees)
20665 (let ((beg (point))
20666 end)
20667 (if (and subtreep org-yank-adjusted-subtrees)
20668 (org-paste-subtree nil nil 'for-yank)
20669 (call-interactively command))
20671 (setq end (point))
20672 (goto-char beg)
20673 (when (and (bolp) subtreep
20674 (not (setq swallowp
20675 (org-yank-folding-would-swallow-text beg end))))
20676 (org-with-limited-levels
20677 (or (looking-at org-outline-regexp)
20678 (re-search-forward org-outline-regexp-bol end t))
20679 (while (and (< (point) end) (looking-at org-outline-regexp))
20680 (hide-subtree)
20681 (org-cycle-show-empty-lines 'folded)
20682 (condition-case nil
20683 (outline-forward-same-level 1)
20684 (error (goto-char end))))))
20685 (when swallowp
20686 (message
20687 "Inserted text not folded because that would swallow text"))
20689 (goto-char end)
20690 (skip-chars-forward " \t\n\r")
20691 (beginning-of-line 1)
20692 (push-mark beg 'nomsg)))
20693 ((and subtreep org-yank-adjusted-subtrees)
20694 (let ((beg (point-at-bol)))
20695 (org-paste-subtree nil nil 'for-yank)
20696 (push-mark beg 'nomsg)))
20698 (call-interactively command))))))
20700 (defun org-yank-folding-would-swallow-text (beg end)
20701 "Would hide-subtree at BEG swallow any text after END?"
20702 (let (level)
20703 (org-with-limited-levels
20704 (save-excursion
20705 (goto-char beg)
20706 (when (or (looking-at org-outline-regexp)
20707 (re-search-forward org-outline-regexp-bol end t))
20708 (setq level (org-outline-level)))
20709 (goto-char end)
20710 (skip-chars-forward " \t\r\n\v\f")
20711 (if (or (eobp)
20712 (and (bolp) (looking-at org-outline-regexp)
20713 (<= (org-outline-level) level)))
20714 nil ; Nothing would be swallowed
20715 t))))) ; something would swallow
20717 (define-key org-mode-map "\C-y" 'org-yank)
20719 (defun org-truely-invisible-p ()
20720 "Check if point is at a character currently not visible.
20721 This version does not only check the character property, but also
20722 `visible-mode'."
20723 ;; Early versions of noutline don't have `outline-invisible-p'.
20724 (if (org-bound-and-true-p visible-mode)
20726 (outline-invisible-p)))
20728 (defun org-invisible-p2 ()
20729 "Check if point is at a character currently not visible."
20730 (save-excursion
20731 (if (and (eolp) (not (bobp))) (backward-char 1))
20732 ;; Early versions of noutline don't have `outline-invisible-p'.
20733 (outline-invisible-p)))
20735 (defun org-back-to-heading (&optional invisible-ok)
20736 "Call `outline-back-to-heading', but provide a better error message."
20737 (condition-case nil
20738 (outline-back-to-heading invisible-ok)
20739 (error (error "Before first headline at position %d in buffer %s"
20740 (point) (current-buffer)))))
20742 (defun org-beginning-of-defun ()
20743 "Go to the beginning of the subtree, i.e. back to the heading."
20744 (org-back-to-heading))
20745 (defun org-end-of-defun ()
20746 "Go to the end of the subtree."
20747 (org-end-of-subtree nil t))
20749 (defun org-before-first-heading-p ()
20750 "Before first heading?"
20751 (save-excursion
20752 (end-of-line)
20753 (null (re-search-backward org-outline-regexp-bol nil t))))
20755 (defun org-at-heading-p (&optional ignored)
20756 (outline-on-heading-p t))
20757 ;; Compatibility alias with Org versions < 7.8.03
20758 (defalias 'org-on-heading-p 'org-at-heading-p)
20760 (defun org-at-drawer-p nil
20761 "Whether point is at a drawer."
20762 (save-excursion
20763 (move-beginning-of-line 1)
20764 (looking-at org-drawer-regexp)))
20766 (defun org-point-at-end-of-empty-headline ()
20767 "If point is at the end of an empty headline, return t, else nil.
20768 If the heading only contains a TODO keyword, it is still still considered
20769 empty."
20770 (and (looking-at "[ \t]*$")
20771 (save-excursion
20772 (beginning-of-line 1)
20773 (let ((case-fold-search nil))
20774 (looking-at org-todo-line-regexp)))
20775 (string= (match-string 3) "")))
20777 (defun org-at-heading-or-item-p ()
20778 (or (org-at-heading-p) (org-at-item-p)))
20780 (defun org-at-target-p ()
20781 (or (org-in-regexp org-radio-target-regexp)
20782 (org-in-regexp org-target-regexp)))
20783 ;; Compatibility alias with Org versions < 7.8.03
20784 (defalias 'org-on-target-p 'org-at-target-p)
20786 (defun org-up-heading-all (arg)
20787 "Move to the heading line of which the present line is a subheading.
20788 This function considers both visible and invisible heading lines.
20789 With argument, move up ARG levels."
20790 (if (fboundp 'outline-up-heading-all)
20791 (outline-up-heading-all arg) ; emacs 21 version of outline.el
20792 (outline-up-heading arg t))) ; emacs 22 version of outline.el
20794 (defun org-up-heading-safe ()
20795 "Move to the heading line of which the present line is a subheading.
20796 This version will not throw an error. It will return the level of the
20797 headline found, or nil if no higher level is found.
20799 Also, this function will be a lot faster than `outline-up-heading',
20800 because it relies on stars being the outline starters. This can really
20801 make a significant difference in outlines with very many siblings."
20802 (let (start-level re)
20803 (org-back-to-heading t)
20804 (setq start-level (funcall outline-level))
20805 (if (equal start-level 1)
20807 (setq re (concat "^\\*\\{1," (number-to-string (1- start-level)) "\\} "))
20808 (if (re-search-backward re nil t)
20809 (funcall outline-level)))))
20811 (defun org-first-sibling-p ()
20812 "Is this heading the first child of its parents?"
20813 (interactive)
20814 (let ((re org-outline-regexp-bol)
20815 level l)
20816 (unless (org-at-heading-p t)
20817 (error "Not at a heading"))
20818 (setq level (funcall outline-level))
20819 (save-excursion
20820 (if (not (re-search-backward re nil t))
20822 (setq l (funcall outline-level))
20823 (< l level)))))
20825 (defun org-goto-sibling (&optional previous)
20826 "Goto the next sibling, even if it is invisible.
20827 When PREVIOUS is set, go to the previous sibling instead. Returns t
20828 when a sibling was found. When none is found, return nil and don't
20829 move point."
20830 (let ((fun (if previous 're-search-backward 're-search-forward))
20831 (pos (point))
20832 (re org-outline-regexp-bol)
20833 level l)
20834 (when (condition-case nil (org-back-to-heading t) (error nil))
20835 (setq level (funcall outline-level))
20836 (catch 'exit
20837 (or previous (forward-char 1))
20838 (while (funcall fun re nil t)
20839 (setq l (funcall outline-level))
20840 (when (< l level) (goto-char pos) (throw 'exit nil))
20841 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
20842 (goto-char pos)
20843 nil))))
20845 (defun org-show-siblings ()
20846 "Show all siblings of the current headline."
20847 (save-excursion
20848 (while (org-goto-sibling) (org-flag-heading nil)))
20849 (save-excursion
20850 (while (org-goto-sibling 'previous)
20851 (org-flag-heading nil))))
20853 (defun org-goto-first-child ()
20854 "Goto the first child, even if it is invisible.
20855 Return t when a child was found. Otherwise don't move point and
20856 return nil."
20857 (let (level (pos (point)) (re org-outline-regexp-bol))
20858 (when (condition-case nil (org-back-to-heading t) (error nil))
20859 (setq level (outline-level))
20860 (forward-char 1)
20861 (if (and (re-search-forward re nil t) (> (outline-level) level))
20862 (progn (goto-char (match-beginning 0)) t)
20863 (goto-char pos) nil))))
20865 (defun org-show-hidden-entry ()
20866 "Show an entry where even the heading is hidden."
20867 (save-excursion
20868 (org-show-entry)))
20870 (defun org-flag-heading (flag &optional entry)
20871 "Flag the current heading. FLAG non-nil means make invisible.
20872 When ENTRY is non-nil, show the entire entry."
20873 (save-excursion
20874 (org-back-to-heading t)
20875 ;; Check if we should show the entire entry
20876 (if entry
20877 (progn
20878 (org-show-entry)
20879 (save-excursion
20880 (and (outline-next-heading)
20881 (org-flag-heading nil))))
20882 (outline-flag-region (max (point-min) (1- (point)))
20883 (save-excursion (outline-end-of-heading) (point))
20884 flag))))
20886 (defun org-get-next-sibling ()
20887 "Move to next heading of the same level, and return point.
20888 If there is no such heading, return nil.
20889 This is like outline-next-sibling, but invisible headings are ok."
20890 (let ((level (funcall outline-level)))
20891 (outline-next-heading)
20892 (while (and (not (eobp)) (> (funcall outline-level) level))
20893 (outline-next-heading))
20894 (if (or (eobp) (< (funcall outline-level) level))
20896 (point))))
20898 (defun org-get-last-sibling ()
20899 "Move to previous heading of the same level, and return point.
20900 If there is no such heading, return nil."
20901 (let ((opoint (point))
20902 (level (funcall outline-level)))
20903 (outline-previous-heading)
20904 (when (and (/= (point) opoint) (outline-on-heading-p t))
20905 (while (and (> (funcall outline-level) level)
20906 (not (bobp)))
20907 (outline-previous-heading))
20908 (if (< (funcall outline-level) level)
20910 (point)))))
20912 (defun org-end-of-subtree (&optional invisible-OK to-heading)
20913 ;; This contains an exact copy of the original function, but it uses
20914 ;; `org-back-to-heading', to make it work also in invisible
20915 ;; trees. And is uses an invisible-OK argument.
20916 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
20917 ;; Furthermore, when used inside Org, finding the end of a large subtree
20918 ;; with many children and grandchildren etc, this can be much faster
20919 ;; than the outline version.
20920 (org-back-to-heading invisible-OK)
20921 (let ((first t)
20922 (level (funcall outline-level)))
20923 (if (and (eq major-mode 'org-mode) (< level 1000))
20924 ;; A true heading (not a plain list item), in Org-mode
20925 ;; This means we can easily find the end by looking
20926 ;; only for the right number of stars. Using a regexp to do
20927 ;; this is so much faster than using a Lisp loop.
20928 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
20929 (forward-char 1)
20930 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
20931 ;; something else, do it the slow way
20932 (while (and (not (eobp))
20933 (or first (> (funcall outline-level) level)))
20934 (setq first nil)
20935 (outline-next-heading)))
20936 (unless to-heading
20937 (if (memq (preceding-char) '(?\n ?\^M))
20938 (progn
20939 ;; Go to end of line before heading
20940 (forward-char -1)
20941 (if (memq (preceding-char) '(?\n ?\^M))
20942 ;; leave blank line before heading
20943 (forward-char -1))))))
20944 (point))
20946 (defadvice outline-end-of-subtree (around prefer-org-version activate compile)
20947 "Use Org version in org-mode, for dramatic speed-up."
20948 (if (eq major-mode 'org-mode)
20949 (progn
20950 (org-end-of-subtree nil t)
20951 (unless (eobp) (backward-char 1)))
20952 ad-do-it))
20954 (defun org-end-of-meta-data-and-drawers ()
20955 "Jump to the first text after meta data and drawers in the current entry.
20956 This will move over empty lines, lines with planning time stamps,
20957 clocking lines, and drawers."
20958 (org-back-to-heading t)
20959 (let ((end (save-excursion (outline-next-heading) (point)))
20960 (re (concat "\\(" org-drawer-regexp "\\)"
20961 "\\|" "[ \t]*" org-keyword-time-regexp)))
20962 (forward-line 1)
20963 (while (re-search-forward re end t)
20964 (if (not (match-end 1))
20965 ;; empty or planning line
20966 (forward-line 1)
20967 ;; a drawer, find the end
20968 (re-search-forward "^[ \t]*:END:" end 'move)
20969 (forward-line 1)))
20970 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
20971 (point)))
20973 (defun org-forward-same-level (arg &optional invisible-ok)
20974 "Move forward to the arg'th subheading at same level as this one.
20975 Stop at the first and last subheadings of a superior heading.
20976 Normally this only looks at visible headings, but when INVISIBLE-OK is non-nil
20977 it wil also look at invisible ones."
20978 (interactive "p")
20979 (org-back-to-heading invisible-ok)
20980 (org-at-heading-p)
20981 (let* ((level (- (match-end 0) (match-beginning 0) 1))
20982 (re (format "^\\*\\{1,%d\\} " level))
20984 (forward-char 1)
20985 (while (> arg 0)
20986 (while (and (re-search-forward re nil 'move)
20987 (setq l (- (match-end 0) (match-beginning 0) 1))
20988 (= l level)
20989 (not invisible-ok)
20990 (progn (backward-char 1) (outline-invisible-p)))
20991 (if (< l level) (setq arg 1)))
20992 (setq arg (1- arg)))
20993 (beginning-of-line 1)))
20995 (defun org-backward-same-level (arg &optional invisible-ok)
20996 "Move backward to the arg'th subheading at same level as this one.
20997 Stop at the first and last subheadings of a superior heading."
20998 (interactive "p")
20999 (org-back-to-heading)
21000 (org-at-heading-p)
21001 (let* ((level (- (match-end 0) (match-beginning 0) 1))
21002 (re (format "^\\*\\{1,%d\\} " level))
21004 (while (> arg 0)
21005 (while (and (re-search-backward re nil 'move)
21006 (setq l (- (match-end 0) (match-beginning 0) 1))
21007 (= l level)
21008 (not invisible-ok)
21009 (outline-invisible-p))
21010 (if (< l level) (setq arg 1)))
21011 (setq arg (1- arg)))))
21013 (defun org-show-subtree ()
21014 "Show everything after this heading at deeper levels."
21015 (outline-flag-region
21016 (point)
21017 (save-excursion
21018 (org-end-of-subtree t t))
21019 nil))
21021 (defun org-show-entry ()
21022 "Show the body directly following this heading.
21023 Show the heading too, if it is currently invisible."
21024 (interactive)
21025 (save-excursion
21026 (condition-case nil
21027 (progn
21028 (org-back-to-heading t)
21029 (outline-flag-region
21030 (max (point-min) (1- (point)))
21031 (save-excursion
21032 (if (re-search-forward
21033 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
21034 (match-beginning 1)
21035 (point-max)))
21036 nil)
21037 (org-cycle-hide-drawers 'children))
21038 (error nil))))
21040 (defun org-make-options-regexp (kwds &optional extra)
21041 "Make a regular expression for keyword lines."
21042 (concat
21044 "#?[ \t]*\\+\\("
21045 (mapconcat 'regexp-quote kwds "\\|")
21046 (if extra (concat "\\|" extra))
21047 "\\):[ \t]*"
21048 "\\(.*\\)"))
21050 ;; Make isearch reveal the necessary context
21051 (defun org-isearch-end ()
21052 "Reveal context after isearch exits."
21053 (when isearch-success ; only if search was successful
21054 (if (featurep 'xemacs)
21055 ;; Under XEmacs, the hook is run in the correct place,
21056 ;; we directly show the context.
21057 (org-show-context 'isearch)
21058 ;; In Emacs the hook runs *before* restoring the overlays.
21059 ;; So we have to use a one-time post-command-hook to do this.
21060 ;; (Emacs 22 has a special variable, see function `org-mode')
21061 (unless (and (boundp 'isearch-mode-end-hook-quit)
21062 isearch-mode-end-hook-quit)
21063 ;; Only when the isearch was not quitted.
21064 (org-add-hook 'post-command-hook 'org-isearch-post-command
21065 'append 'local)))))
21067 (defun org-isearch-post-command ()
21068 "Remove self from hook, and show context."
21069 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
21070 (org-show-context 'isearch))
21073 ;;;; Integration with and fixes for other packages
21075 ;;; Imenu support
21077 (defvar org-imenu-markers nil
21078 "All markers currently used by Imenu.")
21079 (make-variable-buffer-local 'org-imenu-markers)
21081 (defun org-imenu-new-marker (&optional pos)
21082 "Return a new marker for use by Imenu, and remember the marker."
21083 (let ((m (make-marker)))
21084 (move-marker m (or pos (point)))
21085 (push m org-imenu-markers)
21088 (defun org-imenu-get-tree ()
21089 "Produce the index for Imenu."
21090 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
21091 (setq org-imenu-markers nil)
21092 (let* ((n org-imenu-depth)
21093 (re (concat "^" (org-get-limited-outline-regexp)))
21094 (subs (make-vector (1+ n) nil))
21095 (last-level 0)
21096 m level head)
21097 (save-excursion
21098 (save-restriction
21099 (widen)
21100 (goto-char (point-max))
21101 (while (re-search-backward re nil t)
21102 (setq level (org-reduced-level (funcall outline-level)))
21103 (when (<= level n)
21104 (looking-at org-complex-heading-regexp)
21105 (setq head (org-link-display-format
21106 (org-match-string-no-properties 4))
21107 m (org-imenu-new-marker))
21108 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
21109 (if (>= level last-level)
21110 (push (cons head m) (aref subs level))
21111 (push (cons head (aref subs (1+ level))) (aref subs level))
21112 (loop for i from (1+ level) to n do (aset subs i nil)))
21113 (setq last-level level)))))
21114 (aref subs 1)))
21116 (eval-after-load "imenu"
21117 '(progn
21118 (add-hook 'imenu-after-jump-hook
21119 (lambda ()
21120 (if (eq major-mode 'org-mode)
21121 (org-show-context 'org-goto))))))
21123 (defun org-link-display-format (link)
21124 "Replace a link with either the description, or the link target
21125 if no description is present"
21126 (save-match-data
21127 (if (string-match org-bracket-link-analytic-regexp link)
21128 (replace-match (if (match-end 5)
21129 (match-string 5 link)
21130 (concat (match-string 1 link)
21131 (match-string 3 link)))
21132 nil t link)
21133 link)))
21135 (defun org-toggle-link-display ()
21136 "Toggle the literal or descriptive display of links."
21137 (interactive)
21138 (if org-descriptive-links
21139 (progn (org-remove-from-invisibility-spec '(org-link))
21140 (org-restart-font-lock)
21141 (setq org-descriptive-links nil))
21142 (progn (add-to-invisibility-spec '(org-link))
21143 (org-restart-font-lock)
21144 (setq org-descriptive-links t))))
21146 ;; Speedbar support
21148 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
21149 "Overlay marking the agenda restriction line in speedbar.")
21150 (overlay-put org-speedbar-restriction-lock-overlay
21151 'face 'org-agenda-restriction-lock)
21152 (overlay-put org-speedbar-restriction-lock-overlay
21153 'help-echo "Agendas are currently limited to this item.")
21154 (org-detach-overlay org-speedbar-restriction-lock-overlay)
21156 (defun org-speedbar-set-agenda-restriction ()
21157 "Restrict future agenda commands to the location at point in speedbar.
21158 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
21159 (interactive)
21160 (require 'org-agenda)
21161 (let (p m tp np dir txt)
21162 (cond
21163 ((setq p (text-property-any (point-at-bol) (point-at-eol)
21164 'org-imenu t))
21165 (setq m (get-text-property p 'org-imenu-marker))
21166 (with-current-buffer (marker-buffer m)
21167 (goto-char m)
21168 (org-agenda-set-restriction-lock 'subtree)))
21169 ((setq p (text-property-any (point-at-bol) (point-at-eol)
21170 'speedbar-function 'speedbar-find-file))
21171 (setq tp (previous-single-property-change
21172 (1+ p) 'speedbar-function)
21173 np (next-single-property-change
21174 tp 'speedbar-function)
21175 dir (speedbar-line-directory)
21176 txt (buffer-substring-no-properties (or tp (point-min))
21177 (or np (point-max))))
21178 (with-current-buffer (find-file-noselect
21179 (let ((default-directory dir))
21180 (expand-file-name txt)))
21181 (unless (eq major-mode 'org-mode)
21182 (error "Cannot restrict to non-Org-mode file"))
21183 (org-agenda-set-restriction-lock 'file)))
21184 (t (error "Don't know how to restrict Org-mode's agenda")))
21185 (move-overlay org-speedbar-restriction-lock-overlay
21186 (point-at-bol) (point-at-eol))
21187 (setq current-prefix-arg nil)
21188 (org-agenda-maybe-redo)))
21190 (eval-after-load "speedbar"
21191 '(progn
21192 (speedbar-add-supported-extension ".org")
21193 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
21194 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
21195 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
21196 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
21197 (add-hook 'speedbar-visiting-tag-hook
21198 (lambda () (and (eq major-mode 'org-mode) (org-show-context 'org-goto))))))
21200 ;;; Fixes and Hacks for problems with other packages
21202 ;; Make flyspell not check words in links, to not mess up our keymap
21203 (defun org-mode-flyspell-verify ()
21204 "Don't let flyspell put overlays at active buttons, or on
21205 {todo,all-time,additional-option-like}-keywords."
21206 (let ((pos (max (1- (point)) (point-min)))
21207 (word (thing-at-point 'word)))
21208 (and (not (get-text-property pos 'keymap))
21209 (not (get-text-property pos 'org-no-flyspell))
21210 (not (member word org-todo-keywords-1))
21211 (not (member word org-all-time-keywords))
21212 (not (member word org-additional-option-like-keywords)))))
21214 (defun org-remove-flyspell-overlays-in (beg end)
21215 "Remove flyspell overlays in region."
21216 (and (org-bound-and-true-p flyspell-mode)
21217 (fboundp 'flyspell-delete-region-overlays)
21218 (flyspell-delete-region-overlays beg end))
21219 (add-text-properties beg end '(org-no-flyspell t)))
21221 ;; Make `bookmark-jump' shows the jump location if it was hidden.
21222 (eval-after-load "bookmark"
21223 '(if (boundp 'bookmark-after-jump-hook)
21224 ;; We can use the hook
21225 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
21226 ;; Hook not available, use advice
21227 (defadvice bookmark-jump (after org-make-visible activate)
21228 "Make the position visible."
21229 (org-bookmark-jump-unhide))))
21231 ;; Make sure saveplace shows the location if it was hidden
21232 (eval-after-load "saveplace"
21233 '(defadvice save-place-find-file-hook (after org-make-visible activate)
21234 "Make the position visible."
21235 (org-bookmark-jump-unhide)))
21237 ;; Make sure ecb shows the location if it was hidden
21238 (eval-after-load "ecb"
21239 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
21240 "Make hierarchy visible when jumping into location from ECB tree buffer."
21241 (if (eq major-mode 'org-mode)
21242 (org-show-context))))
21244 (defun org-bookmark-jump-unhide ()
21245 "Unhide the current position, to show the bookmark location."
21246 (and (eq major-mode 'org-mode)
21247 (or (outline-invisible-p)
21248 (save-excursion (goto-char (max (point-min) (1- (point))))
21249 (outline-invisible-p)))
21250 (org-show-context 'bookmark-jump)))
21252 ;; Make session.el ignore our circular variable
21253 (eval-after-load "session"
21254 '(add-to-list 'session-globals-exclude 'org-mark-ring))
21256 ;;;; Experimental code
21258 (defun org-closed-in-range ()
21259 "Sparse tree of items closed in a certain time range.
21260 Still experimental, may disappear in the future."
21261 (interactive)
21262 ;; Get the time interval from the user.
21263 (let* ((time1 (org-float-time
21264 (org-read-date nil 'to-time nil "Starting date: ")))
21265 (time2 (org-float-time
21266 (org-read-date nil 'to-time nil "End date:")))
21267 ;; callback function
21268 (callback (lambda ()
21269 (let ((time
21270 (org-float-time
21271 (apply 'encode-time
21272 (org-parse-time-string
21273 (match-string 1))))))
21274 ;; check if time in interval
21275 (and (>= time time1) (<= time time2))))))
21276 ;; make tree, check each match with the callback
21277 (org-occur "CLOSED: +\\[\\(.*?\\)\\]" nil callback)))
21279 ;;;; Finish up
21281 (provide 'org)
21283 (run-hooks 'org-load-hook)
21285 ;;; org.el ends here