Merge branch 'refactor/org-macros'
[org-mode.git] / lisp / org.el
blob743d9c4e3bf686e9bb777301d998daac2c240bd1
1 ;;; org.el --- Outline-based notes management and organizer
2 ;; Carstens outline-mode for keeping track of everything.
3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 ;; Free Software Foundation, Inc.
5 ;;
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; Homepage: http://orgmode.org
9 ;; Version: 7.7
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27 ;;; Commentary:
29 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
30 ;; project planning with a fast and effective plain-text system.
32 ;; Org-mode develops organizational tasks around NOTES files that contain
33 ;; information about projects as plain text. Org-mode is implemented on
34 ;; top of outline-mode, which makes it possible to keep the content of
35 ;; large files well structured. Visibility cycling and structure editing
36 ;; help to work with the tree. Tables are easily created with a built-in
37 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
38 ;; and scheduling. It dynamically compiles entries into an agenda that
39 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
40 ;; Plain text URL-like links connect to websites, emails, Usenet
41 ;; messages, BBDB entries, and any files related to the projects. For
42 ;; printing and sharing of notes, an Org-mode file can be exported as a
43 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
44 ;; iCalendar file. It can also serve as a publishing tool for a set of
45 ;; linked webpages.
47 ;; Installation and Activation
48 ;; ---------------------------
49 ;; See the corresponding sections in the manual at
51 ;; http://orgmode.org/org.html#Installation
53 ;; Documentation
54 ;; -------------
55 ;; The documentation of Org-mode can be found in the TeXInfo file. The
56 ;; distribution also contains a PDF version of it. At the homepage of
57 ;; Org-mode, you can read the same text online as HTML. There is also an
58 ;; excellent reference card made by Philip Rooke. This card can be found
59 ;; in the etc/ directory of Emacs 22.
61 ;; A list of recent changes can be found at
62 ;; http://orgmode.org/Changes.html
64 ;;; Code:
66 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
67 (defvar org-table-formula-constants-local nil
68 "Local version of `org-table-formula-constants'.")
69 (make-variable-buffer-local 'org-table-formula-constants-local)
71 ;;;; Require other packages
73 (eval-when-compile
74 (require 'cl)
75 (require 'gnus-sum))
77 (require 'calendar)
79 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
80 (when (fboundp 'defvaralias)
81 (unless (boundp 'calendar-view-holidays-initially-flag)
82 (defvaralias 'calendar-view-holidays-initially-flag
83 'view-calendar-holidays-initially))
84 (unless (boundp 'calendar-view-diary-initially-flag)
85 (defvaralias 'calendar-view-diary-initially-flag
86 'view-diary-entries-initially))
87 (unless (boundp 'diary-fancy-buffer)
88 (defvaralias 'diary-fancy-buffer 'fancy-diary-buffer)))
90 (require 'outline) (require 'noutline)
91 ;; Other stuff we need.
92 (require 'time-date)
93 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
94 (require 'easymenu)
95 (require 'overlay)
97 (require 'org-macs)
98 (require 'org-entities)
99 (require 'org-compat)
100 (require 'org-faces)
101 (require 'org-list)
102 (require 'org-pcomplete)
103 (require 'org-src)
104 (require 'org-footnote)
106 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
107 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
108 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
109 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
110 (declare-function org-at-clock-log-p "org-clock" ())
111 (declare-function org-clock-timestamps-up "org-clock" ())
112 (declare-function org-clock-timestamps-down "org-clock" ())
114 ;; babel
115 (require 'ob)
116 (require 'ob-table)
117 (require 'ob-lob)
118 (require 'ob-ref)
119 (require 'ob-tangle)
120 (require 'ob-comint)
121 (require 'ob-keys)
123 ;; load languages based on value of `org-babel-load-languages'
124 (defvar org-babel-load-languages)
125 ;;;###autoload
126 (defun org-babel-do-load-languages (sym value)
127 "Load the languages defined in `org-babel-load-languages'."
128 (set-default sym value)
129 (mapc (lambda (pair)
130 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
131 (if active
132 (progn
133 (require (intern (concat "ob-" lang))))
134 (progn
135 (funcall 'fmakunbound
136 (intern (concat "org-babel-execute:" lang)))
137 (funcall 'fmakunbound
138 (intern (concat "org-babel-expand-body:" lang)))))))
139 org-babel-load-languages))
141 (defcustom org-babel-load-languages '((emacs-lisp . t))
142 "Languages which can be evaluated in Org-mode buffers.
143 This list can be used to load support for any of the languages
144 below, note that each language will depend on a different set of
145 system executables and/or Emacs modes. When a language is
146 \"loaded\", then code blocks in that language can be evaluated
147 with `org-babel-execute-src-block' bound by default to C-c
148 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
149 be set to remove code block evaluation from the C-c C-c
150 keybinding. By default only Emacs Lisp (which has no
151 requirements) is loaded."
152 :group 'org-babel
153 :set 'org-babel-do-load-languages
154 :type '(alist :tag "Babel Languages"
155 :key-type
156 (choice
157 (const :tag "Awk" awk)
158 (const :tag "C" C)
159 (const :tag "R" R)
160 (const :tag "Asymptote" asymptote)
161 (const :tag "Calc" calc)
162 (const :tag "Clojure" clojure)
163 (const :tag "CSS" css)
164 (const :tag "Ditaa" ditaa)
165 (const :tag "Dot" dot)
166 (const :tag "Emacs Lisp" emacs-lisp)
167 (const :tag "Gnuplot" gnuplot)
168 (const :tag "Haskell" haskell)
169 (const :tag "Java" java)
170 (const :tag "Javascript" js)
171 (const :tag "Latex" latex)
172 (const :tag "Ledger" ledger)
173 (const :tag "Lilypond" lilypond)
174 (const :tag "Maxima" maxima)
175 (const :tag "Matlab" matlab)
176 (const :tag "Mscgen" mscgen)
177 (const :tag "Ocaml" ocaml)
178 (const :tag "Octave" octave)
179 (const :tag "Org" org)
180 (const :tag "Perl" perl)
181 (const :tag "PlantUML" plantuml)
182 (const :tag "Python" python)
183 (const :tag "Ruby" ruby)
184 (const :tag "Sass" sass)
185 (const :tag "Scheme" scheme)
186 (const :tag "Screen" screen)
187 (const :tag "Shell Script" sh)
188 (const :tag "Sql" sql)
189 (const :tag "Sqlite" sqlite))
190 :value-type (boolean :tag "Activate" :value t)))
192 ;;;; Customization variables
193 (defcustom org-clone-delete-id nil
194 "Remove ID property of clones of a subtree.
195 When non-nil, clones of a subtree don't inherit the ID property.
196 Otherwise they inherit the ID property with a new unique
197 identifier."
198 :type 'boolean
199 :group 'org-id)
201 ;;; Version
203 (defconst org-version "7.7"
204 "The version number of the file org.el.")
206 (defun org-version (&optional here)
207 "Show the org-mode version in the echo area.
208 With prefix arg HERE, insert it at point."
209 (interactive "P")
210 (let* ((origin default-directory)
211 (version org-version)
212 (git-version)
213 (dir (concat (file-name-directory (locate-library "org")) "../" )))
214 (when (and (file-exists-p (expand-file-name ".git" dir))
215 (executable-find "git"))
216 (unwind-protect
217 (progn
218 (cd dir)
219 (when (eql 0 (shell-command "git describe --abbrev=4 HEAD"))
220 (with-current-buffer "*Shell Command Output*"
221 (goto-char (point-min))
222 (setq git-version (buffer-substring (point) (point-at-eol))))
223 (subst-char-in-string ?- ?. git-version t)
224 (when (string-match "\\S-"
225 (shell-command-to-string
226 "git diff-index --name-only HEAD --"))
227 (setq git-version (concat git-version ".dirty")))
228 (setq version (concat version " (" git-version ")"))))
229 (cd origin)))
230 (setq version (format "Org-mode version %s" version))
231 (if here (insert version))
232 (message version)))
234 ;;; Compatibility constants
236 ;;; The custom variables
238 (defgroup org nil
239 "Outline-based notes management and organizer."
240 :tag "Org"
241 :group 'outlines
242 :group 'calendar)
244 (defcustom org-mode-hook nil
245 "Mode hook for Org-mode, run after the mode was turned on."
246 :group 'org
247 :type 'hook)
249 (defcustom org-load-hook nil
250 "Hook that is run after org.el has been loaded."
251 :group 'org
252 :type 'hook)
254 (defcustom org-log-buffer-setup-hook nil
255 "Hook that is run after an Org log buffer is created."
256 :group 'org
257 :type 'hook)
259 (defvar org-modules) ; defined below
260 (defvar org-modules-loaded nil
261 "Have the modules been loaded already?")
263 (defun org-load-modules-maybe (&optional force)
264 "Load all extensions listed in `org-modules'."
265 (when (or force (not org-modules-loaded))
266 (mapc (lambda (ext)
267 (condition-case nil (require ext)
268 (error (message "Problems while trying to load feature `%s'" ext))))
269 org-modules)
270 (setq org-modules-loaded t)))
272 (defun org-set-modules (var value)
273 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
274 (set var value)
275 (when (featurep 'org)
276 (org-load-modules-maybe 'force)))
278 (when (org-bound-and-true-p org-modules)
279 (let ((a (member 'org-infojs org-modules)))
280 (and a (setcar a 'org-jsinfo))))
282 (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)
283 "Modules that should always be loaded together with org.el.
284 If a description starts with <C>, the file is not part of Emacs
285 and loading it will require that you have downloaded and properly installed
286 the org-mode distribution.
288 You can also use this system to load external packages (i.e. neither Org
289 core modules, nor modules from the CONTRIB directory). Just add symbols
290 to the end of the list. If the package is called org-xyz.el, then you need
291 to add the symbol `xyz', and the package must have a call to
293 (provide 'org-xyz)"
294 :group 'org
295 :set 'org-set-modules
296 :type
297 '(set :greedy t
298 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
299 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
300 (const :tag " crypt: Encryption of subtrees" org-crypt)
301 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
302 (const :tag " docview: Links to doc-view buffers" org-docview)
303 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
304 (const :tag " id: Global IDs for identifying entries" org-id)
305 (const :tag " info: Links to Info nodes" org-info)
306 (const :tag " jsinfo: Set up Sebastian Rose's JavaScript org-info.js" org-jsinfo)
307 (const :tag " habit: Track your consistency with habits" org-habit)
308 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
309 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
310 (const :tag " mac-message: Links to messages in Apple Mail" org-mac-message)
311 (const :tag " mew Links to Mew folders/messages" org-mew)
312 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
313 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
314 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
315 (const :tag " special-blocks: Turn blocks into LaTeX envs and HTML divs" org-special-blocks)
316 (const :tag " vm: Links to VM folders/messages" org-vm)
317 (const :tag " wl: Links to Wanderlust folders/messages" org-wl)
318 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
319 (const :tag " mouse: Additional mouse support" org-mouse)
320 (const :tag " TaskJuggler: Export tasks to a TaskJuggler project" org-taskjuggler)
322 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
323 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
324 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
325 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
326 (const :tag "C collector: Collect properties into tables" org-collector)
327 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
328 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
329 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
330 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
331 (const :tag "C eval: Include command output as text" org-eval)
332 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
333 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
334 (const :tag "C exp-bibtex: Export citations using BibTeX" org-exp-bibtex)
335 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
336 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
338 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
340 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
341 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
342 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
343 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
344 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
345 (const :tag "C mac-link-grabber Grab links and URLs from various Mac applications" org-mac-link-grabber)
346 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
347 (const :tag "C mtags: Support for muse-like tags" org-mtags)
348 (const :tag "C odt: OpenDocumentText exporter for Org-mode" org-odt)
349 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
350 (const :tag "C registry: A registry for Org-mode links" org-registry)
351 (const :tag "C org2rem: Convert org appointments into reminders" org2rem)
352 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
353 (const :tag "C secretary: Team management with org-mode" org-secretary)
354 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
355 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
356 (const :tag "C track: Keep up with Org-mode development" org-track)
357 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
358 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
359 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
361 (defcustom org-support-shift-select nil
362 "Non-nil means make shift-cursor commands select text when possible.
364 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys start
365 selecting a region, or enlarge regions started in this way.
366 In Org-mode, in special contexts, these same keys are used for other
367 purposes, important enough to compete with shift selection. Org tries
368 to balance these needs by supporting `shift-select-mode' outside these
369 special contexts, under control of this variable.
371 The default of this variable is nil, to avoid confusing behavior. Shifted
372 cursor keys will then execute Org commands in the following contexts:
373 - on a headline, changing TODO state (left/right) and priority (up/down)
374 - on a time stamp, changing the time
375 - in a plain list item, changing the bullet type
376 - in a property definition line, switching between allowed values
377 - in the BEGIN line of a clock table (changing the time block).
378 Outside these contexts, the commands will throw an error.
380 When this variable is t and the cursor is not in a special context,
381 Org-mode will support shift-selection for making and enlarging regions.
382 To make this more effective, the bullet cycling will no longer happen
383 anywhere in an item line, but only if the cursor is exactly on the bullet.
385 If you set this variable to the symbol `always', then the keys
386 will not be special in headlines, property lines, and item lines, to make
387 shift selection work there as well. If this is what you want, you can
388 use the following alternative commands: `C-c C-t' and `C-c ,' to
389 change TODO state and priority, `C-u C-u C-c C-t' can be used to switch
390 TODO sets, `C-c -' to cycle item bullet types, and properties can be
391 edited by hand or in column view.
393 However, when the cursor is on a timestamp, shift-cursor commands
394 will still edit the time stamp - this is just too good to give up.
396 XEmacs user should have this variable set to nil, because shift-select-mode
397 is Emacs 23 only."
398 :group 'org
399 :type '(choice
400 (const :tag "Never" nil)
401 (const :tag "When outside special context" t)
402 (const :tag "Everywhere except timestamps" always)))
404 (defgroup org-startup nil
405 "Options concerning startup of Org-mode."
406 :tag "Org Startup"
407 :group 'org)
409 (defcustom org-startup-folded t
410 "Non-nil means entering Org-mode will switch to OVERVIEW.
411 This can also be configured on a per-file basis by adding one of
412 the following lines anywhere in the buffer:
414 #+STARTUP: fold (or `overview', this is equivalent)
415 #+STARTUP: nofold (or `showall', this is equivalent)
416 #+STARTUP: content
417 #+STARTUP: showeverything"
418 :group 'org-startup
419 :type '(choice
420 (const :tag "nofold: show all" nil)
421 (const :tag "fold: overview" t)
422 (const :tag "content: all headlines" content)
423 (const :tag "show everything, even drawers" showeverything)))
425 (defcustom org-startup-truncated t
426 "Non-nil means entering Org-mode will set `truncate-lines'.
427 This is useful since some lines containing links can be very long and
428 uninteresting. Also tables look terrible when wrapped."
429 :group 'org-startup
430 :type 'boolean)
432 (defcustom org-startup-indented nil
433 "Non-nil means turn on `org-indent-mode' on startup.
434 This can also be configured on a per-file basis by adding one of
435 the following lines anywhere in the buffer:
437 #+STARTUP: indent
438 #+STARTUP: noindent"
439 :group 'org-structure
440 :type '(choice
441 (const :tag "Not" nil)
442 (const :tag "Globally (slow on startup in large files)" t)))
444 (defcustom org-use-sub-superscripts t
445 "Non-nil means interpret \"_\" and \"^\" for export.
446 When this option is turned on, you can use TeX-like syntax for sub- and
447 superscripts. Several characters after \"_\" or \"^\" will be
448 considered as a single item - so grouping with {} is normally not
449 needed. For example, the following things will be parsed as single
450 sub- or superscripts.
452 10^24 or 10^tau several digits will be considered 1 item.
453 10^-12 or 10^-tau a leading sign with digits or a word
454 x^2-y^3 will be read as x^2 - y^3, because items are
455 terminated by almost any nonword/nondigit char.
456 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
458 Still, ambiguity is possible - so when in doubt use {} to enclose the
459 sub/superscript. If you set this variable to the symbol `{}',
460 the braces are *required* in order to trigger interpretations as
461 sub/superscript. This can be helpful in documents that need \"_\"
462 frequently in plain text.
464 Not all export backends support this, but HTML does.
466 This option can also be set with the +OPTIONS line, e.g. \"^:nil\"."
467 :group 'org-startup
468 :group 'org-export-translation
469 :type '(choice
470 (const :tag "Always interpret" t)
471 (const :tag "Only with braces" {})
472 (const :tag "Never interpret" nil)))
474 (if (fboundp 'defvaralias)
475 (defvaralias 'org-export-with-sub-superscripts 'org-use-sub-superscripts))
478 (defcustom org-startup-with-beamer-mode nil
479 "Non-nil means turn on `org-beamer-mode' on startup.
480 This can also be configured on a per-file basis by adding one of
481 the following lines anywhere in the buffer:
483 #+STARTUP: beamer"
484 :group 'org-startup
485 :type 'boolean)
487 (defcustom org-startup-align-all-tables nil
488 "Non-nil means align all tables when visiting a file.
489 This is useful when the column width in tables is forced with <N> cookies
490 in table fields. Such tables will look correct only after the first re-align.
491 This can also be configured on a per-file basis by adding one of
492 the following lines anywhere in the buffer:
493 #+STARTUP: align
494 #+STARTUP: noalign"
495 :group 'org-startup
496 :type 'boolean)
498 (defcustom org-startup-with-inline-images nil
499 "Non-nil means show inline images when loading a new Org file.
500 This can also be configured on a per-file basis by adding one of
501 the following lines anywhere in the buffer:
502 #+STARTUP: inlineimages
503 #+STARTUP: noinlineimages"
504 :group 'org-startup
505 :type 'boolean)
507 (defcustom org-insert-mode-line-in-empty-file nil
508 "Non-nil means insert the first line setting Org-mode in empty files.
509 When the function `org-mode' is called interactively in an empty file, this
510 normally means that the file name does not automatically trigger Org-mode.
511 To ensure that the file will always be in Org-mode in the future, a
512 line enforcing Org-mode will be inserted into the buffer, if this option
513 has been set."
514 :group 'org-startup
515 :type 'boolean)
517 (defcustom org-replace-disputed-keys nil
518 "Non-nil means use alternative key bindings for some keys.
519 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
520 These keys are also used by other packages like shift-selection-mode'
521 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
522 If you want to use Org-mode together with one of these other modes,
523 or more generally if you would like to move some Org-mode commands to
524 other keys, set this variable and configure the keys with the variable
525 `org-disputed-keys'.
527 This option is only relevant at load-time of Org-mode, and must be set
528 *before* org.el is loaded. Changing it requires a restart of Emacs to
529 become effective."
530 :group 'org-startup
531 :type 'boolean)
533 (defcustom org-use-extra-keys nil
534 "Non-nil means use extra key sequence definitions for certain commands.
535 This happens automatically if you run XEmacs or if `window-system'
536 is nil. This variable lets you do the same manually. You must
537 set it before loading org.
539 Example: on Carbon Emacs 22 running graphically, with an external
540 keyboard on a Powerbook, the default way of setting M-left might
541 not work for either Alt or ESC. Setting this variable will make
542 it work for ESC."
543 :group 'org-startup
544 :type 'boolean)
546 (if (fboundp 'defvaralias)
547 (defvaralias 'org-CUA-compatible 'org-replace-disputed-keys))
549 (defcustom org-disputed-keys
550 '(([(shift up)] . [(meta p)])
551 ([(shift down)] . [(meta n)])
552 ([(shift left)] . [(meta -)])
553 ([(shift right)] . [(meta +)])
554 ([(control shift right)] . [(meta shift +)])
555 ([(control shift left)] . [(meta shift -)]))
556 "Keys for which Org-mode and other modes compete.
557 This is an alist, cars are the default keys, second element specifies
558 the alternative to use when `org-replace-disputed-keys' is t.
560 Keys can be specified in any syntax supported by `define-key'.
561 The value of this option takes effect only at Org-mode's startup,
562 therefore you'll have to restart Emacs to apply it after changing."
563 :group 'org-startup
564 :type 'alist)
566 (defun org-key (key)
567 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
568 Or return the original if not disputed.
569 Also apply the translations defined in `org-xemacs-key-equivalents'."
570 (when org-replace-disputed-keys
571 (let* ((nkey (key-description key))
572 (x (org-find-if (lambda (x)
573 (equal (key-description (car x)) nkey))
574 org-disputed-keys)))
575 (setq key (if x (cdr x) key))))
576 (when (featurep 'xemacs)
577 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
578 key)
580 (defun org-find-if (predicate seq)
581 (catch 'exit
582 (while seq
583 (if (funcall predicate (car seq))
584 (throw 'exit (car seq))
585 (pop seq)))))
587 (defun org-defkey (keymap key def)
588 "Define a key, possibly translated, as returned by `org-key'."
589 (define-key keymap (org-key key) def))
591 (defcustom org-ellipsis nil
592 "The ellipsis to use in the Org-mode outline.
593 When nil, just use the standard three dots. When a string, use that instead,
594 When a face, use the standard 3 dots, but with the specified face.
595 The change affects only Org-mode (which will then use its own display table).
596 Changing this requires executing `M-x org-mode' in a buffer to become
597 effective."
598 :group 'org-startup
599 :type '(choice (const :tag "Default" nil)
600 (face :tag "Face" :value org-warning)
601 (string :tag "String" :value "...#")))
603 (defvar org-display-table nil
604 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
606 (defgroup org-keywords nil
607 "Keywords in Org-mode."
608 :tag "Org Keywords"
609 :group 'org)
611 (defcustom org-deadline-string "DEADLINE:"
612 "String to mark deadline entries.
613 A deadline is this string, followed by a time stamp. Should be a word,
614 terminated by a colon. You can insert a schedule keyword and
615 a timestamp with \\[org-deadline].
616 Changes become only effective after restarting Emacs."
617 :group 'org-keywords
618 :type 'string)
620 (defcustom org-scheduled-string "SCHEDULED:"
621 "String to mark scheduled TODO entries.
622 A schedule is this string, followed by a time stamp. Should be a word,
623 terminated by a colon. You can insert a schedule keyword and
624 a timestamp with \\[org-schedule].
625 Changes become only effective after restarting Emacs."
626 :group 'org-keywords
627 :type 'string)
629 (defcustom org-closed-string "CLOSED:"
630 "String used as the prefix for timestamps logging closing a TODO entry."
631 :group 'org-keywords
632 :type 'string)
634 (defcustom org-clock-string "CLOCK:"
635 "String used as prefix for timestamps clocking work hours on an item."
636 :group 'org-keywords
637 :type 'string)
639 (defcustom org-comment-string "COMMENT"
640 "Entries starting with this keyword will never be exported.
641 An entry can be toggled between COMMENT and normal with
642 \\[org-toggle-comment].
643 Changes become only effective after restarting Emacs."
644 :group 'org-keywords
645 :type 'string)
647 (defcustom org-quote-string "QUOTE"
648 "Entries starting with this keyword will be exported in fixed-width font.
649 Quoting applies only to the text in the entry following the headline, and does
650 not extend beyond the next headline, even if that is lower level.
651 An entry can be toggled between QUOTE and normal with
652 \\[org-toggle-fixed-width-section]."
653 :group 'org-keywords
654 :type 'string)
656 (defconst org-repeat-re
657 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)"
658 "Regular expression for specifying repeated events.
659 After a match, group 1 contains the repeat expression.")
661 (defgroup org-structure nil
662 "Options concerning the general structure of Org-mode files."
663 :tag "Org Structure"
664 :group 'org)
666 (defgroup org-reveal-location nil
667 "Options about how to make context of a location visible."
668 :tag "Org Reveal Location"
669 :group 'org-structure)
671 (defconst org-context-choice
672 '(choice
673 (const :tag "Always" t)
674 (const :tag "Never" nil)
675 (repeat :greedy t :tag "Individual contexts"
676 (cons
677 (choice :tag "Context"
678 (const agenda)
679 (const org-goto)
680 (const occur-tree)
681 (const tags-tree)
682 (const link-search)
683 (const mark-goto)
684 (const bookmark-jump)
685 (const isearch)
686 (const default))
687 (boolean))))
688 "Contexts for the reveal options.")
690 (defcustom org-show-hierarchy-above '((default . t))
691 "Non-nil means show full hierarchy when revealing a location.
692 Org-mode often shows locations in an org-mode file which might have
693 been invisible before. When this is set, the hierarchy of headings
694 above the exposed location is shown.
695 Turning this off for example for sparse trees makes them very compact.
696 Instead of t, this can also be an alist specifying this option for different
697 contexts. Valid contexts are
698 agenda when exposing an entry from the agenda
699 org-goto when using the command `org-goto' on key C-c C-j
700 occur-tree when using the command `org-occur' on key C-c /
701 tags-tree when constructing a sparse tree based on tags matches
702 link-search when exposing search matches associated with a link
703 mark-goto when exposing the jump goal of a mark
704 bookmark-jump when exposing a bookmark location
705 isearch when exiting from an incremental search
706 default default for all contexts not set explicitly"
707 :group 'org-reveal-location
708 :type org-context-choice)
710 (defcustom org-show-following-heading '((default . nil))
711 "Non-nil means show following heading when revealing a location.
712 Org-mode often shows locations in an org-mode file which might have
713 been invisible before. When this is set, the heading following the
714 match is shown.
715 Turning this off for example for sparse trees makes them very compact,
716 but makes it harder to edit the location of the match. In such a case,
717 use the command \\[org-reveal] to show more context.
718 Instead of t, this can also be an alist specifying this option for different
719 contexts. See `org-show-hierarchy-above' for valid contexts."
720 :group 'org-reveal-location
721 :type org-context-choice)
723 (defcustom org-show-siblings '((default . nil) (isearch t))
724 "Non-nil means show all sibling heading when revealing a location.
725 Org-mode often shows locations in an org-mode file which might have
726 been invisible before. When this is set, the sibling of the current entry
727 heading are all made visible. If `org-show-hierarchy-above' is t,
728 the same happens on each level of the hierarchy above the current entry.
730 By default this is on for the isearch context, off for all other contexts.
731 Turning this off for example for sparse trees makes them very compact,
732 but makes it harder to edit the location of the match. In such a case,
733 use the command \\[org-reveal] to show more context.
734 Instead of t, this can also be an alist specifying this option for different
735 contexts. See `org-show-hierarchy-above' for valid contexts."
736 :group 'org-reveal-location
737 :type org-context-choice)
739 (defcustom org-show-entry-below '((default . nil))
740 "Non-nil means show the entry below a headline 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 text below the headline that is
743 exposed is also shown.
745 By default this is off for all contexts.
746 Instead of t, this can also be an alist specifying this option for different
747 contexts. See `org-show-hierarchy-above' for valid contexts."
748 :group 'org-reveal-location
749 :type org-context-choice)
751 (defcustom org-indirect-buffer-display 'other-window
752 "How should indirect tree buffers be displayed?
753 This applies to indirect buffers created with the commands
754 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
755 Valid values are:
756 current-window Display in the current window
757 other-window Just display in another window.
758 dedicated-frame Create one new frame, and re-use it each time.
759 new-frame Make a new frame each time. Note that in this case
760 previously-made indirect buffers are kept, and you need to
761 kill these buffers yourself."
762 :group 'org-structure
763 :group 'org-agenda-windows
764 :type '(choice
765 (const :tag "In current window" current-window)
766 (const :tag "In current frame, other window" other-window)
767 (const :tag "Each time a new frame" new-frame)
768 (const :tag "One dedicated frame" dedicated-frame)))
770 (defcustom org-use-speed-commands nil
771 "Non-nil means activate single letter commands at beginning of a headline.
772 This may also be a function to test for appropriate locations where speed
773 commands should be active."
774 :group 'org-structure
775 :type '(choice
776 (const :tag "Never" nil)
777 (const :tag "At beginning of headline stars" t)
778 (function)))
780 (defcustom org-speed-commands-user nil
781 "Alist of additional speed commands.
782 This list will be checked before `org-speed-commands-default'
783 when the variable `org-use-speed-commands' is non-nil
784 and when the cursor is at the beginning of a headline.
785 The car if each entry is a string with a single letter, which must
786 be assigned to `self-insert-command' in the global map.
787 The cdr is either a command to be called interactively, a function
788 to be called, or a form to be evaluated.
789 An entry that is just a list with a single string will be interpreted
790 as a descriptive headline that will be added when listing the speed
791 commands in the Help buffer using the `?' speed command."
792 :group 'org-structure
793 :type '(repeat :value ("k" . ignore)
794 (choice :value ("k" . ignore)
795 (list :tag "Descriptive Headline" (string :tag "Headline"))
796 (cons :tag "Letter and Command"
797 (string :tag "Command letter")
798 (choice
799 (function)
800 (sexp))))))
802 (defgroup org-cycle nil
803 "Options concerning visibility cycling in Org-mode."
804 :tag "Org Cycle"
805 :group 'org-structure)
807 (defcustom org-cycle-skip-children-state-if-no-children t
808 "Non-nil means skip CHILDREN state in entries that don't have any."
809 :group 'org-cycle
810 :type 'boolean)
812 (defcustom org-cycle-max-level nil
813 "Maximum level which should still be subject to visibility cycling.
814 Levels higher than this will, for cycling, be treated as text, not a headline.
815 When `org-odd-levels-only' is set, a value of N in this variable actually
816 means 2N-1 stars as the limiting headline.
817 When nil, cycle all levels.
818 Note that the limiting level of cycling is also influenced by
819 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
820 `org-inlinetask-min-level' is, cycling will be limited to levels one less
821 than its value."
822 :group 'org-cycle
823 :type '(choice
824 (const :tag "No limit" nil)
825 (integer :tag "Maximum level")))
827 (defcustom org-drawers '("PROPERTIES" "CLOCK" "LOGBOOK")
828 "Names of drawers. Drawers are not opened by cycling on the headline above.
829 Drawers only open with a TAB on the drawer line itself. A drawer looks like
830 this:
831 :DRAWERNAME:
832 .....
833 :END:
834 The drawer \"PROPERTIES\" is special for capturing properties through
835 the property API.
837 Drawers can be defined on the per-file basis with a line like:
839 #+DRAWERS: HIDDEN STATE PROPERTIES"
840 :group 'org-structure
841 :group 'org-cycle
842 :type '(repeat (string :tag "Drawer Name")))
844 (defcustom org-hide-block-startup nil
845 "Non-nil means entering Org-mode will fold all blocks.
846 This can also be set in on a per-file basis with
848 #+STARTUP: hideblocks
849 #+STARTUP: showblocks"
850 :group 'org-startup
851 :group 'org-cycle
852 :type 'boolean)
854 (defcustom org-cycle-global-at-bob nil
855 "Cycle globally if cursor is at beginning of buffer and not at a headline.
856 This makes it possible to do global cycling without having to use S-TAB or
857 \\[universal-argument] TAB. For this special case to work, the first line \
858 of the buffer
859 must not be a headline - it may be empty or some other text. When used in
860 this way, `org-cycle-hook' is disables temporarily, to make sure the
861 cursor stays at the beginning of the buffer.
862 When this option is nil, don't do anything special at the beginning
863 of the buffer."
864 :group 'org-cycle
865 :type 'boolean)
867 (defcustom org-cycle-level-after-item/entry-creation t
868 "Non-nil means cycle entry level or item indentation in new empty entries.
870 When the cursor is at the end of an empty headline, i.e with only stars
871 and maybe a TODO keyword, TAB will then switch the entry to become a child,
872 and then all possible ancestor states, before returning to the original state.
873 This makes data entry extremely fast: M-RET to create a new headline,
874 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
876 When the cursor is at the end of an empty plain list item, one TAB will
877 make it a subitem, two or more tabs will back up to make this an item
878 higher up in the item hierarchy."
879 :group 'org-cycle
880 :type 'boolean)
882 (defcustom org-cycle-emulate-tab t
883 "Where should `org-cycle' emulate TAB.
884 nil Never
885 white Only in completely white lines
886 whitestart Only at the beginning of lines, before the first non-white char
887 t Everywhere except in headlines
888 exc-hl-bol Everywhere except at the start of a headline
889 If TAB is used in a place where it does not emulate TAB, the current subtree
890 visibility is cycled."
891 :group 'org-cycle
892 :type '(choice (const :tag "Never" nil)
893 (const :tag "Only in completely white lines" white)
894 (const :tag "Before first char in a line" whitestart)
895 (const :tag "Everywhere except in headlines" t)
896 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)
899 (defcustom org-cycle-separator-lines 2
900 "Number of empty lines needed to keep an empty line between collapsed trees.
901 If you leave an empty line between the end of a subtree and the following
902 headline, this empty line is hidden when the subtree is folded.
903 Org-mode will leave (exactly) one empty line visible if the number of
904 empty lines is equal or larger to the number given in this variable.
905 So the default 2 means at least 2 empty lines after the end of a subtree
906 are needed to produce free space between a collapsed subtree and the
907 following headline.
909 If the number is negative, and the number of empty lines is at least -N,
910 all empty lines are shown.
912 Special case: when 0, never leave empty lines in collapsed view."
913 :group 'org-cycle
914 :type 'integer)
915 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
917 (defcustom org-pre-cycle-hook nil
918 "Hook that is run before visibility cycling is happening.
919 The function(s) in this hook must accept a single argument which indicates
920 the new state that will be set right after running this hook. The
921 argument is a symbol. Before a global state change, it can have the values
922 `overview', `content', or `all'. Before a local state change, it can have
923 the values `folded', `children', or `subtree'."
924 :group 'org-cycle
925 :type 'hook)
927 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
928 org-cycle-hide-drawers
929 org-cycle-show-empty-lines
930 org-optimize-window-after-visibility-change)
931 "Hook that is run after `org-cycle' has changed the buffer visibility.
932 The function(s) in this hook must accept a single argument which indicates
933 the new state that was set by the most recent `org-cycle' command. The
934 argument is a symbol. After a global state change, it can have the values
935 `overview', `content', or `all'. After a local state change, it can have
936 the values `folded', `children', or `subtree'."
937 :group 'org-cycle
938 :type 'hook)
940 (defgroup org-edit-structure nil
941 "Options concerning structure editing in Org-mode."
942 :tag "Org Edit Structure"
943 :group 'org-structure)
945 (defcustom org-odd-levels-only nil
946 "Non-nil means skip even levels and only use odd levels for the outline.
947 This has the effect that two stars are being added/taken away in
948 promotion/demotion commands. It also influences how levels are
949 handled by the exporters.
950 Changing it requires restart of `font-lock-mode' to become effective
951 for fontification also in regions already fontified.
952 You may also set this on a per-file basis by adding one of the following
953 lines to the buffer:
955 #+STARTUP: odd
956 #+STARTUP: oddeven"
957 :group 'org-edit-structure
958 :group 'org-appearance
959 :type 'boolean)
961 (defcustom org-adapt-indentation t
962 "Non-nil means adapt indentation to outline node level.
964 When this variable is set, Org assumes that you write outlines by
965 indenting text in each node to align with the headline (after the stars).
966 The following issues are influenced by this variable:
968 - When this is set and the *entire* text in an entry is indented, the
969 indentation is increased by one space in a demotion command, and
970 decreased by one in a promotion command. If any line in the entry
971 body starts with text at column 0, indentation is not changed at all.
973 - Property drawers and planning information is inserted indented when
974 this variable s set. When nil, they will not be indented.
976 - TAB indents a line relative to context. The lines below a headline
977 will be indented when this variable is set.
979 Note that this is all about true indentation, by adding and removing
980 space characters. See also `org-indent.el' which does level-dependent
981 indentation in a virtual way, i.e. at display time in Emacs."
982 :group 'org-edit-structure
983 :type 'boolean)
985 (defcustom org-special-ctrl-a/e nil
986 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
988 When t, `C-a' will bring back the cursor to the beginning of the
989 headline text, i.e. after the stars and after a possible TODO keyword.
990 In an item, this will be the position after the bullet.
991 When the cursor is already at that position, another `C-a' will bring
992 it to the beginning of the line.
994 `C-e' will jump to the end of the headline, ignoring the presence of tags
995 in the headline. A second `C-e' will then jump to the true end of the
996 line, after any tags. This also means that, when this variable is
997 non-nil, `C-e' also will never jump beyond the end of the heading of a
998 folded section, i.e. not after the ellipses.
1000 When set to the symbol `reversed', the first `C-a' or `C-e' works normally,
1001 going to the true line boundary first. Only a directly following, identical
1002 keypress will bring the cursor to the special positions.
1004 This may also be a cons cell where the behavior for `C-a' and `C-e' is
1005 set separately."
1006 :group 'org-edit-structure
1007 :type '(choice
1008 (const :tag "off" nil)
1009 (const :tag "on: after stars/bullet and before tags first" t)
1010 (const :tag "reversed: true line boundary first" reversed)
1011 (cons :tag "Set C-a and C-e separately"
1012 (choice :tag "Special C-a"
1013 (const :tag "off" nil)
1014 (const :tag "on: after stars/bullet first" t)
1015 (const :tag "reversed: before stars/bullet first" reversed))
1016 (choice :tag "Special C-e"
1017 (const :tag "off" nil)
1018 (const :tag "on: before tags first" t)
1019 (const :tag "reversed: after tags first" reversed)))))
1020 (if (fboundp 'defvaralias)
1021 (defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e))
1023 (defcustom org-special-ctrl-k nil
1024 "Non-nil means `C-k' will behave specially in headlines.
1025 When nil, `C-k' will call the default `kill-line' command.
1026 When t, the following will happen while the cursor is in the headline:
1028 - When the cursor is at the beginning of a headline, kill the entire
1029 line and possible the folded subtree below the line.
1030 - When in the middle of the headline text, kill the headline up to the tags.
1031 - When after the headline text, kill the tags."
1032 :group 'org-edit-structure
1033 :type 'boolean)
1035 (defcustom org-ctrl-k-protect-subtree nil
1036 "Non-nil means, do not delete a hidden subtree with C-k.
1037 When set to the symbol `error', simply throw an error when C-k is
1038 used to kill (part-of) a headline that has hidden text behind it.
1039 Any other non-nil value will result in a query to the user, if it is
1040 OK to kill that hidden subtree. When nil, kill without remorse."
1041 :group 'org-edit-structure
1042 :type '(choice
1043 (const :tag "Do not protect hidden subtrees" nil)
1044 (const :tag "Protect hidden subtrees with a security query" t)
1045 (const :tag "Never kill a hidden subtree with C-k" error)))
1047 (defcustom org-yank-folded-subtrees t
1048 "Non-nil means when yanking subtrees, fold them.
1049 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1050 it starts with a heading and all other headings in it are either children
1051 or siblings, then fold all the subtrees. However, do this only if no
1052 text after the yank would be swallowed into a folded tree by this action."
1053 :group 'org-edit-structure
1054 :type 'boolean)
1056 (defcustom org-yank-adjusted-subtrees nil
1057 "Non-nil means when yanking subtrees, adjust the level.
1058 With this setting, `org-paste-subtree' is used to insert the subtree, see
1059 this function for details."
1060 :group 'org-edit-structure
1061 :type 'boolean)
1063 (defcustom org-M-RET-may-split-line '((default . t))
1064 "Non-nil means M-RET will split the line at the cursor position.
1065 When nil, it will go to the end of the line before making a
1066 new line.
1067 You may also set this option in a different way for different
1068 contexts. Valid contexts are:
1070 headline when creating a new headline
1071 item when creating a new item
1072 table in a table field
1073 default the value to be used for all contexts not explicitly
1074 customized"
1075 :group 'org-structure
1076 :group 'org-table
1077 :type '(choice
1078 (const :tag "Always" t)
1079 (const :tag "Never" nil)
1080 (repeat :greedy t :tag "Individual contexts"
1081 (cons
1082 (choice :tag "Context"
1083 (const headline)
1084 (const item)
1085 (const table)
1086 (const default))
1087 (boolean)))))
1090 (defcustom org-insert-heading-respect-content nil
1091 "Non-nil means insert new headings after the current subtree.
1092 When nil, the new heading is created directly after the current line.
1093 The commands \\[org-insert-heading-respect-content] and
1094 \\[org-insert-todo-heading-respect-content] turn this variable on
1095 for the duration of the command."
1096 :group 'org-structure
1097 :type 'boolean)
1099 (defcustom org-blank-before-new-entry '((heading . auto)
1100 (plain-list-item . auto))
1101 "Should `org-insert-heading' leave a blank line before new heading/item?
1102 The value is an alist, with `heading' and `plain-list-item' as CAR,
1103 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1104 which case Org will look at the surrounding headings/items and try to
1105 make an intelligent decision whether to insert a blank line or not.
1107 For plain lists, if the variable `org-empty-line-terminates-plain-lists' is
1108 set, the setting here is ignored and no empty line is inserted, to avoid
1109 breaking the list structure."
1110 :group 'org-edit-structure
1111 :type '(list
1112 (cons (const heading)
1113 (choice (const :tag "Never" nil)
1114 (const :tag "Always" t)
1115 (const :tag "Auto" auto)))
1116 (cons (const plain-list-item)
1117 (choice (const :tag "Never" nil)
1118 (const :tag "Always" t)
1119 (const :tag "Auto" auto)))))
1121 (defcustom org-insert-heading-hook nil
1122 "Hook being run after inserting a new heading."
1123 :group 'org-edit-structure
1124 :type 'hook)
1126 (defcustom org-enable-fixed-width-editor t
1127 "Non-nil means lines starting with \":\" are treated as fixed-width.
1128 This currently only means they are never auto-wrapped.
1129 When nil, such lines will be treated like ordinary lines.
1130 See also the QUOTE keyword."
1131 :group 'org-edit-structure
1132 :type 'boolean)
1134 (defcustom org-goto-auto-isearch t
1135 "Non-nil means typing characters in `org-goto' starts incremental search."
1136 :group 'org-edit-structure
1137 :type 'boolean)
1139 (defgroup org-sparse-trees nil
1140 "Options concerning sparse trees in Org-mode."
1141 :tag "Org Sparse Trees"
1142 :group 'org-structure)
1144 (defcustom org-highlight-sparse-tree-matches t
1145 "Non-nil means highlight all matches that define a sparse tree.
1146 The highlights will automatically disappear the next time the buffer is
1147 changed by an edit command."
1148 :group 'org-sparse-trees
1149 :type 'boolean)
1151 (defcustom org-remove-highlights-with-change t
1152 "Non-nil means any change to the buffer will remove temporary highlights.
1153 Such highlights are created by `org-occur' and `org-clock-display'.
1154 When nil, `C-c C-c needs to be used to get rid of the highlights.
1155 The highlights created by `org-preview-latex-fragment' always need
1156 `C-c C-c' to be removed."
1157 :group 'org-sparse-trees
1158 :group 'org-time
1159 :type 'boolean)
1162 (defcustom org-occur-hook '(org-first-headline-recenter)
1163 "Hook that is run after `org-occur' has constructed a sparse tree.
1164 This can be used to recenter the window to show as much of the structure
1165 as possible."
1166 :group 'org-sparse-trees
1167 :type 'hook)
1169 (defgroup org-imenu-and-speedbar nil
1170 "Options concerning imenu and speedbar in Org-mode."
1171 :tag "Org Imenu and Speedbar"
1172 :group 'org-structure)
1174 (defcustom org-imenu-depth 2
1175 "The maximum level for Imenu access to Org-mode headlines.
1176 This also applied for speedbar access."
1177 :group 'org-imenu-and-speedbar
1178 :type 'integer)
1180 (defgroup org-table nil
1181 "Options concerning tables in Org-mode."
1182 :tag "Org Table"
1183 :group 'org)
1185 (defcustom org-enable-table-editor 'optimized
1186 "Non-nil means lines starting with \"|\" are handled by the table editor.
1187 When nil, such lines will be treated like ordinary lines.
1189 When equal to the symbol `optimized', the table editor will be optimized to
1190 do the following:
1191 - Automatic overwrite mode in front of whitespace in table fields.
1192 This makes the structure of the table stay in tact as long as the edited
1193 field does not exceed the column width.
1194 - Minimize the number of realigns. Normally, the table is aligned each time
1195 TAB or RET are pressed to move to another field. With optimization this
1196 happens only if changes to a field might have changed the column width.
1197 Optimization requires replacing the functions `self-insert-command',
1198 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1199 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1200 very good at guessing when a re-align will be necessary, but you can always
1201 force one with \\[org-ctrl-c-ctrl-c].
1203 If you would like to use the optimized version in Org-mode, but the
1204 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1206 This variable can be used to turn on and off the table editor during a session,
1207 but in order to toggle optimization, a restart is required.
1209 See also the variable `org-table-auto-blank-field'."
1210 :group 'org-table
1211 :type '(choice
1212 (const :tag "off" nil)
1213 (const :tag "on" t)
1214 (const :tag "on, optimized" optimized)))
1216 (defcustom org-self-insert-cluster-for-undo t
1217 "Non-nil means cluster self-insert commands for undo when possible.
1218 If this is set, then, like in the Emacs command loop, 20 consecutive
1219 characters will be undone together.
1220 This is configurable, because there is some impact on typing performance."
1221 :group 'org-table
1222 :type 'boolean)
1224 (defcustom org-table-tab-recognizes-table.el t
1225 "Non-nil means TAB will automatically notice a table.el table.
1226 When it sees such a table, it moves point into it and - if necessary -
1227 calls `table-recognize-table'."
1228 :group 'org-table-editing
1229 :type 'boolean)
1231 (defgroup org-link nil
1232 "Options concerning links in Org-mode."
1233 :tag "Org Link"
1234 :group 'org)
1236 (defvar org-link-abbrev-alist-local nil
1237 "Buffer-local version of `org-link-abbrev-alist', which see.
1238 The value of this is taken from the #+LINK lines.")
1239 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1241 (defcustom org-link-abbrev-alist nil
1242 "Alist of link abbreviations.
1243 The car of each element is a string, to be replaced at the start of a link.
1244 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1245 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1247 [[linkkey:tag][description]]
1249 The 'linkkey' must be a word word, starting with a letter, followed
1250 by letters, numbers, '-' or '_'.
1252 If REPLACE is a string, the tag will simply be appended to create the link.
1253 If the string contains \"%s\", the tag will be inserted there. Alternatively,
1254 the placeholder \"%h\" will cause a url-encoded version of the tag to
1255 be inserted at that point (see the function `url-hexify-string').
1257 REPLACE may also be a function that will be called with the tag as the
1258 only argument to create the link, which should be returned as a string.
1260 See the manual for examples."
1261 :group 'org-link
1262 :type '(repeat
1263 (cons
1264 (string :tag "Protocol")
1265 (choice
1266 (string :tag "Format")
1267 (function)))))
1269 (defcustom org-descriptive-links t
1270 "Non-nil means hide link part and only show description of bracket links.
1271 Bracket links are like [[link][description]]. This variable sets the initial
1272 state in new org-mode buffers. The setting can then be toggled on a
1273 per-buffer basis from the Org->Hyperlinks menu."
1274 :group 'org-link
1275 :type 'boolean)
1277 (defcustom org-link-file-path-type 'adaptive
1278 "How the path name in file links should be stored.
1279 Valid values are:
1281 relative Relative to the current directory, i.e. the directory of the file
1282 into which the link is being inserted.
1283 absolute Absolute path, if possible with ~ for home directory.
1284 noabbrev Absolute path, no abbreviation of home directory.
1285 adaptive Use relative path for files in the current directory and sub-
1286 directories of it. For other files, use an absolute path."
1287 :group 'org-link
1288 :type '(choice
1289 (const relative)
1290 (const absolute)
1291 (const noabbrev)
1292 (const adaptive)))
1294 (defcustom org-activate-links '(bracket angle plain radio tag date footnote)
1295 "Types of links that should be activated in Org-mode files.
1296 This is a list of symbols, each leading to the activation of a certain link
1297 type. In principle, it does not hurt to turn on most link types - there may
1298 be a small gain when turning off unused link types. The types are:
1300 bracket The recommended [[link][description]] or [[link]] links with hiding.
1301 angle Links in angular brackets that may contain whitespace like
1302 <bbdb:Carsten Dominik>.
1303 plain Plain links in normal text, no whitespace, like http://google.com.
1304 radio Text that is matched by a radio target, see manual for details.
1305 tag Tag settings in a headline (link to tag search).
1306 date Time stamps (link to calendar).
1307 footnote Footnote labels.
1309 Changing this variable requires a restart of Emacs to become effective."
1310 :group 'org-link
1311 :type '(set :greedy t
1312 (const :tag "Double bracket links" bracket)
1313 (const :tag "Angular bracket links" angle)
1314 (const :tag "Plain text links" plain)
1315 (const :tag "Radio target matches" radio)
1316 (const :tag "Tags" tag)
1317 (const :tag "Timestamps" date)
1318 (const :tag "Footnotes" footnote)))
1320 (defcustom org-make-link-description-function nil
1321 "Function to use to generate link descriptions from links.
1322 If nil the link location will be used. This function must take
1323 two parameters; the first is the link and the second the
1324 description `org-insert-link' has generated, and should return the
1325 description to use."
1326 :group 'org-link
1327 :type 'function)
1329 (defgroup org-link-store nil
1330 "Options concerning storing links in Org-mode."
1331 :tag "Org Store Link"
1332 :group 'org-link)
1334 (defcustom org-email-link-description-format "Email %c: %.30s"
1335 "Format of the description part of a link to an email or usenet message.
1336 The following %-escapes will be replaced by corresponding information:
1338 %F full \"From\" field
1339 %f name, taken from \"From\" field, address if no name
1340 %T full \"To\" field
1341 %t first name in \"To\" field, address if no name
1342 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1343 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1344 %s subject
1345 %d date
1346 %m message-id.
1348 You may use normal field width specification between the % and the letter.
1349 This is for example useful to limit the length of the subject.
1351 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1352 :group 'org-link-store
1353 :type 'string)
1355 (defcustom org-from-is-user-regexp
1356 (let (r1 r2)
1357 (when (and user-mail-address (not (string= user-mail-address "")))
1358 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1359 (when (and user-full-name (not (string= user-full-name "")))
1360 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1361 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1362 "Regexp matched against the \"From:\" header of an email or usenet message.
1363 It should match if the message is from the user him/herself."
1364 :group 'org-link-store
1365 :type 'regexp)
1367 (defcustom org-link-to-org-use-id 'create-if-interactive-and-no-custom-id
1368 "Non-nil means storing a link to an Org file will use entry IDs.
1370 Note that before this variable is even considered, org-id must be loaded,
1371 so please customize `org-modules' and turn it on.
1373 The variable can have the following values:
1375 t Create an ID if needed to make a link to the current entry.
1377 create-if-interactive
1378 If `org-store-link' is called directly (interactively, as a user
1379 command), do create an ID to support the link. But when doing the
1380 job for remember, only use the ID if it already exists. The
1381 purpose of this setting is to avoid proliferation of unwanted
1382 IDs, just because you happen to be in an Org file when you
1383 call `org-remember' that automatically and preemptively
1384 creates a link. If you do want to get an ID link in a remember
1385 template to an entry not having an ID, create it first by
1386 explicitly creating a link to it, using `C-c C-l' first.
1388 create-if-interactive-and-no-custom-id
1389 Like create-if-interactive, but do not create an ID if there is
1390 a CUSTOM_ID property defined in the entry. This is the default.
1392 use-existing
1393 Use existing ID, do not create one.
1395 nil Never use an ID to make a link, instead link using a text search for
1396 the headline text."
1397 :group 'org-link-store
1398 :type '(choice
1399 (const :tag "Create ID to make link" t)
1400 (const :tag "Create if storing link interactively"
1401 create-if-interactive)
1402 (const :tag "Create if storing link interactively and no CUSTOM_ID is present"
1403 create-if-interactive-and-no-custom-id)
1404 (const :tag "Only use existing" use-existing)
1405 (const :tag "Do not use ID to create link" nil)))
1407 (defcustom org-context-in-file-links t
1408 "Non-nil means file links from `org-store-link' contain context.
1409 A search string will be added to the file name with :: as separator and
1410 used to find the context when the link is activated by the command
1411 `org-open-at-point'. When this option is t, the entire active region
1412 will be placed in the search string of the file link. If set to a
1413 positive integer, only the first n lines of context will be stored.
1415 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1416 negates this setting for the duration of the command."
1417 :group 'org-link-store
1418 :type '(choice boolean integer))
1420 (defcustom org-keep-stored-link-after-insertion nil
1421 "Non-nil means keep link in list for entire session.
1423 The command `org-store-link' adds a link pointing to the current
1424 location to an internal list. These links accumulate during a session.
1425 The command `org-insert-link' can be used to insert links into any
1426 Org-mode file (offering completion for all stored links). When this
1427 option is nil, every link which has been inserted once using \\[org-insert-link]
1428 will be removed from the list, to make completing the unused links
1429 more efficient."
1430 :group 'org-link-store
1431 :type 'boolean)
1433 (defgroup org-link-follow nil
1434 "Options concerning following links in Org-mode."
1435 :tag "Org Follow Link"
1436 :group 'org-link)
1438 (defcustom org-link-translation-function nil
1439 "Function to translate links with different syntax to Org syntax.
1440 This can be used to translate links created for example by the Planner
1441 or emacs-wiki packages to Org syntax.
1442 The function must accept two parameters, a TYPE containing the link
1443 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1444 which is everything after the link protocol. It should return a cons
1445 with possibly modified values of type and path.
1446 Org contains a function for this, so if you set this variable to
1447 `org-translate-link-from-planner', you should be able follow many
1448 links created by planner."
1449 :group 'org-link-follow
1450 :type 'function)
1452 (defcustom org-follow-link-hook nil
1453 "Hook that is run after a link has been followed."
1454 :group 'org-link-follow
1455 :type 'hook)
1457 (defcustom org-tab-follows-link nil
1458 "Non-nil means on links TAB will follow the link.
1459 Needs to be set before org.el is loaded.
1460 This really should not be used, it does not make sense, and the
1461 implementation is bad."
1462 :group 'org-link-follow
1463 :type 'boolean)
1465 (defcustom org-return-follows-link nil
1466 "Non-nil means on links RET will follow the link."
1467 :group 'org-link-follow
1468 :type 'boolean)
1470 (defcustom org-mouse-1-follows-link
1471 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1472 "Non-nil means mouse-1 on a link will follow the link.
1473 A longer mouse click will still set point. Does not work on XEmacs.
1474 Needs to be set before org.el is loaded."
1475 :group 'org-link-follow
1476 :type 'boolean)
1478 (defcustom org-mark-ring-length 4
1479 "Number of different positions to be recorded in the ring.
1480 Changing this requires a restart of Emacs to work correctly."
1481 :group 'org-link-follow
1482 :type 'integer)
1484 (defcustom org-link-search-must-match-exact-headline 'query-to-create
1485 "Non-nil means internal links in Org files must exactly match a headline.
1486 When nil, the link search tries to match a phrase with all words
1487 in the search text."
1488 :group 'org-link-follow
1489 :type '(choice
1490 (const :tag "Use fuzy text search" nil)
1491 (const :tag "Match only exact headline" t)
1492 (const :tag "Match extact headline or query to create it"
1493 query-to-create)))
1495 (defcustom org-link-frame-setup
1496 '((vm . vm-visit-folder-other-frame)
1497 (gnus . org-gnus-no-new-news)
1498 (file . find-file-other-window)
1499 (wl . wl-other-frame))
1500 "Setup the frame configuration for following links.
1501 When following a link with Emacs, it may often be useful to display
1502 this link in another window or frame. This variable can be used to
1503 set this up for the different types of links.
1504 For VM, use any of
1505 `vm-visit-folder'
1506 `vm-visit-folder-other-window'
1507 `vm-visit-folder-other-frame'
1508 For Gnus, use any of
1509 `gnus'
1510 `gnus-other-frame'
1511 `org-gnus-no-new-news'
1512 For FILE, use any of
1513 `find-file'
1514 `find-file-other-window'
1515 `find-file-other-frame'
1516 For Wanderlust use any of
1517 `wl'
1518 `wl-other-frame'
1519 For the calendar, use the variable `calendar-setup'.
1520 For BBDB, it is currently only possible to display the matches in
1521 another window."
1522 :group 'org-link-follow
1523 :type '(list
1524 (cons (const vm)
1525 (choice
1526 (const vm-visit-folder)
1527 (const vm-visit-folder-other-window)
1528 (const vm-visit-folder-other-frame)))
1529 (cons (const gnus)
1530 (choice
1531 (const gnus)
1532 (const gnus-other-frame)
1533 (const org-gnus-no-new-news)))
1534 (cons (const file)
1535 (choice
1536 (const find-file)
1537 (const find-file-other-window)
1538 (const find-file-other-frame)))
1539 (cons (const wl)
1540 (choice
1541 (const wl)
1542 (const wl-other-frame)))))
1544 (defcustom org-display-internal-link-with-indirect-buffer nil
1545 "Non-nil means use indirect buffer to display infile links.
1546 Activating internal links (from one location in a file to another location
1547 in the same file) normally just jumps to the location. When the link is
1548 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
1549 is displayed in
1550 another window. When this option is set, the other window actually displays
1551 an indirect buffer clone of the current buffer, to avoid any visibility
1552 changes to the current buffer."
1553 :group 'org-link-follow
1554 :type 'boolean)
1556 (defcustom org-open-non-existing-files nil
1557 "Non-nil means `org-open-file' will open non-existing files.
1558 When nil, an error will be generated.
1559 This variable applies only to external applications because they
1560 might choke on non-existing files. If the link is to a file that
1561 will be opened in Emacs, the variable is ignored."
1562 :group 'org-link-follow
1563 :type 'boolean)
1565 (defcustom org-open-directory-means-index-dot-org nil
1566 "Non-nil means a link to a directory really means to index.org.
1567 When nil, following a directory link will run dired or open a finder/explorer
1568 window on that directory."
1569 :group 'org-link-follow
1570 :type 'boolean)
1572 (defcustom org-link-mailto-program '(browse-url "mailto:%a?subject=%s")
1573 "Function and arguments to call for following mailto links.
1574 This is a list with the first element being a Lisp function, and the
1575 remaining elements being arguments to the function. In string arguments,
1576 %a will be replaced by the address, and %s will be replaced by the subject
1577 if one was given like in <mailto:arthur@galaxy.org::this subject>."
1578 :group 'org-link-follow
1579 :type '(choice
1580 (const :tag "browse-url" (browse-url-mail "mailto:%a?subject=%s"))
1581 (const :tag "compose-mail" (compose-mail "%a" "%s"))
1582 (const :tag "message-mail" (message-mail "%a" "%s"))
1583 (cons :tag "other" (function) (repeat :tag "argument" sexp))))
1585 (defcustom org-confirm-shell-link-function 'yes-or-no-p
1586 "Non-nil means ask for confirmation before executing shell links.
1587 Shell links can be dangerous: just think about a link
1589 [[shell:rm -rf ~/*][Google Search]]
1591 This link would show up in your Org-mode document as \"Google Search\",
1592 but really it would remove your entire home directory.
1593 Therefore we advise against setting this variable to nil.
1594 Just change it to `y-or-n-p' if you want to confirm with a
1595 single keystroke rather than having to type \"yes\"."
1596 :group 'org-link-follow
1597 :type '(choice
1598 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1599 (const :tag "with y-or-n (faster)" y-or-n-p)
1600 (const :tag "no confirmation (dangerous)" nil)))
1601 (put 'org-confirm-shell-link-function
1602 'safe-local-variable
1603 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
1605 (defcustom org-confirm-shell-link-not-regexp ""
1606 "A regexp to skip confirmation for shell links."
1607 :group 'org-link-follow
1608 :type 'regexp)
1610 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
1611 "Non-nil means ask for confirmation before executing Emacs Lisp links.
1612 Elisp links can be dangerous: just think about a link
1614 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
1616 This link would show up in your Org-mode document as \"Google Search\",
1617 but really it would remove your entire home directory.
1618 Therefore we advise against setting this variable to nil.
1619 Just change it to `y-or-n-p' if you want to confirm with a
1620 single keystroke rather than having to type \"yes\"."
1621 :group 'org-link-follow
1622 :type '(choice
1623 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1624 (const :tag "with y-or-n (faster)" y-or-n-p)
1625 (const :tag "no confirmation (dangerous)" nil)))
1626 (put 'org-confirm-shell-link-function
1627 'safe-local-variable
1628 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
1630 (defcustom org-confirm-elisp-link-not-regexp ""
1631 "A regexp to skip confirmation for Elisp links."
1632 :group 'org-link-follow
1633 :type 'regexp)
1635 (defconst org-file-apps-defaults-gnu
1636 '((remote . emacs)
1637 (system . mailcap)
1638 (t . mailcap))
1639 "Default file applications on a UNIX or GNU/Linux system.
1640 See `org-file-apps'.")
1642 (defconst org-file-apps-defaults-macosx
1643 '((remote . emacs)
1644 (t . "open %s")
1645 (system . "open %s")
1646 ("ps.gz" . "gv %s")
1647 ("eps.gz" . "gv %s")
1648 ("dvi" . "xdvi %s")
1649 ("fig" . "xfig %s"))
1650 "Default file applications on a MacOS X system.
1651 The system \"open\" is known as a default, but we use X11 applications
1652 for some files for which the OS does not have a good default.
1653 See `org-file-apps'.")
1655 (defconst org-file-apps-defaults-windowsnt
1656 (list
1657 '(remote . emacs)
1658 (cons t
1659 (list (if (featurep 'xemacs)
1660 'mswindows-shell-execute
1661 'w32-shell-execute)
1662 "open" 'file))
1663 (cons 'system
1664 (list (if (featurep 'xemacs)
1665 'mswindows-shell-execute
1666 'w32-shell-execute)
1667 "open" 'file)))
1668 "Default file applications on a Windows NT system.
1669 The system \"open\" is used for most files.
1670 See `org-file-apps'.")
1672 (defcustom org-file-apps
1674 (auto-mode . emacs)
1675 ("\\.mm\\'" . default)
1676 ("\\.x?html?\\'" . default)
1677 ("\\.pdf\\'" . default)
1679 "External applications for opening `file:path' items in a document.
1680 Org-mode uses system defaults for different file types, but
1681 you can use this variable to set the application for a given file
1682 extension. The entries in this list are cons cells where the car identifies
1683 files and the cdr the corresponding command. Possible values for the
1684 file identifier are
1685 \"string\" A string as a file identifier can be interpreted in different
1686 ways, depending on its contents:
1688 - Alphanumeric characters only:
1689 Match links with this file extension.
1690 Example: (\"pdf\" . \"evince %s\")
1691 to open PDFs with evince.
1693 - Regular expression: Match links where the
1694 filename matches the regexp. If you want to
1695 use groups here, use shy groups.
1697 Example: (\"\\.x?html\\'\" . \"firefox %s\")
1698 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
1699 to open *.html and *.xhtml with firefox.
1701 - Regular expression which contains (non-shy) groups:
1702 Match links where the whole link, including \"::\", and
1703 anything after that, matches the regexp.
1704 In a custom command string, %1, %2, etc. are replaced with
1705 the parts of the link that were matched by the groups.
1706 For backwards compatibility, if a command string is given
1707 that does not use any of the group matches, this case is
1708 handled identically to the second one (i.e. match against
1709 file name only).
1710 In a custom lisp form, you can access the group matches with
1711 (match-string n link).
1713 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
1714 to open [[file:document.pdf::5]] with evince at page 5.
1716 `directory' Matches a directory
1717 `remote' Matches a remote file, accessible through tramp or efs.
1718 Remote files most likely should be visited through Emacs
1719 because external applications cannot handle such paths.
1720 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
1721 so all files Emacs knows how to handle. Using this with
1722 command `emacs' will open most files in Emacs. Beware that this
1723 will also open html files inside Emacs, unless you add
1724 (\"html\" . default) to the list as well.
1725 t Default for files not matched by any of the other options.
1726 `system' The system command to open files, like `open' on Windows
1727 and Mac OS X, and mailcap under GNU/Linux. This is the command
1728 that will be selected if you call `C-c C-o' with a double
1729 \\[universal-argument] \\[universal-argument] prefix.
1731 Possible values for the command are:
1732 `emacs' The file will be visited by the current Emacs process.
1733 `default' Use the default application for this file type, which is the
1734 association for t in the list, most likely in the system-specific
1735 part.
1736 This can be used to overrule an unwanted setting in the
1737 system-specific variable.
1738 `system' Use the system command for opening files, like \"open\".
1739 This command is specified by the entry whose car is `system'.
1740 Most likely, the system-specific version of this variable
1741 does define this command, but you can overrule/replace it
1742 here.
1743 string A command to be executed by a shell; %s will be replaced
1744 by the path to the file.
1745 sexp A Lisp form which will be evaluated. The file path will
1746 be available in the Lisp variable `file'.
1747 For more examples, see the system specific constants
1748 `org-file-apps-defaults-macosx'
1749 `org-file-apps-defaults-windowsnt'
1750 `org-file-apps-defaults-gnu'."
1751 :group 'org-link-follow
1752 :type '(repeat
1753 (cons (choice :value ""
1754 (string :tag "Extension")
1755 (const :tag "System command to open files" system)
1756 (const :tag "Default for unrecognized files" t)
1757 (const :tag "Remote file" remote)
1758 (const :tag "Links to a directory" directory)
1759 (const :tag "Any files that have Emacs modes"
1760 auto-mode))
1761 (choice :value ""
1762 (const :tag "Visit with Emacs" emacs)
1763 (const :tag "Use default" default)
1764 (const :tag "Use the system command" system)
1765 (string :tag "Command")
1766 (sexp :tag "Lisp form")))))
1770 (defgroup org-refile nil
1771 "Options concerning refiling entries in Org-mode."
1772 :tag "Org Refile"
1773 :group 'org)
1775 (defcustom org-directory "~/org"
1776 "Directory with org files.
1777 This is just a default location to look for Org files. There is no need
1778 at all to put your files into this directory. It is only used in the
1779 following situations:
1781 1. When a remember template specifies a target file that is not an
1782 absolute path. The path will then be interpreted relative to
1783 `org-directory'
1784 2. When a remember note is filed away in an interactive way (when exiting the
1785 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
1786 with `org-directory' as the default path."
1787 :group 'org-refile
1788 :group 'org-remember
1789 :type 'directory)
1791 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
1792 "Default target for storing notes.
1793 Used as a fall back file for org-remember.el and org-capture.el, for
1794 templates that do not specify a target file."
1795 :group 'org-refile
1796 :group 'org-remember
1797 :type '(choice
1798 (const :tag "Default from remember-data-file" nil)
1799 file))
1801 (defcustom org-goto-interface 'outline
1802 "The default interface to be used for `org-goto'.
1803 Allowed values are:
1804 outline The interface shows an outline of the relevant file
1805 and the correct heading is found by moving through
1806 the outline or by searching with incremental search.
1807 outline-path-completion Headlines in the current buffer are offered via
1808 completion. This is the interface also used by
1809 the refile command."
1810 :group 'org-refile
1811 :type '(choice
1812 (const :tag "Outline" outline)
1813 (const :tag "Outline-path-completion" outline-path-completion)))
1815 (defcustom org-goto-max-level 5
1816 "Maximum target level when running `org-goto' with refile interface."
1817 :group 'org-refile
1818 :type 'integer)
1820 (defcustom org-reverse-note-order nil
1821 "Non-nil means store new notes at the beginning of a file or entry.
1822 When nil, new notes will be filed to the end of a file or entry.
1823 This can also be a list with cons cells of regular expressions that
1824 are matched against file names, and values."
1825 :group 'org-remember
1826 :group 'org-refile
1827 :type '(choice
1828 (const :tag "Reverse always" t)
1829 (const :tag "Reverse never" nil)
1830 (repeat :tag "By file name regexp"
1831 (cons regexp boolean))))
1833 (defcustom org-log-refile nil
1834 "Information to record when a task is refiled.
1836 Possible values are:
1838 nil Don't add anything
1839 time Add a time stamp to the task
1840 note Prompt for a note and add it with template `org-log-note-headings'
1842 This option can also be set with on a per-file-basis with
1844 #+STARTUP: nologrefile
1845 #+STARTUP: logrefile
1846 #+STARTUP: lognoterefile
1848 You can have local logging settings for a subtree by setting the LOGGING
1849 property to one or more of these keywords.
1851 When bulk-refiling from the agenda, the value `note' is forbidden and
1852 will temporarily be changed to `time'."
1853 :group 'org-refile
1854 :group 'org-progress
1855 :type '(choice
1856 (const :tag "No logging" nil)
1857 (const :tag "Record timestamp" time)
1858 (const :tag "Record timestamp with note." note)))
1860 (defcustom org-refile-targets nil
1861 "Targets for refiling entries with \\[org-refile].
1862 This is list of cons cells. Each cell contains:
1863 - a specification of the files to be considered, either a list of files,
1864 or a symbol whose function or variable value will be used to retrieve
1865 a file name or a list of file names. If you use `org-agenda-files' for
1866 that, all agenda files will be scanned for targets. Nil means consider
1867 headings in the current buffer.
1868 - A specification of how to find candidate refile targets. This may be
1869 any of:
1870 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
1871 This tag has to be present in all target headlines, inheritance will
1872 not be considered.
1873 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
1874 todo keyword.
1875 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
1876 headlines that are refiling targets.
1877 - a cons cell (:level . N). Any headline of level N is considered a target.
1878 Note that, when `org-odd-levels-only' is set, level corresponds to
1879 order in hierarchy, not to the number of stars.
1880 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
1881 Note that, when `org-odd-levels-only' is set, level corresponds to
1882 order in hierarchy, not to the number of stars.
1884 You can set the variable `org-refile-target-verify-function' to a function
1885 to verify each headline found by the simple criteria above.
1887 When this variable is nil, all top-level headlines in the current buffer
1888 are used, equivalent to the value `((nil . (:level . 1))'."
1889 :group 'org-refile
1890 :type '(repeat
1891 (cons
1892 (choice :value org-agenda-files
1893 (const :tag "All agenda files" org-agenda-files)
1894 (const :tag "Current buffer" nil)
1895 (function) (variable) (file))
1896 (choice :tag "Identify target headline by"
1897 (cons :tag "Specific tag" (const :value :tag) (string))
1898 (cons :tag "TODO keyword" (const :value :todo) (string))
1899 (cons :tag "Regular expression" (const :value :regexp) (regexp))
1900 (cons :tag "Level number" (const :value :level) (integer))
1901 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
1903 (defcustom org-refile-target-verify-function nil
1904 "Function to verify if the headline at point should be a refile target.
1905 The function will be called without arguments, with point at the
1906 beginning of the headline. It should return t and leave point
1907 where it is if the headline is a valid target for refiling.
1909 If the target should not be selected, the function must return nil.
1910 In addition to this, it may move point to a place from where the search
1911 should be continued. For example, the function may decide that the entire
1912 subtree of the current entry should be excluded and move point to the end
1913 of the subtree."
1914 :group 'org-refile
1915 :type 'function)
1917 (defcustom org-refile-use-cache nil
1918 "Non-nil means cache refile targets to speed up the process.
1919 The cache for a particular file will be updated automatically when
1920 the buffer has been killed, or when any of the marker used for flagging
1921 refile targets no longer points at a live buffer.
1922 If you have added new entries to a buffer that might themselves be targets,
1923 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
1924 find that easier, `C-u C-u C-u C-c C-w'."
1925 :group 'org-refile
1926 :type 'boolean)
1928 (defcustom org-refile-use-outline-path nil
1929 "Non-nil means provide refile targets as paths.
1930 So a level 3 headline will be available as level1/level2/level3.
1932 When the value is `file', also include the file name (without directory)
1933 into the path. In this case, you can also stop the completion after
1934 the file name, to get entries inserted as top level in the file.
1936 When `full-file-path', include the full file path."
1937 :group 'org-refile
1938 :type '(choice
1939 (const :tag "Not" nil)
1940 (const :tag "Yes" t)
1941 (const :tag "Start with file name" file)
1942 (const :tag "Start with full file path" full-file-path)))
1944 (defcustom org-outline-path-complete-in-steps t
1945 "Non-nil means complete the outline path in hierarchical steps.
1946 When Org-mode uses the refile interface to select an outline path
1947 \(see variable `org-refile-use-outline-path'), the completion of
1948 the path can be done is a single go, or if can be done in steps down
1949 the headline hierarchy. Going in steps is probably the best if you
1950 do not use a special completion package like `ido' or `icicles'.
1951 However, when using these packages, going in one step can be very
1952 fast, while still showing the whole path to the entry."
1953 :group 'org-refile
1954 :type 'boolean)
1956 (defcustom org-refile-allow-creating-parent-nodes nil
1957 "Non-nil means allow to create new nodes as refile targets.
1958 New nodes are then created by adding \"/new node name\" to the completion
1959 of an existing node. When the value of this variable is `confirm',
1960 new node creation must be confirmed by the user (recommended)
1961 When nil, the completion must match an existing entry.
1963 Note that, if the new heading is not seen by the criteria
1964 listed in `org-refile-targets', multiple instances of the same
1965 heading would be created by trying again to file under the new
1966 heading."
1967 :group 'org-refile
1968 :type '(choice
1969 (const :tag "Never" nil)
1970 (const :tag "Always" t)
1971 (const :tag "Prompt for confirmation" confirm)))
1973 (defgroup org-todo nil
1974 "Options concerning TODO items in Org-mode."
1975 :tag "Org TODO"
1976 :group 'org)
1978 (defgroup org-progress nil
1979 "Options concerning Progress logging in Org-mode."
1980 :tag "Org Progress"
1981 :group 'org-time)
1983 (defvar org-todo-interpretation-widgets
1984 '((:tag "Sequence (cycling hits every state)" sequence)
1985 (:tag "Type (cycling directly to DONE)" type))
1986 "The available interpretation symbols for customizing `org-todo-keywords'.
1987 Interested libraries should add to this list.")
1989 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
1990 "List of TODO entry keyword sequences and their interpretation.
1991 \\<org-mode-map>This is a list of sequences.
1993 Each sequence starts with a symbol, either `sequence' or `type',
1994 indicating if the keywords should be interpreted as a sequence of
1995 action steps, or as different types of TODO items. The first
1996 keywords are states requiring action - these states will select a headline
1997 for inclusion into the global TODO list Org-mode produces. If one of
1998 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
1999 signify that no further action is necessary. If \"|\" is not found,
2000 the last keyword is treated as the only DONE state of the sequence.
2002 The command \\[org-todo] cycles an entry through these states, and one
2003 additional state where no keyword is present. For details about this
2004 cycling, see the manual.
2006 TODO keywords and interpretation can also be set on a per-file basis with
2007 the special #+SEQ_TODO and #+TYP_TODO lines.
2009 Each keyword can optionally specify a character for fast state selection
2010 \(in combination with the variable `org-use-fast-todo-selection')
2011 and specifiers for state change logging, using the same syntax
2012 that is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says
2013 that the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2014 indicates to record a time stamp each time this state is selected.
2016 Each keyword may also specify if a timestamp or a note should be
2017 recorded when entering or leaving the state, by adding additional
2018 characters in the parenthesis after the keyword. This looks like this:
2019 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2020 record only the time of the state change. With X and Y being either
2021 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2022 Y when leaving the state if and only if the *target* state does not
2023 define X. You may omit any of the fast-selection key or X or /Y,
2024 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2026 For backward compatibility, this variable may also be just a list
2027 of keywords - in this case the interpretation (sequence or type) will be
2028 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2029 :group 'org-todo
2030 :group 'org-keywords
2031 :type '(choice
2032 (repeat :tag "Old syntax, just keywords"
2033 (string :tag "Keyword"))
2034 (repeat :tag "New syntax"
2035 (cons
2036 (choice
2037 :tag "Interpretation"
2038 ;;Quick and dirty way to see
2039 ;;`org-todo-interpretations'. This takes the
2040 ;;place of item arguments
2041 :convert-widget
2042 (lambda (widget)
2043 (widget-put widget
2044 :args (mapcar
2045 #'(lambda (x)
2046 (widget-convert
2047 (cons 'const x)))
2048 org-todo-interpretation-widgets))
2049 widget))
2050 (repeat
2051 (string :tag "Keyword"))))))
2053 (defvar org-todo-keywords-1 nil
2054 "All TODO and DONE keywords active in a buffer.")
2055 (make-variable-buffer-local 'org-todo-keywords-1)
2056 (defvar org-todo-keywords-for-agenda nil)
2057 (defvar org-done-keywords-for-agenda nil)
2058 (defvar org-drawers-for-agenda nil)
2059 (defvar org-todo-keyword-alist-for-agenda nil)
2060 (defvar org-tag-alist-for-agenda nil)
2061 (defvar org-agenda-contributing-files nil)
2062 (defvar org-not-done-keywords nil)
2063 (make-variable-buffer-local 'org-not-done-keywords)
2064 (defvar org-done-keywords nil)
2065 (make-variable-buffer-local 'org-done-keywords)
2066 (defvar org-todo-heads nil)
2067 (make-variable-buffer-local 'org-todo-heads)
2068 (defvar org-todo-sets nil)
2069 (make-variable-buffer-local 'org-todo-sets)
2070 (defvar org-todo-log-states nil)
2071 (make-variable-buffer-local 'org-todo-log-states)
2072 (defvar org-todo-kwd-alist nil)
2073 (make-variable-buffer-local 'org-todo-kwd-alist)
2074 (defvar org-todo-key-alist nil)
2075 (make-variable-buffer-local 'org-todo-key-alist)
2076 (defvar org-todo-key-trigger nil)
2077 (make-variable-buffer-local 'org-todo-key-trigger)
2079 (defcustom org-todo-interpretation 'sequence
2080 "Controls how TODO keywords are interpreted.
2081 This variable is in principle obsolete and is only used for
2082 backward compatibility, if the interpretation of todo keywords is
2083 not given already in `org-todo-keywords'. See that variable for
2084 more information."
2085 :group 'org-todo
2086 :group 'org-keywords
2087 :type '(choice (const sequence)
2088 (const type)))
2090 (defcustom org-use-fast-todo-selection t
2091 "Non-nil means use the fast todo selection scheme with C-c C-t.
2092 This variable describes if and under what circumstances the cycling
2093 mechanism for TODO keywords will be replaced by a single-key, direct
2094 selection scheme.
2096 When nil, fast selection is never used.
2098 When the symbol `prefix', it will be used when `org-todo' is called with
2099 a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and `C-u t'
2100 in an agenda buffer.
2102 When t, fast selection is used by default. In this case, the prefix
2103 argument forces cycling instead.
2105 In all cases, the special interface is only used if access keys have actually
2106 been assigned by the user, i.e. if keywords in the configuration are followed
2107 by a letter in parenthesis, like TODO(t)."
2108 :group 'org-todo
2109 :type '(choice
2110 (const :tag "Never" nil)
2111 (const :tag "By default" t)
2112 (const :tag "Only with C-u C-c C-t" prefix)))
2114 (defcustom org-provide-todo-statistics t
2115 "Non-nil means update todo statistics after insert and toggle.
2116 ALL-HEADLINES means update todo statistics by including headlines
2117 with no TODO keyword as well, counting them as not done.
2118 A list of TODO keywords means the same, but skip keywords that are
2119 not in this list.
2121 When this is set, todo statistics is updated in the parent of the
2122 current entry each time a todo state is changed."
2123 :group 'org-todo
2124 :type '(choice
2125 (const :tag "Yes, only for TODO entries" t)
2126 (const :tag "Yes, including all entries" 'all-headlines)
2127 (repeat :tag "Yes, for TODOs in this list"
2128 (string :tag "TODO keyword"))
2129 (other :tag "No TODO statistics" nil)))
2131 (defcustom org-hierarchical-todo-statistics t
2132 "Non-nil means TODO statistics covers just direct children.
2133 When nil, all entries in the subtree are considered.
2134 This has only an effect if `org-provide-todo-statistics' is set.
2135 To set this to nil for only a single subtree, use a COOKIE_DATA
2136 property and include the word \"recursive\" into the value."
2137 :group 'org-todo
2138 :type 'boolean)
2140 (defcustom org-after-todo-state-change-hook nil
2141 "Hook which is run after the state of a TODO item was changed.
2142 The new state (a string with a TODO keyword, or nil) is available in the
2143 Lisp variable `state'."
2144 :group 'org-todo
2145 :type 'hook)
2147 (defvar org-blocker-hook nil
2148 "Hook for functions that are allowed to block a state change.
2150 Each function gets as its single argument a property list, see
2151 `org-trigger-hook' for more information about this list.
2153 If any of the functions in this hook returns nil, the state change
2154 is blocked.")
2156 (defvar org-trigger-hook nil
2157 "Hook for functions that are triggered by a state change.
2159 Each function gets as its single argument a property list with at least
2160 the following elements:
2162 (:type type-of-change :position pos-at-entry-start
2163 :from old-state :to new-state)
2165 Depending on the type, more properties may be present.
2167 This mechanism is currently implemented for:
2169 TODO state changes
2170 ------------------
2171 :type todo-state-change
2172 :from previous state (keyword as a string), or nil, or a symbol
2173 'todo' or 'done', to indicate the general type of state.
2174 :to new state, like in :from")
2176 (defcustom org-enforce-todo-dependencies nil
2177 "Non-nil means undone TODO entries will block switching the parent to DONE.
2178 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2179 be blocked if any prior sibling is not yet done.
2180 Finally, if the parent is blocked because of ordered siblings of its own,
2181 the child will also be blocked.
2182 This variable needs to be set before org.el is loaded, and you need to
2183 restart Emacs after a change to make the change effective. The only way
2184 to change is while Emacs is running is through the customize interface."
2185 :set (lambda (var val)
2186 (set var val)
2187 (if val
2188 (add-hook 'org-blocker-hook
2189 'org-block-todo-from-children-or-siblings-or-parent)
2190 (remove-hook 'org-blocker-hook
2191 'org-block-todo-from-children-or-siblings-or-parent)))
2192 :group 'org-todo
2193 :type 'boolean)
2195 (defcustom org-enforce-todo-checkbox-dependencies nil
2196 "Non-nil means unchecked boxes will block switching the parent to DONE.
2197 When this is nil, checkboxes have no influence on switching TODO states.
2198 When non-nil, you first need to check off all check boxes before the TODO
2199 entry can be switched to DONE.
2200 This variable needs to be set before org.el is loaded, and you need to
2201 restart Emacs after a change to make the change effective. The only way
2202 to change is while Emacs is running is through the customize interface."
2203 :set (lambda (var val)
2204 (set var val)
2205 (if val
2206 (add-hook 'org-blocker-hook
2207 'org-block-todo-from-checkboxes)
2208 (remove-hook 'org-blocker-hook
2209 'org-block-todo-from-checkboxes)))
2210 :group 'org-todo
2211 :type 'boolean)
2213 (defcustom org-treat-insert-todo-heading-as-state-change nil
2214 "Non-nil means inserting a TODO heading is treated as state change.
2215 So when the command \\[org-insert-todo-heading] is used, state change
2216 logging will apply if appropriate. When nil, the new TODO item will
2217 be inserted directly, and no logging will take place."
2218 :group 'org-todo
2219 :type 'boolean)
2221 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2222 "Non-nil means switching TODO states with S-cursor counts as state change.
2223 This is the default behavior. However, setting this to nil allows a
2224 convenient way to select a TODO state and bypass any logging associated
2225 with that."
2226 :group 'org-todo
2227 :type 'boolean)
2229 (defcustom org-todo-state-tags-triggers nil
2230 "Tag changes that should be triggered by TODO state changes.
2231 This is a list. Each entry is
2233 (state-change (tag . flag) .......)
2235 State-change can be a string with a state, and empty string to indicate the
2236 state that has no TODO keyword, or it can be one of the symbols `todo'
2237 or `done', meaning any not-done or done state, respectively."
2238 :group 'org-todo
2239 :group 'org-tags
2240 :type '(repeat
2241 (cons (choice :tag "When changing to"
2242 (const :tag "Not-done state" todo)
2243 (const :tag "Done state" done)
2244 (string :tag "State"))
2245 (repeat
2246 (cons :tag "Tag action"
2247 (string :tag "Tag")
2248 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2250 (defcustom org-log-done nil
2251 "Information to record when a task moves to the DONE state.
2253 Possible values are:
2255 nil Don't add anything, just change the keyword
2256 time Add a time stamp to the task
2257 note Prompt for a note and add it with template `org-log-note-headings'
2259 This option can also be set with on a per-file-basis with
2261 #+STARTUP: nologdone
2262 #+STARTUP: logdone
2263 #+STARTUP: lognotedone
2265 You can have local logging settings for a subtree by setting the LOGGING
2266 property to one or more of these keywords."
2267 :group 'org-todo
2268 :group 'org-progress
2269 :type '(choice
2270 (const :tag "No logging" nil)
2271 (const :tag "Record CLOSED timestamp" time)
2272 (const :tag "Record CLOSED timestamp with note." note)))
2274 ;; Normalize old uses of org-log-done.
2275 (cond
2276 ((eq org-log-done t) (setq org-log-done 'time))
2277 ((and (listp org-log-done) (memq 'done org-log-done))
2278 (setq org-log-done 'note)))
2280 (defcustom org-log-reschedule nil
2281 "Information to record when the scheduling date of a tasks is modified.
2283 Possible values are:
2285 nil Don't add anything, just change the date
2286 time Add a time stamp to the task
2287 note Prompt for a note and add it with template `org-log-note-headings'
2289 This option can also be set with on a per-file-basis with
2291 #+STARTUP: nologreschedule
2292 #+STARTUP: logreschedule
2293 #+STARTUP: lognotereschedule"
2294 :group 'org-todo
2295 :group 'org-progress
2296 :type '(choice
2297 (const :tag "No logging" nil)
2298 (const :tag "Record timestamp" time)
2299 (const :tag "Record timestamp with note." note)))
2301 (defcustom org-log-redeadline nil
2302 "Information to record when the deadline date of a tasks is modified.
2304 Possible values are:
2306 nil Don't add anything, just change the date
2307 time Add a time stamp to the task
2308 note Prompt for a note and add it with template `org-log-note-headings'
2310 This option can also be set with on a per-file-basis with
2312 #+STARTUP: nologredeadline
2313 #+STARTUP: logredeadline
2314 #+STARTUP: lognoteredeadline
2316 You can have local logging settings for a subtree by setting the LOGGING
2317 property to one or more of these keywords."
2318 :group 'org-todo
2319 :group 'org-progress
2320 :type '(choice
2321 (const :tag "No logging" nil)
2322 (const :tag "Record timestamp" time)
2323 (const :tag "Record timestamp with note." note)))
2325 (defcustom org-log-note-clock-out nil
2326 "Non-nil means record a note when clocking out of an item.
2327 This can also be configured on a per-file basis by adding one of
2328 the following lines anywhere in the buffer:
2330 #+STARTUP: lognoteclock-out
2331 #+STARTUP: nolognoteclock-out"
2332 :group 'org-todo
2333 :group 'org-progress
2334 :type 'boolean)
2336 (defcustom org-log-done-with-time t
2337 "Non-nil means the CLOSED time stamp will contain date and time.
2338 When nil, only the date will be recorded."
2339 :group 'org-progress
2340 :type 'boolean)
2342 (defcustom org-log-note-headings
2343 '((done . "CLOSING NOTE %t")
2344 (state . "State %-12s from %-12S %t")
2345 (note . "Note taken on %t")
2346 (reschedule . "Rescheduled from %S on %t")
2347 (delschedule . "Not scheduled, was %S on %t")
2348 (redeadline . "New deadline from %S on %t")
2349 (deldeadline . "Removed deadline, was %S on %t")
2350 (refile . "Refiled on %t")
2351 (clock-out . ""))
2352 "Headings for notes added to entries.
2353 The value is an alist, with the car being a symbol indicating the note
2354 context, and the cdr is the heading to be used. The heading may also be the
2355 empty string.
2356 %t in the heading will be replaced by a time stamp.
2357 %T will be an active time stamp instead the default inactive one
2358 %s will be replaced by the new TODO state, in double quotes.
2359 %S will be replaced by the old TODO state, in double quotes.
2360 %u will be replaced by the user name.
2361 %U will be replaced by the full user name.
2363 In fact, it is not a good idea to change the `state' entry, because
2364 agenda log mode depends on the format of these entries."
2365 :group 'org-todo
2366 :group 'org-progress
2367 :type '(list :greedy t
2368 (cons (const :tag "Heading when closing an item" done) string)
2369 (cons (const :tag
2370 "Heading when changing todo state (todo sequence only)"
2371 state) string)
2372 (cons (const :tag "Heading when just taking a note" note) string)
2373 (cons (const :tag "Heading when clocking out" clock-out) string)
2374 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2375 (cons (const :tag "Heading when rescheduling" reschedule) string)
2376 (cons (const :tag "Heading when changing deadline" redeadline) string)
2377 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2378 (cons (const :tag "Heading when refiling" refile) string)))
2380 (unless (assq 'note org-log-note-headings)
2381 (push '(note . "%t") org-log-note-headings))
2383 (defcustom org-log-into-drawer nil
2384 "Non-nil means insert state change notes and time stamps into a drawer.
2385 When nil, state changes notes will be inserted after the headline and
2386 any scheduling and clock lines, but not inside a drawer.
2388 The value of this variable should be the name of the drawer to use.
2389 LOGBOOK is proposed as the default drawer for this purpose, you can
2390 also set this to a string to define the drawer of your choice.
2392 A value of t is also allowed, representing \"LOGBOOK\".
2394 If this variable is set, `org-log-state-notes-insert-after-drawers'
2395 will be ignored.
2397 You can set the property LOG_INTO_DRAWER to overrule this setting for
2398 a subtree."
2399 :group 'org-todo
2400 :group 'org-progress
2401 :type '(choice
2402 (const :tag "Not into a drawer" nil)
2403 (const :tag "LOGBOOK" t)
2404 (string :tag "Other")))
2406 (if (fboundp 'defvaralias)
2407 (defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer))
2409 (defun org-log-into-drawer ()
2410 "Return the value of `org-log-into-drawer', but let properties overrule.
2411 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2412 used instead of the default value."
2413 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit)))
2414 (cond
2415 ((or (not p) (equal p "nil")) org-log-into-drawer)
2416 ((equal p "t") "LOGBOOK")
2417 (t p))))
2419 (defcustom org-log-state-notes-insert-after-drawers nil
2420 "Non-nil means insert state change notes after any drawers in entry.
2421 Only the drawers that *immediately* follow the headline and the
2422 deadline/scheduled line are skipped.
2423 When nil, insert notes right after the heading and perhaps the line
2424 with deadline/scheduling if present.
2426 This variable will have no effect if `org-log-into-drawer' is
2427 set."
2428 :group 'org-todo
2429 :group 'org-progress
2430 :type 'boolean)
2432 (defcustom org-log-states-order-reversed t
2433 "Non-nil means the latest state note will be directly after heading.
2434 When nil, the state change notes will be ordered according to time."
2435 :group 'org-todo
2436 :group 'org-progress
2437 :type 'boolean)
2439 (defcustom org-todo-repeat-to-state nil
2440 "The TODO state to which a repeater should return the repeating task.
2441 By default this is the first task in a TODO sequence, or the previous state
2442 in a TODO_TYP set. But you can specify another task here.
2443 alternatively, set the :REPEAT_TO_STATE: property of the entry."
2444 :group 'org-todo
2445 :type '(choice (const :tag "Head of sequence" nil)
2446 (string :tag "Specific state")))
2448 (defcustom org-log-repeat 'time
2449 "Non-nil means record moving through the DONE state when triggering repeat.
2450 An auto-repeating task is immediately switched back to TODO when
2451 marked DONE. If you are not logging state changes (by adding \"@\"
2452 or \"!\" to the TODO keyword definition), or set `org-log-done' to
2453 record a closing note, there will be no record of the task moving
2454 through DONE. This variable forces taking a note anyway.
2456 nil Don't force a record
2457 time Record a time stamp
2458 note Record a note
2460 This option can also be set with on a per-file-basis with
2462 #+STARTUP: logrepeat
2463 #+STARTUP: lognoterepeat
2464 #+STARTUP: nologrepeat
2466 You can have local logging settings for a subtree by setting the LOGGING
2467 property to one or more of these keywords."
2468 :group 'org-todo
2469 :group 'org-progress
2470 :type '(choice
2471 (const :tag "Don't force a record" nil)
2472 (const :tag "Force recording the DONE state" time)
2473 (const :tag "Force recording a note with the DONE state" note)))
2476 (defgroup org-priorities nil
2477 "Priorities in Org-mode."
2478 :tag "Org Priorities"
2479 :group 'org-todo)
2481 (defcustom org-enable-priority-commands t
2482 "Non-nil means priority commands are active.
2483 When nil, these commands will be disabled, so that you never accidentally
2484 set a priority."
2485 :group 'org-priorities
2486 :type 'boolean)
2488 (defcustom org-highest-priority ?A
2489 "The highest priority of TODO items. A character like ?A, ?B etc.
2490 Must have a smaller ASCII number than `org-lowest-priority'."
2491 :group 'org-priorities
2492 :type 'character)
2494 (defcustom org-lowest-priority ?C
2495 "The lowest priority of TODO items. A character like ?A, ?B etc.
2496 Must have a larger ASCII number than `org-highest-priority'."
2497 :group 'org-priorities
2498 :type 'character)
2500 (defcustom org-default-priority ?B
2501 "The default priority of TODO items.
2502 This is the priority an item gets if no explicit priority is given.
2503 When starting to cycle on an empty priority the first step in the cycle
2504 depends on `org-priority-start-cycle-with-default'. The resulting first
2505 step priority must not exceed the range from `org-highest-priority' to
2506 `org-lowest-priority' which means that `org-default-priority' has to be
2507 in this range exclusive or inclusive the range boundaries. Else the
2508 first step refuses to set the default and the second will fall back
2509 to (depending on the command used) the highest or lowest priority."
2510 :group 'org-priorities
2511 :type 'character)
2513 (defcustom org-priority-start-cycle-with-default t
2514 "Non-nil means start with default priority when starting to cycle.
2515 When this is nil, the first step in the cycle will be (depending on the
2516 command used) one higher or lower than the default priority.
2517 See also `org-default-priority'."
2518 :group 'org-priorities
2519 :type 'boolean)
2521 (defcustom org-get-priority-function nil
2522 "Function to extract the priority from a string.
2523 The string is normally the headline. If this is nil Org computes the
2524 priority from the priority cookie like [#A] in the headline. It returns
2525 an integer, increasing by 1000 for each priority level.
2526 The user can set a different function here, which should take a string
2527 as an argument and return the numeric priority."
2528 :group 'org-priorities
2529 :type 'function)
2531 (defgroup org-time nil
2532 "Options concerning time stamps and deadlines in Org-mode."
2533 :tag "Org Time"
2534 :group 'org)
2536 (defcustom org-insert-labeled-timestamps-at-point nil
2537 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
2538 When nil, these labeled time stamps are forces into the second line of an
2539 entry, just after the headline. When scheduling from the global TODO list,
2540 the time stamp will always be forced into the second line."
2541 :group 'org-time
2542 :type 'boolean)
2544 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
2545 "Formats for `format-time-string' which are used for time stamps.
2546 It is not recommended to change this constant.")
2548 (defcustom org-time-stamp-rounding-minutes '(0 5)
2549 "Number of minutes to round time stamps to.
2550 These are two values, the first applies when first creating a time stamp.
2551 The second applies when changing it with the commands `S-up' and `S-down'.
2552 When changing the time stamp, this means that it will change in steps
2553 of N minutes, as given by the second value.
2555 When a setting is 0 or 1, insert the time unmodified. Useful rounding
2556 numbers should be factors of 60, so for example 5, 10, 15.
2558 When this is larger than 1, you can still force an exact time stamp by using
2559 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
2560 and by using a prefix arg to `S-up/down' to specify the exact number
2561 of minutes to shift."
2562 :group 'org-time
2563 :get #'(lambda (var) ; Make sure both elements are there
2564 (if (integerp (default-value var))
2565 (list (default-value var) 5)
2566 (default-value var)))
2567 :type '(list
2568 (integer :tag "when inserting times")
2569 (integer :tag "when modifying times")))
2571 ;; Normalize old customizations of this variable.
2572 (when (integerp org-time-stamp-rounding-minutes)
2573 (setq org-time-stamp-rounding-minutes
2574 (list org-time-stamp-rounding-minutes
2575 org-time-stamp-rounding-minutes)))
2577 (defcustom org-display-custom-times nil
2578 "Non-nil means overlay custom formats over all time stamps.
2579 The formats are defined through the variable `org-time-stamp-custom-formats'.
2580 To turn this on on a per-file basis, insert anywhere in the file:
2581 #+STARTUP: customtime"
2582 :group 'org-time
2583 :set 'set-default
2584 :type 'sexp)
2585 (make-variable-buffer-local 'org-display-custom-times)
2587 (defcustom org-time-stamp-custom-formats
2588 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
2589 "Custom formats for time stamps. See `format-time-string' for the syntax.
2590 These are overlayed over the default ISO format if the variable
2591 `org-display-custom-times' is set. Time like %H:%M should be at the
2592 end of the second format. The custom formats are also honored by export
2593 commands, if custom time display is turned on at the time of export."
2594 :group 'org-time
2595 :type 'sexp)
2597 (defun org-time-stamp-format (&optional long inactive)
2598 "Get the right format for a time string."
2599 (let ((f (if long (cdr org-time-stamp-formats)
2600 (car org-time-stamp-formats))))
2601 (if inactive
2602 (concat "[" (substring f 1 -1) "]")
2603 f)))
2605 (defcustom org-time-clocksum-format "%d:%02d"
2606 "The format string used when creating CLOCKSUM lines.
2607 This is also used when org-mode generates a time duration."
2608 :group 'org-time
2609 :type 'string)
2611 (defcustom org-time-clocksum-use-fractional nil
2612 "If non-nil, \\[org-clock-display] uses fractional times.
2613 org-mode generates a time duration."
2614 :group 'org-time
2615 :type 'boolean)
2617 (defcustom org-time-clocksum-fractional-format "%.2f"
2618 "The format string used when creating CLOCKSUM lines, or when
2619 org-mode generates a time duration."
2620 :group 'org-time
2621 :type 'string)
2623 (defcustom org-deadline-warning-days 14
2624 "No. of days before expiration during which a deadline becomes active.
2625 This variable governs the display in sparse trees and in the agenda.
2626 When 0 or negative, it means use this number (the absolute value of it)
2627 even if a deadline has a different individual lead time specified.
2629 Custom commands can set this variable in the options section."
2630 :group 'org-time
2631 :group 'org-agenda-daily/weekly
2632 :type 'integer)
2634 (defcustom org-read-date-prefer-future t
2635 "Non-nil means assume future for incomplete date input from user.
2636 This affects the following situations:
2637 1. The user gives a month but not a year.
2638 For example, if it is April and you enter \"feb 2\", this will be read
2639 as Feb 2, *next* year. \"May 5\", however, will be this year.
2640 2. The user gives a day, but no month.
2641 For example, if today is the 15th, and you enter \"3\", Org-mode will
2642 read this as the third of *next* month. However, if you enter \"17\",
2643 it will be considered as *this* month.
2645 If you set this variable to the symbol `time', then also the following
2646 will work:
2648 3. If the user gives a time, but no day. If the time is before now,
2649 to will be interpreted as tomorrow.
2651 Currently none of this works for ISO week specifications.
2653 When this option is nil, the current day, month and year will always be
2654 used as defaults.
2656 See also `org-agenda-jump-prefer-future'."
2657 :group 'org-time
2658 :type '(choice
2659 (const :tag "Never" nil)
2660 (const :tag "Check month and day" t)
2661 (const :tag "Check month, day, and time" time)))
2663 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
2664 "Should the agenda jump command prefer the future for incomplete dates?
2665 The default is to do the same as configured in `org-read-date-prefer-future'.
2666 But you can also set a deviating value here.
2667 This may t or nil, or the symbol `org-read-date-prefer-future'."
2668 :group 'org-agenda
2669 :group 'org-time
2670 :type '(choice
2671 (const :tag "Use org-read-date-prefer-future"
2672 org-read-date-prefer-future)
2673 (const :tag "Never" nil)
2674 (const :tag "Always" t)))
2676 (defcustom org-read-date-force-compatible-dates t
2677 "Should date/time prompt force dates that are guaranteed to work in Emacs?
2679 Depending on the system Emacs is running on, certain dates cannot
2680 be represented with the type used internally to represent time.
2681 Dates between 1970-1-1 and 2038-1-1 can always be represented
2682 correctly. Some systems allow for earlier dates, some for later,
2683 some for both. One way to find out it to insert any date into an
2684 Org buffer, putting the cursor on the year and hitting S-up and
2685 S-down to test the range.
2687 When this variable is set to t, the date/time prompt will not let
2688 you specify dates outside the 1970-2037 range, so it is certain that
2689 these dates will work in whatever version of Emacs you are
2690 running, and also that you can move a file from one Emacs implementation
2691 to another. WHenever Org is forcing the year for you, it will display
2692 a message and beep.
2694 When this variable is nil, Org will check if the date is
2695 representable in the specific Emacs implementation you are using.
2696 If not, it will force a year, usually the current year, and beep
2697 to remind you. Currently this setting is not recommended because
2698 the likelihood that you will open your Org files in an Emacs that
2699 has limited date range is not negligible.
2701 A workaround for this problem is to use diary sexp dates for time
2702 stamps outside of this range."
2703 :group 'org-time
2704 :type 'boolean)
2706 (defcustom org-read-date-display-live t
2707 "Non-nil means display current interpretation of date prompt live.
2708 This display will be in an overlay, in the minibuffer."
2709 :group 'org-time
2710 :type 'boolean)
2712 (defcustom org-read-date-popup-calendar t
2713 "Non-nil means pop up a calendar when prompting for a date.
2714 In the calendar, the date can be selected with mouse-1. However, the
2715 minibuffer will also be active, and you can simply enter the date as well.
2716 When nil, only the minibuffer will be available."
2717 :group 'org-time
2718 :type 'boolean)
2719 (if (fboundp 'defvaralias)
2720 (defvaralias 'org-popup-calendar-for-date-prompt
2721 'org-read-date-popup-calendar))
2723 (defcustom org-read-date-minibuffer-setup-hook nil
2724 "Hook to be used to set up keys for the date/time interface.
2725 Add key definitions to `minibuffer-local-map', which will be a temporary
2726 copy."
2727 :group 'org-time
2728 :type 'hook)
2730 (defcustom org-extend-today-until 0
2731 "The hour when your day really ends. Must be an integer.
2732 This has influence for the following applications:
2733 - When switching the agenda to \"today\". It it is still earlier than
2734 the time given here, the day recognized as TODAY is actually yesterday.
2735 - When a date is read from the user and it is still before the time given
2736 here, the current date and time will be assumed to be yesterday, 23:59.
2737 Also, timestamps inserted in remember templates follow this rule.
2739 IMPORTANT: This is a feature whose implementation is and likely will
2740 remain incomplete. Really, it is only here because past midnight seems to
2741 be the favorite working time of John Wiegley :-)"
2742 :group 'org-time
2743 :type 'integer)
2745 (defcustom org-edit-timestamp-down-means-later nil
2746 "Non-nil means S-down will increase the time in a time stamp.
2747 When nil, S-up will increase."
2748 :group 'org-time
2749 :type 'boolean)
2751 (defcustom org-calendar-follow-timestamp-change t
2752 "Non-nil means make the calendar window follow timestamp changes.
2753 When a timestamp is modified and the calendar window is visible, it will be
2754 moved to the new date."
2755 :group 'org-time
2756 :type 'boolean)
2758 (defgroup org-tags nil
2759 "Options concerning tags in Org-mode."
2760 :tag "Org Tags"
2761 :group 'org)
2763 (defcustom org-tag-alist nil
2764 "List of tags allowed in Org-mode files.
2765 When this list is nil, Org-mode will base TAG input on what is already in the
2766 buffer.
2767 The value of this variable is an alist, the car of each entry must be a
2768 keyword as a string, the cdr may be a character that is used to select
2769 that tag through the fast-tag-selection interface.
2770 See the manual for details."
2771 :group 'org-tags
2772 :type '(repeat
2773 (choice
2774 (cons (string :tag "Tag name")
2775 (character :tag "Access char"))
2776 (list :tag "Start radio group"
2777 (const :startgroup)
2778 (option (string :tag "Group description")))
2779 (list :tag "End radio group"
2780 (const :endgroup)
2781 (option (string :tag "Group description")))
2782 (const :tag "New line" (:newline)))))
2784 (defcustom org-tag-persistent-alist nil
2785 "List of tags that will always appear in all Org-mode files.
2786 This is in addition to any in buffer settings or customizations
2787 of `org-tag-alist'.
2788 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
2789 The value of this variable is an alist, the car of each entry must be a
2790 keyword as a string, the cdr may be a character that is used to select
2791 that tag through the fast-tag-selection interface.
2792 See the manual for details.
2793 To disable these tags on a per-file basis, insert anywhere in the file:
2794 #+STARTUP: noptag"
2795 :group 'org-tags
2796 :type '(repeat
2797 (choice
2798 (cons (string :tag "Tag name")
2799 (character :tag "Access char"))
2800 (const :tag "Start radio group" (:startgroup))
2801 (const :tag "End radio group" (:endgroup))
2802 (const :tag "New line" (:newline)))))
2804 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
2805 "If non-nil, always offer completion for all tags of all agenda files.
2806 Instead of customizing this variable directly, you might want to
2807 set it locally for capture buffers, because there no list of
2808 tags in that file can be created dynamically (there are none).
2810 (add-hook 'org-capture-mode-hook
2811 (lambda ()
2812 (set (make-local-variable
2813 'org-complete-tags-always-offer-all-agenda-tags)
2814 t)))"
2815 :group 'org-tags
2816 :type 'boolean)
2818 (defvar org-file-tags nil
2819 "List of tags that can be inherited by all entries in the file.
2820 The tags will be inherited if the variable `org-use-tag-inheritance'
2821 says they should be.
2822 This variable is populated from #+FILETAGS lines.")
2824 (defcustom org-use-fast-tag-selection 'auto
2825 "Non-nil means use fast tag selection scheme.
2826 This is a special interface to select and deselect tags with single keys.
2827 When nil, fast selection is never used.
2828 When the symbol `auto', fast selection is used if and only if selection
2829 characters for tags have been configured, either through the variable
2830 `org-tag-alist' or through a #+TAGS line in the buffer.
2831 When t, fast selection is always used and selection keys are assigned
2832 automatically if necessary."
2833 :group 'org-tags
2834 :type '(choice
2835 (const :tag "Always" t)
2836 (const :tag "Never" nil)
2837 (const :tag "When selection characters are configured" 'auto)))
2839 (defcustom org-fast-tag-selection-single-key nil
2840 "Non-nil means fast tag selection exits after first change.
2841 When nil, you have to press RET to exit it.
2842 During fast tag selection, you can toggle this flag with `C-c'.
2843 This variable can also have the value `expert'. In this case, the window
2844 displaying the tags menu is not even shown, until you press C-c again."
2845 :group 'org-tags
2846 :type '(choice
2847 (const :tag "No" nil)
2848 (const :tag "Yes" t)
2849 (const :tag "Expert" expert)))
2851 (defvar org-fast-tag-selection-include-todo nil
2852 "Non-nil means fast tags selection interface will also offer TODO states.
2853 This is an undocumented feature, you should not rely on it.")
2855 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
2856 "The column to which tags should be indented in a headline.
2857 If this number is positive, it specifies the column. If it is negative,
2858 it means that the tags should be flushright to that column. For example,
2859 -80 works well for a normal 80 character screen."
2860 :group 'org-tags
2861 :type 'integer)
2863 (defcustom org-auto-align-tags t
2864 "Non-nil keeps tags aligned when modifying headlines.
2865 Some operations (i.e. demoting) change the length of a headline and
2866 therefore shift the tags around. With this option turned on, after
2867 each such operation the tags are again aligned to `org-tags-column'."
2868 :group 'org-tags
2869 :type 'boolean)
2871 (defcustom org-use-tag-inheritance t
2872 "Non-nil means tags in levels apply also for sublevels.
2873 When nil, only the tags directly given in a specific line apply there.
2874 This may also be a list of tags that should be inherited, or a regexp that
2875 matches tags that should be inherited. Additional control is possible
2876 with the variable `org-tags-exclude-from-inheritance' which gives an
2877 explicit list of tags to be excluded from inheritance., even if the value of
2878 `org-use-tag-inheritance' would select it for inheritance.
2880 If this option is t, a match early-on in a tree can lead to a large
2881 number of matches in the subtree when constructing the agenda or creating
2882 a sparse tree. If you only want to see the first match in a tree during
2883 a search, check out the variable `org-tags-match-list-sublevels'."
2884 :group 'org-tags
2885 :type '(choice
2886 (const :tag "Not" nil)
2887 (const :tag "Always" t)
2888 (repeat :tag "Specific tags" (string :tag "Tag"))
2889 (regexp :tag "Tags matched by regexp")))
2891 (defcustom org-tags-exclude-from-inheritance nil
2892 "List of tags that should never be inherited.
2893 This is a way to exclude a few tags from inheritance. For way to do
2894 the opposite, to actively allow inheritance for selected tags,
2895 see the variable `org-use-tag-inheritance'."
2896 :group 'org-tags
2897 :type '(repeat (string :tag "Tag")))
2899 (defun org-tag-inherit-p (tag)
2900 "Check if TAG is one that should be inherited."
2901 (cond
2902 ((member tag org-tags-exclude-from-inheritance) nil)
2903 ((eq org-use-tag-inheritance t) t)
2904 ((not org-use-tag-inheritance) nil)
2905 ((stringp org-use-tag-inheritance)
2906 (string-match org-use-tag-inheritance tag))
2907 ((listp org-use-tag-inheritance)
2908 (member tag org-use-tag-inheritance))
2909 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
2911 (defcustom org-tags-match-list-sublevels t
2912 "Non-nil means list also sublevels of headlines matching a search.
2913 This variable applies to tags/property searches, and also to stuck
2914 projects because this search is based on a tags match as well.
2916 When set to the symbol `indented', sublevels are indented with
2917 leading dots.
2919 Because of tag inheritance (see variable `org-use-tag-inheritance'),
2920 the sublevels of a headline matching a tag search often also match
2921 the same search. Listing all of them can create very long lists.
2922 Setting this variable to nil causes subtrees of a match to be skipped.
2924 This variable is semi-obsolete and probably should always be true. It
2925 is better to limit inheritance to certain tags using the variables
2926 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
2927 :group 'org-tags
2928 :type '(choice
2929 (const :tag "No, don't list them" nil)
2930 (const :tag "Yes, do list them" t)
2931 (const :tag "List them, indented with leading dots" indented)))
2933 (defcustom org-tags-sort-function nil
2934 "When set, tags are sorted using this function as a comparator."
2935 :group 'org-tags
2936 :type '(choice
2937 (const :tag "No sorting" nil)
2938 (const :tag "Alphabetical" string<)
2939 (const :tag "Reverse alphabetical" string>)
2940 (function :tag "Custom function" nil)))
2942 (defvar org-tags-history nil
2943 "History of minibuffer reads for tags.")
2944 (defvar org-last-tags-completion-table nil
2945 "The last used completion table for tags.")
2946 (defvar org-after-tags-change-hook nil
2947 "Hook that is run after the tags in a line have changed.")
2949 (defgroup org-properties nil
2950 "Options concerning properties in Org-mode."
2951 :tag "Org Properties"
2952 :group 'org)
2954 (defcustom org-property-format "%-10s %s"
2955 "How property key/value pairs should be formatted by `indent-line'.
2956 When `indent-line' hits a property definition, it will format the line
2957 according to this format, mainly to make sure that the values are
2958 lined-up with respect to each other."
2959 :group 'org-properties
2960 :type 'string)
2962 (defcustom org-use-property-inheritance nil
2963 "Non-nil means properties apply also for sublevels.
2965 This setting is chiefly used during property searches. Turning it on can
2966 cause significant overhead when doing a search, which is why it is not
2967 on by default.
2969 When nil, only the properties directly given in the current entry count.
2970 When t, every property is inherited. The value may also be a list of
2971 properties that should have inheritance, or a regular expression matching
2972 properties that should be inherited.
2974 However, note that some special properties use inheritance under special
2975 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
2976 and the properties ending in \"_ALL\" when they are used as descriptor
2977 for valid values of a property.
2979 Note for programmers:
2980 When querying an entry with `org-entry-get', you can control if inheritance
2981 should be used. By default, `org-entry-get' looks only at the local
2982 properties. You can request inheritance by setting the inherit argument
2983 to t (to force inheritance) or to `selective' (to respect the setting
2984 in this variable)."
2985 :group 'org-properties
2986 :type '(choice
2987 (const :tag "Not" nil)
2988 (const :tag "Always" t)
2989 (repeat :tag "Specific properties" (string :tag "Property"))
2990 (regexp :tag "Properties matched by regexp")))
2992 (defun org-property-inherit-p (property)
2993 "Check if PROPERTY is one that should be inherited."
2994 (cond
2995 ((eq org-use-property-inheritance t) t)
2996 ((not org-use-property-inheritance) nil)
2997 ((stringp org-use-property-inheritance)
2998 (string-match org-use-property-inheritance property))
2999 ((listp org-use-property-inheritance)
3000 (member property org-use-property-inheritance))
3001 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3003 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3004 "The default column format, if no other format has been defined.
3005 This variable can be set on the per-file basis by inserting a line
3007 #+COLUMNS: %25ITEM ....."
3008 :group 'org-properties
3009 :type 'string)
3011 (defcustom org-columns-ellipses ".."
3012 "The ellipses to be used when a field in column view is truncated.
3013 When this is the empty string, as many characters as possible are shown,
3014 but then there will be no visual indication that the field has been truncated.
3015 When this is a string of length N, the last N characters of a truncated
3016 field are replaced by this string. If the column is narrower than the
3017 ellipses string, only part of the ellipses string will be shown."
3018 :group 'org-properties
3019 :type 'string)
3021 (defcustom org-columns-modify-value-for-display-function nil
3022 "Function that modifies values for display in column view.
3023 For example, it can be used to cut out a certain part from a time stamp.
3024 The function must take 2 arguments:
3026 column-title The title of the column (*not* the property name)
3027 value The value that should be modified.
3029 The function should return the value that should be displayed,
3030 or nil if the normal value should be used."
3031 :group 'org-properties
3032 :type 'function)
3034 (defcustom org-effort-property "Effort"
3035 "The property that is being used to keep track of effort estimates.
3036 Effort estimates given in this property need to have the format H:MM."
3037 :group 'org-properties
3038 :group 'org-progress
3039 :type '(string :tag "Property"))
3041 (defconst org-global-properties-fixed
3042 '(("VISIBILITY_ALL" . "folded children content all")
3043 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3044 "List of property/value pairs that can be inherited by any entry.
3046 These are fixed values, for the preset properties. The user variable
3047 that can be used to add to this list is `org-global-properties'.
3049 The entries in this list are cons cells where the car is a property
3050 name and cdr is a string with the value. If the value represents
3051 multiple items like an \"_ALL\" property, separate the items by
3052 spaces.")
3054 (defcustom org-global-properties nil
3055 "List of property/value pairs that can be inherited by any entry.
3057 This list will be combined with the constant `org-global-properties-fixed'.
3059 The entries in this list are cons cells where the car is a property
3060 name and cdr is a string with the value.
3062 You can set buffer-local values for the same purpose in the variable
3063 `org-file-properties' this by adding lines like
3065 #+PROPERTY: NAME VALUE"
3066 :group 'org-properties
3067 :type '(repeat
3068 (cons (string :tag "Property")
3069 (string :tag "Value"))))
3071 (defvar org-file-properties nil
3072 "List of property/value pairs that can be inherited by any entry.
3073 Valid for the current buffer.
3074 This variable is populated from #+PROPERTY lines.")
3075 (make-variable-buffer-local 'org-file-properties)
3077 (defgroup org-agenda nil
3078 "Options concerning agenda views in Org-mode."
3079 :tag "Org Agenda"
3080 :group 'org)
3082 (defvar org-category nil
3083 "Variable used by org files to set a category for agenda display.
3084 Such files should use a file variable to set it, for example
3086 # -*- mode: org; org-category: \"ELisp\"
3088 or contain a special line
3090 #+CATEGORY: ELisp
3092 If the file does not specify a category, then file's base name
3093 is used instead.")
3094 (make-variable-buffer-local 'org-category)
3095 (put 'org-category 'safe-local-variable #'(lambda (x) (or (symbolp x) (stringp x))))
3097 (defcustom org-agenda-files nil
3098 "The files to be used for agenda display.
3099 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3100 \\[org-remove-file]. You can also use customize to edit the list.
3102 If an entry is a directory, all files in that directory that are matched by
3103 `org-agenda-file-regexp' will be part of the file list.
3105 If the value of the variable is not a list but a single file name, then
3106 the list of agenda files is actually stored and maintained in that file, one
3107 agenda file per line. In this file paths can be given relative to
3108 `org-directory'. Tilde expansion and environment variable substitution
3109 are also made."
3110 :group 'org-agenda
3111 :type '(choice
3112 (repeat :tag "List of files and directories" file)
3113 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3115 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3116 "Regular expression to match files for `org-agenda-files'.
3117 If any element in the list in that variable contains a directory instead
3118 of a normal file, all files in that directory that are matched by this
3119 regular expression will be included."
3120 :group 'org-agenda
3121 :type 'regexp)
3123 (defcustom org-agenda-text-search-extra-files nil
3124 "List of extra files to be searched by text search commands.
3125 These files will be search in addition to the agenda files by the
3126 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3127 Note that these files will only be searched for text search commands,
3128 not for the other agenda views like todo lists, tag searches or the weekly
3129 agenda. This variable is intended to list notes and possibly archive files
3130 that should also be searched by these two commands.
3131 In fact, if the first element in the list is the symbol `agenda-archives',
3132 than all archive files of all agenda files will be added to the search
3133 scope."
3134 :group 'org-agenda
3135 :type '(set :greedy t
3136 (const :tag "Agenda Archives" agenda-archives)
3137 (repeat :inline t (file))))
3139 (if (fboundp 'defvaralias)
3140 (defvaralias 'org-agenda-multi-occur-extra-files
3141 'org-agenda-text-search-extra-files))
3143 (defcustom org-agenda-skip-unavailable-files nil
3144 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3145 A nil value means to remove them, after a query, from the list."
3146 :group 'org-agenda
3147 :type 'boolean)
3149 (defcustom org-calendar-to-agenda-key [?c]
3150 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3151 The command `org-calendar-goto-agenda' will be bound to this key. The
3152 default is the character `c' because then `c' can be used to switch back and
3153 forth between agenda and calendar."
3154 :group 'org-agenda
3155 :type 'sexp)
3157 (defcustom org-calendar-agenda-action-key [?k]
3158 "The key to be installed in `calendar-mode-map' for agenda-action.
3159 The command `org-agenda-action' will be bound to this key. The
3160 default is the character `k' because we use the same key in the agenda."
3161 :group 'org-agenda
3162 :type 'sexp)
3164 (defcustom org-calendar-insert-diary-entry-key [?i]
3165 "The key to be installed in `calendar-mode-map' for adding diary entries.
3166 This option is irrelevant until `org-agenda-diary-file' has been configured
3167 to point to an Org-mode file. When that is the case, the command
3168 `org-agenda-diary-entry' will be bound to the key given here, by default
3169 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3170 if you want to continue doing this, you need to change this to a different
3171 key."
3172 :group 'org-agenda
3173 :type 'sexp)
3175 (defcustom org-agenda-diary-file 'diary-file
3176 "File to which to add new entries with the `i' key in agenda and calendar.
3177 When this is the symbol `diary-file', the functionality in the Emacs
3178 calendar will be used to add entries to the `diary-file'. But when this
3179 points to a file, `org-agenda-diary-entry' will be used instead."
3180 :group 'org-agenda
3181 :type '(choice
3182 (const :tag "The standard Emacs diary file" diary-file)
3183 (file :tag "Special Org file diary entries")))
3185 (eval-after-load "calendar"
3186 '(progn
3187 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3188 'org-calendar-goto-agenda)
3189 (org-defkey calendar-mode-map org-calendar-agenda-action-key
3190 'org-agenda-action)
3191 (add-hook 'calendar-mode-hook
3192 (lambda ()
3193 (unless (eq org-agenda-diary-file 'diary-file)
3194 (define-key calendar-mode-map
3195 org-calendar-insert-diary-entry-key
3196 'org-agenda-diary-entry))))))
3198 (defgroup org-latex nil
3199 "Options for embedding LaTeX code into Org-mode."
3200 :tag "Org LaTeX"
3201 :group 'org)
3203 (defcustom org-format-latex-options
3204 '(:foreground default :background default :scale 1.0
3205 :html-foreground "Black" :html-background "Transparent"
3206 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3207 "Options for creating images from LaTeX fragments.
3208 This is a property list with the following properties:
3209 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3210 `default' means use the foreground of the default face.
3211 :background the background color, or \"Transparent\".
3212 `default' means use the background of the default face.
3213 :scale a scaling factor for the size of the images, to get more pixels
3214 :html-foreground, :html-background, :html-scale
3215 the same numbers for HTML export.
3216 :matchers a list indicating which matchers should be used to
3217 find LaTeX fragments. Valid members of this list are:
3218 \"begin\" find environments
3219 \"$1\" find single characters surrounded by $.$
3220 \"$\" find math expressions surrounded by $...$
3221 \"$$\" find math expressions surrounded by $$....$$
3222 \"\\(\" find math expressions surrounded by \\(...\\)
3223 \"\\ [\" find math expressions surrounded by \\ [...\\]"
3224 :group 'org-latex
3225 :type 'plist)
3227 (defcustom org-format-latex-signal-error t
3228 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3229 When nil, just push out a message."
3230 :group 'org-latex
3231 :type 'boolean)
3233 (defcustom org-format-latex-header "\\documentclass{article}
3234 \\usepackage[usenames]{color}
3235 \\usepackage{amsmath}
3236 \\usepackage[mathscr]{eucal}
3237 \\pagestyle{empty} % do not remove
3238 \[PACKAGES]
3239 \[DEFAULT-PACKAGES]
3240 % The settings below are copied from fullpage.sty
3241 \\setlength{\\textwidth}{\\paperwidth}
3242 \\addtolength{\\textwidth}{-3cm}
3243 \\setlength{\\oddsidemargin}{1.5cm}
3244 \\addtolength{\\oddsidemargin}{-2.54cm}
3245 \\setlength{\\evensidemargin}{\\oddsidemargin}
3246 \\setlength{\\textheight}{\\paperheight}
3247 \\addtolength{\\textheight}{-\\headheight}
3248 \\addtolength{\\textheight}{-\\headsep}
3249 \\addtolength{\\textheight}{-\\footskip}
3250 \\addtolength{\\textheight}{-3cm}
3251 \\setlength{\\topmargin}{1.5cm}
3252 \\addtolength{\\topmargin}{-2.54cm}"
3253 "The document header used for processing LaTeX fragments.
3254 It is imperative that this header make sure that no page number
3255 appears on the page. The package defined in the variables
3256 `org-export-latex-default-packages-alist' and `org-export-latex-packages-alist'
3257 will either replace the placeholder \"[PACKAGES]\" in this header, or they
3258 will be appended."
3259 :group 'org-latex
3260 :type 'string)
3262 (defvar org-format-latex-header-extra nil)
3264 (defun org-set-packages-alist (var val)
3265 "Set the packages alist and make sure it has 3 elements per entry."
3266 (set var (mapcar (lambda (x)
3267 (if (and (consp x) (= (length x) 2))
3268 (list (car x) (nth 1 x) t)
3270 val)))
3272 (defun org-get-packages-alist (var)
3274 "Get the packages alist and make sure it has 3 elements per entry."
3275 (mapcar (lambda (x)
3276 (if (and (consp x) (= (length x) 2))
3277 (list (car x) (nth 1 x) t)
3279 (default-value var)))
3281 ;; The following variables are defined here because is it also used
3282 ;; when formatting latex fragments. Originally it was part of the
3283 ;; LaTeX exporter, which is why the name includes "export".
3284 (defcustom org-export-latex-default-packages-alist
3285 '(("AUTO" "inputenc" t)
3286 ("T1" "fontenc" t)
3287 ("" "fixltx2e" nil)
3288 ("" "graphicx" t)
3289 ("" "longtable" nil)
3290 ("" "float" nil)
3291 ("" "wrapfig" nil)
3292 ("" "soul" t)
3293 ("" "textcomp" t)
3294 ("" "marvosym" t)
3295 ("" "wasysym" t)
3296 ("" "latexsym" t)
3297 ("" "amssymb" t)
3298 ("" "hyperref" nil)
3299 "\\tolerance=1000"
3301 "Alist of default packages to be inserted in the header.
3302 Change this only if one of the packages here causes an incompatibility
3303 with another package you are using.
3304 The packages in this list are needed by one part or another of Org-mode
3305 to function properly.
3307 - inputenc, fontenc: for basic font and character selection
3308 - textcomp, marvosymb, wasysym, latexsym, amssym: for various symbols used
3309 for interpreting the entities in `org-entities'. You can skip some of these
3310 packages if you don't use any of the symbols in it.
3311 - graphicx: for including images
3312 - float, wrapfig: for figure placement
3313 - longtable: for long tables
3314 - hyperref: for cross references
3316 Therefore you should not modify this variable unless you know what you
3317 are doing. The one reason to change it anyway is that you might be loading
3318 some other package that conflicts with one of the default packages.
3319 Each cell is of the format \( \"options\" \"package\" snippet-flag\).
3320 If SNIPPET-FLAG is t, the package also needs to be included when
3321 compiling LaTeX snippets into images for inclusion into HTML."
3322 :group 'org-export-latex
3323 :set 'org-set-packages-alist
3324 :get 'org-get-packages-alist
3325 :type '(repeat
3326 (choice
3327 (list :tag "options/package pair"
3328 (string :tag "options")
3329 (string :tag "package")
3330 (boolean :tag "Snippet"))
3331 (string :tag "A line of LaTeX"))))
3333 (defcustom org-export-latex-packages-alist nil
3334 "Alist of packages to be inserted in every LaTeX header.
3335 These will be inserted after `org-export-latex-default-packages-alist'.
3336 Each cell is of the format \( \"options\" \"package\" snippet-flag \).
3337 SNIPPET-FLAG, when t, indicates that this package is also needed when
3338 turning LaTeX snippets into images for inclusion into HTML.
3339 Make sure that you only list packages here which:
3340 - you want in every file
3341 - do not conflict with the default packages in
3342 `org-export-latex-default-packages-alist'
3343 - do not conflict with the setup in `org-format-latex-header'."
3344 :group 'org-export-latex
3345 :set 'org-set-packages-alist
3346 :get 'org-get-packages-alist
3347 :type '(repeat
3348 (choice
3349 (list :tag "options/package pair"
3350 (string :tag "options")
3351 (string :tag "package")
3352 (boolean :tag "Snippet"))
3353 (string :tag "A line of LaTeX"))))
3356 (defgroup org-appearance nil
3357 "Settings for Org-mode appearance."
3358 :tag "Org Appearance"
3359 :group 'org)
3361 (defcustom org-level-color-stars-only nil
3362 "Non-nil means fontify only the stars in each headline.
3363 When nil, the entire headline is fontified.
3364 Changing it requires restart of `font-lock-mode' to become effective
3365 also in regions already fontified."
3366 :group 'org-appearance
3367 :type 'boolean)
3369 (defcustom org-hide-leading-stars nil
3370 "Non-nil means hide the first N-1 stars in a headline.
3371 This works by using the face `org-hide' for these stars. This
3372 face is white for a light background, and black for a dark
3373 background. You may have to customize the face `org-hide' to
3374 make this work.
3375 Changing it requires restart of `font-lock-mode' to become effective
3376 also in regions already fontified.
3377 You may also set this on a per-file basis by adding one of the following
3378 lines to the buffer:
3380 #+STARTUP: hidestars
3381 #+STARTUP: showstars"
3382 :group 'org-appearance
3383 :type 'boolean)
3385 (defcustom org-hidden-keywords nil
3386 "List of symbols corresponding to keywords to be hidden the org buffer.
3387 For example, a value '(title) for this list will make the document's title
3388 appear in the buffer without the initial #+TITLE: keyword."
3389 :group 'org-appearance
3390 :type '(set (const :tag "#+AUTHOR" author)
3391 (const :tag "#+DATE" date)
3392 (const :tag "#+EMAIL" email)
3393 (const :tag "#+TITLE" title)))
3395 (defcustom org-fontify-done-headline nil
3396 "Non-nil means change the face of a headline if it is marked DONE.
3397 Normally, only the TODO/DONE keyword indicates the state of a headline.
3398 When this is non-nil, the headline after the keyword is set to the
3399 `org-headline-done' as an additional indication."
3400 :group 'org-appearance
3401 :type 'boolean)
3403 (defcustom org-fontify-emphasized-text t
3404 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
3405 Changing this variable requires a restart of Emacs to take effect."
3406 :group 'org-appearance
3407 :type 'boolean)
3409 (defcustom org-fontify-whole-heading-line nil
3410 "Non-nil means fontify the whole line for headings.
3411 This is useful when setting a background color for the
3412 org-level-* faces."
3413 :group 'org-appearance
3414 :type 'boolean)
3416 (defcustom org-highlight-latex-fragments-and-specials nil
3417 "Non-nil means fontify what is treated specially by the exporters."
3418 :group 'org-appearance
3419 :type 'boolean)
3421 (defcustom org-hide-emphasis-markers nil
3422 "Non-nil mean font-lock should hide the emphasis marker characters."
3423 :group 'org-appearance
3424 :type 'boolean)
3426 (defcustom org-pretty-entities nil
3427 "Non-nil means show entities as UTF8 characters.
3428 When nil, the \\name form remains in the buffer."
3429 :group 'org-appearance
3430 :type 'boolean)
3432 (defcustom org-pretty-entities-include-sub-superscripts t
3433 "Non-nil means, pretty entity display includes formatting sub/superscripts."
3434 :group 'org-appearance
3435 :type 'boolean)
3437 (defvar org-emph-re nil
3438 "Regular expression for matching emphasis.
3439 After a match, the match groups contain these elements:
3440 0 The match of the full regular expression, including the characters
3441 before and after the proper match
3442 1 The character before the proper match, or empty at beginning of line
3443 2 The proper match, including the leading and trailing markers
3444 3 The leading marker like * or /, indicating the type of highlighting
3445 4 The text between the emphasis markers, not including the markers
3446 5 The character after the match, empty at the end of a line")
3447 (defvar org-verbatim-re nil
3448 "Regular expression for matching verbatim text.")
3449 (defvar org-emphasis-regexp-components) ; defined just below
3450 (defvar org-emphasis-alist) ; defined just below
3451 (defun org-set-emph-re (var val)
3452 "Set variable and compute the emphasis regular expression."
3453 (set var val)
3454 (when (and (boundp 'org-emphasis-alist)
3455 (boundp 'org-emphasis-regexp-components)
3456 org-emphasis-alist org-emphasis-regexp-components)
3457 (let* ((e org-emphasis-regexp-components)
3458 (pre (car e))
3459 (post (nth 1 e))
3460 (border (nth 2 e))
3461 (body (nth 3 e))
3462 (nl (nth 4 e))
3463 (body1 (concat body "*?"))
3464 (markers (mapconcat 'car org-emphasis-alist ""))
3465 (vmarkers (mapconcat
3466 (lambda (x) (if (eq (nth 4 x) 'verbatim) (car x) ""))
3467 org-emphasis-alist "")))
3468 ;; make sure special characters appear at the right position in the class
3469 (if (string-match "\\^" markers)
3470 (setq markers (concat (replace-match "" t t markers) "^")))
3471 (if (string-match "-" markers)
3472 (setq markers (concat (replace-match "" t t markers) "-")))
3473 (if (string-match "\\^" vmarkers)
3474 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
3475 (if (string-match "-" vmarkers)
3476 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
3477 (if (> nl 0)
3478 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
3479 (int-to-string nl) "\\}")))
3480 ;; Make the regexp
3481 (setq org-emph-re
3482 (concat "\\([" pre "]\\|^\\)"
3483 "\\("
3484 "\\([" markers "]\\)"
3485 "\\("
3486 "[^" border "]\\|"
3487 "[^" border "]"
3488 body1
3489 "[^" border "]"
3490 "\\)"
3491 "\\3\\)"
3492 "\\([" post "]\\|$\\)"))
3493 (setq org-verbatim-re
3494 (concat "\\([" pre "]\\|^\\)"
3495 "\\("
3496 "\\([" vmarkers "]\\)"
3497 "\\("
3498 "[^" border "]\\|"
3499 "[^" border "]"
3500 body1
3501 "[^" border "]"
3502 "\\)"
3503 "\\3\\)"
3504 "\\([" post "]\\|$\\)")))))
3506 (defcustom org-emphasis-regexp-components
3507 '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r\n,\"'" "." 1)
3508 "Components used to build the regular expression for emphasis.
3509 This is a list with five entries. Terminology: In an emphasis string
3510 like \" *strong word* \", we call the initial space PREMATCH, the final
3511 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
3512 and \"trong wor\" is the body. The different components in this variable
3513 specify what is allowed/forbidden in each part:
3515 pre Chars allowed as prematch. Beginning of line will be allowed too.
3516 post Chars allowed as postmatch. End of line will be allowed too.
3517 border The chars *forbidden* as border characters.
3518 body-regexp A regexp like \".\" to match a body character. Don't use
3519 non-shy groups here, and don't allow newline here.
3520 newline The maximum number of newlines allowed in an emphasis exp.
3522 Use customize to modify this, or restart Emacs after changing it."
3523 :group 'org-appearance
3524 :set 'org-set-emph-re
3525 :type '(list
3526 (sexp :tag "Allowed chars in pre ")
3527 (sexp :tag "Allowed chars in post ")
3528 (sexp :tag "Forbidden chars in border ")
3529 (sexp :tag "Regexp for body ")
3530 (integer :tag "number of newlines allowed")
3531 (option (boolean :tag "Please ignore this button"))))
3533 (defcustom org-emphasis-alist
3534 `(("*" bold "<b>" "</b>")
3535 ("/" italic "<i>" "</i>")
3536 ("_" underline "<span style=\"text-decoration:underline;\">" "</span>")
3537 ("=" org-code "<code>" "</code>" verbatim)
3538 ("~" org-verbatim "<code>" "</code>" verbatim)
3539 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))
3540 "<del>" "</del>")
3542 "Special syntax for emphasized text.
3543 Text starting and ending with a special character will be emphasized, for
3544 example *bold*, _underlined_ and /italic/. This variable sets the marker
3545 characters, the face to be used by font-lock for highlighting in Org-mode
3546 Emacs buffers, and the HTML tags to be used for this.
3547 For LaTeX export, see the variable `org-export-latex-emphasis-alist'.
3548 For DocBook export, see the variable `org-export-docbook-emphasis-alist'.
3549 Use customize to modify this, or restart Emacs after changing it."
3550 :group 'org-appearance
3551 :set 'org-set-emph-re
3552 :type '(repeat
3553 (list
3554 (string :tag "Marker character")
3555 (choice
3556 (face :tag "Font-lock-face")
3557 (plist :tag "Face property list"))
3558 (string :tag "HTML start tag")
3559 (string :tag "HTML end tag")
3560 (option (const verbatim)))))
3562 (defvar org-protecting-blocks
3563 '("src" "example" "latex" "ascii" "html" "docbook" "ditaa" "dot" "r" "R")
3564 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
3565 This is needed for font-lock setup.")
3567 ;;; Miscellaneous options
3569 (defgroup org-completion nil
3570 "Completion in Org-mode."
3571 :tag "Org Completion"
3572 :group 'org)
3574 (defcustom org-completion-use-ido nil
3575 "Non-nil means use ido completion wherever possible.
3576 Note that `ido-mode' must be active for this variable to be relevant.
3577 If you decide to turn this variable on, you might well want to turn off
3578 `org-outline-path-complete-in-steps'.
3579 See also `org-completion-use-iswitchb'."
3580 :group 'org-completion
3581 :type 'boolean)
3583 (defcustom org-completion-use-iswitchb nil
3584 "Non-nil means use iswitchb completion wherever possible.
3585 Note that `iswitchb-mode' must be active for this variable to be relevant.
3586 If you decide to turn this variable on, you might well want to turn off
3587 `org-outline-path-complete-in-steps'.
3588 Note that this variable has only an effect if `org-completion-use-ido' is nil."
3589 :group 'org-completion
3590 :type 'boolean)
3592 (defcustom org-completion-fallback-command 'hippie-expand
3593 "The expansion command called by \\[pcomplete] in normal context.
3594 Normal means, no org-mode-specific context."
3595 :group 'org-completion
3596 :type 'function)
3598 ;;; Functions and variables from their packages
3599 ;; Declared here to avoid compiler warnings
3601 ;; XEmacs only
3602 (defvar outline-mode-menu-heading)
3603 (defvar outline-mode-menu-show)
3604 (defvar outline-mode-menu-hide)
3605 (defvar zmacs-regions) ; XEmacs regions
3607 ;; Emacs only
3608 (defvar mark-active)
3610 ;; Various packages
3611 (declare-function calendar-absolute-from-iso "cal-iso" (date))
3612 (declare-function calendar-forward-day "cal-move" (arg))
3613 (declare-function calendar-goto-date "cal-move" (date))
3614 (declare-function calendar-goto-today "cal-move" ())
3615 (declare-function calendar-iso-from-absolute "cal-iso" (date))
3616 (defvar calc-embedded-close-formula)
3617 (defvar calc-embedded-open-formula)
3618 (declare-function cdlatex-tab "ext:cdlatex" ())
3619 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
3620 (defvar font-lock-unfontify-region-function)
3621 (declare-function iswitchb-read-buffer "iswitchb"
3622 (prompt &optional default require-match start matches-set))
3623 (defvar iswitchb-temp-buflist)
3624 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
3625 (defvar org-agenda-tags-todo-honor-ignore-options)
3626 (declare-function org-agenda-skip "org-agenda" ())
3627 (declare-function
3628 org-format-agenda-item "org-agenda"
3629 (extra txt &optional category tags dotime noprefix remove-re habitp))
3630 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
3631 (declare-function org-agenda-change-all-lines "org-agenda"
3632 (newhead hdmarker &optional fixface just-this))
3633 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
3634 (declare-function org-agenda-maybe-redo "org-agenda" ())
3635 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
3636 (beg end))
3637 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
3638 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
3639 "org-agenda" (&optional end))
3640 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
3641 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
3642 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
3643 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
3644 (declare-function org-indent-mode "org-indent" (&optional arg))
3645 (declare-function parse-time-string "parse-time" (string))
3646 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
3647 (declare-function org-export-latex-fix-inputenc "org-latex" ())
3648 (declare-function orgtbl-send-table "org-table" (&optional maybe))
3649 (defvar remember-data-file)
3650 (defvar texmathp-why)
3651 (declare-function speedbar-line-directory "speedbar" (&optional depth))
3652 (declare-function table--at-cell-p "table" (position &optional object at-column))
3654 (defvar w3m-current-url)
3655 (defvar w3m-current-title)
3657 (defvar org-latex-regexps)
3659 ;;; Autoload and prepare some org modules
3661 ;; Some table stuff that needs to be defined here, because it is used
3662 ;; by the functions setting up org-mode or checking for table context.
3664 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
3665 "Detect an org-type or table-type table.")
3666 (defconst org-table-line-regexp "^[ \t]*|"
3667 "Detect an org-type table line.")
3668 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
3669 "Detect an org-type table line.")
3670 (defconst org-table-hline-regexp "^[ \t]*|-"
3671 "Detect an org-type table hline.")
3672 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
3673 "Detect a table-type table hline.")
3674 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
3675 "Detect the first line outside a table when searching from within it.
3676 This works for both table types.")
3678 ;; Autoload the functions in org-table.el that are needed by functions here.
3680 (eval-and-compile
3681 (org-autoload "org-table"
3682 '(org-table-align org-table-begin org-table-blank-field
3683 org-table-convert org-table-convert-region org-table-copy-down
3684 org-table-copy-region org-table-create
3685 org-table-create-or-convert-from-region
3686 org-table-create-with-table.el org-table-current-dline
3687 org-table-cut-region org-table-delete-column org-table-edit-field
3688 org-table-edit-formulas org-table-end org-table-eval-formula
3689 org-table-export org-table-field-info
3690 org-table-get-stored-formulas org-table-goto-column
3691 org-table-hline-and-move org-table-import org-table-insert-column
3692 org-table-insert-hline org-table-insert-row org-table-iterate
3693 org-table-justify-field-maybe org-table-kill-row
3694 org-table-maybe-eval-formula org-table-maybe-recalculate-line
3695 org-table-move-column org-table-move-column-left
3696 org-table-move-column-right org-table-move-row
3697 org-table-move-row-down org-table-move-row-up
3698 org-table-next-field org-table-next-row org-table-paste-rectangle
3699 org-table-previous-field org-table-recalculate
3700 org-table-rotate-recalc-marks org-table-sort-lines org-table-sum
3701 org-table-toggle-coordinate-overlays
3702 org-table-toggle-formula-debugger org-table-wrap-region
3703 orgtbl-mode turn-on-orgtbl org-table-to-lisp
3704 orgtbl-to-generic orgtbl-to-tsv orgtbl-to-csv orgtbl-to-latex
3705 orgtbl-to-orgtbl orgtbl-to-html orgtbl-to-texinfo)))
3707 (defun org-at-table-p (&optional table-type)
3708 "Return t if the cursor is inside an org-type table.
3709 If TABLE-TYPE is non-nil, also check for table.el-type tables."
3710 (if org-enable-table-editor
3711 (save-excursion
3712 (beginning-of-line 1)
3713 (looking-at (if table-type org-table-any-line-regexp
3714 org-table-line-regexp)))
3715 nil))
3716 (defsubst org-table-p () (org-at-table-p))
3718 (defun org-at-table.el-p ()
3719 "Return t if and only if we are at a table.el table."
3720 (and (org-at-table-p 'any)
3721 (save-excursion
3722 (goto-char (org-table-begin 'any))
3723 (looking-at org-table1-hline-regexp))))
3724 (defun org-table-recognize-table.el ()
3725 "If there is a table.el table nearby, recognize it and move into it."
3726 (if org-table-tab-recognizes-table.el
3727 (if (org-at-table.el-p)
3728 (progn
3729 (beginning-of-line 1)
3730 (if (looking-at org-table-dataline-regexp)
3732 (if (looking-at org-table1-hline-regexp)
3733 (progn
3734 (beginning-of-line 2)
3735 (if (looking-at org-table-any-border-regexp)
3736 (beginning-of-line -1)))))
3737 (if (re-search-forward "|" (org-table-end t) t)
3738 (progn
3739 (require 'table)
3740 (if (table--at-cell-p (point))
3742 (message "recognizing table.el table...")
3743 (table-recognize-table)
3744 (message "recognizing table.el table...done")))
3745 (error "This should not happen"))
3747 nil)
3748 nil))
3750 (defun org-at-table-hline-p ()
3751 "Return t if the cursor is inside a hline in a table."
3752 (if org-enable-table-editor
3753 (save-excursion
3754 (beginning-of-line 1)
3755 (looking-at org-table-hline-regexp))
3756 nil))
3758 (defvar org-table-clean-did-remove-column nil)
3760 (defun org-table-map-tables (function &optional quietly)
3761 "Apply FUNCTION to the start of all tables in the buffer."
3762 (save-excursion
3763 (save-restriction
3764 (widen)
3765 (goto-char (point-min))
3766 (while (re-search-forward org-table-any-line-regexp nil t)
3767 (unless quietly
3768 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
3769 (beginning-of-line 1)
3770 (when (looking-at org-table-line-regexp)
3771 (save-excursion (funcall function))
3772 (or (looking-at org-table-line-regexp)
3773 (forward-char 1)))
3774 (re-search-forward org-table-any-border-regexp nil 1))))
3775 (unless quietly (message "Mapping tables: done")))
3777 ;; Declare and autoload functions from org-exp.el & Co
3779 (declare-function org-default-export-plist "org-exp")
3780 (declare-function org-infile-export-plist "org-exp")
3781 (declare-function org-get-current-options "org-exp")
3782 (eval-and-compile
3783 (org-autoload "org-exp"
3784 '(org-export org-export-visible
3785 org-insert-export-options-template
3786 org-table-clean-before-export))
3787 (org-autoload "org-ascii"
3788 '(org-export-as-ascii org-export-ascii-preprocess
3789 org-export-as-ascii-to-buffer org-replace-region-by-ascii
3790 org-export-region-as-ascii))
3791 (org-autoload "org-latex"
3792 '(org-export-as-latex-batch org-export-as-latex-to-buffer
3793 org-replace-region-by-latex org-export-region-as-latex
3794 org-export-as-latex org-export-as-pdf
3795 org-export-as-pdf-and-open))
3796 (org-autoload "org-html"
3797 '(org-export-as-html-and-open
3798 org-export-as-html-batch org-export-as-html-to-buffer
3799 org-replace-region-by-html org-export-region-as-html
3800 org-export-as-html))
3801 (org-autoload "org-docbook"
3802 '(org-export-as-docbook-batch org-export-as-docbook-to-buffer
3803 org-replace-region-by-docbook org-export-region-as-docbook
3804 org-export-as-docbook-pdf org-export-as-docbook-pdf-and-open
3805 org-export-as-docbook))
3806 (org-autoload "org-icalendar"
3807 '(org-export-icalendar-this-file
3808 org-export-icalendar-all-agenda-files
3809 org-export-icalendar-combine-agenda-files))
3810 (org-autoload "org-xoxo" '(org-export-as-xoxo))
3811 (org-autoload "org-beamer" '(org-beamer-mode org-beamer-sectioning)))
3813 ;; Declare and autoload functions from org-agenda.el
3815 (eval-and-compile
3816 (org-autoload "org-agenda"
3817 '(org-agenda org-agenda-list org-search-view
3818 org-todo-list org-tags-view org-agenda-list-stuck-projects
3819 org-diary org-agenda-to-appt
3820 org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item)))
3822 ;; Autoload org-remember
3824 (eval-and-compile
3825 (org-autoload "org-remember"
3826 '(org-remember-insinuate org-remember-annotation
3827 org-remember-apply-template org-remember org-remember-handler)))
3829 (eval-and-compile
3830 (org-autoload "org-capture"
3831 '(org-capture org-capture-insert-template-here
3832 org-capture-import-remember-templates)))
3834 ;; Autoload org-clock.el
3836 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock"
3837 (beg end))
3838 (declare-function org-clock-update-mode-line "org-clock" ())
3839 (declare-function org-resolve-clocks "org-clock"
3840 (&optional also-non-dangling-p prompt last-valid))
3841 (defvar org-clock-start-time)
3842 (defvar org-clock-marker (make-marker)
3843 "Marker recording the last clock-in.")
3844 (defvar org-clock-hd-marker (make-marker)
3845 "Marker recording the last clock-in, but the headline position.")
3846 (defvar org-clock-heading ""
3847 "The heading of the current clock entry.")
3848 (defun org-clock-is-active ()
3849 "Return non-nil if clock is currently running.
3850 The return value is actually the clock marker."
3851 (marker-buffer org-clock-marker))
3853 (eval-and-compile
3854 (org-autoload
3855 "org-clock"
3856 '(org-clock-in org-clock-out org-clock-cancel
3857 org-clock-goto org-clock-sum org-clock-display
3858 org-clock-remove-overlays org-clock-report
3859 org-clocktable-shift org-dblock-write:clocktable
3860 org-get-clocktable org-resolve-clocks)))
3862 (defun org-clock-update-time-maybe ()
3863 "If this is a CLOCK line, update it and return t.
3864 Otherwise, return nil."
3865 (interactive)
3866 (save-excursion
3867 (beginning-of-line 1)
3868 (skip-chars-forward " \t")
3869 (when (looking-at org-clock-string)
3870 (let ((re (concat "[ \t]*" org-clock-string
3871 " *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
3872 "\\([ \t]*=>.*\\)?\\)?"))
3873 ts te h m s neg)
3874 (cond
3875 ((not (looking-at re))
3876 nil)
3877 ((not (match-end 2))
3878 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
3879 (> org-clock-marker (point))
3880 (<= org-clock-marker (point-at-eol)))
3881 ;; The clock is running here
3882 (setq org-clock-start-time
3883 (apply 'encode-time
3884 (org-parse-time-string (match-string 1))))
3885 (org-clock-update-mode-line)))
3887 (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
3888 (end-of-line 1)
3889 (setq ts (match-string 1)
3890 te (match-string 3))
3891 (setq s (- (org-float-time
3892 (apply 'encode-time (org-parse-time-string te)))
3893 (org-float-time
3894 (apply 'encode-time (org-parse-time-string ts))))
3895 neg (< s 0)
3896 s (abs s)
3897 h (floor (/ s 3600))
3898 s (- s (* 3600 h))
3899 m (floor (/ s 60))
3900 s (- s (* 60 s)))
3901 (insert " => " (format (if neg "-%d:%02d" "%2d:%02d") h m))
3902 t))))))
3904 (defun org-check-running-clock ()
3905 "Check if the current buffer contains the running clock.
3906 If yes, offer to stop it and to save the buffer with the changes."
3907 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
3908 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
3909 (buffer-name))))
3910 (org-clock-out)
3911 (when (y-or-n-p "Save changed buffer?")
3912 (save-buffer))))
3914 (defun org-clocktable-try-shift (dir n)
3915 "Check if this line starts a clock table, if yes, shift the time block."
3916 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
3917 (org-clocktable-shift dir n)))
3919 ;; Autoload org-timer.el
3921 (eval-and-compile
3922 (org-autoload
3923 "org-timer"
3924 '(org-timer-start org-timer org-timer-item
3925 org-timer-change-times-in-region
3926 org-timer-set-timer
3927 org-timer-reset-timers
3928 org-timer-show-remaining-time)))
3930 ;; Autoload org-feed.el
3932 (eval-and-compile
3933 (org-autoload
3934 "org-feed"
3935 '(org-feed-update org-feed-update-all org-feed-goto-inbox)))
3938 ;; Autoload org-indent.el
3940 ;; Define the variable already here, to make sure we have it.
3941 (defvar org-indent-mode nil
3942 "Non-nil if Org-Indent mode is enabled.
3943 Use the command `org-indent-mode' to change this variable.")
3945 (eval-and-compile
3946 (org-autoload
3947 "org-indent"
3948 '(org-indent-mode)))
3950 ;; Autoload org-mobile.el
3952 (eval-and-compile
3953 (org-autoload
3954 "org-mobile"
3955 '(org-mobile-push org-mobile-pull org-mobile-create-sumo-agenda)))
3957 ;; Autoload archiving code
3958 ;; The stuff that is needed for cycling and tags has to be defined here.
3960 (defgroup org-archive nil
3961 "Options concerning archiving in Org-mode."
3962 :tag "Org Archive"
3963 :group 'org-structure)
3965 (defcustom org-archive-location "%s_archive::"
3966 "The location where subtrees should be archived.
3968 The value of this variable is a string, consisting of two parts,
3969 separated by a double-colon. The first part is a filename and
3970 the second part is a headline.
3972 When the filename is omitted, archiving happens in the same file.
3973 %s in the filename will be replaced by the current file
3974 name (without the directory part). Archiving to a different file
3975 is useful to keep archived entries from contributing to the
3976 Org-mode Agenda.
3978 The archived entries will be filed as subtrees of the specified
3979 headline. When the headline is omitted, the subtrees are simply
3980 filed away at the end of the file, as top-level entries. Also in
3981 the heading you can use %s to represent the file name, this can be
3982 useful when using the same archive for a number of different files.
3984 Here are a few examples:
3985 \"%s_archive::\"
3986 If the current file is Projects.org, archive in file
3987 Projects.org_archive, as top-level trees. This is the default.
3989 \"::* Archived Tasks\"
3990 Archive in the current file, under the top-level headline
3991 \"* Archived Tasks\".
3993 \"~/org/archive.org::\"
3994 Archive in file ~/org/archive.org (absolute path), as top-level trees.
3996 \"~/org/archive.org::From %s\"
3997 Archive in file ~/org/archive.org (absolute path), under headlines
3998 \"From FILENAME\" where file name is the current file name.
4000 \"basement::** Finished Tasks\"
4001 Archive in file ./basement (relative path), as level 3 trees
4002 below the level 2 heading \"** Finished Tasks\".
4004 You may set this option on a per-file basis by adding to the buffer a
4005 line like
4007 #+ARCHIVE: basement::** Finished Tasks
4009 You may also define it locally for a subtree by setting an ARCHIVE property
4010 in the entry. If such a property is found in an entry, or anywhere up
4011 the hierarchy, it will be used."
4012 :group 'org-archive
4013 :type 'string)
4015 (defcustom org-archive-tag "ARCHIVE"
4016 "The tag that marks a subtree as archived.
4017 An archived subtree does not open during visibility cycling, and does
4018 not contribute to the agenda listings.
4019 After changing this, font-lock must be restarted in the relevant buffers to
4020 get the proper fontification."
4021 :group 'org-archive
4022 :group 'org-keywords
4023 :type 'string)
4025 (defcustom org-agenda-skip-archived-trees t
4026 "Non-nil means the agenda will skip any items located in archived trees.
4027 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4028 variable is no longer recommended, you should leave it at the value t.
4029 Instead, use the key `v' to cycle the archives-mode in the agenda."
4030 :group 'org-archive
4031 :group 'org-agenda-skip
4032 :type 'boolean)
4034 (defcustom org-columns-skip-archived-trees t
4035 "Non-nil means ignore archived trees when creating column view."
4036 :group 'org-archive
4037 :group 'org-properties
4038 :type 'boolean)
4040 (defcustom org-cycle-open-archived-trees nil
4041 "Non-nil means `org-cycle' will open archived trees.
4042 An archived tree is a tree marked with the tag ARCHIVE.
4043 When nil, archived trees will stay folded. You can still open them with
4044 normal outline commands like `show-all', but not with the cycling commands."
4045 :group 'org-archive
4046 :group 'org-cycle
4047 :type 'boolean)
4049 (defcustom org-sparse-tree-open-archived-trees nil
4050 "Non-nil means sparse tree construction shows matches in archived trees.
4051 When nil, matches in these trees are highlighted, but the trees are kept in
4052 collapsed state."
4053 :group 'org-archive
4054 :group 'org-sparse-trees
4055 :type 'boolean)
4057 (defun org-cycle-hide-archived-subtrees (state)
4058 "Re-hide all archived subtrees after a visibility state change."
4059 (when (and (not org-cycle-open-archived-trees)
4060 (not (memq state '(overview folded))))
4061 (save-excursion
4062 (let* ((globalp (memq state '(contents all)))
4063 (beg (if globalp (point-min) (point)))
4064 (end (if globalp (point-max) (org-end-of-subtree t))))
4065 (org-hide-archived-subtrees beg end)
4066 (goto-char beg)
4067 (if (looking-at (concat ".*:" org-archive-tag ":"))
4068 (message "%s" (substitute-command-keys
4069 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4071 (defun org-force-cycle-archived ()
4072 "Cycle subtree even if it is archived."
4073 (interactive)
4074 (setq this-command 'org-cycle)
4075 (let ((org-cycle-open-archived-trees t))
4076 (call-interactively 'org-cycle)))
4078 (defun org-hide-archived-subtrees (beg end)
4079 "Re-hide all archived subtrees after a visibility state change."
4080 (save-excursion
4081 (let* ((re (concat ":" org-archive-tag ":")))
4082 (goto-char beg)
4083 (while (re-search-forward re end t)
4084 (when (org-on-heading-p)
4085 (org-flag-subtree t)
4086 (org-end-of-subtree t))))))
4088 (defun org-flag-subtree (flag)
4089 (save-excursion
4090 (org-back-to-heading t)
4091 (outline-end-of-heading)
4092 (outline-flag-region (point)
4093 (progn (org-end-of-subtree t) (point))
4094 flag)))
4096 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4098 (eval-and-compile
4099 (org-autoload "org-archive"
4100 '(org-add-archive-files org-archive-subtree
4101 org-archive-to-archive-sibling org-toggle-archive-tag
4102 org-archive-subtree-default
4103 org-archive-subtree-default-with-confirmation)))
4105 ;; Autoload Column View Code
4107 (declare-function org-columns-number-to-string "org-colview")
4108 (declare-function org-columns-get-format-and-top-level "org-colview")
4109 (declare-function org-columns-compute "org-colview")
4111 (org-autoload (if (featurep 'xemacs) "org-colview-xemacs" "org-colview")
4112 '(org-columns-number-to-string org-columns-get-format-and-top-level
4113 org-columns-compute org-agenda-columns org-columns-remove-overlays
4114 org-columns org-insert-columns-dblock org-dblock-write:columnview))
4116 ;; Autoload ID code
4118 (declare-function org-id-store-link "org-id")
4119 (declare-function org-id-locations-load "org-id")
4120 (declare-function org-id-locations-save "org-id")
4121 (defvar org-id-track-globally)
4122 (org-autoload "org-id"
4123 '(org-id-get-create org-id-new org-id-copy org-id-get
4124 org-id-get-with-outline-path-completion
4125 org-id-get-with-outline-drilling org-id-store-link
4126 org-id-goto org-id-find org-id-store-link))
4128 ;; Autoload Plotting Code
4130 (org-autoload "org-plot"
4131 '(org-plot/gnuplot))
4133 ;;; Variables for pre-computed regular expressions, all buffer local
4135 (defvar org-drawer-regexp nil
4136 "Matches first line of a hidden block.")
4137 (make-variable-buffer-local 'org-drawer-regexp)
4138 (defvar org-todo-regexp nil
4139 "Matches any of the TODO state keywords.")
4140 (make-variable-buffer-local 'org-todo-regexp)
4141 (defvar org-not-done-regexp nil
4142 "Matches any of the TODO state keywords except the last one.")
4143 (make-variable-buffer-local 'org-not-done-regexp)
4144 (defvar org-not-done-heading-regexp nil
4145 "Matches a TODO headline that is not done.")
4146 (make-variable-buffer-local 'org-not-done-regexp)
4147 (defvar org-todo-line-regexp nil
4148 "Matches a headline and puts TODO state into group 2 if present.")
4149 (make-variable-buffer-local 'org-todo-line-regexp)
4150 (defvar org-complex-heading-regexp nil
4151 "Matches a headline and puts everything into groups:
4152 group 1: the stars
4153 group 2: The todo keyword, maybe
4154 group 3: Priority cookie
4155 group 4: True headline
4156 group 5: Tags")
4157 (make-variable-buffer-local 'org-complex-heading-regexp)
4158 (defvar org-complex-heading-regexp-format nil
4159 "Printf format to make regexp to match an exact headline.
4160 This regexp will match the headline of any node which hase the exact
4161 headline text that is put into the format, but may have any TODO state,
4162 priority and tags.")
4163 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4164 (defvar org-todo-line-tags-regexp nil
4165 "Matches a headline and puts TODO state into group 2 if present.
4166 Also put tags into group 4 if tags are present.")
4167 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4168 (defvar org-nl-done-regexp nil
4169 "Matches newline followed by a headline with the DONE keyword.")
4170 (make-variable-buffer-local 'org-nl-done-regexp)
4171 (defvar org-looking-at-done-regexp nil
4172 "Matches the DONE keyword a point.")
4173 (make-variable-buffer-local 'org-looking-at-done-regexp)
4174 (defvar org-ds-keyword-length 12
4175 "Maximum length of the Deadline and SCHEDULED keywords.")
4176 (make-variable-buffer-local 'org-ds-keyword-length)
4177 (defvar org-deadline-regexp nil
4178 "Matches the DEADLINE keyword.")
4179 (make-variable-buffer-local 'org-deadline-regexp)
4180 (defvar org-deadline-time-regexp nil
4181 "Matches the DEADLINE keyword together with a time stamp.")
4182 (make-variable-buffer-local 'org-deadline-time-regexp)
4183 (defvar org-deadline-line-regexp nil
4184 "Matches the DEADLINE keyword and the rest of the line.")
4185 (make-variable-buffer-local 'org-deadline-line-regexp)
4186 (defvar org-scheduled-regexp nil
4187 "Matches the SCHEDULED keyword.")
4188 (make-variable-buffer-local 'org-scheduled-regexp)
4189 (defvar org-scheduled-time-regexp nil
4190 "Matches the SCHEDULED keyword together with a time stamp.")
4191 (make-variable-buffer-local 'org-scheduled-time-regexp)
4192 (defvar org-closed-time-regexp nil
4193 "Matches the CLOSED keyword together with a time stamp.")
4194 (make-variable-buffer-local 'org-closed-time-regexp)
4196 (defvar org-keyword-time-regexp nil
4197 "Matches any of the 4 keywords, together with the time stamp.")
4198 (make-variable-buffer-local 'org-keyword-time-regexp)
4199 (defvar org-keyword-time-not-clock-regexp nil
4200 "Matches any of the 3 keywords, together with the time stamp.")
4201 (make-variable-buffer-local 'org-keyword-time-not-clock-regexp)
4202 (defvar org-maybe-keyword-time-regexp nil
4203 "Matches a timestamp, possibly preceded by a keyword.")
4204 (make-variable-buffer-local 'org-maybe-keyword-time-regexp)
4205 (defvar org-planning-or-clock-line-re nil
4206 "Matches a line with planning or clock info.")
4207 (make-variable-buffer-local 'org-planning-or-clock-line-re)
4208 (defvar org-all-time-keywords nil
4209 "List of time keywords.")
4210 (make-variable-buffer-local 'org-all-time-keywords)
4212 (defconst org-plain-time-of-day-regexp
4213 (concat
4214 "\\(\\<[012]?[0-9]"
4215 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4216 "\\(--?"
4217 "\\(\\<[012]?[0-9]"
4218 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4219 "\\)?")
4220 "Regular expression to match a plain time or time range.
4221 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4222 groups carry important information:
4223 0 the full match
4224 1 the first time, range or not
4225 8 the second time, if it is a range.")
4227 (defconst org-plain-time-extension-regexp
4228 (concat
4229 "\\(\\<[012]?[0-9]"
4230 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4231 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4232 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4233 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4234 groups carry important information:
4235 0 the full match
4236 7 hours of duration
4237 9 minutes of duration")
4239 (defconst org-stamp-time-of-day-regexp
4240 (concat
4241 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4242 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4243 "\\(--?"
4244 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4245 "Regular expression to match a timestamp time or time range.
4246 After a match, the following groups carry important information:
4247 0 the full match
4248 1 date plus weekday, for back referencing to make sure both times are on the same day
4249 2 the first time, range or not
4250 4 the second time, if it is a range.")
4252 (defconst org-startup-options
4253 '(("fold" org-startup-folded t)
4254 ("overview" org-startup-folded t)
4255 ("nofold" org-startup-folded nil)
4256 ("showall" org-startup-folded nil)
4257 ("showeverything" org-startup-folded showeverything)
4258 ("content" org-startup-folded content)
4259 ("indent" org-startup-indented t)
4260 ("noindent" org-startup-indented nil)
4261 ("hidestars" org-hide-leading-stars t)
4262 ("showstars" org-hide-leading-stars nil)
4263 ("odd" org-odd-levels-only t)
4264 ("oddeven" org-odd-levels-only nil)
4265 ("align" org-startup-align-all-tables t)
4266 ("noalign" org-startup-align-all-tables nil)
4267 ("inlineimages" org-startup-with-inline-images t)
4268 ("noinlineimages" org-startup-with-inline-images nil)
4269 ("customtime" org-display-custom-times t)
4270 ("logdone" org-log-done time)
4271 ("lognotedone" org-log-done note)
4272 ("nologdone" org-log-done nil)
4273 ("lognoteclock-out" org-log-note-clock-out t)
4274 ("nolognoteclock-out" org-log-note-clock-out nil)
4275 ("logrepeat" org-log-repeat state)
4276 ("lognoterepeat" org-log-repeat note)
4277 ("nologrepeat" org-log-repeat nil)
4278 ("logreschedule" org-log-reschedule time)
4279 ("lognotereschedule" org-log-reschedule note)
4280 ("nologreschedule" org-log-reschedule nil)
4281 ("logredeadline" org-log-redeadline time)
4282 ("lognoteredeadline" org-log-redeadline note)
4283 ("nologredeadline" org-log-redeadline nil)
4284 ("logrefile" org-log-refile time)
4285 ("lognoterefile" org-log-refile note)
4286 ("nologrefile" org-log-refile nil)
4287 ("fninline" org-footnote-define-inline t)
4288 ("nofninline" org-footnote-define-inline nil)
4289 ("fnlocal" org-footnote-section nil)
4290 ("fnauto" org-footnote-auto-label t)
4291 ("fnprompt" org-footnote-auto-label nil)
4292 ("fnconfirm" org-footnote-auto-label confirm)
4293 ("fnplain" org-footnote-auto-label plain)
4294 ("fnadjust" org-footnote-auto-adjust t)
4295 ("nofnadjust" org-footnote-auto-adjust nil)
4296 ("constcgs" constants-unit-system cgs)
4297 ("constSI" constants-unit-system SI)
4298 ("noptag" org-tag-persistent-alist nil)
4299 ("hideblocks" org-hide-block-startup t)
4300 ("nohideblocks" org-hide-block-startup nil)
4301 ("beamer" org-startup-with-beamer-mode t)
4302 ("entitiespretty" org-pretty-entities t)
4303 ("entitiesplain" org-pretty-entities nil))
4304 "Variable associated with STARTUP options for org-mode.
4305 Each element is a list of three items: The startup options as written
4306 in the #+STARTUP line, the corresponding variable, and the value to
4307 set this variable to if the option is found. An optional forth element PUSH
4308 means to push this value onto the list in the variable.")
4310 (defun org-set-regexps-and-options ()
4311 "Precompute regular expressions for current buffer."
4312 (when (org-mode-p)
4313 (org-set-local 'org-todo-kwd-alist nil)
4314 (org-set-local 'org-todo-key-alist nil)
4315 (org-set-local 'org-todo-key-trigger nil)
4316 (org-set-local 'org-todo-keywords-1 nil)
4317 (org-set-local 'org-done-keywords nil)
4318 (org-set-local 'org-todo-heads nil)
4319 (org-set-local 'org-todo-sets nil)
4320 (org-set-local 'org-todo-log-states nil)
4321 (org-set-local 'org-file-properties nil)
4322 (org-set-local 'org-file-tags nil)
4323 (let ((re (org-make-options-regexp
4324 '("CATEGORY" "TODO" "COLUMNS"
4325 "STARTUP" "ARCHIVE" "FILETAGS" "TAGS" "LINK" "PRIORITIES"
4326 "CONSTANTS" "PROPERTY" "DRAWERS" "SETUPFILE" "LATEX_CLASS"
4327 "OPTIONS")
4328 "\\(?:[a-zA-Z][0-9a-zA-Z_]*_TODO\\)"))
4329 (splitre "[ \t]+")
4330 (scripts org-use-sub-superscripts)
4331 kwds kws0 kwsa key log value cat arch tags const links hw dws
4332 tail sep kws1 prio props ftags drawers beamer-p
4333 ext-setup-or-nil setup-contents (start 0))
4334 (save-excursion
4335 (save-restriction
4336 (widen)
4337 (goto-char (point-min))
4338 (while (or (and ext-setup-or-nil
4339 (string-match re ext-setup-or-nil start)
4340 (setq start (match-end 0)))
4341 (and (setq ext-setup-or-nil nil start 0)
4342 (re-search-forward re nil t)))
4343 (setq key (upcase (match-string 1 ext-setup-or-nil))
4344 value (org-match-string-no-properties 2 ext-setup-or-nil))
4345 (if (stringp value) (setq value (org-trim value)))
4346 (cond
4347 ((equal key "CATEGORY")
4348 (setq cat value))
4349 ((member key '("SEQ_TODO" "TODO"))
4350 (push (cons 'sequence (org-split-string value splitre)) kwds))
4351 ((equal key "TYP_TODO")
4352 (push (cons 'type (org-split-string value splitre)) kwds))
4353 ((string-match "\\`\\([a-zA-Z][0-9a-zA-Z_]*\\)_TODO\\'" key)
4354 ;; general TODO-like setup
4355 (push (cons (intern (downcase (match-string 1 key)))
4356 (org-split-string value splitre)) kwds))
4357 ((equal key "TAGS")
4358 (setq tags (append tags (if tags '("\\n") nil)
4359 (org-split-string value splitre))))
4360 ((equal key "COLUMNS")
4361 (org-set-local 'org-columns-default-format value))
4362 ((equal key "LINK")
4363 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value)
4364 (push (cons (match-string 1 value)
4365 (org-trim (match-string 2 value)))
4366 links)))
4367 ((equal key "PRIORITIES")
4368 (setq prio (org-split-string value " +")))
4369 ((equal key "PROPERTY")
4370 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
4371 (push (cons (match-string 1 value) (match-string 2 value))
4372 props)))
4373 ((equal key "FILETAGS")
4374 (when (string-match "\\S-" value)
4375 (setq ftags
4376 (append
4377 ftags
4378 (apply 'append
4379 (mapcar (lambda (x) (org-split-string x ":"))
4380 (org-split-string value)))))))
4381 ((equal key "DRAWERS")
4382 (setq drawers (org-split-string value splitre)))
4383 ((equal key "CONSTANTS")
4384 (setq const (append const (org-split-string value splitre))))
4385 ((equal key "STARTUP")
4386 (let ((opts (org-split-string value splitre))
4387 l var val)
4388 (while (setq l (pop opts))
4389 (when (setq l (assoc l org-startup-options))
4390 (setq var (nth 1 l) val (nth 2 l))
4391 (if (not (nth 3 l))
4392 (set (make-local-variable var) val)
4393 (if (not (listp (symbol-value var)))
4394 (set (make-local-variable var) nil))
4395 (set (make-local-variable var) (symbol-value var))
4396 (add-to-list var val))))))
4397 ((equal key "ARCHIVE")
4398 (setq arch value)
4399 (remove-text-properties 0 (length arch)
4400 '(face t fontified t) arch))
4401 ((equal key "LATEX_CLASS")
4402 (setq beamer-p (equal value "beamer")))
4403 ((equal key "OPTIONS")
4404 (if (string-match "\\([ \t]\\|\\`\\)\\^:\\(t\\|nil\\|{}\\)" value)
4405 (setq scripts (read (match-string 2 value)))))
4406 ((equal key "SETUPFILE")
4407 (setq setup-contents (org-file-contents
4408 (expand-file-name
4409 (org-remove-double-quotes value))
4410 'noerror))
4411 (if (not ext-setup-or-nil)
4412 (setq ext-setup-or-nil setup-contents start 0)
4413 (setq ext-setup-or-nil
4414 (concat (substring ext-setup-or-nil 0 start)
4415 "\n" setup-contents "\n"
4416 (substring ext-setup-or-nil start)))))
4417 ))))
4418 (org-set-local 'org-use-sub-superscripts scripts)
4419 (when cat
4420 (org-set-local 'org-category (intern cat))
4421 (push (cons "CATEGORY" cat) props))
4422 (when prio
4423 (if (< (length prio) 3) (setq prio '("A" "C" "B")))
4424 (setq prio (mapcar 'string-to-char prio))
4425 (org-set-local 'org-highest-priority (nth 0 prio))
4426 (org-set-local 'org-lowest-priority (nth 1 prio))
4427 (org-set-local 'org-default-priority (nth 2 prio)))
4428 (and props (org-set-local 'org-file-properties (nreverse props)))
4429 (and ftags (org-set-local 'org-file-tags
4430 (mapcar 'org-add-prop-inherited ftags)))
4431 (and drawers (org-set-local 'org-drawers drawers))
4432 (and arch (org-set-local 'org-archive-location arch))
4433 (and links (setq org-link-abbrev-alist-local (nreverse links)))
4434 ;; Process the TODO keywords
4435 (unless kwds
4436 ;; Use the global values as if they had been given locally.
4437 (setq kwds (default-value 'org-todo-keywords))
4438 (if (stringp (car kwds))
4439 (setq kwds (list (cons org-todo-interpretation
4440 (default-value 'org-todo-keywords)))))
4441 (setq kwds (reverse kwds)))
4442 (setq kwds (nreverse kwds))
4443 (let (inter kws kw)
4444 (while (setq kws (pop kwds))
4445 (let ((kws (or
4446 (run-hook-with-args-until-success
4447 'org-todo-setup-filter-hook kws)
4448 kws)))
4449 (setq inter (pop kws) sep (member "|" kws)
4450 kws0 (delete "|" (copy-sequence kws))
4451 kwsa nil
4452 kws1 (mapcar
4453 (lambda (x)
4454 ;; 1 2
4455 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x)
4456 (progn
4457 (setq kw (match-string 1 x)
4458 key (and (match-end 2) (match-string 2 x))
4459 log (org-extract-log-state-settings x))
4460 (push (cons kw (and key (string-to-char key))) kwsa)
4461 (and log (push log org-todo-log-states))
4463 (error "Invalid TODO keyword %s" x)))
4464 kws0)
4465 kwsa (if kwsa (append '((:startgroup))
4466 (nreverse kwsa)
4467 '((:endgroup))))
4468 hw (car kws1)
4469 dws (if sep (org-remove-keyword-keys (cdr sep)) (last kws1))
4470 tail (list inter hw (car dws) (org-last dws))))
4471 (add-to-list 'org-todo-heads hw 'append)
4472 (push kws1 org-todo-sets)
4473 (setq org-done-keywords (append org-done-keywords dws nil))
4474 (setq org-todo-key-alist (append org-todo-key-alist kwsa))
4475 (mapc (lambda (x) (push (cons x tail) org-todo-kwd-alist)) kws1)
4476 (setq org-todo-keywords-1 (append org-todo-keywords-1 kws1 nil)))
4477 (setq org-todo-sets (nreverse org-todo-sets)
4478 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
4479 org-todo-key-trigger (delq nil (mapcar 'cdr org-todo-key-alist))
4480 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist)))
4481 ;; Process the constants
4482 (when const
4483 (let (e cst)
4484 (while (setq e (pop const))
4485 (if (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)" e)
4486 (push (cons (match-string 1 e) (match-string 2 e)) cst)))
4487 (setq org-table-formula-constants-local cst)))
4489 ;; Process the tags.
4490 (when tags
4491 (let (e tgs)
4492 (while (setq e (pop tags))
4493 (cond
4494 ((equal e "{") (push '(:startgroup) tgs))
4495 ((equal e "}") (push '(:endgroup) tgs))
4496 ((equal e "\\n") (push '(:newline) tgs))
4497 ((string-match (org-re "^\\([[:alnum:]_@#%]+\\)(\\(.\\))$") e)
4498 (push (cons (match-string 1 e)
4499 (string-to-char (match-string 2 e)))
4500 tgs))
4501 (t (push (list e) tgs))))
4502 (org-set-local 'org-tag-alist nil)
4503 (while (setq e (pop tgs))
4504 (or (and (stringp (car e))
4505 (assoc (car e) org-tag-alist))
4506 (push e org-tag-alist)))))
4508 ;; Compute the regular expressions and other local variables
4509 (if (not org-done-keywords)
4510 (setq org-done-keywords (and org-todo-keywords-1
4511 (list (org-last org-todo-keywords-1)))))
4512 (setq org-ds-keyword-length (+ 2 (max (length org-deadline-string)
4513 (length org-scheduled-string)
4514 (length org-clock-string)
4515 (length org-closed-string)))
4516 org-drawer-regexp
4517 (concat "^[ \t]*:\\("
4518 (mapconcat 'regexp-quote org-drawers "\\|")
4519 "\\):[ \t]*$")
4520 org-not-done-keywords
4521 (org-delete-all org-done-keywords (copy-sequence org-todo-keywords-1))
4522 org-todo-regexp
4523 (concat "\\<\\(" (mapconcat 'regexp-quote org-todo-keywords-1
4524 "\\|") "\\)\\>")
4525 org-not-done-regexp
4526 (concat "\\<\\("
4527 (mapconcat 'regexp-quote org-not-done-keywords "\\|")
4528 "\\)\\>")
4529 org-not-done-heading-regexp
4530 (concat "^\\(\\*+\\)[ \t]+\\("
4531 (mapconcat 'regexp-quote org-not-done-keywords "\\|")
4532 "\\)\\>")
4533 org-todo-line-regexp
4534 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4535 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
4536 "\\)\\>\\)?[ \t]*\\(.*\\)")
4537 org-complex-heading-regexp
4538 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4539 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
4540 "\\)\\>\\)?\\(?:[ \t]*\\(\\[#.\\]\\)\\)?[ \t]*\\(.*?\\)"
4541 "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?[ \t]*$")
4542 org-complex-heading-regexp-format
4543 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4544 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
4545 "\\)\\>\\)?"
4546 "\\(?:[ \t]*\\(\\[#.\\]\\)\\)?"
4547 "\\(?:[ \t]*\\(?:\\[[0-9%%/]+\\]\\)\\)?" ;; stats cookie
4548 "[ \t]*\\(%s\\)"
4549 "\\(?:[ \t]*\\(?:\\[[0-9%%/]+\\]\\)\\)?" ;; stats cookie
4550 "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?[ \t]*$")
4551 org-nl-done-regexp
4552 (concat "\n\\*+[ \t]+"
4553 "\\(?:" (mapconcat 'regexp-quote org-done-keywords "\\|")
4554 "\\)" "\\>")
4555 org-todo-line-tags-regexp
4556 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4557 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
4558 (org-re
4559 "\\)\\>\\)? *\\(.*?\\([ \t]:[[:alnum:]:_@#%]+:[ \t]*\\)?$\\)"))
4560 org-looking-at-done-regexp
4561 (concat "^" "\\(?:"
4562 (mapconcat 'regexp-quote org-done-keywords "\\|") "\\)"
4563 "\\>")
4564 org-deadline-regexp (concat "\\<" org-deadline-string)
4565 org-deadline-time-regexp
4566 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
4567 org-deadline-line-regexp
4568 (concat "\\<\\(" org-deadline-string "\\).*")
4569 org-scheduled-regexp
4570 (concat "\\<" org-scheduled-string)
4571 org-scheduled-time-regexp
4572 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
4573 org-closed-time-regexp
4574 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
4575 org-keyword-time-regexp
4576 (concat "\\<\\(" org-scheduled-string
4577 "\\|" org-deadline-string
4578 "\\|" org-closed-string
4579 "\\|" org-clock-string "\\)"
4580 " *[[<]\\([^]>]+\\)[]>]")
4581 org-keyword-time-not-clock-regexp
4582 (concat "\\<\\(" org-scheduled-string
4583 "\\|" org-deadline-string
4584 "\\|" org-closed-string
4585 "\\)"
4586 " *[[<]\\([^]>]+\\)[]>]")
4587 org-maybe-keyword-time-regexp
4588 (concat "\\(\\<\\(" org-scheduled-string
4589 "\\|" org-deadline-string
4590 "\\|" org-closed-string
4591 "\\|" org-clock-string "\\)\\)?"
4592 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^]\r\n>]*?[]>]\\|<%%([^\r\n>]*>\\)")
4593 org-planning-or-clock-line-re
4594 (concat "\\(?:^[ \t]*\\(" org-scheduled-string
4595 "\\|" org-deadline-string
4596 "\\|" org-closed-string "\\|" org-clock-string
4597 "\\)\\>\\)")
4598 org-all-time-keywords
4599 (mapcar (lambda (w) (substring w 0 -1))
4600 (list org-scheduled-string org-deadline-string
4601 org-clock-string org-closed-string))
4603 (org-compute-latex-and-specials-regexp)
4604 (org-set-font-lock-defaults))))
4606 (defun org-file-contents (file &optional noerror)
4607 "Return the contents of FILE, as a string."
4608 (if (or (not file)
4609 (not (file-readable-p file)))
4610 (if noerror
4611 (progn
4612 (message "Cannot read file \"%s\"" file)
4613 (ding) (sit-for 2)
4615 (error "Cannot read file \"%s\"" file))
4616 (with-temp-buffer
4617 (insert-file-contents file)
4618 (buffer-string))))
4620 (defun org-extract-log-state-settings (x)
4621 "Extract the log state setting from a TODO keyword string.
4622 This will extract info from a string like \"WAIT(w@/!)\"."
4623 (let (kw key log1 log2)
4624 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
4625 (setq kw (match-string 1 x)
4626 key (and (match-end 2) (match-string 2 x))
4627 log1 (and (match-end 3) (match-string 3 x))
4628 log2 (and (match-end 4) (match-string 4 x)))
4629 (and (or log1 log2)
4630 (list kw
4631 (and log1 (if (equal log1 "!") 'time 'note))
4632 (and log2 (if (equal log2 "!") 'time 'note)))))))
4634 (defun org-remove-keyword-keys (list)
4635 "Remove a pair of parenthesis at the end of each string in LIST."
4636 (mapcar (lambda (x)
4637 (if (string-match "(.*)$" x)
4638 (substring x 0 (match-beginning 0))
4640 list))
4642 (defun org-assign-fast-keys (alist)
4643 "Assign fast keys to a keyword-key alist.
4644 Respect keys that are already there."
4645 (let (new e (alt ?0))
4646 (while (setq e (pop alist))
4647 (if (or (memq (car e) '(:newline :endgroup :startgroup))
4648 (cdr e)) ;; Key already assigned.
4649 (push e new)
4650 (let ((clist (string-to-list (downcase (car e))))
4651 (used (append new alist)))
4652 (when (= (car clist) ?@)
4653 (pop clist))
4654 (while (and clist (rassoc (car clist) used))
4655 (pop clist))
4656 (unless clist
4657 (while (rassoc alt used)
4658 (incf alt)))
4659 (push (cons (car e) (or (car clist) alt)) new))))
4660 (nreverse new)))
4662 ;;; Some variables used in various places
4664 (defvar org-window-configuration nil
4665 "Used in various places to store a window configuration.")
4666 (defvar org-selected-window nil
4667 "Used in various places to store a window configuration.")
4668 (defvar org-finish-function nil
4669 "Function to be called when `C-c C-c' is used.
4670 This is for getting out of special buffers like remember.")
4673 ;; FIXME: Occasionally check by commenting these, to make sure
4674 ;; no other functions uses these, forgetting to let-bind them.
4675 (defvar entry)
4676 (defvar last-state)
4677 (defvar date)
4679 ;; Defined somewhere in this file, but used before definition.
4680 (defvar org-entities) ;; defined in org-entities.el
4681 (defvar org-struct-menu)
4682 (defvar org-org-menu)
4683 (defvar org-tbl-menu)
4685 ;;;; Define the Org-mode
4687 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
4688 (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"))
4691 ;; We use a before-change function to check if a table might need
4692 ;; an update.
4693 (defvar org-table-may-need-update t
4694 "Indicates that a table might need an update.
4695 This variable is set by `org-before-change-function'.
4696 `org-table-align' sets it back to nil.")
4697 (defun org-before-change-function (beg end)
4698 "Every change indicates that a table might need an update."
4699 (setq org-table-may-need-update t))
4700 (defvar org-mode-map)
4701 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4702 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
4703 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
4704 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
4705 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
4706 (defvar org-table-buffer-is-an nil)
4708 ;; org-outline-regexp ought to be a defconst but is let-binding
4709 ;; in some places -- e.g. see the macro org-with-limited-levels
4710 (defvar org-outline-regexp "\\*+ ")
4711 (defconst org-outline-regexp-bol "^\\*+ ")
4713 ;;;###autoload
4714 (define-derived-mode org-mode outline-mode "Org"
4715 "Outline-based notes management and organizer, alias
4716 \"Carsten's outline-mode for keeping track of everything.\"
4718 Org-mode develops organizational tasks around a NOTES file which
4719 contains information about projects as plain text. Org-mode is
4720 implemented on top of outline-mode, which is ideal to keep the content
4721 of large files well structured. It supports ToDo items, deadlines and
4722 time stamps, which magically appear in the diary listing of the Emacs
4723 calendar. Tables are easily created with a built-in table editor.
4724 Plain text URL-like links connect to websites, emails (VM), Usenet
4725 messages (Gnus), BBDB entries, and any files related to the project.
4726 For printing and sharing of notes, an Org-mode file (or a part of it)
4727 can be exported as a structured ASCII or HTML file.
4729 The following commands are available:
4731 \\{org-mode-map}"
4733 ;; Get rid of Outline menus, they are not needed
4734 ;; Need to do this here because define-derived-mode sets up
4735 ;; the keymap so late. Still, it is a waste to call this each time
4736 ;; we switch another buffer into org-mode.
4737 (if (featurep 'xemacs)
4738 (when (boundp 'outline-mode-menu-heading)
4739 ;; Assume this is Greg's port, it uses easymenu
4740 (easy-menu-remove outline-mode-menu-heading)
4741 (easy-menu-remove outline-mode-menu-show)
4742 (easy-menu-remove outline-mode-menu-hide))
4743 (define-key org-mode-map [menu-bar headings] 'undefined)
4744 (define-key org-mode-map [menu-bar hide] 'undefined)
4745 (define-key org-mode-map [menu-bar show] 'undefined))
4747 (org-load-modules-maybe)
4748 (easy-menu-add org-org-menu)
4749 (easy-menu-add org-tbl-menu)
4750 (org-install-agenda-files-menu)
4751 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
4752 (add-to-invisibility-spec '(org-cwidth))
4753 (add-to-invisibility-spec '(org-hide-block . t))
4754 (when (featurep 'xemacs)
4755 (org-set-local 'line-move-ignore-invisible t))
4756 (org-set-local 'outline-regexp org-outline-regexp)
4757 (org-set-local 'outline-level 'org-outline-level)
4758 (when (and org-ellipsis
4759 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
4760 (fboundp 'make-glyph-code))
4761 (unless org-display-table
4762 (setq org-display-table (make-display-table)))
4763 (set-display-table-slot
4764 org-display-table 4
4765 (vconcat (mapcar
4766 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
4767 org-ellipsis)))
4768 (if (stringp org-ellipsis) org-ellipsis "..."))))
4769 (setq buffer-display-table org-display-table))
4770 (org-set-regexps-and-options)
4771 (when (and org-tag-faces (not org-tags-special-faces-re))
4772 ;; tag faces set outside customize.... force initialization.
4773 (org-set-tag-faces 'org-tag-faces org-tag-faces))
4774 ;; Calc embedded
4775 (org-set-local 'calc-embedded-open-mode "# ")
4776 (modify-syntax-entry ?@ "w")
4777 (if org-startup-truncated (setq truncate-lines t))
4778 (org-set-local 'font-lock-unfontify-region-function
4779 'org-unfontify-region)
4780 ;; Activate before-change-function
4781 (org-set-local 'org-table-may-need-update t)
4782 (org-add-hook 'before-change-functions 'org-before-change-function nil
4783 'local)
4784 ;; Check for running clock before killing a buffer
4785 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
4786 ;; Paragraphs and auto-filling
4787 (org-set-autofill-regexps)
4788 (setq indent-line-function 'org-indent-line-function)
4789 (org-update-radio-target-regexp)
4790 ;; Beginning/end of defun
4791 (org-set-local 'beginning-of-defun-function 'org-beginning-of-defun)
4792 (org-set-local 'end-of-defun-function 'org-end-of-defun)
4793 ;; Next error for sparse trees
4794 (org-set-local 'next-error-function 'org-occur-next-match)
4795 ;; Make sure dependence stuff works reliably, even for users who set it
4796 ;; too late :-(
4797 (if org-enforce-todo-dependencies
4798 (add-hook 'org-blocker-hook
4799 'org-block-todo-from-children-or-siblings-or-parent)
4800 (remove-hook 'org-blocker-hook
4801 'org-block-todo-from-children-or-siblings-or-parent))
4802 (if org-enforce-todo-checkbox-dependencies
4803 (add-hook 'org-blocker-hook
4804 'org-block-todo-from-checkboxes)
4805 (remove-hook 'org-blocker-hook
4806 'org-block-todo-from-checkboxes))
4808 ;; Comment characters
4809 (org-set-local 'comment-start "#")
4810 (org-set-local 'comment-padding " ")
4812 ;; Align options lines
4813 (org-set-local
4814 'align-mode-rules-list
4815 '((org-in-buffer-settings
4816 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
4817 (modes . '(org-mode)))))
4819 ;; Imenu
4820 (org-set-local 'imenu-create-index-function
4821 'org-imenu-get-tree)
4823 ;; Make isearch reveal context
4824 (if (or (featurep 'xemacs)
4825 (not (boundp 'outline-isearch-open-invisible-function)))
4826 ;; Emacs 21 and XEmacs make use of the hook
4827 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
4828 ;; Emacs 22 deals with this through a special variable
4829 (org-set-local 'outline-isearch-open-invisible-function
4830 (lambda (&rest ignore) (org-show-context 'isearch))))
4832 ;; Turn on org-beamer-mode?
4833 (and org-startup-with-beamer-mode (org-beamer-mode 1))
4835 ;; Setup the pcomplete hooks
4836 (set (make-local-variable 'pcomplete-command-completion-function)
4837 'org-pcomplete-initial)
4838 (set (make-local-variable 'pcomplete-command-name-function)
4839 'org-command-at-point)
4840 (set (make-local-variable 'pcomplete-default-completion-function)
4841 'ignore)
4842 (set (make-local-variable 'pcomplete-parse-arguments-function)
4843 'org-parse-arguments)
4844 (set (make-local-variable 'pcomplete-termination-string) "")
4845 (set (make-local-variable 'face-remapping-alist)
4846 '((default org-default)))
4848 ;; If empty file that did not turn on org-mode automatically, make it to.
4849 (if (and org-insert-mode-line-in-empty-file
4850 (org-called-interactively-p 'any)
4851 (= (point-min) (point-max)))
4852 (insert "# -*- mode: org -*-\n\n"))
4853 (unless org-inhibit-startup
4854 (when org-startup-align-all-tables
4855 (let ((bmp (buffer-modified-p)))
4856 (org-table-map-tables 'org-table-align 'quietly)
4857 (set-buffer-modified-p bmp)))
4858 (when org-startup-with-inline-images
4859 (org-display-inline-images))
4860 (when org-startup-indented
4861 (require 'org-indent)
4862 (org-indent-mode 1))
4863 (unless org-inhibit-startup-visibility-stuff
4864 (org-set-startup-visibility))))
4866 (when (fboundp 'abbrev-table-put)
4867 (abbrev-table-put org-mode-abbrev-table
4868 :parents (list text-mode-abbrev-table)))
4870 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
4872 (defun org-current-time ()
4873 "Current time, possibly rounded to `org-time-stamp-rounding-minutes'."
4874 (if (> (car org-time-stamp-rounding-minutes) 1)
4875 (let ((r (car org-time-stamp-rounding-minutes))
4876 (time (decode-time)))
4877 (apply 'encode-time
4878 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
4879 (nthcdr 2 time))))
4880 (current-time)))
4882 (defun org-today ()
4883 "Return today date, considering `org-extend-today-until'."
4884 (time-to-days
4885 (time-subtract (current-time)
4886 (list 0 (* 3600 org-extend-today-until) 0))))
4888 ;;;; Font-Lock stuff, including the activators
4890 (defvar org-mouse-map (make-sparse-keymap))
4891 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
4892 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
4893 (when org-mouse-1-follows-link
4894 (org-defkey org-mouse-map [follow-link] 'mouse-face))
4895 (when org-tab-follows-link
4896 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
4897 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
4899 (require 'font-lock)
4901 (defconst org-non-link-chars "]\t\n\r<>")
4902 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "news"
4903 "shell" "elisp" "doi" "message"))
4904 (defvar org-link-types-re nil
4905 "Matches a link that has a url-like prefix like \"http:\"")
4906 (defvar org-link-re-with-space nil
4907 "Matches a link with spaces, optional angular brackets around it.")
4908 (defvar org-link-re-with-space2 nil
4909 "Matches a link with spaces, optional angular brackets around it.")
4910 (defvar org-link-re-with-space3 nil
4911 "Matches a link with spaces, only for internal part in bracket links.")
4912 (defvar org-angle-link-re nil
4913 "Matches link with angular brackets, spaces are allowed.")
4914 (defvar org-plain-link-re nil
4915 "Matches plain link, without spaces.")
4916 (defvar org-bracket-link-regexp nil
4917 "Matches a link in double brackets.")
4918 (defvar org-bracket-link-analytic-regexp nil
4919 "Regular expression used to analyze links.
4920 Here is what the match groups contain after a match:
4921 1: http:
4922 2: http
4923 3: path
4924 4: [desc]
4925 5: desc")
4926 (defvar org-bracket-link-analytic-regexp++ nil
4927 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
4928 (defvar org-any-link-re nil
4929 "Regular expression matching any link.")
4931 (defcustom org-match-sexp-depth 3
4932 "Number of stacked braces for sub/superscript matching.
4933 This has to be set before loading org.el to be effective."
4934 :group 'org-export-translation ; ??????????????????????????/
4935 :type 'integer)
4937 (defun org-create-multibrace-regexp (left right n)
4938 "Create a regular expression which will match a balanced sexp.
4939 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
4940 as single character strings.
4941 The regexp returned will match the entire expression including the
4942 delimiters. It will also define a single group which contains the
4943 match except for the outermost delimiters. The maximum depth of
4944 stacked delimiters is N. Escaping delimiters is not possible."
4945 (let* ((nothing (concat "[^" left right "]*?"))
4946 (or "\\|")
4947 (re nothing)
4948 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
4949 (while (> n 1)
4950 (setq n (1- n)
4951 re (concat re or next)
4952 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
4953 (concat left "\\(" re "\\)" right)))
4955 (defvar org-match-substring-regexp
4956 (concat
4957 "\\([^\\]\\)\\([_^]\\)\\("
4958 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
4959 "\\|"
4960 "\\(" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
4961 "\\|"
4962 "\\(\\(?:\\*\\|[-+]?[^-+*!@#$%^_ \t\r\n,:\"?<>~;./{}=()]+\\)\\)\\)")
4963 "The regular expression matching a sub- or superscript.")
4965 (defvar org-match-substring-with-braces-regexp
4966 (concat
4967 "\\([^\\]\\)\\([_^]\\)\\("
4968 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
4969 "\\)")
4970 "The regular expression matching a sub- or superscript, forcing braces.")
4972 (defun org-make-link-regexps ()
4973 "Update the link regular expressions.
4974 This should be called after the variable `org-link-types' has changed."
4975 (setq org-link-types-re
4976 (concat
4977 "\\`\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):")
4978 org-link-re-with-space
4979 (concat
4980 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
4981 "\\([^" org-non-link-chars " ]"
4982 "[^" org-non-link-chars "]*"
4983 "[^" org-non-link-chars " ]\\)>?")
4984 org-link-re-with-space2
4985 (concat
4986 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
4987 "\\([^" org-non-link-chars " ]"
4988 "[^\t\n\r]*"
4989 "[^" org-non-link-chars " ]\\)>?")
4990 org-link-re-with-space3
4991 (concat
4992 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
4993 "\\([^" org-non-link-chars " ]"
4994 "[^\t\n\r]*\\)")
4995 org-angle-link-re
4996 (concat
4997 "<\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
4998 "\\([^" org-non-link-chars " ]"
4999 "[^" org-non-link-chars "]*"
5000 "\\)>")
5001 org-plain-link-re
5002 (concat
5003 "\\<\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5004 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5005 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5006 org-bracket-link-regexp
5007 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5008 org-bracket-link-analytic-regexp
5009 (concat
5010 "\\[\\["
5011 "\\(\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):\\)?"
5012 "\\([^]]+\\)"
5013 "\\]"
5014 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5015 "\\]")
5016 org-bracket-link-analytic-regexp++
5017 (concat
5018 "\\[\\["
5019 "\\(\\(" (mapconcat 'regexp-quote (cons "coderef" org-link-types) "\\|") "\\):\\)?"
5020 "\\([^]]+\\)"
5021 "\\]"
5022 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5023 "\\]")
5024 org-any-link-re
5025 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5026 org-angle-link-re "\\)\\|\\("
5027 org-plain-link-re "\\)")))
5029 (org-make-link-regexps)
5031 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^\r\n>]*?\\)>"
5032 "Regular expression for fast time stamp matching.")
5033 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^]\r\n>]*?\\)[]>]"
5034 "Regular expression for fast time stamp matching.")
5035 (defconst org-ts-regexp0 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
5036 "Regular expression matching time strings for analysis.
5037 This one does not require the space after the date, so it can be used
5038 on a string that terminates immediately after the date.")
5039 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) +\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
5040 "Regular expression matching time strings for analysis.")
5041 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
5042 "Regular expression matching time stamps, with groups.")
5043 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
5044 "Regular expression matching time stamps (also [..]), with groups.")
5045 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
5046 "Regular expression matching a time stamp range.")
5047 (defconst org-tr-regexp-both
5048 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
5049 "Regular expression matching a time stamp range.")
5050 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
5051 org-ts-regexp "\\)?")
5052 "Regular expression matching a time stamp or time stamp range.")
5053 (defconst org-tsr-regexp-both (concat org-ts-regexp-both "\\(--?-?"
5054 org-ts-regexp-both "\\)?")
5055 "Regular expression matching a time stamp or time stamp range.
5056 The time stamps may be either active or inactive.")
5058 (defvar org-emph-face nil)
5060 (defun org-do-emphasis-faces (limit)
5061 "Run through the buffer and add overlays to emphasised strings."
5062 (let (rtn a)
5063 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5064 (if (not (= (char-after (match-beginning 3))
5065 (char-after (match-beginning 4))))
5066 (progn
5067 (setq rtn t)
5068 (setq a (assoc (match-string 3) org-emphasis-alist))
5069 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5070 'face
5071 (nth 1 a))
5072 (and (nth 4 a)
5073 (org-remove-flyspell-overlays-in
5074 (match-beginning 0) (match-end 0)))
5075 (add-text-properties (match-beginning 2) (match-end 2)
5076 '(font-lock-multiline t org-emphasis t))
5077 (when org-hide-emphasis-markers
5078 (add-text-properties (match-end 4) (match-beginning 5)
5079 '(invisible org-link))
5080 (add-text-properties (match-beginning 3) (match-end 3)
5081 '(invisible org-link)))))
5082 (backward-char 1))
5083 rtn))
5085 (defun org-emphasize (&optional char)
5086 "Insert or change an emphasis, i.e. a font like bold or italic.
5087 If there is an active region, change that region to a new emphasis.
5088 If there is no region, just insert the marker characters and position
5089 the cursor between them.
5090 CHAR should be either the marker character, or the first character of the
5091 HTML tag associated with that emphasis. If CHAR is a space, the means
5092 to remove the emphasis of the selected region.
5093 If char is not given (for example in an interactive call) it
5094 will be prompted for."
5095 (interactive)
5096 (let ((eal org-emphasis-alist) e det
5097 (erc org-emphasis-regexp-components)
5098 (prompt "")
5099 (string "") beg end move tag c s)
5100 (if (org-region-active-p)
5101 (setq beg (region-beginning) end (region-end)
5102 string (buffer-substring beg end))
5103 (setq move t))
5105 (while (setq e (pop eal))
5106 (setq tag (car (org-split-string (nth 2 e) "[ <>/]+"))
5107 c (aref tag 0))
5108 (push (cons c (string-to-char (car e))) det)
5109 (setq prompt (concat prompt (format " [%s%c]%s" (car e) c
5110 (substring tag 1)))))
5111 (setq det (nreverse det))
5112 (unless char
5113 (message "%s" (concat "Emphasis marker or tag:" prompt))
5114 (setq char (read-char-exclusive)))
5115 (setq char (or (cdr (assoc char det)) char))
5116 (if (equal char ?\ )
5117 (setq s "" move nil)
5118 (unless (assoc (char-to-string char) org-emphasis-alist)
5119 (error "No such emphasis marker: \"%c\"" char))
5120 (setq s (char-to-string char)))
5121 (while (and (> (length string) 1)
5122 (equal (substring string 0 1) (substring string -1))
5123 (assoc (substring string 0 1) org-emphasis-alist))
5124 (setq string (substring string 1 -1)))
5125 (setq string (concat s string s))
5126 (if beg (delete-region beg end))
5127 (unless (or (bolp)
5128 (string-match (concat "[" (nth 0 erc) "\n]")
5129 (char-to-string (char-before (point)))))
5130 (insert " "))
5131 (unless (or (eobp)
5132 (string-match (concat "[" (nth 1 erc) "\n]")
5133 (char-to-string (char-after (point)))))
5134 (insert " ") (backward-char 1))
5135 (insert string)
5136 (and move (backward-char 1))))
5138 (defconst org-nonsticky-props
5139 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text))
5141 (defsubst org-rear-nonsticky-at (pos)
5142 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5144 (defun org-activate-plain-links (limit)
5145 "Run through the buffer and add overlays to links."
5146 (catch 'exit
5147 (let (f)
5148 (if (re-search-forward org-plain-link-re limit t)
5149 (progn
5150 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5151 (setq f (get-text-property (match-beginning 0) 'face))
5152 (if (or (eq f 'org-tag)
5153 (and (listp f) (memq 'org-tag f)))
5155 (add-text-properties (match-beginning 0) (match-end 0)
5156 (list 'mouse-face 'highlight
5157 'face 'org-link
5158 'keymap org-mouse-map))
5159 (org-rear-nonsticky-at (match-end 0)))
5160 t)))))
5162 (defun org-activate-code (limit)
5163 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\)?\n?\\)" limit t)
5164 (progn
5165 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5166 (remove-text-properties (match-beginning 0) (match-end 0)
5167 '(display t invisible t intangible t))
5168 t)))
5170 (defcustom org-src-fontify-natively nil
5171 "When non-nil, fontify code in code blocks."
5172 :type 'boolean
5173 :group 'org-appearance
5174 :group 'org-babel)
5176 (defun org-fontify-meta-lines-and-blocks (limit)
5177 (condition-case nil
5178 (org-fontify-meta-lines-and-blocks-1 limit)
5179 (error (message "org-mode fontification error"))))
5181 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5182 "Fontify #+ lines and blocks, in the correct ways."
5183 (let ((case-fold-search t))
5184 (if (re-search-forward
5185 "^\\([ \t]*#\\+\\(\\([a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5186 limit t)
5187 (let ((beg (match-beginning 0))
5188 (block-start (match-end 0))
5189 (block-end nil)
5190 (lang (match-string 7))
5191 (beg1 (line-beginning-position 2))
5192 (dc1 (downcase (match-string 2)))
5193 (dc3 (downcase (match-string 3)))
5194 end end1 quoting block-type ovl)
5195 (cond
5196 ((member dc1 '("html:" "ascii:" "latex:" "docbook:"))
5197 ;; a single line of backend-specific content
5198 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5199 (remove-text-properties (match-beginning 0) (match-end 0)
5200 '(display t invisible t intangible t))
5201 (add-text-properties (match-beginning 1) (match-end 3)
5202 '(font-lock-fontified t face org-meta-line))
5203 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5204 '(font-lock-fontified t face org-block))
5205 ; for backend-specific code
5207 ((and (match-end 4) (equal dc3 "begin"))
5208 ;; Truly a block
5209 (setq block-type (downcase (match-string 5))
5210 quoting (member block-type org-protecting-blocks))
5211 (when (re-search-forward
5212 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5213 nil t) ;; on purpose, we look further than LIMIT
5214 (setq end (match-end 0) end1 (1- (match-beginning 0)))
5215 (setq block-end (match-beginning 0))
5216 (when quoting
5217 (remove-text-properties beg end
5218 '(display t invisible t intangible t)))
5219 (add-text-properties
5220 beg end
5221 '(font-lock-fontified t font-lock-multiline t))
5222 (add-text-properties beg beg1 '(face org-meta-line))
5223 (add-text-properties end1 (min (point-max) (1+ end))
5224 '(face org-meta-line)) ; for end_src
5225 (cond
5226 ((and lang (not (string= lang "")) org-src-fontify-natively)
5227 (org-src-font-lock-fontify-block lang block-start block-end)
5228 ;; remove old background overlays
5229 (mapc (lambda (ov)
5230 (if (eq (overlay-get ov 'face) 'org-block-background)
5231 (delete-overlay ov)))
5232 (overlays-at (/ (+ beg1 block-end) 2)))
5233 ;; add a background overlay
5234 (setq ovl (make-overlay beg1 block-end))
5235 (overlay-put ovl 'face 'org-block-background)
5236 (overlay-put ovl 'evaporate t)) ;; make it go away when empty
5237 (quoting
5238 (add-text-properties beg1 (min (point-max) (1+ end1))
5239 '(face org-block))) ; end of source block
5240 ((not org-fontify-quote-and-verse-blocks))
5241 ((string= block-type "quote")
5242 (add-text-properties beg1 (1+ end1) '(face org-quote)))
5243 ((string= block-type "verse")
5244 (add-text-properties beg1 (1+ end1) '(face org-verse))))
5245 (add-text-properties beg beg1 '(face org-block-begin-line))
5246 (add-text-properties (1+ end) (1+ end1) '(face org-block-end-line))
5248 ((member dc1 '("title:" "author:" "email:" "date:"))
5249 (add-text-properties
5250 beg (match-end 3)
5251 (if (member (intern (substring dc1 0 -1)) org-hidden-keywords)
5252 '(font-lock-fontified t invisible t)
5253 '(font-lock-fontified t face org-document-info-keyword)))
5254 (add-text-properties
5255 (match-beginning 6) (match-end 6)
5256 (if (string-equal dc1 "title:")
5257 '(font-lock-fontified t face org-document-title)
5258 '(font-lock-fontified t face org-document-info))))
5259 ((not (member (char-after beg) '(?\ ?\t)))
5260 ;; just any other in-buffer setting, but not indented
5261 (add-text-properties
5262 beg (1+ (match-end 0))
5263 '(font-lock-fontified t face org-meta-line))
5265 ((or (member dc1 '("begin:" "end:" "caption:" "label:"
5266 "orgtbl:" "tblfm:" "tblname:" "result:"
5267 "results:" "source:" "srcname:" "call:"
5268 "data:" "header:" "headers:"))
5269 (and (match-end 4) (equal dc3 "attr")))
5270 (add-text-properties
5271 beg (match-end 0)
5272 '(font-lock-fontified t face org-meta-line))
5274 ((member dc3 '(" " ""))
5275 (add-text-properties
5276 beg (match-end 0)
5277 '(font-lock-fontified t face font-lock-comment-face)))
5278 (t nil))))))
5280 (defun org-activate-angle-links (limit)
5281 "Run through the buffer and add overlays to links."
5282 (if (re-search-forward org-angle-link-re limit t)
5283 (progn
5284 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5285 (add-text-properties (match-beginning 0) (match-end 0)
5286 (list 'mouse-face 'highlight
5287 'keymap org-mouse-map))
5288 (org-rear-nonsticky-at (match-end 0))
5289 t)))
5291 (defun org-activate-footnote-links (limit)
5292 "Run through the buffer and add overlays to footnotes."
5293 (let ((fn (org-footnote-next-reference-or-definition limit)))
5294 (when fn
5295 (let ((beg (nth 1 fn)) (end (nth 2 fn)))
5296 (org-remove-flyspell-overlays-in beg end)
5297 (add-text-properties beg end
5298 (list 'mouse-face 'highlight
5299 'keymap org-mouse-map
5300 'help-echo
5301 (if (= (point-at-bol) beg)
5302 "Footnote definition"
5303 "Footnote reference")
5304 'font-lock-fontified t
5305 'font-lock-multiline t
5306 'face 'org-footnote))))))
5308 (defun org-activate-bracket-links (limit)
5309 "Run through the buffer and add overlays to bracketed links."
5310 (if (re-search-forward org-bracket-link-regexp limit t)
5311 (let* ((help (concat "LINK: "
5312 (org-match-string-no-properties 1)))
5313 ;; FIXME: above we should remove the escapes.
5314 ;; but that requires another match, protecting match data,
5315 ;; a lot of overhead for font-lock.
5316 (ip (org-maybe-intangible
5317 (list 'invisible 'org-link
5318 'keymap org-mouse-map 'mouse-face 'highlight
5319 'font-lock-multiline t 'help-echo help)))
5320 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
5321 'font-lock-multiline t 'help-echo help)))
5322 ;; We need to remove the invisible property here. Table narrowing
5323 ;; may have made some of this invisible.
5324 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5325 (remove-text-properties (match-beginning 0) (match-end 0)
5326 '(invisible nil))
5327 (if (match-end 3)
5328 (progn
5329 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
5330 (org-rear-nonsticky-at (match-beginning 3))
5331 (add-text-properties (match-beginning 3) (match-end 3) vp)
5332 (org-rear-nonsticky-at (match-end 3))
5333 (add-text-properties (match-end 3) (match-end 0) ip)
5334 (org-rear-nonsticky-at (match-end 0)))
5335 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
5336 (org-rear-nonsticky-at (match-beginning 1))
5337 (add-text-properties (match-beginning 1) (match-end 1) vp)
5338 (org-rear-nonsticky-at (match-end 1))
5339 (add-text-properties (match-end 1) (match-end 0) ip)
5340 (org-rear-nonsticky-at (match-end 0)))
5341 t)))
5343 (defun org-activate-dates (limit)
5344 "Run through the buffer and add overlays to dates."
5345 (if (re-search-forward org-tsr-regexp-both limit t)
5346 (progn
5347 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5348 (add-text-properties (match-beginning 0) (match-end 0)
5349 (list 'mouse-face 'highlight
5350 'keymap org-mouse-map))
5351 (org-rear-nonsticky-at (match-end 0))
5352 (when org-display-custom-times
5353 (if (match-end 3)
5354 (org-display-custom-time (match-beginning 3) (match-end 3)))
5355 (org-display-custom-time (match-beginning 1) (match-end 1)))
5356 t)))
5358 (defvar org-target-link-regexp nil
5359 "Regular expression matching radio targets in plain text.")
5360 (make-variable-buffer-local 'org-target-link-regexp)
5361 (defvar org-target-regexp "<<\\([^<>\n\r]+\\)>>"
5362 "Regular expression matching a link target.")
5363 (defvar org-radio-target-regexp "<<<\\([^<>\n\r]+\\)>>>"
5364 "Regular expression matching a radio target.")
5365 (defvar org-any-target-regexp "<<<?\\([^<>\n\r]+\\)>>>?" ; FIXME, not exact, would match <<<aaa>> as a radio target.
5366 "Regular expression matching any target.")
5368 (defun org-activate-target-links (limit)
5369 "Run through the buffer and add overlays to target matches."
5370 (when org-target-link-regexp
5371 (let ((case-fold-search t))
5372 (if (re-search-forward org-target-link-regexp limit t)
5373 (progn
5374 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5375 (add-text-properties (match-beginning 0) (match-end 0)
5376 (list 'mouse-face 'highlight
5377 'keymap org-mouse-map
5378 'help-echo "Radio target link"
5379 'org-linked-text t))
5380 (org-rear-nonsticky-at (match-end 0))
5381 t)))))
5383 (defun org-update-radio-target-regexp ()
5384 "Find all radio targets in this file and update the regular expression."
5385 (interactive)
5386 (when (memq 'radio org-activate-links)
5387 (setq org-target-link-regexp
5388 (org-make-target-link-regexp (org-all-targets 'radio)))
5389 (org-restart-font-lock)))
5391 (defun org-hide-wide-columns (limit)
5392 (let (s e)
5393 (setq s (text-property-any (point) (or limit (point-max))
5394 'org-cwidth t))
5395 (when s
5396 (setq e (next-single-property-change s 'org-cwidth))
5397 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
5398 (goto-char e)
5399 t)))
5401 (defvar org-latex-and-specials-regexp nil
5402 "Regular expression for highlighting export special stuff.")
5403 (defvar org-match-substring-regexp)
5404 (defvar org-match-substring-with-braces-regexp)
5406 ;; This should be with the exporter code, but we also use if for font-locking
5407 (defconst org-export-html-special-string-regexps
5408 '(("\\\\-" . "&shy;")
5409 ("---\\([^-]\\)" . "&mdash;\\1")
5410 ("--\\([^-]\\)" . "&ndash;\\1")
5411 ("\\.\\.\\." . "&hellip;"))
5412 "Regular expressions for special string conversion.")
5415 (defun org-compute-latex-and-specials-regexp ()
5416 "Compute regular expression for stuff treated specially by exporters."
5417 (if (not org-highlight-latex-fragments-and-specials)
5418 (org-set-local 'org-latex-and-specials-regexp nil)
5419 (require 'org-exp)
5420 (let*
5421 ((matchers (plist-get org-format-latex-options :matchers))
5422 (latexs (delq nil (mapcar (lambda (x) (if (member (car x) matchers) x))
5423 org-latex-regexps)))
5424 (org-export-allow-BIND nil)
5425 (options (org-combine-plists (org-default-export-plist)
5426 (org-infile-export-plist)))
5427 (org-export-with-sub-superscripts (plist-get options :sub-superscript))
5428 (org-export-with-LaTeX-fragments (plist-get options :LaTeX-fragments))
5429 (org-export-with-TeX-macros (plist-get options :TeX-macros))
5430 (org-export-html-expand (plist-get options :expand-quoted-html))
5431 (org-export-with-special-strings (plist-get options :special-strings))
5432 (re-sub
5433 (cond
5434 ((equal org-export-with-sub-superscripts '{})
5435 (list org-match-substring-with-braces-regexp))
5436 (org-export-with-sub-superscripts
5437 (list org-match-substring-regexp))
5438 (t nil)))
5439 (re-latex
5440 (if org-export-with-LaTeX-fragments
5441 (mapcar (lambda (x) (nth 1 x)) latexs)))
5442 (re-macros
5443 (if org-export-with-TeX-macros
5444 (list (concat "\\\\"
5445 (regexp-opt
5446 (append
5448 (delq nil
5449 (mapcar 'car-safe
5450 (append org-entities-user
5451 org-entities)))
5452 (if (boundp 'org-latex-entities)
5453 (mapcar (lambda (x)
5454 (or (car-safe x) x))
5455 org-latex-entities)
5456 nil))
5457 'words))) ; FIXME
5459 ;; (list "\\\\\\(?:[a-zA-Z]+\\)")))
5460 (re-special (if org-export-with-special-strings
5461 (mapcar (lambda (x) (car x))
5462 org-export-html-special-string-regexps)))
5463 (re-rest
5464 (delq nil
5465 (list
5466 (if org-export-html-expand "@<[^>\n]+>")
5467 ))))
5468 (org-set-local
5469 'org-latex-and-specials-regexp
5470 (mapconcat 'identity (append re-latex re-sub re-macros re-special
5471 re-rest) "\\|")))))
5473 (defun org-do-latex-and-special-faces (limit)
5474 "Run through the buffer and add overlays to links."
5475 (when org-latex-and-specials-regexp
5476 (let (rtn d)
5477 (while (and (not rtn) (re-search-forward org-latex-and-specials-regexp
5478 limit t))
5479 (if (not (memq (car-safe (get-text-property (1+ (match-beginning 0))
5480 'face))
5481 '(org-code org-verbatim underline)))
5482 (progn
5483 (setq rtn t
5484 d (cond ((member (char-after (1+ (match-beginning 0)))
5485 '(?_ ?^)) 1)
5486 (t 0)))
5487 (font-lock-prepend-text-property
5488 (+ d (match-beginning 0)) (match-end 0)
5489 'face 'org-latex-and-export-specials)
5490 (add-text-properties (+ d (match-beginning 0)) (match-end 0)
5491 '(font-lock-multiline t)))))
5492 rtn)))
5494 (defun org-restart-font-lock ()
5495 "Restart `font-lock-mode', to force refontification."
5496 (when (and (boundp 'font-lock-mode) font-lock-mode)
5497 (font-lock-mode -1)
5498 (font-lock-mode 1)))
5500 (defun org-all-targets (&optional radio)
5501 "Return a list of all targets in this file.
5502 With optional argument RADIO, only find radio targets."
5503 (let ((re (if radio org-radio-target-regexp org-target-regexp))
5504 rtn)
5505 (save-excursion
5506 (goto-char (point-min))
5507 (while (re-search-forward re nil t)
5508 (add-to-list 'rtn (downcase (org-match-string-no-properties 1))))
5509 rtn)))
5511 (defun org-make-target-link-regexp (targets)
5512 "Make regular expression matching all strings in TARGETS.
5513 The regular expression finds the targets also if there is a line break
5514 between words."
5515 (and targets
5516 (concat
5517 "\\<\\("
5518 (mapconcat
5519 (lambda (x)
5520 (setq x (regexp-quote x))
5521 (while (string-match " +" x)
5522 (setq x (replace-match "\\s-+" t t x)))
5524 targets
5525 "\\|")
5526 "\\)\\>")))
5528 (defun org-activate-tags (limit)
5529 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
5530 (progn
5531 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
5532 (add-text-properties (match-beginning 1) (match-end 1)
5533 (list 'mouse-face 'highlight
5534 'keymap org-mouse-map))
5535 (org-rear-nonsticky-at (match-end 1))
5536 t)))
5538 (defun org-outline-level ()
5539 "Compute the outline level of the heading at point.
5540 This function assumes that the cursor is at the beginning of a line matched
5541 by `outline-regexp'. Otherwise it returns garbage.
5542 If this is called at a normal headline, the level is the number of stars.
5543 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
5544 (save-excursion
5545 (looking-at org-outline-regexp)
5546 (1- (- (match-end 0) (match-beginning 0)))))
5548 (defvar org-font-lock-keywords nil)
5550 (defconst org-property-re (org-re "^[ \t]*\\(:\\([-[:alnum:]_]+\\):\\)[ \t]*\\([^ \t\r\n].*\\)")
5551 "Regular expression matching a property line.")
5553 (defvar org-font-lock-hook nil
5554 "Functions to be called for special font lock stuff.")
5556 (defvar org-font-lock-set-keywords-hook nil
5557 "Functions that can manipulate `org-font-lock-extra-keywords'.
5558 This is calles after `org-font-lock-extra-keywords' is defined, but before
5559 it is installed to be used by font lock. This can be useful if something
5560 needs to be inserted at a specific position in the font-lock sequence.")
5562 (defun org-font-lock-hook (limit)
5563 (run-hook-with-args 'org-font-lock-hook limit))
5565 (defun org-set-font-lock-defaults ()
5566 (let* ((em org-fontify-emphasized-text)
5567 (lk org-activate-links)
5568 (org-font-lock-extra-keywords
5569 (list
5570 ;; Call the hook
5571 '(org-font-lock-hook)
5572 ;; Headlines
5573 `(,(if org-fontify-whole-heading-line
5574 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
5575 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
5576 (1 (org-get-level-face 1))
5577 (2 (org-get-level-face 2))
5578 (3 (org-get-level-face 3)))
5579 ;; Table lines
5580 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
5581 (1 'org-table t))
5582 ;; Table internals
5583 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
5584 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
5585 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
5586 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
5587 ;; Drawers
5588 (list org-drawer-regexp '(0 'org-special-keyword t))
5589 (list "^[ \t]*:END:" '(0 'org-special-keyword t))
5590 ;; Properties
5591 (list org-property-re
5592 '(1 'org-special-keyword t)
5593 '(3 'org-property-value t))
5594 ;; Links
5595 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
5596 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
5597 (if (memq 'plain lk) '(org-activate-plain-links))
5598 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
5599 (if (memq 'radio lk) '(org-activate-target-links (0 'org-link t)))
5600 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
5601 (if (memq 'footnote lk) '(org-activate-footnote-links))
5602 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
5603 '(org-hide-wide-columns (0 nil append))
5604 ;; TODO lines
5605 (list (concat "^\\*+[ \t]+" org-todo-regexp "\\([ \t]\\|$\\)")
5606 '(1 (org-get-todo-face 1) t))
5607 ;; DONE
5608 (if org-fontify-done-headline
5609 (list (concat "^[*]+ +\\<\\("
5610 (mapconcat 'regexp-quote org-done-keywords "\\|")
5611 "\\)\\(.*\\)")
5612 '(2 'org-headline-done t))
5613 nil)
5614 ;; Priorities
5615 '(org-font-lock-add-priority-faces)
5616 ;; Tags
5617 '(org-font-lock-add-tag-faces)
5618 ;; Special keywords
5619 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
5620 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
5621 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
5622 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
5623 ;; Emphasis
5624 (if em
5625 (if (featurep 'xemacs)
5626 '(org-do-emphasis-faces (0 nil append))
5627 '(org-do-emphasis-faces)))
5628 ;; Checkboxes
5629 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
5630 1 'org-checkbox prepend)
5631 (if (cdr (assq 'checkbox org-list-automatic-rules))
5632 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
5633 (0 (org-get-checkbox-statistics-face) t)))
5634 ;; Description list items
5635 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
5636 1 'bold prepend)
5637 ;; ARCHIVEd headings
5638 (list (concat
5639 org-outline-regexp-bol
5640 "\\(.*:" org-archive-tag ":.*\\)")
5641 '(1 'org-archived prepend))
5642 ;; Specials
5643 '(org-do-latex-and-special-faces)
5644 '(org-fontify-entities)
5645 '(org-raise-scripts)
5646 ;; Code
5647 '(org-activate-code (1 'org-code t))
5648 ;; COMMENT
5649 (list (concat "^\\*+[ \t]+\\<\\(" org-comment-string
5650 "\\|" org-quote-string "\\)\\>")
5651 '(1 'org-special-keyword t))
5652 '("^#.*" (0 'font-lock-comment-face t))
5653 ;; Blocks and meta lines
5654 '(org-fontify-meta-lines-and-blocks)
5656 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
5657 (run-hooks 'org-font-lock-set-keywords-hook)
5658 ;; Now set the full font-lock-keywords
5659 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
5660 (org-set-local 'font-lock-defaults
5661 '(org-font-lock-keywords t nil nil backward-paragraph))
5662 (kill-local-variable 'font-lock-keywords) nil))
5664 (defun org-toggle-pretty-entities ()
5665 "Toggle the composition display of entities as UTF8 characters."
5666 (interactive)
5667 (org-set-local 'org-pretty-entities (not org-pretty-entities))
5668 (org-restart-font-lock)
5669 (if org-pretty-entities
5670 (message "Entities are displayed as UTF8 characers")
5671 (save-restriction
5672 (widen)
5673 (org-decompose-region (point-min) (point-max))
5674 (message "Entities are displayed plain"))))
5676 (defun org-fontify-entities (limit)
5677 "Find an entity to fontify."
5678 (let (ee)
5679 (when org-pretty-entities
5680 (catch 'match
5681 (while (re-search-forward
5682 "\\\\\\([a-zA-Z][a-zA-Z0-9]*\\)\\($\\|[^[:alnum:]\n]\\)"
5683 limit t)
5684 (if (and (not (org-in-indented-comment-line))
5685 (setq ee (org-entity-get (match-string 1)))
5686 (= (length (nth 6 ee)) 1))
5687 (progn
5688 (add-text-properties
5689 (match-beginning 0) (match-end 1)
5690 (list 'font-lock-fontified t))
5691 (compose-region (match-beginning 0) (match-end 1)
5692 (nth 6 ee) nil)
5693 (backward-char 1)
5694 (throw 'match t))))
5695 nil))))
5697 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
5698 "Fontify string S like in Org-mode."
5699 (with-temp-buffer
5700 (insert s)
5701 (let ((org-odd-levels-only odd-levels))
5702 (org-mode)
5703 (font-lock-fontify-buffer)
5704 (buffer-string))))
5706 (defvar org-m nil)
5707 (defvar org-l nil)
5708 (defvar org-f nil)
5709 (defun org-get-level-face (n)
5710 "Get the right face for match N in font-lock matching of headlines."
5711 (setq org-l (- (match-end 2) (match-beginning 1) 1))
5712 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
5713 (if org-cycle-level-faces
5714 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
5715 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
5716 (cond
5717 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
5718 ((eq n 2) org-f)
5719 (t (if org-level-color-stars-only nil org-f))))
5722 (defun org-get-todo-face (kwd)
5723 "Get the right face for a TODO keyword KWD.
5724 If KWD is a number, get the corresponding match group."
5725 (if (numberp kwd) (setq kwd (match-string kwd)))
5726 (or (org-face-from-face-or-color
5727 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
5728 (and (member kwd org-done-keywords) 'org-done)
5729 'org-todo))
5731 (defun org-face-from-face-or-color (context inherit face-or-color)
5732 "Create a face list that inherits INHERIT, but sets the foreground color.
5733 When FACE-OR-COLOR is not a string, just return it."
5734 (if (stringp face-or-color)
5735 (list :inherit inherit
5736 (cdr (assoc context org-faces-easy-properties))
5737 face-or-color)
5738 face-or-color))
5740 (defun org-font-lock-add-tag-faces (limit)
5741 "Add the special tag faces."
5742 (when (and org-tag-faces org-tags-special-faces-re)
5743 (while (re-search-forward org-tags-special-faces-re limit t)
5744 (add-text-properties (match-beginning 1) (match-end 1)
5745 (list 'face (org-get-tag-face 1)
5746 'font-lock-fontified t))
5747 (backward-char 1))))
5749 (defun org-font-lock-add-priority-faces (limit)
5750 "Add the special priority faces."
5751 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
5752 (add-text-properties
5753 (match-beginning 0) (match-end 0)
5754 (list 'face (or (org-face-from-face-or-color
5755 'priority 'org-special-keyword
5756 (cdr (assoc (char-after (match-beginning 1))
5757 org-priority-faces)))
5758 'org-special-keyword)
5759 'font-lock-fontified t))))
5761 (defun org-get-tag-face (kwd)
5762 "Get the right face for a TODO keyword KWD.
5763 If KWD is a number, get the corresponding match group."
5764 (if (numberp kwd) (setq kwd (match-string kwd)))
5765 (or (org-face-from-face-or-color
5766 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
5767 'org-tag))
5769 (defun org-unfontify-region (beg end &optional maybe_loudly)
5770 "Remove fontification and activation overlays from links."
5771 (font-lock-default-unfontify-region beg end)
5772 (let* ((buffer-undo-list t)
5773 (inhibit-read-only t) (inhibit-point-motion-hooks t)
5774 (inhibit-modification-hooks t)
5775 deactivate-mark buffer-file-name buffer-file-truename)
5776 (org-decompose-region beg end)
5777 (remove-text-properties
5778 beg end
5779 (if org-indent-mode
5780 ;; also remove line-prefix and wrap-prefix properties
5781 '(mouse-face t keymap t org-linked-text t
5782 invisible t intangible t
5783 line-prefix t wrap-prefix t
5784 org-no-flyspell t org-emphasis t)
5785 '(mouse-face t keymap t org-linked-text t
5786 invisible t intangible t
5787 org-no-flyspell t org-emphasis t)))
5788 (org-remove-font-lock-display-properties beg end)))
5790 (defconst org-script-display '(((raise -0.3) (height 0.7))
5791 ((raise 0.3) (height 0.7))
5792 ((raise -0.5))
5793 ((raise 0.5)))
5794 "Display properties for showing superscripts and subscripts.")
5796 (defun org-remove-font-lock-display-properties (beg end)
5797 "Remove specific display properties that have been added by font lock.
5798 The will remove the raise properties that are used to show superscripts
5799 and subscripts."
5800 (let (next prop)
5801 (while (< beg end)
5802 (setq next (next-single-property-change beg 'display nil end)
5803 prop (get-text-property beg 'display))
5804 (if (member prop org-script-display)
5805 (put-text-property beg next 'display nil))
5806 (setq beg next))))
5808 (defun org-raise-scripts (limit)
5809 "Add raise properties to sub/superscripts."
5810 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
5811 (if (re-search-forward
5812 (if (eq org-use-sub-superscripts t)
5813 org-match-substring-regexp
5814 org-match-substring-with-braces-regexp)
5815 limit t)
5816 (let* ((pos (point)) table-p comment-p
5817 (mpos (match-beginning 3))
5818 (emph-p (get-text-property mpos 'org-emphasis))
5819 (link-p (get-text-property mpos 'mouse-face))
5820 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
5821 (goto-char (point-at-bol))
5822 (setq table-p (org-looking-at-p org-table-dataline-regexp)
5823 comment-p (org-looking-at-p "[ \t]*#"))
5824 (goto-char pos)
5825 ;; FIXME: Should we go back one character here, for a_b^c
5826 ;; (goto-char (1- pos)) ;????????????????????
5827 (if (or comment-p emph-p link-p keyw-p)
5829 (put-text-property (match-beginning 3) (match-end 0)
5830 'display
5831 (if (equal (char-after (match-beginning 2)) ?^)
5832 (nth (if table-p 3 1) org-script-display)
5833 (nth (if table-p 2 0) org-script-display)))
5834 (add-text-properties (match-beginning 2) (match-end 2)
5835 (list 'invisible t
5836 'org-dwidth t 'org-dwidth-n 1))
5837 (if (and (eq (char-after (match-beginning 3)) ?{)
5838 (eq (char-before (match-end 3)) ?}))
5839 (progn
5840 (add-text-properties
5841 (match-beginning 3) (1+ (match-beginning 3))
5842 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
5843 (add-text-properties
5844 (1- (match-end 3)) (match-end 3)
5845 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
5846 t)))))
5848 ;;;; Visibility cycling, including org-goto and indirect buffer
5850 ;;; Cycling
5852 (defvar org-cycle-global-status nil)
5853 (make-variable-buffer-local 'org-cycle-global-status)
5854 (defvar org-cycle-subtree-status nil)
5855 (make-variable-buffer-local 'org-cycle-subtree-status)
5857 ;;;###autoload
5859 (defvar org-inlinetask-min-level)
5861 (defun org-cycle (&optional arg)
5862 "TAB-action and visibility cycling for Org-mode.
5864 This is the command invoked in Org-mode by the TAB key. Its main purpose
5865 is outline visibility cycling, but it also invokes other actions
5866 in special contexts.
5868 - When this function is called with a prefix argument, rotate the entire
5869 buffer through 3 states (global cycling)
5870 1. OVERVIEW: Show only top-level headlines.
5871 2. CONTENTS: Show all headlines of all levels, but no body text.
5872 3. SHOW ALL: Show everything.
5873 When called with two `C-u C-u' prefixes, switch to the startup visibility,
5874 determined by the variable `org-startup-folded', and by any VISIBILITY
5875 properties in the buffer.
5876 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
5877 including any drawers.
5879 - When inside a table, re-align the table and move to the next field.
5881 - When point is at the beginning of a headline, rotate the subtree started
5882 by this line through 3 different states (local cycling)
5883 1. FOLDED: Only the main headline is shown.
5884 2. CHILDREN: The main headline and the direct children are shown.
5885 From this state, you can move to one of the children
5886 and zoom in further.
5887 3. SUBTREE: Show the entire subtree, including body text.
5888 If there is no subtree, switch directly from CHILDREN to FOLDED.
5890 - When point is at the beginning of an empty headline and the variable
5891 `org-cycle-level-after-item/entry-creation' is set, cycle the level
5892 of the headline by demoting and promoting it to likely levels. This
5893 speeds up creation document structure by pressing TAB once or several
5894 times right after creating a new headline.
5896 - When there is a numeric prefix, go up to a heading with level ARG, do
5897 a `show-subtree' and return to the previous cursor position. If ARG
5898 is negative, go up that many levels.
5900 - When point is not at the beginning of a headline, execute the global
5901 binding for TAB, which is re-indenting the line. See the option
5902 `org-cycle-emulate-tab' for details.
5904 - Special case: if point is at the beginning of the buffer and there is
5905 no headline in line 1, this function will act as if called with prefix arg
5906 (C-u TAB, same as S-TAB) also when called without prefix arg.
5907 But only if also the variable `org-cycle-global-at-bob' is t."
5908 (interactive "P")
5909 (org-load-modules-maybe)
5910 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
5911 (and org-cycle-level-after-item/entry-creation
5912 (or (org-cycle-level)
5913 (org-cycle-item-indentation))))
5914 (let* ((limit-level
5915 (or org-cycle-max-level
5916 (and (boundp 'org-inlinetask-min-level)
5917 org-inlinetask-min-level
5918 (1- org-inlinetask-min-level))))
5919 (nstars (and limit-level
5920 (if org-odd-levels-only
5921 (and limit-level (1- (* limit-level 2)))
5922 limit-level)))
5923 (org-outline-regexp
5924 (if (not (org-mode-p))
5925 outline-regexp
5926 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
5927 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
5928 (not (looking-at org-outline-regexp))))
5929 (org-cycle-hook
5930 (if bob-special
5931 (delq 'org-optimize-window-after-visibility-change
5932 (copy-sequence org-cycle-hook))
5933 org-cycle-hook))
5934 (pos (point)))
5936 (if (or bob-special (equal arg '(4)))
5937 ;; special case: use global cycling
5938 (setq arg t))
5940 (cond
5942 ((equal arg '(16))
5943 (setq last-command 'dummy)
5944 (org-set-startup-visibility)
5945 (message "Startup visibility, plus VISIBILITY properties"))
5947 ((equal arg '(64))
5948 (show-all)
5949 (message "Entire buffer visible, including drawers"))
5951 ;; Table: enter it or move to the next field.
5952 ((org-at-table-p 'any)
5953 (if (org-at-table.el-p)
5954 (message "Use C-c ' to edit table.el tables")
5955 (if arg (org-table-edit-field t)
5956 (org-table-justify-field-maybe)
5957 (call-interactively 'org-table-next-field))))
5959 ((run-hook-with-args-until-success
5960 'org-tab-after-check-for-table-hook))
5962 ;; Global cycling: delegate to `org-cycle-internal-global'.
5963 ((eq arg t) (org-cycle-internal-global))
5965 ;; Drawers: delegate to `org-flag-drawer'.
5966 ((and org-drawers org-drawer-regexp
5967 (save-excursion
5968 (beginning-of-line 1)
5969 (looking-at org-drawer-regexp)))
5970 (org-flag-drawer ; toggle block visibility
5971 (not (get-char-property (match-end 0) 'invisible))))
5973 ;; Show-subtree, ARG levels up from here.
5974 ((integerp arg)
5975 (save-excursion
5976 (org-back-to-heading)
5977 (outline-up-heading (if (< arg 0) (- arg)
5978 (- (funcall outline-level) arg)))
5979 (org-show-subtree)))
5981 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
5982 ((and (featurep 'org-inlinetask)
5983 (org-inlinetask-at-task-p)
5984 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
5985 (org-inlinetask-toggle-visibility))
5987 ;; At an item/headline: delegate to `org-cycle-internal-local'.
5988 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
5989 (save-excursion (beginning-of-line 1)
5990 (looking-at org-outline-regexp)))
5991 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
5992 (org-cycle-internal-local))
5994 ;; From there: TAB emulation and template completion.
5995 (buffer-read-only (org-back-to-heading))
5997 ((run-hook-with-args-until-success
5998 'org-tab-after-check-for-cycling-hook))
6000 ((org-try-structure-completion))
6002 ((org-try-cdlatex-tab))
6004 ((run-hook-with-args-until-success
6005 'org-tab-before-tab-emulation-hook))
6007 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6008 (or (not (bolp))
6009 (not (looking-at org-outline-regexp))))
6010 (call-interactively (global-key-binding "\t")))
6012 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6013 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6014 (or (and (eq org-cycle-emulate-tab 'white)
6015 (= (match-end 0) (point-at-eol)))
6016 (and (eq org-cycle-emulate-tab 'whitestart)
6017 (>= (match-end 0) pos))))
6019 (eq org-cycle-emulate-tab t))
6020 (call-interactively (global-key-binding "\t")))
6022 (t (save-excursion
6023 (org-back-to-heading)
6024 (org-cycle)))))))
6026 (defun org-cycle-internal-global ()
6027 "Do the global cycling action."
6028 (cond
6029 ((and (eq last-command this-command)
6030 (eq org-cycle-global-status 'overview))
6031 ;; We just created the overview - now do table of contents
6032 ;; This can be slow in very large buffers, so indicate action
6033 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6034 (message "CONTENTS...")
6035 (org-content)
6036 (message "CONTENTS...done")
6037 (setq org-cycle-global-status 'contents)
6038 (run-hook-with-args 'org-cycle-hook 'contents))
6040 ((and (eq last-command this-command)
6041 (eq org-cycle-global-status 'contents))
6042 ;; We just showed the table of contents - now show everything
6043 (run-hook-with-args 'org-pre-cycle-hook 'all)
6044 (show-all)
6045 (message "SHOW ALL")
6046 (setq org-cycle-global-status 'all)
6047 (run-hook-with-args 'org-cycle-hook 'all))
6050 ;; Default action: go to overview
6051 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6052 (org-overview)
6053 (message "OVERVIEW")
6054 (setq org-cycle-global-status 'overview)
6055 (run-hook-with-args 'org-cycle-hook 'overview))))
6057 (defun org-cycle-internal-local ()
6058 "Do the local cycling action."
6059 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6060 ;; First, determine end of headline (EOH), end of subtree or item
6061 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6062 (save-excursion
6063 (if (org-at-item-p)
6064 (progn
6065 (beginning-of-line)
6066 (setq struct (org-list-struct))
6067 (setq eoh (point-at-eol))
6068 (setq eos (org-list-get-item-end-before-blank (point) struct))
6069 (setq has-children (org-list-has-child-p (point) struct)))
6070 (org-back-to-heading)
6071 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6072 (setq eos (save-excursion
6073 (org-end-of-subtree t)
6074 (unless (eobp)
6075 (skip-chars-forward " \t\n"))
6076 (if (eobp) (point) (1- (point)))))
6077 (setq has-children
6078 (or (save-excursion
6079 (let ((level (funcall outline-level)))
6080 (outline-next-heading)
6081 (and (org-at-heading-p t)
6082 (> (funcall outline-level) level))))
6083 (save-excursion
6084 (org-list-search-forward (org-item-beginning-re) eos t)))))
6085 ;; Determine end invisible part of buffer (EOL)
6086 (beginning-of-line 2)
6087 ;; XEmacs doesn't have `next-single-char-property-change'
6088 (if (featurep 'xemacs)
6089 (while (and (not (eobp)) ;; this is like `next-line'
6090 (get-char-property (1- (point)) 'invisible))
6091 (beginning-of-line 2))
6092 (while (and (not (eobp)) ;; this is like `next-line'
6093 (get-char-property (1- (point)) 'invisible))
6094 (goto-char (next-single-char-property-change (point) 'invisible))
6095 (and (eolp) (beginning-of-line 2))))
6096 (setq eol (point)))
6097 ;; Find out what to do next and set `this-command'
6098 (cond
6099 ((= eos eoh)
6100 ;; Nothing is hidden behind this heading
6101 (run-hook-with-args 'org-pre-cycle-hook 'empty)
6102 (message "EMPTY ENTRY")
6103 (setq org-cycle-subtree-status nil)
6104 (save-excursion
6105 (goto-char eos)
6106 (outline-next-heading)
6107 (if (outline-invisible-p) (org-flag-heading nil))))
6108 ((and (or (>= eol eos)
6109 (not (string-match "\\S-" (buffer-substring eol eos))))
6110 (or has-children
6111 (not (setq children-skipped
6112 org-cycle-skip-children-state-if-no-children))))
6113 ;; Entire subtree is hidden in one line: children view
6114 (run-hook-with-args 'org-pre-cycle-hook 'children)
6115 (if (org-at-item-p)
6116 (org-list-set-item-visibility (point-at-bol) struct 'children)
6117 (org-show-entry)
6118 (show-children)
6119 ;; Fold every list in subtree to top-level items.
6120 (when (eq org-cycle-include-plain-lists 'integrate)
6121 (save-excursion
6122 (org-back-to-heading)
6123 (while (org-list-search-forward (org-item-beginning-re) eos t)
6124 (beginning-of-line 1)
6125 (let* ((struct (org-list-struct))
6126 (prevs (org-list-prevs-alist struct))
6127 (end (org-list-get-bottom-point struct)))
6128 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6129 (org-list-get-all-items (point) struct prevs))
6130 (goto-char end))))))
6131 (message "CHILDREN")
6132 (save-excursion
6133 (goto-char eos)
6134 (outline-next-heading)
6135 (if (outline-invisible-p) (org-flag-heading nil)))
6136 (setq org-cycle-subtree-status 'children)
6137 (run-hook-with-args 'org-cycle-hook 'children))
6138 ((or children-skipped
6139 (and (eq last-command this-command)
6140 (eq org-cycle-subtree-status 'children)))
6141 ;; We just showed the children, or no children are there,
6142 ;; now show everything.
6143 (run-hook-with-args 'org-pre-cycle-hook 'subtree)
6144 (outline-flag-region eoh eos nil)
6145 (message (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6146 (setq org-cycle-subtree-status 'subtree)
6147 (run-hook-with-args 'org-cycle-hook 'subtree))
6149 ;; Default action: hide the subtree.
6150 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6151 (outline-flag-region eoh eos t)
6152 (message "FOLDED")
6153 (setq org-cycle-subtree-status 'folded)
6154 (run-hook-with-args 'org-cycle-hook 'folded)))))
6156 ;;;###autoload
6157 (defun org-global-cycle (&optional arg)
6158 "Cycle the global visibility. For details see `org-cycle'.
6159 With \\[universal-argument] prefix arg, switch to startup visibility.
6160 With a numeric prefix, show all headlines up to that level."
6161 (interactive "P")
6162 (let ((org-cycle-include-plain-lists
6163 (if (org-mode-p) org-cycle-include-plain-lists nil)))
6164 (cond
6165 ((integerp arg)
6166 (show-all)
6167 (hide-sublevels arg)
6168 (setq org-cycle-global-status 'contents))
6169 ((equal arg '(4))
6170 (org-set-startup-visibility)
6171 (message "Startup visibility, plus VISIBILITY properties."))
6173 (org-cycle '(4))))))
6175 (defun org-set-startup-visibility ()
6176 "Set the visibility required by startup options and properties."
6177 (cond
6178 ((eq org-startup-folded t)
6179 (org-cycle '(4)))
6180 ((eq org-startup-folded 'content)
6181 (let ((this-command 'org-cycle) (last-command 'org-cycle))
6182 (org-cycle '(4)) (org-cycle '(4)))))
6183 (unless (eq org-startup-folded 'showeverything)
6184 (if org-hide-block-startup (org-hide-block-all))
6185 (org-set-visibility-according-to-property 'no-cleanup)
6186 (org-cycle-hide-archived-subtrees 'all)
6187 (org-cycle-hide-drawers 'all)
6188 (org-cycle-show-empty-lines t)))
6190 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6191 "Switch subtree visibilities according to :VISIBILITY: property."
6192 (interactive)
6193 (let (org-show-entry-below state)
6194 (save-excursion
6195 (goto-char (point-min))
6196 (while (re-search-forward
6197 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6198 nil t)
6199 (setq state (match-string 1))
6200 (save-excursion
6201 (org-back-to-heading t)
6202 (hide-subtree)
6203 (org-reveal)
6204 (cond
6205 ((equal state '("fold" "folded"))
6206 (hide-subtree))
6207 ((equal state "children")
6208 (org-show-hidden-entry)
6209 (show-children))
6210 ((equal state "content")
6211 (save-excursion
6212 (save-restriction
6213 (org-narrow-to-subtree)
6214 (org-content))))
6215 ((member state '("all" "showall"))
6216 (show-subtree)))))
6217 (unless no-cleanup
6218 (org-cycle-hide-archived-subtrees 'all)
6219 (org-cycle-hide-drawers 'all)
6220 (org-cycle-show-empty-lines 'all)))))
6222 (defun org-overview ()
6223 "Switch to overview mode, showing only top-level headlines.
6224 Really, this shows all headlines with level equal or greater than the level
6225 of the first headline in the buffer. This is important, because if the
6226 first headline is not level one, then (hide-sublevels 1) gives confusing
6227 results."
6228 (interactive)
6229 (let ((level (save-excursion
6230 (goto-char (point-min))
6231 (if (re-search-forward org-outline-regexp-bol nil t)
6232 (progn
6233 (goto-char (match-beginning 0))
6234 (funcall outline-level))))))
6235 (and level (hide-sublevels level))))
6237 (defun org-content (&optional arg)
6238 "Show all headlines in the buffer, like a table of contents.
6239 With numerical argument N, show content up to level N."
6240 (interactive "P")
6241 (save-excursion
6242 ;; Visit all headings and show their offspring
6243 (and (integerp arg) (org-overview))
6244 (goto-char (point-max))
6245 (catch 'exit
6246 (while (and (progn (condition-case nil
6247 (outline-previous-visible-heading 1)
6248 (error (goto-char (point-min))))
6250 (looking-at org-outline-regexp))
6251 (if (integerp arg)
6252 (show-children (1- arg))
6253 (show-branches))
6254 (if (bobp) (throw 'exit nil))))))
6257 (defun org-optimize-window-after-visibility-change (state)
6258 "Adjust the window after a change in outline visibility.
6259 This function is the default value of the hook `org-cycle-hook'."
6260 (when (get-buffer-window (current-buffer))
6261 (cond
6262 ((eq state 'content) nil)
6263 ((eq state 'all) nil)
6264 ((eq state 'folded) nil)
6265 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
6266 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
6268 (defun org-remove-empty-overlays-at (pos)
6269 "Remove outline overlays that do not contain non-white stuff."
6270 (mapc
6271 (lambda (o)
6272 (and (eq 'outline (overlay-get o 'invisible))
6273 (not (string-match "\\S-" (buffer-substring (overlay-start o)
6274 (overlay-end o))))
6275 (delete-overlay o)))
6276 (overlays-at pos)))
6278 (defun org-clean-visibility-after-subtree-move ()
6279 "Fix visibility issues after moving a subtree."
6280 ;; First, find a reasonable region to look at:
6281 ;; Start two siblings above, end three below
6282 (let* ((beg (save-excursion
6283 (and (org-get-last-sibling)
6284 (org-get-last-sibling))
6285 (point)))
6286 (end (save-excursion
6287 (and (org-get-next-sibling)
6288 (org-get-next-sibling)
6289 (org-get-next-sibling))
6290 (if (org-at-heading-p)
6291 (point-at-eol)
6292 (point))))
6293 (level (looking-at "\\*+"))
6294 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
6295 (save-excursion
6296 (save-restriction
6297 (narrow-to-region beg end)
6298 (when re
6299 ;; Properly fold already folded siblings
6300 (goto-char (point-min))
6301 (while (re-search-forward re nil t)
6302 (if (and (not (outline-invisible-p))
6303 (save-excursion
6304 (goto-char (point-at-eol)) (outline-invisible-p)))
6305 (hide-entry))))
6306 (org-cycle-show-empty-lines 'overview)
6307 (org-cycle-hide-drawers 'overview)))))
6309 (defun org-cycle-show-empty-lines (state)
6310 "Show empty lines above all visible headlines.
6311 The region to be covered depends on STATE when called through
6312 `org-cycle-hook'. Lisp program can use t for STATE to get the
6313 entire buffer covered. Note that an empty line is only shown if there
6314 are at least `org-cycle-separator-lines' empty lines before the headline."
6315 (when (not (= org-cycle-separator-lines 0))
6316 (save-excursion
6317 (let* ((n (abs org-cycle-separator-lines))
6318 (re (cond
6319 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
6320 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
6321 (t (let ((ns (number-to-string (- n 2))))
6322 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
6323 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
6324 beg end b e)
6325 (cond
6326 ((memq state '(overview contents t))
6327 (setq beg (point-min) end (point-max)))
6328 ((memq state '(children folded))
6329 (setq beg (point) end (progn (org-end-of-subtree t t)
6330 (beginning-of-line 2)
6331 (point)))))
6332 (when beg
6333 (goto-char beg)
6334 (while (re-search-forward re end t)
6335 (unless (get-char-property (match-end 1) 'invisible)
6336 (setq e (match-end 1))
6337 (if (< org-cycle-separator-lines 0)
6338 (setq b (save-excursion
6339 (goto-char (match-beginning 0))
6340 (org-back-over-empty-lines)
6341 (if (save-excursion
6342 (goto-char (max (point-min) (1- (point))))
6343 (org-on-heading-p))
6344 (1- (point))
6345 (point))))
6346 (setq b (match-beginning 1)))
6347 (outline-flag-region b e nil)))))))
6348 ;; Never hide empty lines at the end of the file.
6349 (save-excursion
6350 (goto-char (point-max))
6351 (outline-previous-heading)
6352 (outline-end-of-heading)
6353 (if (and (looking-at "[ \t\n]+")
6354 (= (match-end 0) (point-max)))
6355 (outline-flag-region (point) (match-end 0) nil))))
6357 (defun org-show-empty-lines-in-parent ()
6358 "Move to the parent and re-show empty lines before visible headlines."
6359 (save-excursion
6360 (let ((context (if (org-up-heading-safe) 'children 'overview)))
6361 (org-cycle-show-empty-lines context))))
6363 (defun org-files-list ()
6364 "Return `org-agenda-files' list, plus all open org-mode files.
6365 This is useful for operations that need to scan all of a user's
6366 open and agenda-wise Org files."
6367 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
6368 (dolist (buf (buffer-list))
6369 (with-current-buffer buf
6370 (if (and (org-mode-p) (buffer-file-name))
6371 (let ((file (expand-file-name (buffer-file-name))))
6372 (unless (member file files)
6373 (push file files))))))
6374 files))
6376 (defsubst org-entry-beginning-position ()
6377 "Return the beginning position of the current entry."
6378 (save-excursion (outline-back-to-heading t) (point)))
6380 (defsubst org-entry-end-position ()
6381 "Return the end position of the current entry."
6382 (save-excursion (outline-next-heading) (point)))
6384 (defun org-cycle-hide-drawers (state)
6385 "Re-hide all drawers after a visibility state change."
6386 (when (and (org-mode-p)
6387 (not (memq state '(overview folded contents))))
6388 (save-excursion
6389 (let* ((globalp (memq state '(contents all)))
6390 (beg (if globalp (point-min) (point)))
6391 (end (if globalp (point-max)
6392 (if (eq state 'children)
6393 (save-excursion (outline-next-heading) (point))
6394 (org-end-of-subtree t)))))
6395 (goto-char beg)
6396 (while (re-search-forward org-drawer-regexp end t)
6397 (org-flag-drawer t))))))
6399 (defun org-flag-drawer (flag)
6400 (save-excursion
6401 (beginning-of-line 1)
6402 (when (looking-at "^[ \t]*:[a-zA-Z][a-zA-Z0-9]*:")
6403 (let ((b (match-end 0)))
6404 (if (re-search-forward
6405 "^[ \t]*:END:"
6406 (save-excursion (outline-next-heading) (point)) t)
6407 (outline-flag-region b (point-at-eol) flag)
6408 (error ":END: line missing at position %s" b))))))
6410 (defun org-subtree-end-visible-p ()
6411 "Is the end of the current subtree visible?"
6412 (pos-visible-in-window-p
6413 (save-excursion (org-end-of-subtree t) (point))))
6415 (defun org-first-headline-recenter (&optional N)
6416 "Move cursor to the first headline and recenter the headline.
6417 Optional argument N means put the headline into the Nth line of the window."
6418 (goto-char (point-min))
6419 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
6420 (beginning-of-line)
6421 (recenter (prefix-numeric-value N))))
6423 ;;; Saving and restoring visibility
6425 (defun org-outline-overlay-data (&optional use-markers)
6426 "Return a list of the locations of all outline overlays.
6427 These are overlays with the `invisible' property value `outline'.
6428 The return value is a list of cons cells, with start and stop
6429 positions for each overlay.
6430 If USE-MARKERS is set, return the positions as markers."
6431 (let (beg end)
6432 (save-excursion
6433 (save-restriction
6434 (widen)
6435 (delq nil
6436 (mapcar (lambda (o)
6437 (when (eq (overlay-get o 'invisible) 'outline)
6438 (setq beg (overlay-start o)
6439 end (overlay-end o))
6440 (and beg end (> end beg)
6441 (if use-markers
6442 (cons (move-marker (make-marker) beg)
6443 (move-marker (make-marker) end))
6444 (cons beg end)))))
6445 (overlays-in (point-min) (point-max))))))))
6447 (defun org-set-outline-overlay-data (data)
6448 "Create visibility overlays for all positions in DATA.
6449 DATA should have been made by `org-outline-overlay-data'."
6450 (let (o)
6451 (save-excursion
6452 (save-restriction
6453 (widen)
6454 (show-all)
6455 (mapc (lambda (c)
6456 (setq o (make-overlay (car c) (cdr c)))
6457 (overlay-put o 'invisible 'outline))
6458 data)))))
6460 ;;; Folding of blocks
6462 (defconst org-block-regexp
6463 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
6464 "Regular expression for hiding blocks.")
6466 (defvar org-hide-block-overlays nil
6467 "Overlays hiding blocks.")
6468 (make-variable-buffer-local 'org-hide-block-overlays)
6470 (defun org-block-map (function &optional start end)
6471 "Call FUNCTION at the head of all source blocks in the current buffer.
6472 Optional arguments START and END can be used to limit the range."
6473 (let ((start (or start (point-min)))
6474 (end (or end (point-max))))
6475 (save-excursion
6476 (goto-char start)
6477 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
6478 (save-excursion
6479 (save-match-data
6480 (goto-char (match-beginning 0))
6481 (funcall function)))))))
6483 (defun org-hide-block-toggle-all ()
6484 "Toggle the visibility of all blocks in the current buffer."
6485 (org-block-map #'org-hide-block-toggle))
6487 (defun org-hide-block-all ()
6488 "Fold all blocks in the current buffer."
6489 (interactive)
6490 (org-show-block-all)
6491 (org-block-map #'org-hide-block-toggle-maybe))
6493 (defun org-show-block-all ()
6494 "Unfold all blocks in the current buffer."
6495 (interactive)
6496 (mapc 'delete-overlay org-hide-block-overlays)
6497 (setq org-hide-block-overlays nil))
6499 (defun org-hide-block-toggle-maybe ()
6500 "Toggle visibility of block at point."
6501 (interactive)
6502 (let ((case-fold-search t))
6503 (if (save-excursion
6504 (beginning-of-line 1)
6505 (looking-at org-block-regexp))
6506 (progn (org-hide-block-toggle)
6507 t) ;; to signal that we took action
6508 nil))) ;; to signal that we did not
6510 (defun org-hide-block-toggle (&optional force)
6511 "Toggle the visibility of the current block."
6512 (interactive)
6513 (save-excursion
6514 (beginning-of-line)
6515 (if (re-search-forward org-block-regexp nil t)
6516 (let ((start (- (match-beginning 4) 1)) ;; beginning of body
6517 (end (match-end 0)) ;; end of entire body
6519 (if (memq t (mapcar (lambda (overlay)
6520 (eq (overlay-get overlay 'invisible)
6521 'org-hide-block))
6522 (overlays-at start)))
6523 (if (or (not force) (eq force 'off))
6524 (mapc (lambda (ov)
6525 (when (member ov org-hide-block-overlays)
6526 (setq org-hide-block-overlays
6527 (delq ov org-hide-block-overlays)))
6528 (when (eq (overlay-get ov 'invisible)
6529 'org-hide-block)
6530 (delete-overlay ov)))
6531 (overlays-at start)))
6532 (setq ov (make-overlay start end))
6533 (overlay-put ov 'invisible 'org-hide-block)
6534 ;; make the block accessible to isearch
6535 (overlay-put
6536 ov 'isearch-open-invisible
6537 (lambda (ov)
6538 (when (member ov org-hide-block-overlays)
6539 (setq org-hide-block-overlays
6540 (delq ov org-hide-block-overlays)))
6541 (when (eq (overlay-get ov 'invisible)
6542 'org-hide-block)
6543 (delete-overlay ov))))
6544 (push ov org-hide-block-overlays)))
6545 (error "Not looking at a source block"))))
6547 ;; org-tab-after-check-for-cycling-hook
6548 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
6549 ;; Remove overlays when changing major mode
6550 (add-hook 'org-mode-hook
6551 (lambda () (org-add-hook 'change-major-mode-hook
6552 'org-show-block-all 'append 'local)))
6554 ;;; Org-goto
6556 (defvar org-goto-window-configuration nil)
6557 (defvar org-goto-marker nil)
6558 (defvar org-goto-map
6559 (let ((map (make-sparse-keymap)))
6560 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command mouse-drag-region universal-argument org-occur)) cmd)
6561 (while (setq cmd (pop cmds))
6562 (substitute-key-definition cmd cmd map global-map)))
6563 (suppress-keymap map)
6564 (org-defkey map "\C-m" 'org-goto-ret)
6565 (org-defkey map [(return)] 'org-goto-ret)
6566 (org-defkey map [(left)] 'org-goto-left)
6567 (org-defkey map [(right)] 'org-goto-right)
6568 (org-defkey map [(control ?g)] 'org-goto-quit)
6569 (org-defkey map "\C-i" 'org-cycle)
6570 (org-defkey map [(tab)] 'org-cycle)
6571 (org-defkey map [(down)] 'outline-next-visible-heading)
6572 (org-defkey map [(up)] 'outline-previous-visible-heading)
6573 (if org-goto-auto-isearch
6574 (if (fboundp 'define-key-after)
6575 (define-key-after map [t] 'org-goto-local-auto-isearch)
6576 nil)
6577 (org-defkey map "q" 'org-goto-quit)
6578 (org-defkey map "n" 'outline-next-visible-heading)
6579 (org-defkey map "p" 'outline-previous-visible-heading)
6580 (org-defkey map "f" 'outline-forward-same-level)
6581 (org-defkey map "b" 'outline-backward-same-level)
6582 (org-defkey map "u" 'outline-up-heading))
6583 (org-defkey map "/" 'org-occur)
6584 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
6585 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
6586 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
6587 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
6588 (org-defkey map "\C-c\C-u" 'outline-up-heading)
6589 map))
6591 (defconst org-goto-help
6592 "Browse buffer copy, to find location or copy text. Just type for auto-isearch.
6593 RET=jump to location [Q]uit and return to previous location
6594 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
6596 (defvar org-goto-start-pos) ; dynamically scoped parameter
6598 ;; FIXME: Docstring does not mention both interfaces
6599 (defun org-goto (&optional alternative-interface)
6600 "Look up a different location in the current file, keeping current visibility.
6602 When you want look-up or go to a different location in a document, the
6603 fastest way is often to fold the entire buffer and then dive into the tree.
6604 This method has the disadvantage, that the previous location will be folded,
6605 which may not be what you want.
6607 This command works around this by showing a copy of the current buffer
6608 in an indirect buffer, in overview mode. You can dive into the tree in
6609 that copy, use org-occur and incremental search to find a location.
6610 When pressing RET or `Q', the command returns to the original buffer in
6611 which the visibility is still unchanged. After RET is will also jump to
6612 the location selected in the indirect buffer and expose the headline
6613 hierarchy above."
6614 (interactive "P")
6615 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
6616 (org-refile-use-outline-path t)
6617 (org-refile-target-verify-function nil)
6618 (interface
6619 (if (not alternative-interface)
6620 org-goto-interface
6621 (if (eq org-goto-interface 'outline)
6622 'outline-path-completion
6623 'outline)))
6624 (org-goto-start-pos (point))
6625 (selected-point
6626 (if (eq interface 'outline)
6627 (car (org-get-location (current-buffer) org-goto-help))
6628 (let ((pa (org-refile-get-location "Goto")))
6629 (org-refile-check-position pa)
6630 (nth 3 pa)))))
6631 (if selected-point
6632 (progn
6633 (org-mark-ring-push org-goto-start-pos)
6634 (goto-char selected-point)
6635 (if (or (outline-invisible-p) (org-invisible-p2))
6636 (org-show-context 'org-goto)))
6637 (message "Quit"))))
6639 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
6640 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
6641 (defvar org-goto-local-auto-isearch-map) ; defined below
6643 (defun org-get-location (buf help)
6644 "Let the user select a location in the Org-mode buffer BUF.
6645 This function uses a recursive edit. It returns the selected position
6646 or nil."
6647 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
6648 (isearch-hide-immediately nil)
6649 (isearch-search-fun-function
6650 (lambda () 'org-goto-local-search-headings))
6651 (org-goto-selected-point org-goto-exit-command)
6652 (pop-up-frames nil)
6653 (special-display-buffer-names nil)
6654 (special-display-regexps nil)
6655 (special-display-function nil))
6656 (save-excursion
6657 (save-window-excursion
6658 (delete-other-windows)
6659 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
6660 (org-pop-to-buffer-same-window
6661 (condition-case nil
6662 (make-indirect-buffer (current-buffer) "*org-goto*")
6663 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
6664 (with-output-to-temp-buffer "*Help*"
6665 (princ help))
6666 (org-fit-window-to-buffer (get-buffer-window "*Help*"))
6667 (setq buffer-read-only nil)
6668 (let ((org-startup-truncated t)
6669 (org-startup-folded nil)
6670 (org-startup-align-all-tables nil))
6671 (org-mode)
6672 (org-overview))
6673 (setq buffer-read-only t)
6674 (if (and (boundp 'org-goto-start-pos)
6675 (integer-or-marker-p org-goto-start-pos))
6676 (let ((org-show-hierarchy-above t)
6677 (org-show-siblings t)
6678 (org-show-following-heading t))
6679 (goto-char org-goto-start-pos)
6680 (and (outline-invisible-p) (org-show-context)))
6681 (goto-char (point-min)))
6682 (let (org-special-ctrl-a/e) (org-beginning-of-line))
6683 (message "Select location and press RET")
6684 (use-local-map org-goto-map)
6685 (recursive-edit)
6687 (kill-buffer "*org-goto*")
6688 (cons org-goto-selected-point org-goto-exit-command)))
6690 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
6691 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
6692 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
6693 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char)
6695 (defun org-goto-local-search-headings (string bound noerror)
6696 "Search and make sure that any matches are in headlines."
6697 (catch 'return
6698 (while (if isearch-forward
6699 (search-forward string bound noerror)
6700 (search-backward string bound noerror))
6701 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
6702 (and (member :headline context)
6703 (not (member :tags context))))
6704 (throw 'return (point))))))
6706 (defun org-goto-local-auto-isearch ()
6707 "Start isearch."
6708 (interactive)
6709 (goto-char (point-min))
6710 (let ((keys (this-command-keys)))
6711 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
6712 (isearch-mode t)
6713 (isearch-process-search-char (string-to-char keys)))))
6715 (defun org-goto-ret (&optional arg)
6716 "Finish `org-goto' by going to the new location."
6717 (interactive "P")
6718 (setq org-goto-selected-point (point)
6719 org-goto-exit-command 'return)
6720 (throw 'exit nil))
6722 (defun org-goto-left ()
6723 "Finish `org-goto' by going to the new location."
6724 (interactive)
6725 (if (org-on-heading-p)
6726 (progn
6727 (beginning-of-line 1)
6728 (setq org-goto-selected-point (point)
6729 org-goto-exit-command 'left)
6730 (throw 'exit nil))
6731 (error "Not on a heading")))
6733 (defun org-goto-right ()
6734 "Finish `org-goto' by going to the new location."
6735 (interactive)
6736 (if (org-on-heading-p)
6737 (progn
6738 (setq org-goto-selected-point (point)
6739 org-goto-exit-command 'right)
6740 (throw 'exit nil))
6741 (error "Not on a heading")))
6743 (defun org-goto-quit ()
6744 "Finish `org-goto' without cursor motion."
6745 (interactive)
6746 (setq org-goto-selected-point nil)
6747 (setq org-goto-exit-command 'quit)
6748 (throw 'exit nil))
6750 ;;; Indirect buffer display of subtrees
6752 (defvar org-indirect-dedicated-frame nil
6753 "This is the frame being used for indirect tree display.")
6754 (defvar org-last-indirect-buffer nil)
6756 (defun org-tree-to-indirect-buffer (&optional arg)
6757 "Create indirect buffer and narrow it to current subtree.
6758 With numerical prefix ARG, go up to this level and then take that tree.
6759 If ARG is negative, go up that many levels.
6760 If `org-indirect-buffer-display' is not `new-frame', the command removes the
6761 indirect buffer previously made with this command, to avoid proliferation of
6762 indirect buffers. However, when you call the command with a \
6763 \\[universal-argument] prefix, or
6764 when `org-indirect-buffer-display' is `new-frame', the last buffer
6765 is kept so that you can work with several indirect buffers at the same time.
6766 If `org-indirect-buffer-display' is `dedicated-frame', the \
6767 \\[universal-argument] prefix also
6768 requests that a new frame be made for the new buffer, so that the dedicated
6769 frame is not changed."
6770 (interactive "P")
6771 (let ((cbuf (current-buffer))
6772 (cwin (selected-window))
6773 (pos (point))
6774 beg end level heading ibuf)
6775 (save-excursion
6776 (org-back-to-heading t)
6777 (when (numberp arg)
6778 (setq level (org-outline-level))
6779 (if (< arg 0) (setq arg (+ level arg)))
6780 (while (> (setq level (org-outline-level)) arg)
6781 (outline-up-heading 1 t)))
6782 (setq beg (point)
6783 heading (org-get-heading))
6784 (org-end-of-subtree t t)
6785 (if (org-on-heading-p) (backward-char 1))
6786 (setq end (point)))
6787 (if (and (buffer-live-p org-last-indirect-buffer)
6788 (not (eq org-indirect-buffer-display 'new-frame))
6789 (not arg))
6790 (kill-buffer org-last-indirect-buffer))
6791 (setq ibuf (org-get-indirect-buffer cbuf)
6792 org-last-indirect-buffer ibuf)
6793 (cond
6794 ((or (eq org-indirect-buffer-display 'new-frame)
6795 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
6796 (select-frame (make-frame))
6797 (delete-other-windows)
6798 (org-pop-to-buffer-same-window ibuf)
6799 (org-set-frame-title heading))
6800 ((eq org-indirect-buffer-display 'dedicated-frame)
6801 (raise-frame
6802 (select-frame (or (and org-indirect-dedicated-frame
6803 (frame-live-p org-indirect-dedicated-frame)
6804 org-indirect-dedicated-frame)
6805 (setq org-indirect-dedicated-frame (make-frame)))))
6806 (delete-other-windows)
6807 (org-pop-to-buffer-same-window ibuf)
6808 (org-set-frame-title (concat "Indirect: " heading)))
6809 ((eq org-indirect-buffer-display 'current-window)
6810 (org-pop-to-buffer-same-window ibuf))
6811 ((eq org-indirect-buffer-display 'other-window)
6812 (pop-to-buffer ibuf))
6813 (t (error "Invalid value")))
6814 (if (featurep 'xemacs)
6815 (save-excursion (org-mode) (turn-on-font-lock)))
6816 (narrow-to-region beg end)
6817 (show-all)
6818 (goto-char pos)
6819 (and (window-live-p cwin) (select-window cwin))))
6821 (defun org-get-indirect-buffer (&optional buffer)
6822 (setq buffer (or buffer (current-buffer)))
6823 (let ((n 1) (base (buffer-name buffer)) bname)
6824 (while (buffer-live-p
6825 (get-buffer (setq bname (concat base "-" (number-to-string n)))))
6826 (setq n (1+ n)))
6827 (condition-case nil
6828 (make-indirect-buffer buffer bname 'clone)
6829 (error (make-indirect-buffer buffer bname)))))
6831 (defun org-set-frame-title (title)
6832 "Set the title of the current frame to the string TITLE."
6833 ;; FIXME: how to name a single frame in XEmacs???
6834 (unless (featurep 'xemacs)
6835 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
6837 ;;;; Structure editing
6839 ;;; Inserting headlines
6841 (defun org-previous-line-empty-p ()
6842 (save-excursion
6843 (and (not (bobp))
6844 (or (beginning-of-line 0) t)
6845 (save-match-data
6846 (looking-at "[ \t]*$")))))
6848 (defun org-insert-heading (&optional force-heading invisible-ok)
6849 "Insert a new heading or item with same depth at point.
6850 If point is in a plain list and FORCE-HEADING is nil, create a new list item.
6851 If point is at the beginning of a headline, insert a sibling before the
6852 current headline. If point is not at the beginning, split the line,
6853 create the new headline with the text in the current line after point
6854 \(but see also the variable `org-M-RET-may-split-line').
6856 When INVISIBLE-OK is set, stop at invisible headlines when going back.
6857 This is important for non-interactive uses of the command."
6858 (interactive "P")
6859 (if (or (= (buffer-size) 0)
6860 (and (not (save-excursion
6861 (and (ignore-errors (org-back-to-heading invisible-ok))
6862 (org-on-heading-p))))
6863 (or force-heading (not (org-in-item-p)))))
6864 (progn
6865 (insert "\n* ")
6866 (run-hooks 'org-insert-heading-hook))
6867 (when (or force-heading (not (org-insert-item)))
6868 (let* ((empty-line-p nil)
6869 (level nil)
6870 (on-heading (org-on-heading-p))
6871 (head (save-excursion
6872 (condition-case nil
6873 (progn
6874 (org-back-to-heading invisible-ok)
6875 (when (and (not on-heading)
6876 (featurep 'org-inlinetask)
6877 (integerp org-inlinetask-min-level)
6878 (>= (length (match-string 0))
6879 org-inlinetask-min-level))
6880 ;; Find a heading level before the inline task
6881 (while (and (setq level (org-up-heading-safe))
6882 (>= level org-inlinetask-min-level)))
6883 (if (org-on-heading-p)
6884 (org-back-to-heading invisible-ok)
6885 (error "This should not happen")))
6886 (setq empty-line-p (org-previous-line-empty-p))
6887 (match-string 0))
6888 (error "*"))))
6889 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
6890 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
6891 pos hide-previous previous-pos)
6892 (cond
6893 ((and (org-on-heading-p) (bolp)
6894 (or (bobp)
6895 (save-excursion (backward-char 1) (not (outline-invisible-p)))))
6896 ;; insert before the current line
6897 (open-line (if blank 2 1)))
6898 ((and (bolp)
6899 (not org-insert-heading-respect-content)
6900 (or (bobp)
6901 (save-excursion
6902 (backward-char 1) (not (outline-invisible-p)))))
6903 ;; insert right here
6904 nil)
6906 ;; somewhere in the line
6907 (save-excursion
6908 (setq previous-pos (point-at-bol))
6909 (end-of-line)
6910 (setq hide-previous (outline-invisible-p)))
6911 (and org-insert-heading-respect-content (org-show-subtree))
6912 (let ((split
6913 (and (org-get-alist-option org-M-RET-may-split-line 'headline)
6914 (save-excursion
6915 (let ((p (point)))
6916 (goto-char (point-at-bol))
6917 (and (looking-at org-complex-heading-regexp)
6918 (> p (match-beginning 4)))))))
6919 tags pos)
6920 (cond
6921 (org-insert-heading-respect-content
6922 (org-end-of-subtree nil t)
6923 (when (featurep 'org-inlinetask)
6924 (while (and (not (eobp))
6925 (looking-at "\\(\\*+\\)[ \t]+")
6926 (>= (length (match-string 1))
6927 org-inlinetask-min-level))
6928 (org-end-of-subtree nil t)))
6929 (or (bolp) (newline))
6930 (or (org-previous-line-empty-p)
6931 (and blank (newline)))
6932 (open-line 1))
6933 ((org-on-heading-p)
6934 (when hide-previous
6935 (show-children)
6936 (org-show-entry))
6937 (looking-at ".*?\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?[ \t]*$")
6938 (setq tags (and (match-end 2) (match-string 2)))
6939 (and (match-end 1)
6940 (delete-region (match-beginning 1) (match-end 1)))
6941 (setq pos (point-at-bol))
6942 (or split (end-of-line 1))
6943 (delete-horizontal-space)
6944 (if (string-match "\\`\\*+\\'"
6945 (buffer-substring (point-at-bol) (point)))
6946 (insert " "))
6947 (newline (if blank 2 1))
6948 (when tags
6949 (save-excursion
6950 (goto-char pos)
6951 (end-of-line 1)
6952 (insert " " tags)
6953 (org-set-tags nil 'align))))
6955 (or split (end-of-line 1))
6956 (newline (if blank 2 1)))))))
6957 (insert head) (just-one-space)
6958 (setq pos (point))
6959 (end-of-line 1)
6960 (unless (= (point) pos) (just-one-space) (backward-delete-char 1))
6961 (when (and org-insert-heading-respect-content hide-previous)
6962 (save-excursion
6963 (goto-char previous-pos)
6964 (hide-subtree)))
6965 (run-hooks 'org-insert-heading-hook)))))
6967 (defun org-get-heading (&optional no-tags no-todo)
6968 "Return the heading of the current entry, without the stars.
6969 When NO-TAGS is non-nil, don't include tags.
6970 When NO-TODO is non-nil, don't include TODO keywords."
6971 (save-excursion
6972 (org-back-to-heading t)
6973 (cond
6974 ((and no-tags no-todo)
6975 (looking-at org-complex-heading-regexp)
6976 (match-string 4))
6977 (no-tags
6978 (looking-at "\\*+[ \t]+\\([^\n\r]*?\\)\\([ \t]+:[[:alnum:]:_@#%]+:[ \t]*\\)?$")
6979 (match-string 1))
6980 (no-todo
6981 (looking-at (concat "\\*+[ \t]+" org-todo-regexp " +"
6982 "\\([^\n\r]*?[ \t]+:[[:alnum:]:_@#%]+:[ \t]*\\)?$"))
6983 (match-string 2))
6984 (t (looking-at "\\*+[ \t]+\\([^\r\n]*\\)")
6985 (match-string 1)))))
6987 (defun org-heading-components ()
6988 "Return the components of the current heading.
6989 This is a list with the following elements:
6990 - the level as an integer
6991 - the reduced level, different if `org-odd-levels-only' is set.
6992 - the TODO keyword, or nil
6993 - the priority character, like ?A, or nil if no priority is given
6994 - the headline text itself, or the tags string if no headline text
6995 - the tags string, or nil."
6996 (save-excursion
6997 (org-back-to-heading t)
6998 (if (let (case-fold-search) (looking-at org-complex-heading-regexp))
6999 (list (length (match-string 1))
7000 (org-reduced-level (length (match-string 1)))
7001 (org-match-string-no-properties 2)
7002 (and (match-end 3) (aref (match-string 3) 2))
7003 (org-match-string-no-properties 4)
7004 (org-match-string-no-properties 5)))))
7006 (defun org-get-entry ()
7007 "Get the entry text, after heading, entire subtree."
7008 (save-excursion
7009 (org-back-to-heading t)
7010 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7012 (defun org-insert-heading-after-current ()
7013 "Insert a new heading with same level as current, after current subtree."
7014 (interactive)
7015 (org-back-to-heading)
7016 (org-insert-heading)
7017 (org-move-subtree-down)
7018 (end-of-line 1))
7020 (defun org-insert-heading-respect-content ()
7021 (interactive)
7022 (let ((org-insert-heading-respect-content t))
7023 (org-insert-heading t)))
7025 (defun org-insert-todo-heading-respect-content (&optional force-state)
7026 (interactive "P")
7027 (let ((org-insert-heading-respect-content t))
7028 (org-insert-todo-heading force-state t)))
7030 (defun org-insert-todo-heading (arg &optional force-heading)
7031 "Insert a new heading with the same level and TODO state as current heading.
7032 If the heading has no TODO state, or if the state is DONE, use the first
7033 state (TODO by default). Also with prefix arg, force first state."
7034 (interactive "P")
7035 (when (or force-heading (not (org-insert-item 'checkbox)))
7036 (org-insert-heading force-heading)
7037 (save-excursion
7038 (org-back-to-heading)
7039 (outline-previous-heading)
7040 (looking-at org-todo-line-regexp))
7041 (let*
7042 ((new-mark-x
7043 (if (or arg
7044 (not (match-beginning 2))
7045 (member (match-string 2) org-done-keywords))
7046 (car org-todo-keywords-1)
7047 (match-string 2)))
7048 (new-mark
7050 (run-hook-with-args-until-success
7051 'org-todo-get-default-hook new-mark-x nil)
7052 new-mark-x)))
7053 (beginning-of-line 1)
7054 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7055 (if org-treat-insert-todo-heading-as-state-change
7056 (org-todo new-mark)
7057 (insert new-mark " "))))
7058 (when org-provide-todo-statistics
7059 (org-update-parent-todo-statistics))))
7061 (defun org-insert-subheading (arg)
7062 "Insert a new subheading and demote it.
7063 Works for outline headings and for plain lists alike."
7064 (interactive "P")
7065 (org-insert-heading arg)
7066 (cond
7067 ((org-on-heading-p) (org-do-demote))
7068 ((org-at-item-p) (org-indent-item))))
7070 (defun org-insert-todo-subheading (arg)
7071 "Insert a new subheading with TODO keyword or checkbox and demote it.
7072 Works for outline headings and for plain lists alike."
7073 (interactive "P")
7074 (org-insert-todo-heading arg)
7075 (cond
7076 ((org-on-heading-p) (org-do-demote))
7077 ((org-at-item-p) (org-indent-item))))
7079 ;;; Promotion and Demotion
7081 (defvar org-after-demote-entry-hook nil
7082 "Hook run after an entry has been demoted.
7083 The cursor will be at the beginning of the entry.
7084 When a subtree is being demoted, the hook will be called for each node.")
7086 (defvar org-after-promote-entry-hook nil
7087 "Hook run after an entry has been promoted.
7088 The cursor will be at the beginning of the entry.
7089 When a subtree is being promoted, the hook will be called for each node.")
7091 (defun org-promote-subtree ()
7092 "Promote the entire subtree.
7093 See also `org-promote'."
7094 (interactive)
7095 (save-excursion
7096 (org-with-limited-levels (org-map-tree 'org-promote)))
7097 (org-fix-position-after-promote))
7099 (defun org-demote-subtree ()
7100 "Demote the entire subtree. See `org-demote'.
7101 See also `org-promote'."
7102 (interactive)
7103 (save-excursion
7104 (org-with-limited-levels (org-map-tree 'org-demote)))
7105 (org-fix-position-after-promote))
7108 (defun org-do-promote ()
7109 "Promote the current heading higher up the tree.
7110 If the region is active in `transient-mark-mode', promote all headings
7111 in the region."
7112 (interactive)
7113 (save-excursion
7114 (if (org-region-active-p)
7115 (org-map-region 'org-promote (region-beginning) (region-end))
7116 (org-promote)))
7117 (org-fix-position-after-promote))
7119 (defun org-do-demote ()
7120 "Demote the current heading lower down the tree.
7121 If the region is active in `transient-mark-mode', demote all headings
7122 in the region."
7123 (interactive)
7124 (save-excursion
7125 (if (org-region-active-p)
7126 (org-map-region 'org-demote (region-beginning) (region-end))
7127 (org-demote)))
7128 (org-fix-position-after-promote))
7130 (defun org-fix-position-after-promote ()
7131 "Make sure that after pro/demotion cursor position is right."
7132 (let ((pos (point)))
7133 (when (save-excursion
7134 (beginning-of-line 1)
7135 (looking-at org-todo-line-regexp)
7136 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
7137 (cond ((eobp) (insert " "))
7138 ((eolp) (insert " "))
7139 ((equal (char-after) ?\ ) (forward-char 1))))))
7141 (defun org-current-level ()
7142 "Return the level of the current entry, or nil if before the first headline.
7143 The level is the number of stars at the beginning of the headline."
7144 (save-excursion
7145 (org-with-limited-levels
7146 (ignore-errors
7147 (org-back-to-heading t)
7148 (funcall outline-level)))))
7150 (defun org-get-previous-line-level ()
7151 "Return the outline depth of the last headline before the current line.
7152 Returns 0 for the first headline in the buffer, and nil if before the
7153 first headline."
7154 (let ((current-level (org-current-level))
7155 (prev-level (when (> (line-number-at-pos) 1)
7156 (save-excursion
7157 (beginning-of-line 0)
7158 (org-current-level)))))
7159 (cond ((null current-level) nil) ; Before first headline
7160 ((null prev-level) 0) ; At first headline
7161 (prev-level))))
7163 (defun org-reduced-level (l)
7164 "Compute the effective level of a heading.
7165 This takes into account the setting of `org-odd-levels-only'."
7166 (cond
7167 ((zerop l) 0)
7168 (org-odd-levels-only (1+ (floor (/ l 2))))
7169 (t l)))
7171 (defun org-level-increment ()
7172 "Return the number of stars that will be added or removed at a
7173 time to headlines when structure editing, based on the value of
7174 `org-odd-levels-only'."
7175 (if org-odd-levels-only 2 1))
7177 (defun org-get-valid-level (level &optional change)
7178 "Rectify a level change under the influence of `org-odd-levels-only'
7179 LEVEL is a current level, CHANGE is by how much the level should be
7180 modified. Even if CHANGE is nil, LEVEL may be returned modified because
7181 even level numbers will become the next higher odd number."
7182 (if org-odd-levels-only
7183 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
7184 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
7185 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
7186 (max 1 (+ level (or change 0)))))
7188 (if (boundp 'define-obsolete-function-alias)
7189 (if (or (featurep 'xemacs) (< emacs-major-version 23))
7190 (define-obsolete-function-alias 'org-get-legal-level
7191 'org-get-valid-level)
7192 (define-obsolete-function-alias 'org-get-legal-level
7193 'org-get-valid-level "23.1")))
7195 (defun org-promote ()
7196 "Promote the current heading higher up the tree.
7197 If the region is active in `transient-mark-mode', promote all headings
7198 in the region."
7199 (org-back-to-heading t)
7200 (let* ((level (save-match-data (funcall outline-level)))
7201 (after-change-functions (remove 'flyspell-after-change-function
7202 after-change-functions))
7203 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
7204 (diff (abs (- level (length up-head) -1))))
7205 (if (= level 1) (error "Cannot promote to level 0. UNDO to recover if necessary"))
7206 (replace-match up-head nil t)
7207 ;; Fixup tag positioning
7208 (and org-auto-align-tags (org-set-tags nil t))
7209 (if org-adapt-indentation (org-fixup-indentation (- diff)))
7210 (run-hooks 'org-after-promote-entry-hook)))
7212 (defun org-demote ()
7213 "Demote the current heading lower down the tree.
7214 If the region is active in `transient-mark-mode', demote all headings
7215 in the region."
7216 (org-back-to-heading t)
7217 (let* ((level (save-match-data (funcall outline-level)))
7218 (after-change-functions (remove 'flyspell-after-change-function
7219 after-change-functions))
7220 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
7221 (diff (abs (- level (length down-head) -1))))
7222 (replace-match down-head nil t)
7223 ;; Fixup tag positioning
7224 (and org-auto-align-tags (org-set-tags nil t))
7225 (if org-adapt-indentation (org-fixup-indentation diff))
7226 (run-hooks 'org-after-demote-entry-hook)))
7228 (defun org-cycle-level ()
7229 "Cycle the level of an empty headline through possible states.
7230 This goes first to child, then to parent, level, then up the hierarchy.
7231 After top level, it switches back to sibling level."
7232 (interactive)
7233 (let ((org-adapt-indentation nil))
7234 (when (org-point-at-end-of-empty-headline)
7235 (setq this-command 'org-cycle-level) ; Only needed for caching
7236 (let ((cur-level (org-current-level))
7237 (prev-level (org-get-previous-line-level)))
7238 (cond
7239 ;; If first headline in file, promote to top-level.
7240 ((= prev-level 0)
7241 (loop repeat (/ (- cur-level 1) (org-level-increment))
7242 do (org-do-promote)))
7243 ;; If same level as prev, demote one.
7244 ((= prev-level cur-level)
7245 (org-do-demote))
7246 ;; If parent is top-level, promote to top level if not already.
7247 ((= prev-level 1)
7248 (loop repeat (/ (- cur-level 1) (org-level-increment))
7249 do (org-do-promote)))
7250 ;; If top-level, return to prev-level.
7251 ((= cur-level 1)
7252 (loop repeat (/ (- prev-level 1) (org-level-increment))
7253 do (org-do-demote)))
7254 ;; If less than prev-level, promote one.
7255 ((< cur-level prev-level)
7256 (org-do-promote))
7257 ;; If deeper than prev-level, promote until higher than
7258 ;; prev-level.
7259 ((> cur-level prev-level)
7260 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
7261 do (org-do-promote))))
7262 t))))
7264 (defun org-map-tree (fun)
7265 "Call FUN for every heading underneath the current one."
7266 (org-back-to-heading)
7267 (let ((level (funcall outline-level)))
7268 (save-excursion
7269 (funcall fun)
7270 (while (and (progn
7271 (outline-next-heading)
7272 (> (funcall outline-level) level))
7273 (not (eobp)))
7274 (funcall fun)))))
7276 (defun org-map-region (fun beg end)
7277 "Call FUN for every heading between BEG and END."
7278 (let ((org-ignore-region t))
7279 (save-excursion
7280 (setq end (copy-marker end))
7281 (goto-char beg)
7282 (if (and (re-search-forward org-outline-regexp-bol nil t)
7283 (< (point) end))
7284 (funcall fun))
7285 (while (and (progn
7286 (outline-next-heading)
7287 (< (point) end))
7288 (not (eobp)))
7289 (funcall fun)))))
7291 (defun org-fixup-indentation (diff)
7292 "Change the indentation in the current entry by DIFF.
7293 However, if any line in the current entry has no indentation, or if it
7294 would end up with no indentation after the change, nothing at all is done."
7295 (save-excursion
7296 (let ((end (save-excursion (outline-next-heading)
7297 (point-marker)))
7298 (prohibit (if (> diff 0)
7299 "^\\S-"
7300 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
7301 col)
7302 (unless (save-excursion (end-of-line 1)
7303 (re-search-forward prohibit end t))
7304 (while (and (< (point) end)
7305 (re-search-forward "^[ \t]+" end t))
7306 (goto-char (match-end 0))
7307 (setq col (current-column))
7308 (if (< diff 0) (replace-match ""))
7309 (org-indent-to-column (+ diff col))))
7310 (move-marker end nil))))
7312 (defun org-convert-to-odd-levels ()
7313 "Convert an org-mode file with all levels allowed to one with odd levels.
7314 This will leave level 1 alone, convert level 2 to level 3, level 3 to
7315 level 5 etc."
7316 (interactive)
7317 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
7318 (let ((outline-level 'org-outline-level)
7319 (org-odd-levels-only nil) n)
7320 (save-excursion
7321 (goto-char (point-min))
7322 (while (re-search-forward "^\\*\\*+ " nil t)
7323 (setq n (- (length (match-string 0)) 2))
7324 (while (>= (setq n (1- n)) 0)
7325 (org-demote))
7326 (end-of-line 1))))))
7328 (defun org-convert-to-oddeven-levels ()
7329 "Convert an org-mode file with only odd levels to one with odd/even levels.
7330 This promotes level 3 to level 2, level 5 to level 3 etc. If the
7331 file contains a section with an even level, conversion would
7332 destroy the structure of the file. An error is signaled in this
7333 case."
7334 (interactive)
7335 (goto-char (point-min))
7336 ;; First check if there are no even levels
7337 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
7338 (org-show-context t)
7339 (error "Not all levels are odd in this file. Conversion not possible"))
7340 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
7341 (let ((outline-regexp org-outline-regexp)
7342 (outline-level 'org-outline-level)
7343 (org-odd-levels-only nil) n)
7344 (save-excursion
7345 (goto-char (point-min))
7346 (while (re-search-forward "^\\*\\*+ " nil t)
7347 (setq n (/ (1- (length (match-string 0))) 2))
7348 (while (>= (setq n (1- n)) 0)
7349 (org-promote))
7350 (end-of-line 1))))))
7352 (defun org-tr-level (n)
7353 "Make N odd if required."
7354 (if org-odd-levels-only (1+ (/ n 2)) n))
7356 ;;; Vertical tree motion, cutting and pasting of subtrees
7358 (defun org-move-subtree-up (&optional arg)
7359 "Move the current subtree up past ARG headlines of the same level."
7360 (interactive "p")
7361 (org-move-subtree-down (- (prefix-numeric-value arg))))
7363 (defun org-move-subtree-down (&optional arg)
7364 "Move the current subtree down past ARG headlines of the same level."
7365 (interactive "p")
7366 (setq arg (prefix-numeric-value arg))
7367 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
7368 'org-get-last-sibling))
7369 (ins-point (make-marker))
7370 (cnt (abs arg))
7371 (col (current-column))
7372 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
7373 ;; Select the tree
7374 (org-back-to-heading)
7375 (setq beg0 (point))
7376 (save-excursion
7377 (setq ne-beg (org-back-over-empty-lines))
7378 (setq beg (point)))
7379 (save-match-data
7380 (save-excursion (outline-end-of-heading)
7381 (setq folded (outline-invisible-p)))
7382 (outline-end-of-subtree))
7383 (outline-next-heading)
7384 (setq ne-end (org-back-over-empty-lines))
7385 (setq end (point))
7386 (goto-char beg0)
7387 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
7388 ;; include less whitespace
7389 (save-excursion
7390 (goto-char beg)
7391 (forward-line (- ne-beg ne-end))
7392 (setq beg (point))))
7393 ;; Find insertion point, with error handling
7394 (while (> cnt 0)
7395 (or (and (funcall movfunc) (looking-at org-outline-regexp))
7396 (progn (goto-char beg0)
7397 (error "Cannot move past superior level or buffer limit")))
7398 (setq cnt (1- cnt)))
7399 (if (> arg 0)
7400 ;; Moving forward - still need to move over subtree
7401 (progn (org-end-of-subtree t t)
7402 (save-excursion
7403 (org-back-over-empty-lines)
7404 (or (bolp) (newline)))))
7405 (setq ne-ins (org-back-over-empty-lines))
7406 (move-marker ins-point (point))
7407 (setq txt (buffer-substring beg end))
7408 (org-save-markers-in-region beg end)
7409 (delete-region beg end)
7410 (org-remove-empty-overlays-at beg)
7411 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
7412 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
7413 (and (not (bolp)) (looking-at "\n") (forward-char 1))
7414 (let ((bbb (point)))
7415 (insert-before-markers txt)
7416 (org-reinstall-markers-in-region bbb)
7417 (move-marker ins-point bbb))
7418 (or (bolp) (insert "\n"))
7419 (setq ins-end (point))
7420 (goto-char ins-point)
7421 (org-skip-whitespace)
7422 (when (and (< arg 0)
7423 (org-first-sibling-p)
7424 (> ne-ins ne-beg))
7425 ;; Move whitespace back to beginning
7426 (save-excursion
7427 (goto-char ins-end)
7428 (let ((kill-whole-line t))
7429 (kill-line (- ne-ins ne-beg)) (point)))
7430 (insert (make-string (- ne-ins ne-beg) ?\n)))
7431 (move-marker ins-point nil)
7432 (if folded
7433 (hide-subtree)
7434 (org-show-entry)
7435 (show-children)
7436 (org-cycle-hide-drawers 'children))
7437 (org-clean-visibility-after-subtree-move)
7438 ;; move back to the initial column we were at
7439 (move-to-column col)))
7441 (defvar org-subtree-clip ""
7442 "Clipboard for cut and paste of subtrees.
7443 This is actually only a copy of the kill, because we use the normal kill
7444 ring. We need it to check if the kill was created by `org-copy-subtree'.")
7446 (defvar org-subtree-clip-folded nil
7447 "Was the last copied subtree folded?
7448 This is used to fold the tree back after pasting.")
7450 (defun org-cut-subtree (&optional n)
7451 "Cut the current subtree into the clipboard.
7452 With prefix arg N, cut this many sequential subtrees.
7453 This is a short-hand for marking the subtree and then cutting it."
7454 (interactive "p")
7455 (org-copy-subtree n 'cut))
7457 (defun org-copy-subtree (&optional n cut force-store-markers)
7458 "Cut the current subtree into the clipboard.
7459 With prefix arg N, cut this many sequential subtrees.
7460 This is a short-hand for marking the subtree and then copying it.
7461 If CUT is non-nil, actually cut the subtree.
7462 If FORCE-STORE-MARKERS is non-nil, store the relative locations
7463 of some markers in the region, even if CUT is non-nil. This is
7464 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
7465 (interactive "p")
7466 (let (beg end folded (beg0 (point)))
7467 (if (org-called-interactively-p 'any)
7468 (org-back-to-heading nil) ; take what looks like a subtree
7469 (org-back-to-heading t)) ; take what is really there
7470 (org-back-over-empty-lines)
7471 (setq beg (point))
7472 (skip-chars-forward " \t\r\n")
7473 (save-match-data
7474 (save-excursion (outline-end-of-heading)
7475 (setq folded (outline-invisible-p)))
7476 (condition-case nil
7477 (org-forward-same-level (1- n) t)
7478 (error nil))
7479 (org-end-of-subtree t t))
7480 (org-back-over-empty-lines)
7481 (setq end (point))
7482 (goto-char beg0)
7483 (when (> end beg)
7484 (setq org-subtree-clip-folded folded)
7485 (when (or cut force-store-markers)
7486 (org-save-markers-in-region beg end))
7487 (if cut (kill-region beg end) (copy-region-as-kill beg end))
7488 (setq org-subtree-clip (current-kill 0))
7489 (message "%s: Subtree(s) with %d characters"
7490 (if cut "Cut" "Copied")
7491 (length org-subtree-clip)))))
7493 (defun org-paste-subtree (&optional level tree for-yank)
7494 "Paste the clipboard as a subtree, with modification of headline level.
7495 The entire subtree is promoted or demoted in order to match a new headline
7496 level.
7498 If the cursor is at the beginning of a headline, the same level as
7499 that headline is used to paste the tree
7501 If not, the new level is derived from the *visible* headings
7502 before and after the insertion point, and taken to be the inferior headline
7503 level of the two. So if the previous visible heading is level 3 and the
7504 next is level 4 (or vice versa), level 4 will be used for insertion.
7505 This makes sure that the subtree remains an independent subtree and does
7506 not swallow low level entries.
7508 You can also force a different level, either by using a numeric prefix
7509 argument, or by inserting the heading marker by hand. For example, if the
7510 cursor is after \"*****\", then the tree will be shifted to level 5.
7512 If optional TREE is given, use this text instead of the kill ring.
7514 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
7515 move back over whitespace before inserting, and move point to the end of
7516 the inserted text when done."
7517 (interactive "P")
7518 (setq tree (or tree (and kill-ring (current-kill 0))))
7519 (unless (org-kill-is-subtree-p tree)
7520 (error "%s"
7521 (substitute-command-keys
7522 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
7523 (org-with-limited-levels
7524 (let* ((visp (not (outline-invisible-p)))
7525 (txt tree)
7526 (^re_ (concat "\\(\\*+\\)[ \t]*"))
7527 (old-level (if (string-match org-outline-regexp-bol txt)
7528 (- (match-end 0) (match-beginning 0) 1)
7529 -1))
7530 (force-level (cond (level (prefix-numeric-value level))
7531 ((and (looking-at "[ \t]*$")
7532 (string-match
7533 "^\\*+$" (buffer-substring
7534 (point-at-bol) (point))))
7535 (- (match-end 1) (match-beginning 1)))
7536 ((and (bolp)
7537 (looking-at org-outline-regexp))
7538 (- (match-end 0) (point) 1))
7539 (t nil)))
7540 (previous-level (save-excursion
7541 (condition-case nil
7542 (progn
7543 (outline-previous-visible-heading 1)
7544 (if (looking-at ^re_)
7545 (- (match-end 0) (match-beginning 0) 1)
7547 (error 1))))
7548 (next-level (save-excursion
7549 (condition-case nil
7550 (progn
7551 (or (looking-at org-outline-regexp)
7552 (outline-next-visible-heading 1))
7553 (if (looking-at ^re_)
7554 (- (match-end 0) (match-beginning 0) 1)
7556 (error 1))))
7557 (new-level (or force-level (max previous-level next-level)))
7558 (shift (if (or (= old-level -1)
7559 (= new-level -1)
7560 (= old-level new-level))
7562 (- new-level old-level)))
7563 (delta (if (> shift 0) -1 1))
7564 (func (if (> shift 0) 'org-demote 'org-promote))
7565 (org-odd-levels-only nil)
7566 beg end newend)
7567 ;; Remove the forced level indicator
7568 (if force-level
7569 (delete-region (point-at-bol) (point)))
7570 ;; Paste
7571 (beginning-of-line (if (org-at-heading-p) 2 1))
7572 (unless for-yank (org-back-over-empty-lines))
7573 (setq beg (point))
7574 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
7575 (insert-before-markers txt)
7576 (unless (string-match "\n\\'" txt) (insert "\n"))
7577 (setq newend (point))
7578 (org-reinstall-markers-in-region beg)
7579 (setq end (point))
7580 (goto-char beg)
7581 (skip-chars-forward " \t\n\r")
7582 (setq beg (point))
7583 (if (and (outline-invisible-p) visp)
7584 (save-excursion (outline-show-heading)))
7585 ;; Shift if necessary
7586 (unless (= shift 0)
7587 (save-restriction
7588 (narrow-to-region beg end)
7589 (while (not (= shift 0))
7590 (org-map-region func (point-min) (point-max))
7591 (setq shift (+ delta shift)))
7592 (goto-char (point-min))
7593 (setq newend (point-max))))
7594 (when (or (org-called-interactively-p 'interactive) for-yank)
7595 (message "Clipboard pasted as level %d subtree" new-level))
7596 (if (and (not for-yank) ; in this case, org-yank will decide about folding
7597 kill-ring
7598 (eq org-subtree-clip (current-kill 0))
7599 org-subtree-clip-folded)
7600 ;; The tree was folded before it was killed/copied
7601 (hide-subtree))
7602 (and for-yank (goto-char newend)))))
7604 (defun org-kill-is-subtree-p (&optional txt)
7605 "Check if the current kill is an outline subtree, or a set of trees.
7606 Returns nil if kill does not start with a headline, or if the first
7607 headline level is not the largest headline level in the tree.
7608 So this will actually accept several entries of equal levels as well,
7609 which is OK for `org-paste-subtree'.
7610 If optional TXT is given, check this string instead of the current kill."
7611 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
7612 (re (org-get-limited-outline-regexp))
7613 (^re (concat "^" re))
7614 (start-level (and kill
7615 (string-match
7616 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
7617 kill)
7618 (- (match-end 2) (match-beginning 2) 1)))
7619 (start (1+ (or (match-beginning 2) -1))))
7620 (if (not start-level)
7621 (progn
7622 nil) ;; does not even start with a heading
7623 (catch 'exit
7624 (while (setq start (string-match ^re kill (1+ start)))
7625 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
7626 (throw 'exit nil)))
7627 t))))
7629 (defvar org-markers-to-move nil
7630 "Markers that should be moved with a cut-and-paste operation.
7631 Those markers are stored together with their positions relative to
7632 the start of the region.")
7634 (defun org-save-markers-in-region (beg end)
7635 "Check markers in region.
7636 If these markers are between BEG and END, record their position relative
7637 to BEG, so that after moving the block of text, we can put the markers back
7638 into place.
7639 This function gets called just before an entry or tree gets cut from the
7640 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
7641 called immediately, to move the markers with the entries."
7642 (setq org-markers-to-move nil)
7643 (when (featurep 'org-clock)
7644 (org-clock-save-markers-for-cut-and-paste beg end))
7645 (when (featurep 'org-agenda)
7646 (org-agenda-save-markers-for-cut-and-paste beg end)))
7648 (defun org-check-and-save-marker (marker beg end)
7649 "Check if MARKER is between BEG and END.
7650 If yes, remember the marker and the distance to BEG."
7651 (when (and (marker-buffer marker)
7652 (equal (marker-buffer marker) (current-buffer)))
7653 (if (and (>= marker beg) (< marker end))
7654 (push (cons marker (- marker beg)) org-markers-to-move))))
7656 (defun org-reinstall-markers-in-region (beg)
7657 "Move all remembered markers to their position relative to BEG."
7658 (mapc (lambda (x)
7659 (move-marker (car x) (+ beg (cdr x))))
7660 org-markers-to-move)
7661 (setq org-markers-to-move nil))
7663 (defun org-narrow-to-subtree ()
7664 "Narrow buffer to the current subtree."
7665 (interactive)
7666 (save-excursion
7667 (save-match-data
7668 (org-with-limited-levels
7669 (narrow-to-region
7670 (progn (org-back-to-heading t) (point))
7671 (progn (org-end-of-subtree t t)
7672 (if (and (org-on-heading-p) (not (eobp))) (backward-char 1))
7673 (point)))))))
7675 (defun org-narrow-to-block ()
7676 "Narrow buffer to the current block."
7677 (interactive)
7678 (let* ((case-fold-search t)
7679 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
7680 "^[ \t]*#\\+end_.*")))
7681 (if blockp
7682 (narrow-to-region (car blockp) (cdr blockp))
7683 (error "Not in a block"))))
7685 (eval-when-compile
7686 (defvar org-property-drawer-re))
7688 (defvar org-property-start-re) ;; defined below
7689 (defun org-clone-subtree-with-time-shift (n &optional shift)
7690 "Clone the task (subtree) at point N times.
7691 The clones will be inserted as siblings.
7693 In interactive use, the user will be prompted for the number of
7694 clones to be produced, and for a time SHIFT, which may be a
7695 repeater as used in time stamps, for example `+3d'.
7697 When a valid repeater is given and the entry contains any time
7698 stamps, the clones will become a sequence in time, with time
7699 stamps in the subtree shifted for each clone produced. If SHIFT
7700 is nil or the empty string, time stamps will be left alone. The
7701 ID property of the original subtree is removed.
7703 If the original subtree did contain time stamps with a repeater,
7704 the following will happen:
7705 - the repeater will be removed in each clone
7706 - an additional clone will be produced, with the current, unshifted
7707 date(s) in the entry.
7708 - the original entry will be placed *after* all the clones, with
7709 repeater intact.
7710 - the start days in the repeater in the original entry will be shifted
7711 to past the last clone.
7712 I this way you can spell out a number of instances of a repeating task,
7713 and still retain the repeater to cover future instances of the task."
7714 (interactive "nNumber of clones to produce: \nsDate shift per clone (e.g. +1w, empty to copy unchanged): ")
7715 (let (beg end template task idprop
7716 shift-n shift-what doshift nmin nmax (n-no-remove -1))
7717 (if (not (and (integerp n) (> n 0)))
7718 (error "Invalid number of replications %s" n))
7719 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
7720 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([dwmy]\\)[ \t]*\\'"
7721 shift)))
7722 (error "Invalid shift specification %s" shift))
7723 (when doshift
7724 (setq shift-n (string-to-number (match-string 1 shift))
7725 shift-what (cdr (assoc (match-string 2 shift)
7726 '(("d" . day) ("w" . week)
7727 ("m" . month) ("y" . year))))))
7728 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
7729 (setq nmin 1 nmax n)
7730 (org-back-to-heading t)
7731 (setq beg (point))
7732 (setq idprop (org-entry-get nil "ID"))
7733 (org-end-of-subtree t t)
7734 (or (bolp) (insert "\n"))
7735 (setq end (point))
7736 (setq template (buffer-substring beg end))
7737 ;; Remove clocks and empty drawers
7738 (with-temp-buffer
7739 (insert template)
7740 (goto-char (point-min))
7741 (while (re-search-forward
7742 "^[ \t]*CLOCK:.*$" (save-excursion (org-end-of-subtree t t)) t)
7743 (replace-match "")
7744 (kill-whole-line))
7745 (goto-char (point-min))
7746 (while (re-search-forward
7747 (concat "^[ \t]*:" (regexp-opt org-drawers) ":[ \t]*$") nil t)
7748 (mapc (lambda(d) (org-remove-empty-drawer-at d (point))) org-drawers))
7749 (setq template (buffer-substring (point-min) (point-max))))
7750 (when (and doshift
7751 (string-match "<[^<>\n]+ \\+[0-9]+[dwmy][^<>\n]*>" template))
7752 (delete-region beg end)
7753 (setq end beg)
7754 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
7755 (goto-char end)
7756 (loop for n from nmin to nmax do
7757 ;; prepare clone
7758 (with-temp-buffer
7759 (insert template)
7760 (org-mode)
7761 (goto-char (point-min))
7762 (and idprop (if org-clone-delete-id
7763 (org-entry-delete nil "ID")
7764 (org-id-get-create t)))
7765 (while (re-search-forward org-property-start-re nil t)
7766 (org-remove-empty-drawer-at "PROPERTIES" (point)))
7767 (goto-char (point-min))
7768 (when doshift
7769 (while (re-search-forward org-ts-regexp-both nil t)
7770 (org-timestamp-change (* n shift-n) shift-what))
7771 (unless (= n n-no-remove)
7772 (goto-char (point-min))
7773 (while (re-search-forward org-ts-regexp nil t)
7774 (save-excursion
7775 (goto-char (match-beginning 0))
7776 (if (looking-at "<[^<>\n]+\\( +\\+[0-9]+[dwmy]\\)")
7777 (delete-region (match-beginning 1) (match-end 1)))))))
7778 (setq task (buffer-string)))
7779 (insert task))
7780 (goto-char beg)))
7782 ;;; Outline Sorting
7784 (defun org-sort (with-case)
7785 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
7786 Optional argument WITH-CASE means sort case-sensitively.
7787 With a double prefix argument, also remove duplicate entries."
7788 (interactive "P")
7789 (cond
7790 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
7791 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
7793 (org-call-with-arg 'org-sort-entries with-case))))
7795 (defun org-sort-remove-invisible (s)
7796 (remove-text-properties 0 (length s) org-rm-props s)
7797 (while (string-match org-bracket-link-regexp s)
7798 (setq s (replace-match (if (match-end 2)
7799 (match-string 3 s)
7800 (match-string 1 s)) t t s)))
7803 (defvar org-priority-regexp) ; defined later in the file
7805 (defvar org-after-sorting-entries-or-items-hook nil
7806 "Hook that is run after a bunch of entries or items have been sorted.
7807 When children are sorted, the cursor is in the parent line when this
7808 hook gets called. When a region or a plain list is sorted, the cursor
7809 will be in the first entry of the sorted region/list.")
7811 (defun org-sort-entries
7812 (&optional with-case sorting-type getkey-func compare-func property)
7813 "Sort entries on a certain level of an outline tree.
7814 If there is an active region, the entries in the region are sorted.
7815 Else, if the cursor is before the first entry, sort the top-level items.
7816 Else, the children of the entry at point are sorted.
7818 Sorting can be alphabetically, numerically, by date/time as given by
7819 a time stamp, by a property or by priority.
7821 The command prompts for the sorting type unless it has been given to the
7822 function through the SORTING-TYPE argument, which needs to be a character,
7823 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?r ?R ?f ?F). Here is the
7824 precise meaning of each character:
7826 n Numerically, by converting the beginning of the entry/item to a number.
7827 a Alphabetically, ignoring the TODO keyword and the priority, if any.
7828 t By date/time, either the first active time stamp in the entry, or, if
7829 none exist, by the first inactive one.
7830 s By the scheduled date/time.
7831 d By deadline date/time.
7832 c By creation time, which is assumed to be the first inactive time stamp
7833 at the beginning of a line.
7834 p By priority according to the cookie.
7835 r By the value of a property.
7837 Capital letters will reverse the sort order.
7839 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
7840 called with point at the beginning of the record. It must return either
7841 a string or a number that should serve as the sorting key for that record.
7843 Comparing entries ignores case by default. However, with an optional argument
7844 WITH-CASE, the sorting considers case as well."
7845 (interactive "P")
7846 (let ((case-func (if with-case 'identity 'downcase))
7847 start beg end stars re re2
7848 txt what tmp)
7849 ;; Find beginning and end of region to sort
7850 (cond
7851 ((org-region-active-p)
7852 ;; we will sort the region
7853 (setq end (region-end)
7854 what "region")
7855 (goto-char (region-beginning))
7856 (if (not (org-on-heading-p)) (outline-next-heading))
7857 (setq start (point)))
7858 ((or (org-on-heading-p)
7859 (condition-case nil (progn (org-back-to-heading) t) (error nil)))
7860 ;; we will sort the children of the current headline
7861 (org-back-to-heading)
7862 (setq start (point)
7863 end (progn (org-end-of-subtree t t)
7864 (or (bolp) (insert "\n"))
7865 (org-back-over-empty-lines)
7866 (point))
7867 what "children")
7868 (goto-char start)
7869 (show-subtree)
7870 (outline-next-heading))
7872 ;; we will sort the top-level entries in this file
7873 (goto-char (point-min))
7874 (or (org-on-heading-p) (outline-next-heading))
7875 (setq start (point))
7876 (goto-char (point-max))
7877 (beginning-of-line 1)
7878 (when (looking-at ".*?\\S-")
7879 ;; File ends in a non-white line
7880 (end-of-line 1)
7881 (insert "\n"))
7882 (setq end (point-max))
7883 (setq what "top-level")
7884 (goto-char start)
7885 (show-all)))
7887 (setq beg (point))
7888 (if (>= beg end) (error "Nothing to sort"))
7890 (looking-at "\\(\\*+\\)")
7891 (setq stars (match-string 1)
7892 re (concat "^" (regexp-quote stars) " +")
7893 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
7894 txt (buffer-substring beg end))
7895 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
7896 (if (and (not (equal stars "*")) (string-match re2 txt))
7897 (error "Region to sort contains a level above the first entry"))
7899 (unless sorting-type
7900 (message
7901 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
7902 [t]ime [s]cheduled [d]eadline [c]reated
7903 A/N/T/S/D/C/P/O/F means reversed:"
7904 what)
7905 (setq sorting-type (read-char-exclusive))
7907 (and (= (downcase sorting-type) ?f)
7908 (setq getkey-func
7909 (org-icompleting-read "Sort using function: "
7910 obarray 'fboundp t nil nil))
7911 (setq getkey-func (intern getkey-func)))
7913 (and (= (downcase sorting-type) ?r)
7914 (setq property
7915 (org-icompleting-read "Property: "
7916 (mapcar 'list (org-buffer-property-keys t))
7917 nil t))))
7919 (message "Sorting entries...")
7921 (save-restriction
7922 (narrow-to-region start end)
7923 (let ((dcst (downcase sorting-type))
7924 (case-fold-search nil)
7925 (now (current-time)))
7926 (sort-subr
7927 (/= dcst sorting-type)
7928 ;; This function moves to the beginning character of the "record" to
7929 ;; be sorted.
7930 (lambda nil
7931 (if (re-search-forward re nil t)
7932 (goto-char (match-beginning 0))
7933 (goto-char (point-max))))
7934 ;; This function moves to the last character of the "record" being
7935 ;; sorted.
7936 (lambda nil
7937 (save-match-data
7938 (condition-case nil
7939 (outline-forward-same-level 1)
7940 (error
7941 (goto-char (point-max))))))
7942 ;; This function returns the value that gets sorted against.
7943 (lambda nil
7944 (cond
7945 ((= dcst ?n)
7946 (if (looking-at org-complex-heading-regexp)
7947 (string-to-number (match-string 4))
7948 nil))
7949 ((= dcst ?a)
7950 (if (looking-at org-complex-heading-regexp)
7951 (funcall case-func (match-string 4))
7952 nil))
7953 ((= dcst ?t)
7954 (let ((end (save-excursion (outline-next-heading) (point))))
7955 (if (or (re-search-forward org-ts-regexp end t)
7956 (re-search-forward org-ts-regexp-both end t))
7957 (org-time-string-to-seconds (match-string 0))
7958 (org-float-time now))))
7959 ((= dcst ?c)
7960 (let ((end (save-excursion (outline-next-heading) (point))))
7961 (if (re-search-forward
7962 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
7963 end t)
7964 (org-time-string-to-seconds (match-string 0))
7965 (org-float-time now))))
7966 ((= dcst ?s)
7967 (let ((end (save-excursion (outline-next-heading) (point))))
7968 (if (re-search-forward org-scheduled-time-regexp end t)
7969 (org-time-string-to-seconds (match-string 1))
7970 (org-float-time now))))
7971 ((= dcst ?d)
7972 (let ((end (save-excursion (outline-next-heading) (point))))
7973 (if (re-search-forward org-deadline-time-regexp end t)
7974 (org-time-string-to-seconds (match-string 1))
7975 (org-float-time now))))
7976 ((= dcst ?p)
7977 (if (re-search-forward org-priority-regexp (point-at-eol) t)
7978 (string-to-char (match-string 2))
7979 org-default-priority))
7980 ((= dcst ?r)
7981 (or (org-entry-get nil property) ""))
7982 ((= dcst ?o)
7983 (if (looking-at org-complex-heading-regexp)
7984 (- 9999 (length (member (match-string 2)
7985 org-todo-keywords-1)))))
7986 ((= dcst ?f)
7987 (if getkey-func
7988 (progn
7989 (setq tmp (funcall getkey-func))
7990 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
7991 tmp)
7992 (error "Invalid key function `%s'" getkey-func)))
7993 (t (error "Invalid sorting type `%c'" sorting-type))))
7995 (cond
7996 ((= dcst ?a) 'string<)
7997 ((= dcst ?f) compare-func)
7998 ((member dcst '(?p ?t ?s ?d ?c)) '<)
7999 (t nil)))))
8000 (run-hooks 'org-after-sorting-entries-or-items-hook)
8001 (message "Sorting entries...done")))
8003 (defun org-do-sort (table what &optional with-case sorting-type)
8004 "Sort TABLE of WHAT according to SORTING-TYPE.
8005 The user will be prompted for the SORTING-TYPE if the call to this
8006 function does not specify it. WHAT is only for the prompt, to indicate
8007 what is being sorted. The sorting key will be extracted from
8008 the car of the elements of the table.
8009 If WITH-CASE is non-nil, the sorting will be case-sensitive."
8010 (unless sorting-type
8011 (message
8012 "Sort %s: [a]lphabetic. [n]umeric. [t]ime. A/N/T means reversed:"
8013 what)
8014 (setq sorting-type (read-char-exclusive)))
8015 (let ((dcst (downcase sorting-type))
8016 extractfun comparefun)
8017 ;; Define the appropriate functions
8018 (cond
8019 ((= dcst ?n)
8020 (setq extractfun 'string-to-number
8021 comparefun (if (= dcst sorting-type) '< '>)))
8022 ((= dcst ?a)
8023 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
8024 (lambda(x) (downcase (org-sort-remove-invisible x))))
8025 comparefun (if (= dcst sorting-type)
8026 'string<
8027 (lambda (a b) (and (not (string< a b))
8028 (not (string= a b)))))))
8029 ((= dcst ?t)
8030 (setq extractfun
8031 (lambda (x)
8032 (if (or (string-match org-ts-regexp x)
8033 (string-match org-ts-regexp-both x))
8034 (org-float-time
8035 (org-time-string-to-time (match-string 0 x)))
8037 comparefun (if (= dcst sorting-type) '< '>)))
8038 (t (error "Invalid sorting type `%c'" sorting-type)))
8040 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
8041 table)
8042 (lambda (a b) (funcall comparefun (car a) (car b))))))
8045 ;;; The orgstruct minor mode
8047 ;; Define a minor mode which can be used in other modes in order to
8048 ;; integrate the org-mode structure editing commands.
8050 ;; This is really a hack, because the org-mode structure commands use
8051 ;; keys which normally belong to the major mode. Here is how it
8052 ;; works: The minor mode defines all the keys necessary to operate the
8053 ;; structure commands, but wraps the commands into a function which
8054 ;; tests if the cursor is currently at a headline or a plain list
8055 ;; item. If that is the case, the structure command is used,
8056 ;; temporarily setting many Org-mode variables like regular
8057 ;; expressions for filling etc. However, when any of those keys is
8058 ;; used at a different location, function uses `key-binding' to look
8059 ;; up if the key has an associated command in another currently active
8060 ;; keymap (minor modes, major mode, global), and executes that
8061 ;; command. There might be problems if any of the keys is otherwise
8062 ;; used as a prefix key.
8064 ;; Another challenge is that the key binding for TAB can be tab or \C-i,
8065 ;; likewise the binding for RET can be return or \C-m. Orgtbl-mode
8066 ;; addresses this by checking explicitly for both bindings.
8068 (defvar orgstruct-mode-map (make-sparse-keymap)
8069 "Keymap for the minor `orgstruct-mode'.")
8071 (defvar org-local-vars nil
8072 "List of local variables, for use by `orgstruct-mode'.")
8074 ;;;###autoload
8075 (define-minor-mode orgstruct-mode
8076 "Toggle the minor mode `orgstruct-mode'.
8077 This mode is for using Org-mode structure commands in other
8078 modes. The following keys behave as if Org-mode were active, if
8079 the cursor is on a headline, or on a plain list item (both as
8080 defined by Org-mode).
8082 M-up Move entry/item up
8083 M-down Move entry/item down
8084 M-left Promote
8085 M-right Demote
8086 M-S-up Move entry/item up
8087 M-S-down Move entry/item down
8088 M-S-left Promote subtree
8089 M-S-right Demote subtree
8090 M-q Fill paragraph and items like in Org-mode
8091 C-c ^ Sort entries
8092 C-c - Cycle list bullet
8093 TAB Cycle item visibility
8094 M-RET Insert new heading/item
8095 S-M-RET Insert new TODO heading / Checkbox item
8096 C-c C-c Set tags / toggle checkbox"
8097 nil " OrgStruct" nil
8098 (org-load-modules-maybe)
8099 (and (orgstruct-setup) (defun orgstruct-setup () nil)))
8101 ;;;###autoload
8102 (defun turn-on-orgstruct ()
8103 "Unconditionally turn on `orgstruct-mode'."
8104 (orgstruct-mode 1))
8106 (defun orgstruct++-mode (&optional arg)
8107 "Toggle `orgstruct-mode', the enhanced version of it.
8108 In addition to setting orgstruct-mode, this also exports all indentation
8109 and autofilling variables from org-mode into the buffer. It will also
8110 recognize item context in multiline items.
8111 Note that turning off orgstruct-mode will *not* remove the
8112 indentation/paragraph settings. This can only be done by refreshing the
8113 major mode, for example with \\[normal-mode]."
8114 (interactive "P")
8115 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
8116 (if (< arg 1)
8117 (orgstruct-mode -1)
8118 (orgstruct-mode 1)
8119 (let (var val)
8120 (mapc
8121 (lambda (x)
8122 (when (string-match
8123 "^\\(paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
8124 (symbol-name (car x)))
8125 (setq var (car x) val (nth 1 x))
8126 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
8127 org-local-vars)
8128 (org-set-local 'orgstruct-is-++ t))))
8130 (defvar orgstruct-is-++ nil
8131 "Is `orgstruct-mode' in ++ version in the current-buffer?")
8132 (make-variable-buffer-local 'orgstruct-is-++)
8134 ;;;###autoload
8135 (defun turn-on-orgstruct++ ()
8136 "Unconditionally turn on `orgstruct++-mode'."
8137 (orgstruct++-mode 1))
8139 (defun orgstruct-error ()
8140 "Error when there is no default binding for a structure key."
8141 (interactive)
8142 (error "This key has no function outside structure elements"))
8144 (defun orgstruct-setup ()
8145 "Setup orgstruct keymaps."
8146 (let ((nfunc 0)
8147 (bindings
8148 (list
8149 '([(meta up)] org-metaup)
8150 '([(meta down)] org-metadown)
8151 '([(meta left)] org-metaleft)
8152 '([(meta right)] org-metaright)
8153 '([(meta shift up)] org-shiftmetaup)
8154 '([(meta shift down)] org-shiftmetadown)
8155 '([(meta shift left)] org-shiftmetaleft)
8156 '([(meta shift right)] org-shiftmetaright)
8157 '([?\e (up)] org-metaup)
8158 '([?\e (down)] org-metadown)
8159 '([?\e (left)] org-metaleft)
8160 '([?\e (right)] org-metaright)
8161 '([?\e (shift up)] org-shiftmetaup)
8162 '([?\e (shift down)] org-shiftmetadown)
8163 '([?\e (shift left)] org-shiftmetaleft)
8164 '([?\e (shift right)] org-shiftmetaright)
8165 '([(shift up)] org-shiftup)
8166 '([(shift down)] org-shiftdown)
8167 '([(shift left)] org-shiftleft)
8168 '([(shift right)] org-shiftright)
8169 '("\C-c\C-c" org-ctrl-c-ctrl-c)
8170 '("\M-q" fill-paragraph)
8171 '("\C-c^" org-sort)
8172 '("\C-c-" org-cycle-list-bullet)))
8173 elt key fun cmd)
8174 (while (setq elt (pop bindings))
8175 (setq nfunc (1+ nfunc))
8176 (setq key (org-key (car elt))
8177 fun (nth 1 elt)
8178 cmd (orgstruct-make-binding fun nfunc key))
8179 (org-defkey orgstruct-mode-map key cmd))
8181 ;; Special treatment needed for TAB and RET
8182 (org-defkey orgstruct-mode-map [(tab)]
8183 (orgstruct-make-binding 'org-cycle 102 [(tab)] "\C-i"))
8184 (org-defkey orgstruct-mode-map "\C-i"
8185 (orgstruct-make-binding 'org-cycle 103 "\C-i" [(tab)]))
8187 (org-defkey orgstruct-mode-map "\M-\C-m"
8188 (orgstruct-make-binding 'org-insert-heading 105
8189 "\M-\C-m" [(meta return)]))
8190 (org-defkey orgstruct-mode-map [(meta return)]
8191 (orgstruct-make-binding 'org-insert-heading 106
8192 [(meta return)] "\M-\C-m"))
8194 (org-defkey orgstruct-mode-map [(shift meta return)]
8195 (orgstruct-make-binding 'org-insert-todo-heading 107
8196 [(meta return)] "\M-\C-m"))
8198 (org-defkey orgstruct-mode-map "\e\C-m"
8199 (orgstruct-make-binding 'org-insert-heading 108
8200 "\e\C-m" [?\e (return)]))
8201 (org-defkey orgstruct-mode-map [?\e (return)]
8202 (orgstruct-make-binding 'org-insert-heading 109
8203 [?\e (return)] "\e\C-m"))
8204 (org-defkey orgstruct-mode-map [?\e (shift return)]
8205 (orgstruct-make-binding 'org-insert-todo-heading 110
8206 [?\e (return)] "\e\C-m"))
8208 (unless org-local-vars
8209 (setq org-local-vars (org-get-local-variables)))
8213 (defun orgstruct-make-binding (fun n &rest keys)
8214 "Create a function for binding in the structure minor mode.
8215 FUN is the command to call inside a table. N is used to create a unique
8216 command name. KEYS are keys that should be checked in for a command
8217 to execute outside of tables."
8218 (eval
8219 (list 'defun
8220 (intern (concat "orgstruct-hijacker-command-" (int-to-string n)))
8221 '(arg)
8222 (concat "In Structure, run `" (symbol-name fun) "'.\n"
8223 "Outside of structure, run the binding of `"
8224 (mapconcat (lambda (x) (format "%s" x)) keys "' or `")
8225 "'.")
8226 '(interactive "p")
8227 (list 'if
8228 `(org-context-p 'headline 'item
8229 (and orgstruct-is-++
8230 ,(and (memq fun '(org-insert-heading org-insert-todo-heading)) t)
8231 'item-body))
8232 (list 'org-run-like-in-org-mode (list 'quote fun))
8233 (list 'let '(orgstruct-mode)
8234 (list 'call-interactively
8235 (append '(or)
8236 (mapcar (lambda (k)
8237 (list 'key-binding k))
8238 keys)
8239 '('orgstruct-error))))))))
8241 (defun org-context-p (&rest contexts)
8242 "Check if local context is any of CONTEXTS.
8243 Possible values in the list of contexts are `table', `headline', and `item'."
8244 (let ((pos (point)))
8245 (goto-char (point-at-bol))
8246 (prog1 (or (and (memq 'table contexts)
8247 (looking-at "[ \t]*|"))
8248 (and (memq 'headline contexts)
8249 (looking-at org-outline-regexp))
8250 (and (memq 'item contexts)
8251 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
8252 (and (memq 'item-body contexts)
8253 (org-in-item-p)))
8254 (goto-char pos))))
8256 (defun org-get-local-variables ()
8257 "Return a list of all local variables in an org-mode buffer."
8258 (let (varlist)
8259 (with-current-buffer (get-buffer-create "*Org tmp*")
8260 (erase-buffer)
8261 (org-mode)
8262 (setq varlist (buffer-local-variables)))
8263 (kill-buffer "*Org tmp*")
8264 (delq nil
8265 (mapcar
8266 (lambda (x)
8267 (setq x
8268 (if (symbolp x)
8269 (list x)
8270 (list (car x) (list 'quote (cdr x)))))
8271 (if (string-match
8272 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
8273 (symbol-name (car x)))
8274 x nil))
8275 varlist))))
8277 (defun org-clone-local-variables (from-buffer &optional regexp)
8278 "Clone local variables from FROM-BUFFER.
8279 Optional argument REGEXP selects variables to clone."
8280 (mapc
8281 (lambda (pair)
8282 (and (symbolp (car pair))
8283 (or (null regexp)
8284 (string-match regexp (symbol-name (car pair))))
8285 (set (make-local-variable (car pair))
8286 (cdr pair))))
8287 (buffer-local-variables from-buffer)))
8289 ;;;###autoload
8290 (defun org-run-like-in-org-mode (cmd)
8291 "Run a command, pretending that the current buffer is in Org-mode.
8292 This will temporarily bind local variables that are typically bound in
8293 Org-mode to the values they have in Org-mode, and then interactively
8294 call CMD."
8295 (org-load-modules-maybe)
8296 (unless org-local-vars
8297 (setq org-local-vars (org-get-local-variables)))
8298 (eval (list 'let org-local-vars
8299 (list 'call-interactively (list 'quote cmd)))))
8301 ;;;; Archiving
8303 (defun org-get-category (&optional pos force-refresh)
8304 "Get the category applying to position POS."
8305 (if force-refresh (org-refresh-category-properties))
8306 (let ((pos (or pos (point))))
8307 (or (get-text-property pos 'org-category)
8308 (progn (org-refresh-category-properties)
8309 (get-text-property pos 'org-category)))))
8311 (defun org-refresh-category-properties ()
8312 "Refresh category text properties in the buffer."
8313 (let ((def-cat (cond
8314 ((null org-category)
8315 (if buffer-file-name
8316 (file-name-sans-extension
8317 (file-name-nondirectory buffer-file-name))
8318 "???"))
8319 ((symbolp org-category) (symbol-name org-category))
8320 (t org-category)))
8321 beg end cat pos optionp)
8322 (org-unmodified
8323 (save-excursion
8324 (save-restriction
8325 (widen)
8326 (goto-char (point-min))
8327 (put-text-property (point) (point-max) 'org-category def-cat)
8328 (while (re-search-forward
8329 "^\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
8330 (setq pos (match-end 0)
8331 optionp (equal (char-after (match-beginning 0)) ?#)
8332 cat (org-trim (match-string 2)))
8333 (if optionp
8334 (setq beg (point-at-bol) end (point-max))
8335 (org-back-to-heading t)
8336 (setq beg (point) end (org-end-of-subtree t t)))
8337 (put-text-property beg end 'org-category cat)
8338 (goto-char pos)))))))
8341 ;;;; Link Stuff
8343 ;;; Link abbreviations
8345 (defun org-link-expand-abbrev (link)
8346 "Apply replacements as defined in `org-link-abbrev-alist."
8347 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
8348 (let* ((key (match-string 1 link))
8349 (as (or (assoc key org-link-abbrev-alist-local)
8350 (assoc key org-link-abbrev-alist)))
8351 (tag (and (match-end 2) (match-string 3 link)))
8352 rpl)
8353 (if (not as)
8354 link
8355 (setq rpl (cdr as))
8356 (cond
8357 ((symbolp rpl) (funcall rpl tag))
8358 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
8359 ((string-match "%h" rpl)
8360 (replace-match (url-hexify-string (or tag "")) t t rpl))
8361 (t (concat rpl tag)))))
8362 link))
8364 ;;; Storing and inserting links
8366 (defvar org-insert-link-history nil
8367 "Minibuffer history for links inserted with `org-insert-link'.")
8369 (defvar org-stored-links nil
8370 "Contains the links stored with `org-store-link'.")
8372 (defvar org-store-link-plist nil
8373 "Plist with info about the most recently link created with `org-store-link'.")
8375 (defvar org-link-protocols nil
8376 "Link protocols added to Org-mode using `org-add-link-type'.")
8378 (defvar org-store-link-functions nil
8379 "List of functions that are called to create and store a link.
8380 Each function will be called in turn until one returns a non-nil
8381 value. Each function should check if it is responsible for creating
8382 this link (for example by looking at the major mode).
8383 If not, it must exit and return nil.
8384 If yes, it should return a non-nil value after a calling
8385 `org-store-link-props' with a list of properties and values.
8386 Special properties are:
8388 :type The link prefix, like \"http\". This must be given.
8389 :link The link, like \"http://www.astro.uva.nl/~dominik\".
8390 This is obligatory as well.
8391 :description Optional default description for the second pair
8392 of brackets in an Org-mode link. The user can still change
8393 this when inserting this link into an Org-mode buffer.
8395 In addition to these, any additional properties can be specified
8396 and then used in remember templates.")
8398 (defun org-add-link-type (type &optional follow export)
8399 "Add TYPE to the list of `org-link-types'.
8400 Re-compute all regular expressions depending on `org-link-types'
8402 FOLLOW and EXPORT are two functions.
8404 FOLLOW should take the link path as the single argument and do whatever
8405 is necessary to follow the link, for example find a file or display
8406 a mail message.
8408 EXPORT should format the link path for export to one of the export formats.
8409 It should be a function accepting three arguments:
8411 path the path of the link, the text after the prefix (like \"http:\")
8412 desc the description of the link, if any, or a description added by
8413 org-export-normalize-links if there is none
8414 format the export format, a symbol like `html' or `latex' or `ascii'..
8416 The function may use the FORMAT information to return different values
8417 depending on the format. The return value will be put literally into
8418 the exported file. If the return value is nil, this means Org should
8419 do what it normally does with links which do not have EXPORT defined.
8421 Org-mode has a built-in default for exporting links. If you are happy with
8422 this default, there is no need to define an export function for the link
8423 type. For a simple example of an export function, see `org-bbdb.el'."
8424 (add-to-list 'org-link-types type t)
8425 (org-make-link-regexps)
8426 (if (assoc type org-link-protocols)
8427 (setcdr (assoc type org-link-protocols) (list follow export))
8428 (push (list type follow export) org-link-protocols)))
8430 (defvar org-agenda-buffer-name)
8432 ;;;###autoload
8433 (defun org-store-link (arg)
8434 "\\<org-mode-map>Store an org-link to the current location.
8435 This link is added to `org-stored-links' and can later be inserted
8436 into an org-buffer with \\[org-insert-link].
8438 For some link types, a prefix arg is interpreted:
8439 For links to usenet articles, arg negates `org-gnus-prefer-web-links'.
8440 For file links, arg negates `org-context-in-file-links'."
8441 (interactive "P")
8442 (org-load-modules-maybe)
8443 (setq org-store-link-plist nil) ; reset
8444 (org-with-limited-levels
8445 (let (link cpltxt desc description search txt custom-id agenda-link)
8446 (cond
8448 ((run-hook-with-args-until-success 'org-store-link-functions)
8449 (setq link (plist-get org-store-link-plist :link)
8450 desc (or (plist-get org-store-link-plist :description) link)))
8452 ((equal (buffer-name) "*Org Edit Src Example*")
8453 (let (label gc)
8454 (while (or (not label)
8455 (save-excursion
8456 (save-restriction
8457 (widen)
8458 (goto-char (point-min))
8459 (re-search-forward
8460 (regexp-quote (format org-coderef-label-format label))
8461 nil t))))
8462 (when label (message "Label exists already") (sit-for 2))
8463 (setq label (read-string "Code line label: " label)))
8464 (end-of-line 1)
8465 (setq link (format org-coderef-label-format label))
8466 (setq gc (- 79 (length link)))
8467 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
8468 (insert link)
8469 (setq link (concat "(" label ")") desc nil)))
8471 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
8472 ;; We are in the agenda, link to referenced location
8473 (let ((m (or (get-text-property (point) 'org-hd-marker)
8474 (get-text-property (point) 'org-marker))))
8475 (when m
8476 (org-with-point-at m
8477 (setq agenda-link
8478 (if (org-called-interactively-p 'any)
8479 (call-interactively 'org-store-link)
8480 (org-store-link nil)))))))
8482 ((eq major-mode 'calendar-mode)
8483 (let ((cd (calendar-cursor-to-date)))
8484 (setq link
8485 (format-time-string
8486 (car org-time-stamp-formats)
8487 (apply 'encode-time
8488 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
8489 nil nil nil))))
8490 (org-store-link-props :type "calendar" :date cd)))
8492 ((eq major-mode 'w3-mode)
8493 (setq cpltxt (if (and (buffer-name)
8494 (not (string-match "Untitled" (buffer-name))))
8495 (buffer-name)
8496 (url-view-url t))
8497 link (org-make-link (url-view-url t)))
8498 (org-store-link-props :type "w3" :url (url-view-url t)))
8500 ((eq major-mode 'w3m-mode)
8501 (setq cpltxt (or w3m-current-title w3m-current-url)
8502 link (org-make-link w3m-current-url))
8503 (org-store-link-props :type "w3m" :url (url-view-url t)))
8505 ((setq search (run-hook-with-args-until-success
8506 'org-create-file-search-functions))
8507 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
8508 "::" search))
8509 (setq cpltxt (or description link)))
8511 ((eq major-mode 'image-mode)
8512 (setq cpltxt (concat "file:"
8513 (abbreviate-file-name buffer-file-name))
8514 link (org-make-link cpltxt))
8515 (org-store-link-props :type "image" :file buffer-file-name))
8517 ((eq major-mode 'dired-mode)
8518 ;; link to the file in the current line
8519 (let ((file (dired-get-filename nil t)))
8520 (setq file (if file
8521 (abbreviate-file-name
8522 (expand-file-name (dired-get-filename nil t)))
8523 ;; otherwise, no file so use current directory.
8524 default-directory))
8525 (setq cpltxt (concat "file:" file)
8526 link (org-make-link cpltxt))))
8528 ((and (buffer-file-name (buffer-base-buffer)) (org-mode-p))
8529 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
8530 (cond
8531 ((org-in-regexp "<<\\(.*?\\)>>")
8532 (setq cpltxt
8533 (concat "file:"
8534 (abbreviate-file-name
8535 (buffer-file-name (buffer-base-buffer)))
8536 "::" (match-string 1))
8537 link (org-make-link cpltxt)))
8538 ((and (featurep 'org-id)
8539 (or (eq org-link-to-org-use-id t)
8540 (and (eq org-link-to-org-use-id 'create-if-interactive)
8541 (org-called-interactively-p 'any))
8542 (and (eq org-link-to-org-use-id
8543 'create-if-interactive-and-no-custom-id)
8544 (org-called-interactively-p 'any)
8545 (not custom-id))
8546 (and org-link-to-org-use-id
8547 (org-entry-get nil "ID"))))
8548 ;; We can make a link using the ID.
8549 (setq link (condition-case nil
8550 (prog1 (org-id-store-link)
8551 (setq desc (plist-get org-store-link-plist
8552 :description)))
8553 (error
8554 ;; probably before first headline, link to file only
8555 (concat "file:"
8556 (abbreviate-file-name
8557 (buffer-file-name (buffer-base-buffer))))))))
8559 ;; Just link to current headline
8560 (setq cpltxt (concat "file:"
8561 (abbreviate-file-name
8562 (buffer-file-name (buffer-base-buffer)))))
8563 ;; Add a context search string
8564 (when (org-xor org-context-in-file-links arg)
8565 (setq txt (cond
8566 ((org-on-heading-p) nil)
8567 ((org-region-active-p)
8568 (buffer-substring (region-beginning) (region-end)))
8569 (t nil)))
8570 (when (or (null txt) (string-match "\\S-" txt))
8571 (setq cpltxt
8572 (concat cpltxt "::"
8573 (condition-case nil
8574 (org-make-org-heading-search-string txt)
8575 (error "")))
8576 desc (or (nth 4 (ignore-errors
8577 (org-heading-components))) "NONE"))))
8578 (if (string-match "::\\'" cpltxt)
8579 (setq cpltxt (substring cpltxt 0 -2)))
8580 (setq link (org-make-link cpltxt)))))
8582 ((buffer-file-name (buffer-base-buffer))
8583 ;; Just link to this file here.
8584 (setq cpltxt (concat "file:"
8585 (abbreviate-file-name
8586 (buffer-file-name (buffer-base-buffer)))))
8587 ;; Add a context string
8588 (when (org-xor org-context-in-file-links arg)
8589 (setq txt (if (org-region-active-p)
8590 (buffer-substring (region-beginning) (region-end))
8591 (buffer-substring (point-at-bol) (point-at-eol))))
8592 ;; Only use search option if there is some text.
8593 (when (string-match "\\S-" txt)
8594 (setq cpltxt
8595 (concat cpltxt "::" (org-make-org-heading-search-string txt))
8596 desc "NONE")))
8597 (setq link (org-make-link cpltxt)))
8599 ((org-called-interactively-p 'interactive)
8600 (error "Cannot link to a buffer which is not visiting a file"))
8602 (t (setq link nil)))
8604 (if (consp link) (setq cpltxt (car link) link (cdr link)))
8605 (setq link (or link cpltxt)
8606 desc (or desc cpltxt))
8607 (if (equal desc "NONE") (setq desc nil))
8609 (if (and (or (org-called-interactively-p 'any) executing-kbd-macro) link)
8610 (progn
8611 (setq org-stored-links
8612 (cons (list link desc) org-stored-links))
8613 (message "Stored: %s" (or desc link))
8614 (when custom-id
8615 (setq link (concat "file:" (abbreviate-file-name (buffer-file-name))
8616 "::#" custom-id))
8617 (setq org-stored-links
8618 (cons (list link desc) org-stored-links))))
8619 (or agenda-link (and link (org-make-link-string link desc)))))))
8621 (defun org-store-link-props (&rest plist)
8622 "Store link properties, extract names and addresses."
8623 (let (x adr)
8624 (when (setq x (plist-get plist :from))
8625 (setq adr (mail-extract-address-components x))
8626 (setq plist (plist-put plist :fromname (car adr)))
8627 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
8628 (when (setq x (plist-get plist :to))
8629 (setq adr (mail-extract-address-components x))
8630 (setq plist (plist-put plist :toname (car adr)))
8631 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
8632 (let ((from (plist-get plist :from))
8633 (to (plist-get plist :to)))
8634 (when (and from to org-from-is-user-regexp)
8635 (setq plist
8636 (plist-put plist :fromto
8637 (if (string-match org-from-is-user-regexp from)
8638 (concat "to %t")
8639 (concat "from %f"))))))
8640 (setq org-store-link-plist plist))
8642 (defun org-add-link-props (&rest plist)
8643 "Add these properties to the link property list."
8644 (let (key value)
8645 (while plist
8646 (setq key (pop plist) value (pop plist))
8647 (setq org-store-link-plist
8648 (plist-put org-store-link-plist key value)))))
8650 (defun org-email-link-description (&optional fmt)
8651 "Return the description part of an email link.
8652 This takes information from `org-store-link-plist' and formats it
8653 according to FMT (default from `org-email-link-description-format')."
8654 (setq fmt (or fmt org-email-link-description-format))
8655 (let* ((p org-store-link-plist)
8656 (to (plist-get p :toaddress))
8657 (from (plist-get p :fromaddress))
8658 (table
8659 (list
8660 (cons "%c" (plist-get p :fromto))
8661 (cons "%F" (plist-get p :from))
8662 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
8663 (cons "%T" (plist-get p :to))
8664 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
8665 (cons "%s" (plist-get p :subject))
8666 (cons "%d" (plist-get p :date))
8667 (cons "%m" (plist-get p :message-id)))))
8668 (when (string-match "%c" fmt)
8669 ;; Check if the user wrote this message
8670 (if (and org-from-is-user-regexp from to
8671 (save-match-data (string-match org-from-is-user-regexp from)))
8672 (setq fmt (replace-match "to %t" t t fmt))
8673 (setq fmt (replace-match "from %f" t t fmt))))
8674 (org-replace-escapes fmt table)))
8676 (defun org-make-org-heading-search-string (&optional string heading)
8677 "Make search string for STRING or current headline."
8678 (interactive)
8679 (let ((s (or string (org-get-heading)))
8680 (lines org-context-in-file-links))
8681 (unless (and string (not heading))
8682 ;; We are using a headline, clean up garbage in there.
8683 (if (string-match org-todo-regexp s)
8684 (setq s (replace-match "" t t s)))
8685 (if (string-match (org-re ":[[:alnum:]_@#%:]+:[ \t]*$") s)
8686 (setq s (replace-match "" t t s)))
8687 (setq s (org-trim s))
8688 (if (string-match (concat "^\\(" org-quote-string "\\|"
8689 org-comment-string "\\)") s)
8690 (setq s (replace-match "" t t s)))
8691 (while (string-match org-ts-regexp s)
8692 (setq s (replace-match "" t t s))))
8693 (or string (setq s (concat "*" s))) ; Add * for headlines
8694 (when (and string (integerp lines) (> lines 0))
8695 (let ((slines (org-split-string s "\n")))
8696 (when (< lines (length slines))
8697 (setq s (mapconcat
8698 'identity
8699 (reverse (nthcdr (- (length slines) lines)
8700 (reverse slines))) "\n")))))
8701 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
8703 (defun org-make-link (&rest strings)
8704 "Concatenate STRINGS."
8705 (apply 'concat strings))
8707 (defun org-make-link-string (link &optional description)
8708 "Make a link with brackets, consisting of LINK and DESCRIPTION."
8709 (unless (string-match "\\S-" link)
8710 (error "Empty link"))
8711 (when (and description
8712 (stringp description)
8713 (not (string-match "\\S-" description)))
8714 (setq description nil))
8715 (when (stringp description)
8716 ;; Remove brackets from the description, they are fatal.
8717 (while (string-match "\\[" description)
8718 (setq description (replace-match "{" t t description)))
8719 (while (string-match "\\]" description)
8720 (setq description (replace-match "}" t t description))))
8721 (when (equal link description)
8722 ;; No description needed, it is identical
8723 (setq description nil))
8724 (when (and (not description)
8725 (not (string-match (org-image-file-name-regexp) link))
8726 (not (equal link (org-link-escape link))))
8727 (setq description (org-extract-attributes link)))
8728 (setq link
8729 (cond ((string-match (org-image-file-name-regexp) link) link)
8730 ((string-match org-link-types-re link)
8731 (concat (match-string 1 link)
8732 (org-link-escape (substring link (match-end 1)))))
8733 (t (org-link-escape link))))
8734 (concat "[[" link "]"
8735 (if description (concat "[" description "]") "")
8736 "]"))
8738 (defconst org-link-escape-chars
8739 '(?\ ?\[ ?\] ?\; ?\= ?\+)
8740 "List of characters that should be escaped in link.
8741 This is the list that is used for internal purposes.")
8743 (defvar org-url-encoding-use-url-hexify nil)
8745 (defconst org-link-escape-chars-browser
8746 '(?\ )
8747 "List of escapes for characters that are problematic in links.
8748 This is the list that is used before handing over to the browser.")
8750 (defun org-link-escape (text &optional table merge)
8751 "Return percent escaped representation of TEXT.
8752 TEXT is a string with the text to escape.
8753 Optional argument TABLE is a list with characters that should be
8754 escaped. When nil, `org-link-escape-chars' is used.
8755 If optional argument MERGE is set, merge TABLE into
8756 `org-link-escape-chars'."
8757 (if (and org-url-encoding-use-url-hexify (not table))
8758 (url-hexify-string text)
8759 (cond
8760 ((and table merge)
8761 (mapc (lambda (defchr)
8762 (unless (member defchr table)
8763 (setq table (cons defchr table)))) org-link-escape-chars))
8764 ((null table)
8765 (setq table org-link-escape-chars)))
8766 (mapconcat
8767 (lambda (char)
8768 (if (or (member char table)
8769 (< char 32) (= char 37) (> char 126))
8770 (mapconcat (lambda (sequence-element)
8771 (format "%%%.2X" sequence-element))
8772 (or (encode-coding-char char 'utf-8)
8773 (error "Unable to percent escape character: %s"
8774 (char-to-string char))) "")
8775 (char-to-string char))) text "")))
8777 (defun org-link-unescape (str)
8778 "Unhex hexified unicode strings as returned from the JavaScript function
8779 encodeURIComponent. E.g. `%C3%B6' is the german Umlaut `ö'."
8780 (unless (and (null str) (string= "" str))
8781 (let ((pos 0) (case-fold-search t) unhexed)
8782 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
8783 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
8784 (setq str (replace-match unhexed t t str))
8785 (setq pos (+ pos (length unhexed))))))
8786 str)
8788 (defun org-link-unescape-compound (hex)
8789 "Unhexify unicode hex-chars. E.g. `%C3%B6' is the German Umlaut `ö'.
8790 Note: this function also decodes single byte encodings like
8791 `%E1' (\"á\") if not followed by another `%[A-F0-9]{2}' group."
8792 (save-match-data
8793 (let* ((bytes (cdr (split-string hex "%")))
8794 (ret "")
8795 (eat 0)
8796 (sum 0))
8797 (while bytes
8798 (let* ((val (string-to-number (pop bytes) 16))
8799 (shift-xor
8800 (if (= 0 eat)
8801 (cond
8802 ((>= val 252) (cons 6 252))
8803 ((>= val 248) (cons 5 248))
8804 ((>= val 240) (cons 4 240))
8805 ((>= val 224) (cons 3 224))
8806 ((>= val 192) (cons 2 192))
8807 (t (cons 0 0)))
8808 (cons 6 128))))
8809 (if (>= val 192) (setq eat (car shift-xor)))
8810 (setq val (logxor val (cdr shift-xor)))
8811 (setq sum (+ (lsh sum (car shift-xor)) val))
8812 (if (> eat 0) (setq eat (- eat 1)))
8813 (cond
8814 ((= 0 eat) ;multi byte
8815 (setq ret (concat ret (org-char-to-string sum)))
8816 (setq sum 0))
8817 ((not bytes) ; single byte(s)
8818 (setq ret (org-link-unescape-single-byte-sequence hex))))
8819 )) ;; end (while bytes
8820 ret )))
8822 (defun org-link-unescape-single-byte-sequence (hex)
8823 "Unhexify hex-encoded single byte character sequences."
8824 (mapconcat (lambda (byte)
8825 (char-to-string (string-to-number byte 16)))
8826 (cdr (split-string hex "%")) ""))
8828 (defun org-xor (a b)
8829 "Exclusive or."
8830 (if a (not b) b))
8832 (defun org-fixup-message-id-for-http (s)
8833 "Replace special characters in a message id, so it can be used in an http query."
8834 (when (string-match "%" s)
8835 (setq s (mapconcat (lambda (c)
8836 (if (eq c ?%)
8837 "%25"
8838 (char-to-string c)))
8839 s "")))
8840 (while (string-match "<" s)
8841 (setq s (replace-match "%3C" t t s)))
8842 (while (string-match ">" s)
8843 (setq s (replace-match "%3E" t t s)))
8844 (while (string-match "@" s)
8845 (setq s (replace-match "%40" t t s)))
8848 ;;;###autoload
8849 (defun org-insert-link-global ()
8850 "Insert a link like Org-mode does.
8851 This command can be called in any mode to insert a link in Org-mode syntax."
8852 (interactive)
8853 (org-load-modules-maybe)
8854 (org-run-like-in-org-mode 'org-insert-link))
8856 (defun org-insert-link (&optional complete-file link-location)
8857 "Insert a link. At the prompt, enter the link.
8859 Completion can be used to insert any of the link protocol prefixes like
8860 http or ftp in use.
8862 The history can be used to select a link previously stored with
8863 `org-store-link'. When the empty string is entered (i.e. if you just
8864 press RET at the prompt), the link defaults to the most recently
8865 stored link. As SPC triggers completion in the minibuffer, you need to
8866 use M-SPC or C-q SPC to force the insertion of a space character.
8868 You will also be prompted for a description, and if one is given, it will
8869 be displayed in the buffer instead of the link.
8871 If there is already a link at point, this command will allow you to edit link
8872 and description parts.
8874 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
8875 be selected using completion. The path to the file will be relative to the
8876 current directory if the file is in the current directory or a subdirectory.
8877 Otherwise, the link will be the absolute path as completed in the minibuffer
8878 \(i.e. normally ~/path/to/file). You can configure this behavior using the
8879 option `org-link-file-path-type'.
8881 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
8882 the current directory or below.
8884 With three \\[universal-argument] prefixes, negate the meaning of
8885 `org-keep-stored-link-after-insertion'.
8887 If `org-make-link-description-function' is non-nil, this function will be
8888 called with the link target, and the result will be the default
8889 link description.
8891 If the LINK-LOCATION parameter is non-nil, this value will be
8892 used as the link location instead of reading one interactively."
8893 (interactive "P")
8894 (let* ((wcf (current-window-configuration))
8895 (region (if (org-region-active-p)
8896 (buffer-substring (region-beginning) (region-end))))
8897 (remove (and region (list (region-beginning) (region-end))))
8898 (desc region)
8899 tmphist ; byte-compile incorrectly complains about this
8900 (link link-location)
8901 entry file all-prefixes)
8902 (cond
8903 (link-location) ; specified by arg, just use it.
8904 ((org-in-regexp org-bracket-link-regexp 1)
8905 ;; We do have a link at point, and we are going to edit it.
8906 (setq remove (list (match-beginning 0) (match-end 0)))
8907 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
8908 (setq link (read-string "Link: "
8909 (org-link-unescape
8910 (org-match-string-no-properties 1)))))
8911 ((or (org-in-regexp org-angle-link-re)
8912 (org-in-regexp org-plain-link-re))
8913 ;; Convert to bracket link
8914 (setq remove (list (match-beginning 0) (match-end 0))
8915 link (read-string "Link: "
8916 (org-remove-angle-brackets (match-string 0)))))
8917 ((member complete-file '((4) (16)))
8918 ;; Completing read for file names.
8919 (setq link (org-file-complete-link complete-file)))
8921 ;; Read link, with completion for stored links.
8922 (with-output-to-temp-buffer "*Org Links*"
8923 (princ "Insert a link.
8924 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
8925 (when org-stored-links
8926 (princ "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
8927 (princ (mapconcat
8928 (lambda (x)
8929 (if (nth 1 x) (concat (car x) " (" (nth 1 x) ")") (car x)))
8930 (reverse org-stored-links) "\n"))))
8931 (let ((cw (selected-window)))
8932 (select-window (get-buffer-window "*Org Links*" 'visible))
8933 (with-current-buffer "*Org Links*" (setq truncate-lines) t)
8934 (unless (pos-visible-in-window-p (point-max))
8935 (org-fit-window-to-buffer))
8936 (and (window-live-p cw) (select-window cw)))
8937 ;; Fake a link history, containing the stored links.
8938 (setq tmphist (append (mapcar 'car org-stored-links)
8939 org-insert-link-history))
8940 (setq all-prefixes (append (mapcar 'car org-link-abbrev-alist-local)
8941 (mapcar 'car org-link-abbrev-alist)
8942 org-link-types))
8943 (unwind-protect
8944 (progn
8945 (setq link
8946 (let ((org-completion-use-ido nil)
8947 (org-completion-use-iswitchb nil))
8948 (org-completing-read
8949 "Link: "
8950 (append
8951 (mapcar (lambda (x) (list (concat x ":")))
8952 all-prefixes)
8953 (mapcar 'car org-stored-links))
8954 nil nil nil
8955 'tmphist
8956 (car (car org-stored-links)))))
8957 (if (not (string-match "\\S-" link))
8958 (error "No link selected"))
8959 (if (or (member link all-prefixes)
8960 (and (equal ":" (substring link -1))
8961 (member (substring link 0 -1) all-prefixes)
8962 (setq link (substring link 0 -1))))
8963 (setq link (org-link-try-special-completion link))))
8964 (set-window-configuration wcf)
8965 (kill-buffer "*Org Links*"))
8966 (setq entry (assoc link org-stored-links))
8967 (or entry (push link org-insert-link-history))
8968 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
8969 (not org-keep-stored-link-after-insertion))
8970 (setq org-stored-links (delq (assoc link org-stored-links)
8971 org-stored-links)))
8972 (setq desc (or desc (nth 1 entry)))))
8974 (if (string-match org-plain-link-re link)
8975 ;; URL-like link, normalize the use of angular brackets.
8976 (setq link (org-make-link (org-remove-angle-brackets link))))
8978 ;; Check if we are linking to the current file with a search option
8979 ;; If yes, simplify the link by using only the search option.
8980 (when (and buffer-file-name
8981 (string-match "^file:\\(.+?\\)::\\([^>]+\\)" link))
8982 (let* ((path (match-string 1 link))
8983 (case-fold-search nil)
8984 (search (match-string 2 link)))
8985 (save-match-data
8986 (if (equal (file-truename buffer-file-name) (file-truename path))
8987 ;; We are linking to this same file, with a search option
8988 (setq link search)))))
8990 ;; Check if we can/should use a relative path. If yes, simplify the link
8991 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
8992 (let* ((type (match-string 1 link))
8993 (path (match-string 2 link))
8994 (origpath path)
8995 (case-fold-search nil))
8996 (cond
8997 ((or (eq org-link-file-path-type 'absolute)
8998 (equal complete-file '(16)))
8999 (setq path (abbreviate-file-name (expand-file-name path))))
9000 ((eq org-link-file-path-type 'noabbrev)
9001 (setq path (expand-file-name path)))
9002 ((eq org-link-file-path-type 'relative)
9003 (setq path (file-relative-name path)))
9005 (save-match-data
9006 (if (string-match (concat "^" (regexp-quote
9007 (expand-file-name
9008 (file-name-as-directory
9009 default-directory))))
9010 (expand-file-name path))
9011 ;; We are linking a file with relative path name.
9012 (setq path (substring (expand-file-name path)
9013 (match-end 0)))
9014 (setq path (abbreviate-file-name (expand-file-name path)))))))
9015 (setq link (concat type path))
9016 (if (equal desc origpath)
9017 (setq desc path))))
9019 (if org-make-link-description-function
9020 (setq desc (funcall org-make-link-description-function link desc)))
9022 (setq desc (read-string "Description: " desc))
9023 (unless (string-match "\\S-" desc) (setq desc nil))
9024 (if remove (apply 'delete-region remove))
9025 (insert (org-make-link-string link desc))))
9027 (defun org-link-try-special-completion (type)
9028 "If there is completion support for link type TYPE, offer it."
9029 (let ((fun (intern (concat "org-" type "-complete-link"))))
9030 (if (functionp fun)
9031 (funcall fun)
9032 (read-string "Link (no completion support): " (concat type ":")))))
9034 (defun org-file-complete-link (&optional arg)
9035 "Create a file link using completion."
9036 (let (file link)
9037 (setq file (read-file-name "File: "))
9038 (let ((pwd (file-name-as-directory (expand-file-name ".")))
9039 (pwd1 (file-name-as-directory (abbreviate-file-name
9040 (expand-file-name ".")))))
9041 (cond
9042 ((equal arg '(16))
9043 (setq link (org-make-link
9044 "file:"
9045 (abbreviate-file-name (expand-file-name file)))))
9046 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
9047 (setq link (org-make-link "file:" (match-string 1 file))))
9048 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
9049 (expand-file-name file))
9050 (setq link (org-make-link
9051 "file:" (match-string 1 (expand-file-name file)))))
9052 (t (setq link (org-make-link "file:" file)))))
9053 link))
9055 (defun org-completing-read (&rest args)
9056 "Completing-read with SPACE being a normal character."
9057 (let ((minibuffer-local-completion-map
9058 (copy-keymap minibuffer-local-completion-map)))
9059 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
9060 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
9061 (apply 'org-icompleting-read args)))
9063 (defun org-completing-read-no-i (&rest args)
9064 (let (org-completion-use-ido org-completion-use-iswitchb)
9065 (apply 'org-completing-read args)))
9067 (defun org-iswitchb-completing-read (prompt choices &rest args)
9068 "Use iswitch as a completing-read replacement to choose from choices.
9069 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
9070 from."
9071 (let* ((iswitchb-use-virtual-buffers nil)
9072 (iswitchb-make-buflist-hook
9073 (lambda ()
9074 (setq iswitchb-temp-buflist choices))))
9075 (iswitchb-read-buffer prompt)))
9077 (defun org-icompleting-read (&rest args)
9078 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
9079 (org-without-partial-completion
9080 (if (and org-completion-use-ido
9081 (fboundp 'ido-completing-read)
9082 (boundp 'ido-mode) ido-mode
9083 (listp (second args)))
9084 (let ((ido-enter-matching-directory nil))
9085 (apply 'ido-completing-read (concat (car args))
9086 (if (consp (car (nth 1 args)))
9087 (mapcar 'car (nth 1 args))
9088 (nth 1 args))
9089 (cddr args)))
9090 (if (and org-completion-use-iswitchb
9091 (boundp 'iswitchb-mode) iswitchb-mode
9092 (listp (second args)))
9093 (apply 'org-iswitchb-completing-read (concat (car args))
9094 (if (consp (car (nth 1 args)))
9095 (mapcar 'car (nth 1 args))
9096 (nth 1 args))
9097 (cddr args))
9098 (apply 'completing-read args)))))
9100 (defun org-extract-attributes (s)
9101 "Extract the attributes cookie from a string and set as text property."
9102 (let (a attr (start 0) key value)
9103 (save-match-data
9104 (when (string-match "{{\\([^}]+\\)}}$" s)
9105 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
9106 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
9107 (setq key (match-string 1 a) value (match-string 2 a)
9108 start (match-end 0)
9109 attr (plist-put attr (intern key) value))))
9110 (org-add-props s nil 'org-attr attr))
9113 (defun org-extract-attributes-from-string (tag)
9114 (let (key value attr)
9115 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"\\s-?" tag)
9116 (setq key (match-string 1 tag) value (match-string 2 tag)
9117 tag (replace-match "" t t tag)
9118 attr (plist-put attr (intern key) value)))
9119 (cons tag attr)))
9121 (defun org-attributes-to-string (plist)
9122 "Format a property list into an HTML attribute list."
9123 (let ((s "") key value)
9124 (while plist
9125 (setq key (pop plist) value (pop plist))
9126 (and value
9127 (setq s (concat s " " (symbol-name key) "=\"" value "\""))))
9130 ;;; Opening/following a link
9132 (defvar org-link-search-failed nil)
9134 (defvar org-open-link-functions nil
9135 "Hook for functions finding a plain text link.
9136 These functions must take a single argument, the link content.
9137 They will be called for links that look like [[link text][description]]
9138 when LINK TEXT does not have a protocol like \"http:\" and does not look
9139 like a filename (e.g. \"./blue.png\").
9141 These functions will be called *before* Org attempts to resolve the
9142 link by doing text searches in the current buffer - so if you want a
9143 link \"[[target]]\" to still find \"<<target>>\", your function should
9144 handle this as a special case.
9146 When the function does handle the link, it must return a non-nil value.
9147 If it decides that it is not responsible for this link, it must return
9148 nil to indicate that that Org-mode can continue with other options
9149 like exact and fuzzy text search.")
9151 (defun org-next-link ()
9152 "Move forward to the next link.
9153 If the link is in hidden text, expose it."
9154 (interactive)
9155 (when (and org-link-search-failed (eq this-command last-command))
9156 (goto-char (point-min))
9157 (message "Link search wrapped back to beginning of buffer"))
9158 (setq org-link-search-failed nil)
9159 (let* ((pos (point))
9160 (ct (org-context))
9161 (a (assoc :link ct)))
9162 (if a (goto-char (nth 2 a)))
9163 (if (re-search-forward org-any-link-re nil t)
9164 (progn
9165 (goto-char (match-beginning 0))
9166 (if (outline-invisible-p) (org-show-context)))
9167 (goto-char pos)
9168 (setq org-link-search-failed t)
9169 (error "No further link found"))))
9171 (defun org-previous-link ()
9172 "Move backward to the previous link.
9173 If the link is in hidden text, expose it."
9174 (interactive)
9175 (when (and org-link-search-failed (eq this-command last-command))
9176 (goto-char (point-max))
9177 (message "Link search wrapped back to end of buffer"))
9178 (setq org-link-search-failed nil)
9179 (let* ((pos (point))
9180 (ct (org-context))
9181 (a (assoc :link ct)))
9182 (if a (goto-char (nth 1 a)))
9183 (if (re-search-backward org-any-link-re nil t)
9184 (progn
9185 (goto-char (match-beginning 0))
9186 (if (outline-invisible-p) (org-show-context)))
9187 (goto-char pos)
9188 (setq org-link-search-failed t)
9189 (error "No further link found"))))
9191 (defun org-translate-link (s)
9192 "Translate a link string if a translation function has been defined."
9193 (if (and org-link-translation-function
9194 (fboundp org-link-translation-function)
9195 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
9196 (progn
9197 (setq s (funcall org-link-translation-function
9198 (match-string 1) (match-string 2)))
9199 (concat (car s) ":" (cdr s)))
9202 (defun org-translate-link-from-planner (type path)
9203 "Translate a link from Emacs Planner syntax so that Org can follow it.
9204 This is still an experimental function, your mileage may vary."
9205 (cond
9206 ((member type '("http" "https" "news" "ftp"))
9207 ;; standard Internet links are the same.
9208 nil)
9209 ((and (equal type "irc") (string-match "^//" path))
9210 ;; Planner has two / at the beginning of an irc link, we have 1.
9211 ;; We should have zero, actually....
9212 (setq path (substring path 1)))
9213 ((and (equal type "lisp") (string-match "^/" path))
9214 ;; Planner has a slash, we do not.
9215 (setq type "elisp" path (substring path 1)))
9216 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
9217 ;; A typical message link. Planner has the id after the final slash,
9218 ;; we separate it with a hash mark
9219 (setq path (concat (match-string 1 path) "#"
9220 (org-remove-angle-brackets (match-string 2 path)))))
9222 (cons type path))
9224 (defun org-find-file-at-mouse (ev)
9225 "Open file link or URL at mouse."
9226 (interactive "e")
9227 (mouse-set-point ev)
9228 (org-open-at-point 'in-emacs))
9230 (defun org-open-at-mouse (ev)
9231 "Open file link or URL at mouse."
9232 (interactive "e")
9233 (mouse-set-point ev)
9234 (if (eq major-mode 'org-agenda-mode)
9235 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
9236 (org-open-at-point))
9238 (defvar org-window-config-before-follow-link nil
9239 "The window configuration before following a link.
9240 This is saved in case the need arises to restore it.")
9242 (defvar org-open-link-marker (make-marker)
9243 "Marker pointing to the location where `org-open-at-point; was called.")
9245 ;;;###autoload
9246 (defun org-open-at-point-global ()
9247 "Follow a link like Org-mode does.
9248 This command can be called in any mode to follow a link that has
9249 Org-mode syntax."
9250 (interactive)
9251 (org-run-like-in-org-mode 'org-open-at-point))
9253 ;;;###autoload
9254 (defun org-open-link-from-string (s &optional arg reference-buffer)
9255 "Open a link in the string S, as if it was in Org-mode."
9256 (interactive "sLink: \nP")
9257 (let ((reference-buffer (or reference-buffer (current-buffer))))
9258 (with-temp-buffer
9259 (let ((org-inhibit-startup t))
9260 (org-mode)
9261 (insert s)
9262 (goto-char (point-min))
9263 (when reference-buffer
9264 (setq org-link-abbrev-alist-local
9265 (with-current-buffer reference-buffer
9266 org-link-abbrev-alist-local)))
9267 (org-open-at-point arg reference-buffer)))))
9269 (defvar org-open-at-point-functions nil
9270 "Hook that is run when following a link at point.
9272 Functions in this hook must return t if they identify and follow
9273 a link at point. If they don't find anything interesting at point,
9274 they must return nil.")
9276 (defun org-open-at-point (&optional arg reference-buffer)
9277 "Open link at or after point.
9278 If there is no link at point, this function will search forward up to
9279 the end of the current line.
9280 Normally, files will be opened by an appropriate application. If the
9281 optional prefix argument ARG is non-nil, Emacs will visit the file.
9282 With a double prefix argument, try to open outside of Emacs, in the
9283 application the system uses for this file type."
9284 (interactive "P")
9285 ;; if in a code block, then open the block's results
9286 (unless (call-interactively #'org-babel-open-src-block-result)
9287 (org-load-modules-maybe)
9288 (move-marker org-open-link-marker (point))
9289 (setq org-window-config-before-follow-link (current-window-configuration))
9290 (org-remove-occur-highlights nil nil t)
9291 (cond
9292 ((and (org-on-heading-p)
9293 (not (org-in-regexp
9294 (concat org-plain-link-re "\\|"
9295 org-bracket-link-regexp "\\|"
9296 org-angle-link-re "\\|"
9297 "[ \t]:[^ \t\n]+:[ \t]*$")))
9298 (not (get-text-property (point) 'org-linked-text)))
9299 (or (org-offer-links-in-entry arg)
9300 (progn (require 'org-attach) (org-attach-reveal 'if-exists))))
9301 ((run-hook-with-args-until-success 'org-open-at-point-functions))
9302 ((org-at-timestamp-p t) (org-follow-timestamp-link))
9303 ((and (or (org-footnote-at-reference-p) (org-footnote-at-definition-p))
9304 (not (org-in-regexp org-bracket-link-regexp)))
9305 (org-footnote-action))
9307 (let (type path link line search (pos (point)))
9308 (catch 'match
9309 (save-excursion
9310 (skip-chars-forward "^]\n\r")
9311 (when (org-in-regexp org-bracket-link-regexp 1)
9312 (setq link (org-extract-attributes
9313 (org-link-unescape (org-match-string-no-properties 1))))
9314 (while (string-match " *\n *" link)
9315 (setq link (replace-match " " t t link)))
9316 (setq link (org-link-expand-abbrev link))
9317 (cond
9318 ((or (file-name-absolute-p link)
9319 (string-match "^\\.\\.?/" link))
9320 (setq type "file" path link))
9321 ((string-match org-link-re-with-space3 link)
9322 (setq type (match-string 1 link) path (match-string 2 link)))
9323 (t (setq type "thisfile" path link)))
9324 (throw 'match t)))
9326 (when (get-text-property (point) 'org-linked-text)
9327 (setq type "thisfile"
9328 pos (if (get-text-property (1+ (point)) 'org-linked-text)
9329 (1+ (point)) (point))
9330 path (buffer-substring
9331 (or (previous-single-property-change pos 'org-linked-text)
9332 (point-min))
9333 (or (next-single-property-change pos 'org-linked-text)
9334 (point-max))))
9335 (throw 'match t))
9337 (save-excursion
9338 (when (or (org-in-regexp org-angle-link-re)
9339 (org-in-regexp org-plain-link-re))
9340 (setq type (match-string 1) path (match-string 2))
9341 (throw 'match t)))
9342 (save-excursion
9343 (when (org-in-regexp (org-re "\\(:[[:alnum:]_@#%:]+\\):[ \t]*$"))
9344 (setq type "tags"
9345 path (match-string 1))
9346 (while (string-match ":" path)
9347 (setq path (replace-match "+" t t path)))
9348 (throw 'match t)))
9349 (when (org-in-regexp "<\\([^><\n]+\\)>")
9350 (setq type "tree-match"
9351 path (match-string 1))
9352 (throw 'match t)))
9353 (unless path
9354 (error "No link found"))
9356 ;; switch back to reference buffer
9357 ;; needed when if called in a temporary buffer through
9358 ;; org-open-link-from-string
9359 (with-current-buffer (or reference-buffer (current-buffer))
9361 ;; Remove any trailing spaces in path
9362 (if (string-match " +\\'" path)
9363 (setq path (replace-match "" t t path)))
9364 (if (and org-link-translation-function
9365 (fboundp org-link-translation-function))
9366 ;; Check if we need to translate the link
9367 (let ((tmp (funcall org-link-translation-function type path)))
9368 (setq type (car tmp) path (cdr tmp))))
9370 (cond
9372 ((assoc type org-link-protocols)
9373 (funcall (nth 1 (assoc type org-link-protocols)) path))
9375 ((equal type "mailto")
9376 (let ((cmd (car org-link-mailto-program))
9377 (args (cdr org-link-mailto-program)) args1
9378 (address path) (subject "") a)
9379 (if (string-match "\\(.*\\)::\\(.*\\)" path)
9380 (setq address (match-string 1 path)
9381 subject (org-link-escape (match-string 2 path))))
9382 (while args
9383 (cond
9384 ((not (stringp (car args))) (push (pop args) args1))
9385 (t (setq a (pop args))
9386 (if (string-match "%a" a)
9387 (setq a (replace-match address t t a)))
9388 (if (string-match "%s" a)
9389 (setq a (replace-match subject t t a)))
9390 (push a args1))))
9391 (apply cmd (nreverse args1))))
9393 ((member type '("http" "https" "ftp" "news"))
9394 (browse-url (concat type ":" (org-link-escape
9395 path org-link-escape-chars-browser))))
9397 ((string= type "doi")
9398 (browse-url (concat "http://dx.doi.org/"
9399 (org-link-escape
9400 path org-link-escape-chars-browser))))
9402 ((member type '("message"))
9403 (browse-url (concat type ":" path)))
9405 ((string= type "tags")
9406 (org-tags-view arg path))
9408 ((string= type "tree-match")
9409 (org-occur (concat "\\[" (regexp-quote path) "\\]")))
9411 ((string= type "file")
9412 (if (string-match "::\\([0-9]+\\)\\'" path)
9413 (setq line (string-to-number (match-string 1 path))
9414 path (substring path 0 (match-beginning 0)))
9415 (if (string-match "::\\(.+\\)\\'" path)
9416 (setq search (match-string 1 path)
9417 path (substring path 0 (match-beginning 0)))))
9418 (if (string-match "[*?{]" (file-name-nondirectory path))
9419 (dired path)
9420 (org-open-file path arg line search)))
9422 ((string= type "shell")
9423 (let ((cmd path))
9424 (if (or (and (not (string= org-confirm-shell-link-not-regexp ""))
9425 (string-match org-confirm-shell-link-not-regexp cmd))
9426 (not org-confirm-shell-link-function)
9427 (funcall org-confirm-shell-link-function
9428 (format "Execute \"%s\" in shell? "
9429 (org-add-props cmd nil
9430 'face 'org-warning))))
9431 (progn
9432 (message "Executing %s" cmd)
9433 (shell-command cmd))
9434 (error "Abort"))))
9436 ((string= type "elisp")
9437 (let ((cmd path))
9438 (if (or (and (not (string= org-confirm-elisp-link-not-regexp ""))
9439 (string-match org-confirm-elisp-link-not-regexp cmd))
9440 (not org-confirm-elisp-link-function)
9441 (funcall org-confirm-elisp-link-function
9442 (format "Execute \"%s\" as elisp? "
9443 (org-add-props cmd nil
9444 'face 'org-warning))))
9445 (message "%s => %s" cmd
9446 (if (equal (string-to-char cmd) ?\()
9447 (eval (read cmd))
9448 (call-interactively (read cmd))))
9449 (error "Abort"))))
9451 ((and (string= type "thisfile")
9452 (run-hook-with-args-until-success
9453 'org-open-link-functions path)))
9455 ((string= type "thisfile")
9456 (if arg
9457 (switch-to-buffer-other-window
9458 (org-get-buffer-for-internal-link (current-buffer)))
9459 (org-mark-ring-push))
9460 (let ((cmd `(org-link-search
9461 ,path
9462 ,(cond ((equal arg '(4)) ''occur)
9463 ((equal arg '(16)) ''org-occur)
9464 (t nil))
9465 ,pos)))
9466 (condition-case nil (eval cmd)
9467 (error (progn (widen) (eval cmd))))))
9470 (browse-url-at-point)))))))
9471 (move-marker org-open-link-marker nil)
9472 (run-hook-with-args 'org-follow-link-hook)))
9474 (defun org-offer-links-in-entry (&optional nth zero)
9475 "Offer links in the current entry and follow the selected link.
9476 If there is only one link, follow it immediately as well.
9477 If NTH is an integer, immediately pick the NTH link found.
9478 If ZERO is a string, check also this string for a link, and if
9479 there is one, offer it as link number zero."
9480 (let ((re (concat "\\(" org-bracket-link-regexp "\\)\\|"
9481 "\\(" org-angle-link-re "\\)\\|"
9482 "\\(" org-plain-link-re "\\)"))
9483 (cnt ?0)
9484 (in-emacs (if (integerp nth) nil nth))
9485 have-zero end links link c)
9486 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
9487 (push (match-string 0 zero) links)
9488 (setq cnt (1- cnt) have-zero t))
9489 (save-excursion
9490 (org-back-to-heading t)
9491 (setq end (save-excursion (outline-next-heading) (point)))
9492 (while (re-search-forward re end t)
9493 (push (match-string 0) links))
9494 (setq links (org-uniquify (reverse links))))
9496 (cond
9497 ((null links)
9498 (message "No links"))
9499 ((equal (length links) 1)
9500 (setq link (list (car links))))
9501 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
9502 (setq link (nth (if have-zero nth (1- nth)) links)))
9503 (t ; we have to select a link
9504 (save-excursion
9505 (save-window-excursion
9506 (delete-other-windows)
9507 (with-output-to-temp-buffer "*Select Link*"
9508 (mapc (lambda (l)
9509 (if (not (string-match org-bracket-link-regexp l))
9510 (princ (format "[%c] %s\n" (incf cnt)
9511 (org-remove-angle-brackets l)))
9512 (if (match-end 3)
9513 (princ (format "[%c] %s (%s)\n" (incf cnt)
9514 (match-string 3 l) (match-string 1 l)))
9515 (princ (format "[%c] %s\n" (incf cnt)
9516 (match-string 1 l))))))
9517 links))
9518 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
9519 (message "Select link to open, RET to open all:")
9520 (setq c (read-char-exclusive))
9521 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
9522 (when (equal c ?q) (error "Abort"))
9523 (if (equal c ?\C-m)
9524 (setq link links)
9525 (setq nth (- c ?0))
9526 (if have-zero (setq nth (1+ nth)))
9527 (unless (and (integerp nth) (>= (length links) nth))
9528 (error "Invalid link selection"))
9529 (setq link (list (nth (1- nth) links))))))
9530 (if link
9531 (let ((buf (current-buffer)))
9532 (dolist (l link)
9533 (org-open-link-from-string l in-emacs buf))
9535 nil)))
9537 ;; Add special file links that specify the way of opening
9539 (org-add-link-type "file+sys" 'org-open-file-with-system)
9540 (org-add-link-type "file+emacs" 'org-open-file-with-emacs)
9541 (defun org-open-file-with-system (path)
9542 "Open file at PATH using the system way of opening it."
9543 (org-open-file path 'system))
9544 (defun org-open-file-with-emacs (path)
9545 "Open file at PATH in Emacs."
9546 (org-open-file path 'emacs))
9547 (defun org-remove-file-link-modifiers ()
9548 "Remove the file link modifiers in `file+sys:' and `file+emacs:' links."
9549 (goto-char (point-min))
9550 (while (re-search-forward "\\<file\\+\\(sys\\|emacs\\):" nil t)
9551 (org-if-unprotected
9552 (replace-match "file:" t t))))
9553 (eval-after-load "org-exp"
9554 '(add-hook 'org-export-preprocess-before-normalizing-links-hook
9555 'org-remove-file-link-modifiers))
9557 ;;;; Time estimates
9559 (defun org-get-effort (&optional pom)
9560 "Get the effort estimate for the current entry."
9561 (org-entry-get pom org-effort-property))
9563 ;;; File search
9565 (defvar org-create-file-search-functions nil
9566 "List of functions to construct the right search string for a file link.
9567 These functions are called in turn with point at the location to
9568 which the link should point.
9570 A function in the hook should first test if it would like to
9571 handle this file type, for example by checking the `major-mode'
9572 or the file extension. If it decides not to handle this file, it
9573 should just return nil to give other functions a chance. If it
9574 does handle the file, it must return the search string to be used
9575 when following the link. The search string will be part of the
9576 file link, given after a double colon, and `org-open-at-point'
9577 will automatically search for it. If special measures must be
9578 taken to make the search successful, another function should be
9579 added to the companion hook `org-execute-file-search-functions',
9580 which see.
9582 A function in this hook may also use `setq' to set the variable
9583 `description' to provide a suggestion for the descriptive text to
9584 be used for this link when it gets inserted into an Org-mode
9585 buffer with \\[org-insert-link].")
9587 (defvar org-execute-file-search-functions nil
9588 "List of functions to execute a file search triggered by a link.
9590 Functions added to this hook must accept a single argument, the
9591 search string that was part of the file link, the part after the
9592 double colon. The function must first check if it would like to
9593 handle this search, for example by checking the `major-mode' or
9594 the file extension. If it decides not to handle this search, it
9595 should just return nil to give other functions a chance. If it
9596 does handle the search, it must return a non-nil value to keep
9597 other functions from trying.
9599 Each function can access the current prefix argument through the
9600 variable `current-prefix-argument'. Note that a single prefix is
9601 used to force opening a link in Emacs, so it may be good to only
9602 use a numeric or double prefix to guide the search function.
9604 In case this is needed, a function in this hook can also restore
9605 the window configuration before `org-open-at-point' was called using:
9607 (set-window-configuration org-window-config-before-follow-link)")
9609 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
9610 (defun org-link-search (s &optional type avoid-pos)
9611 "Search for a link search option.
9612 If S is surrounded by forward slashes, it is interpreted as a
9613 regular expression. In org-mode files, this will create an `org-occur'
9614 sparse tree. In ordinary files, `occur' will be used to list matches.
9615 If the current buffer is in `dired-mode', grep will be used to search
9616 in all files. If AVOID-POS is given, ignore matches near that position."
9617 (let ((case-fold-search t)
9618 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
9619 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
9620 (append '(("") (" ") ("\t") ("\n"))
9621 org-emphasis-alist)
9622 "\\|") "\\)"))
9623 (pos (point))
9624 (pre nil) (post nil)
9625 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
9626 (cond
9627 ;; First check if there are any special search functions
9628 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
9629 ;; Now try the builtin stuff
9630 ((and (equal (string-to-char s0) ?#)
9631 (> (length s0) 1)
9632 (save-excursion
9633 (goto-char (point-min))
9634 (and
9635 (re-search-forward
9636 (concat "^[ \t]*:CUSTOM_ID:[ \t]+" (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
9637 (setq type 'dedicated
9638 pos (match-beginning 0))))
9639 ;; There is an exact target for this
9640 (goto-char pos)
9641 (org-back-to-heading t)))
9642 ((save-excursion
9643 (goto-char (point-min))
9644 (and
9645 (re-search-forward
9646 (concat "<<" (regexp-quote s0) ">>") nil t)
9647 (setq type 'dedicated
9648 pos (match-beginning 0))))
9649 ;; There is an exact target for this
9650 (goto-char pos))
9651 ((and (string-match "^(\\(.*\\))$" s0)
9652 (save-excursion
9653 (goto-char (point-min))
9654 (and
9655 (re-search-forward
9656 (concat "[^[]" (regexp-quote
9657 (format org-coderef-label-format
9658 (match-string 1 s0))))
9659 nil t)
9660 (setq type 'dedicated
9661 pos (1+ (match-beginning 0))))))
9662 ;; There is a coderef target for this
9663 (goto-char pos))
9664 ((string-match "^/\\(.*\\)/$" s)
9665 ;; A regular expression
9666 (cond
9667 ((org-mode-p)
9668 (org-occur (match-string 1 s)))
9669 ;;((eq major-mode 'dired-mode)
9670 ;; (grep (concat "grep -n -e '" (match-string 1 s) "' *")))
9671 (t (org-do-occur (match-string 1 s)))))
9672 ((and (org-mode-p) org-link-search-must-match-exact-headline)
9673 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
9674 (goto-char (point-min))
9675 (cond
9676 ((let (case-fold-search)
9677 (re-search-forward (format org-complex-heading-regexp-format
9678 (regexp-quote s))
9679 nil t))
9680 ;; OK, found a match
9681 (setq type 'dedicated)
9682 (goto-char (match-beginning 0)))
9683 ((and (not org-link-search-inhibit-query)
9684 (eq org-link-search-must-match-exact-headline 'query-to-create)
9685 (y-or-n-p "No match - create this as a new heading? "))
9686 (goto-char (point-max))
9687 (or (bolp) (newline))
9688 (insert "* " s "\n")
9689 (beginning-of-line 0))
9691 (goto-char pos)
9692 (error "No match"))))
9694 ;; A normal search string
9695 (when (equal (string-to-char s) ?*)
9696 ;; Anchor on headlines, post may include tags.
9697 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
9698 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
9699 s (substring s 1)))
9700 (remove-text-properties
9701 0 (length s)
9702 '(face nil mouse-face nil keymap nil fontified nil) s)
9703 ;; Make a series of regular expressions to find a match
9704 (setq words (org-split-string s "[ \n\r\t]+")
9706 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
9707 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
9708 "\\)" markers)
9709 re2a_ (concat "\\(" (mapconcat 'downcase words "[ \t\r\n]+") "\\)[ \t\r\n]")
9710 re2a (concat "[ \t\r\n]" re2a_)
9711 re4_ (concat "\\(" (mapconcat 'downcase words "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
9712 re4 (concat "[^a-zA-Z_]" re4_)
9714 re1 (concat pre re2 post)
9715 re3 (concat pre (if pre re4_ re4) post)
9716 re5 (concat pre ".*" re4)
9717 re2 (concat pre re2)
9718 re2a (concat pre (if pre re2a_ re2a))
9719 re4 (concat pre (if pre re4_ re4))
9720 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
9721 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
9722 re5 "\\)"
9724 (cond
9725 ((eq type 'org-occur) (org-occur reall))
9726 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
9727 (t (goto-char (point-min))
9728 (setq type 'fuzzy)
9729 (if (or (and (org-search-not-self 1 re0 nil t) (setq type 'dedicated))
9730 (org-search-not-self 1 re1 nil t)
9731 (org-search-not-self 1 re2 nil t)
9732 (org-search-not-self 1 re2a nil t)
9733 (org-search-not-self 1 re3 nil t)
9734 (org-search-not-self 1 re4 nil t)
9735 (org-search-not-self 1 re5 nil t)
9737 (goto-char (match-beginning 1))
9738 (goto-char pos)
9739 (error "No match"))))))
9740 (and (org-mode-p) (org-show-context 'link-search))
9741 type))
9743 (defun org-search-not-self (group &rest args)
9744 "Execute `re-search-forward', but only accept matches that do not
9745 enclose the position of `org-open-link-marker'."
9746 (let ((m org-open-link-marker))
9747 (catch 'exit
9748 (while (apply 're-search-forward args)
9749 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
9750 (goto-char (match-end group))
9751 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
9752 (> (match-beginning 0) (marker-position m))
9753 (< (match-end 0) (marker-position m)))
9754 (save-match-data
9755 (or (not (org-in-regexp
9756 org-bracket-link-analytic-regexp 1))
9757 (not (match-end 4)) ; no description
9758 (and (<= (match-beginning 4) (point))
9759 (>= (match-end 4) (point))))))
9760 (throw 'exit (point))))))))
9762 (defun org-get-buffer-for-internal-link (buffer)
9763 "Return a buffer to be used for displaying the link target of internal links."
9764 (cond
9765 ((not org-display-internal-link-with-indirect-buffer)
9766 buffer)
9767 ((string-match "(Clone)$" (buffer-name buffer))
9768 (message "Buffer is already a clone, not making another one")
9769 ;; we also do not modify visibility in this case
9770 buffer)
9771 (t ; make a new indirect buffer for displaying the link
9772 (let* ((bn (buffer-name buffer))
9773 (ibn (concat bn "(Clone)"))
9774 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
9775 (with-current-buffer ib (org-overview))
9776 ib))))
9778 (defun org-do-occur (regexp &optional cleanup)
9779 "Call the Emacs command `occur'.
9780 If CLEANUP is non-nil, remove the printout of the regular expression
9781 in the *Occur* buffer. This is useful if the regex is long and not useful
9782 to read."
9783 (occur regexp)
9784 (when cleanup
9785 (let ((cwin (selected-window)) win beg end)
9786 (when (setq win (get-buffer-window "*Occur*"))
9787 (select-window win))
9788 (goto-char (point-min))
9789 (when (re-search-forward "match[a-z]+" nil t)
9790 (setq beg (match-end 0))
9791 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
9792 (setq end (1- (match-beginning 0)))))
9793 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
9794 (goto-char (point-min))
9795 (select-window cwin))))
9797 ;;; The mark ring for links jumps
9799 (defvar org-mark-ring nil
9800 "Mark ring for positions before jumps in Org-mode.")
9801 (defvar org-mark-ring-last-goto nil
9802 "Last position in the mark ring used to go back.")
9803 ;; Fill and close the ring
9804 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
9805 (loop for i from 1 to org-mark-ring-length do
9806 (push (make-marker) org-mark-ring))
9807 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
9808 org-mark-ring)
9810 (defun org-mark-ring-push (&optional pos buffer)
9811 "Put the current position or POS into the mark ring and rotate it."
9812 (interactive)
9813 (setq pos (or pos (point)))
9814 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
9815 (move-marker (car org-mark-ring)
9816 (or pos (point))
9817 (or buffer (current-buffer)))
9818 (message "%s"
9819 (substitute-command-keys
9820 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
9822 (defun org-mark-ring-goto (&optional n)
9823 "Jump to the previous position in the mark ring.
9824 With prefix arg N, jump back that many stored positions. When
9825 called several times in succession, walk through the entire ring.
9826 Org-mode commands jumping to a different position in the current file,
9827 or to another Org-mode file, automatically push the old position
9828 onto the ring."
9829 (interactive "p")
9830 (let (p m)
9831 (if (eq last-command this-command)
9832 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
9833 (setq p org-mark-ring))
9834 (setq org-mark-ring-last-goto p)
9835 (setq m (car p))
9836 (org-pop-to-buffer-same-window (marker-buffer m))
9837 (goto-char m)
9838 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
9840 (defun org-remove-angle-brackets (s)
9841 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
9842 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
9844 (defun org-add-angle-brackets (s)
9845 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
9846 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
9848 (defun org-remove-double-quotes (s)
9849 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
9850 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
9853 ;;; Following specific links
9855 (defun org-follow-timestamp-link ()
9856 (cond
9857 ((org-at-date-range-p t)
9858 (let ((org-agenda-start-on-weekday)
9859 (t1 (match-string 1))
9860 (t2 (match-string 2)))
9861 (setq t1 (time-to-days (org-time-string-to-time t1))
9862 t2 (time-to-days (org-time-string-to-time t2)))
9863 (org-agenda-list nil t1 (1+ (- t2 t1)))))
9864 ((org-at-timestamp-p t)
9865 (org-agenda-list nil (time-to-days (org-time-string-to-time
9866 (substring (match-string 1) 0 10)))
9868 (t (error "This should not happen"))))
9871 ;;; Following file links
9872 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
9873 (declare-function mailcap-extension-to-mime "mailcap" (extn))
9874 (declare-function mailcap-mime-info
9875 "mailcap" (string &optional request no-decode))
9876 (defvar org-wait nil)
9877 (defun org-open-file (path &optional in-emacs line search)
9878 "Open the file at PATH.
9879 First, this expands any special file name abbreviations. Then the
9880 configuration variable `org-file-apps' is checked if it contains an
9881 entry for this file type, and if yes, the corresponding command is launched.
9883 If no application is found, Emacs simply visits the file.
9885 With optional prefix argument IN-EMACS, Emacs will visit the file.
9886 With a double \\[universal-argument] \\[universal-argument] \
9887 prefix arg, Org tries to avoid opening in Emacs
9888 and to use an external application to visit the file.
9890 Optional LINE specifies a line to go to, optional SEARCH a string
9891 to search for. If LINE or SEARCH is given, the file will be
9892 opened in Emacs, unless an entry from org-file-apps that makes
9893 use of groups in a regexp matches.
9894 If the file does not exist, an error is thrown."
9895 (let* ((file (if (equal path "")
9896 buffer-file-name
9897 (substitute-in-file-name (expand-file-name path))))
9898 (file-apps (append org-file-apps (org-default-apps)))
9899 (apps (org-remove-if
9900 'org-file-apps-entry-match-against-dlink-p file-apps))
9901 (apps-dlink (org-remove-if-not
9902 'org-file-apps-entry-match-against-dlink-p file-apps))
9903 (remp (and (assq 'remote apps) (org-file-remote-p file)))
9904 (dirp (if remp nil (file-directory-p file)))
9905 (file (if (and dirp org-open-directory-means-index-dot-org)
9906 (concat (file-name-as-directory file) "index.org")
9907 file))
9908 (a-m-a-p (assq 'auto-mode apps))
9909 (dfile (downcase file))
9910 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
9911 (link (cond ((and (eq line nil)
9912 (eq search nil))
9913 file)
9914 (line
9915 (concat file "::" (number-to-string line)))
9916 (search
9917 (concat file "::" search))))
9918 (dlink (downcase link))
9919 (old-buffer (current-buffer))
9920 (old-pos (point))
9921 (old-mode major-mode)
9922 ext cmd link-match-data)
9923 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
9924 (setq ext (match-string 1 dfile))
9925 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
9926 (setq ext (match-string 1 dfile))))
9927 (cond
9928 ((member in-emacs '((16) system))
9929 (setq cmd (cdr (assoc 'system apps))))
9930 (in-emacs (setq cmd 'emacs))
9932 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
9933 (and dirp (cdr (assoc 'directory apps)))
9934 ; first, try matching against apps-dlink
9935 ; if we get a match here, store the match data for later
9936 (let ((match (assoc-default dlink apps-dlink
9937 'string-match)))
9938 (if match
9939 (progn (setq link-match-data (match-data))
9940 match)
9941 (progn (setq in-emacs (or in-emacs line search))
9942 nil))) ; if we have no match in apps-dlink,
9943 ; always open the file in emacs if line or search
9944 ; is given (for backwards compatibility)
9945 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
9946 'string-match)
9947 (cdr (assoc ext apps))
9948 (cdr (assoc t apps))))))
9949 (when (eq cmd 'system)
9950 (setq cmd (cdr (assoc 'system apps))))
9951 (when (eq cmd 'default)
9952 (setq cmd (cdr (assoc t apps))))
9953 (when (eq cmd 'mailcap)
9954 (require 'mailcap)
9955 (mailcap-parse-mailcaps)
9956 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
9957 (command (mailcap-mime-info mime-type)))
9958 (if (stringp command)
9959 (setq cmd command)
9960 (setq cmd 'emacs))))
9961 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
9962 (not (file-exists-p file))
9963 (not org-open-non-existing-files))
9964 (error "No such file: %s" file))
9965 (cond
9966 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
9967 ;; Remove quotes around the file name - we'll use shell-quote-argument.
9968 (while (string-match "['\"]%s['\"]" cmd)
9969 (setq cmd (replace-match "%s" t t cmd)))
9970 (while (string-match "%s" cmd)
9971 (setq cmd (replace-match
9972 (save-match-data
9973 (shell-quote-argument
9974 (convert-standard-filename file)))
9975 t t cmd)))
9977 ;; Replace "%1", "%2" etc. in command with group matches from regex
9978 (save-match-data
9979 (let ((match-index 1)
9980 (number-of-groups (- (/ (length link-match-data) 2) 1)))
9981 (set-match-data link-match-data)
9982 (while (<= match-index number-of-groups)
9983 (let ((regex (concat "%" (number-to-string match-index)))
9984 (replace-with (match-string match-index dlink)))
9985 (while (string-match regex cmd)
9986 (setq cmd (replace-match replace-with t t cmd))))
9987 (setq match-index (+ match-index 1)))))
9989 (save-window-excursion
9990 (start-process-shell-command cmd nil cmd)
9991 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))
9993 ((or (stringp cmd)
9994 (eq cmd 'emacs))
9995 (funcall (cdr (assq 'file org-link-frame-setup)) file)
9996 (widen)
9997 (if line (org-goto-line line)
9998 (if search (org-link-search search))))
9999 ((consp cmd)
10000 (let ((file (convert-standard-filename file)))
10001 (save-match-data
10002 (set-match-data link-match-data)
10003 (eval cmd))))
10004 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
10005 (and (org-mode-p) (eq old-mode 'org-mode)
10006 (or (not (equal old-buffer (current-buffer)))
10007 (not (equal old-pos (point))))
10008 (org-mark-ring-push old-pos old-buffer))))
10010 (defun org-file-apps-entry-match-against-dlink-p (entry)
10011 "This function returns non-nil if `entry' uses a regular
10012 expression which should be matched against the whole link by
10013 org-open-file.
10015 It assumes that is the case when the entry uses a regular
10016 expression which has at least one grouping construct and the
10017 action is either a lisp form or a command string containing
10018 '%1', i.e. using at least one subexpression match as a
10019 parameter."
10020 (let ((selector (car entry))
10021 (action (cdr entry)))
10022 (if (stringp selector)
10023 (and (> (regexp-opt-depth selector) 0)
10024 (or (and (stringp action)
10025 (string-match "%[0-9]" action))
10026 (consp action)))
10027 nil)))
10029 (defun org-default-apps ()
10030 "Return the default applications for this operating system."
10031 (cond
10032 ((eq system-type 'darwin)
10033 org-file-apps-defaults-macosx)
10034 ((eq system-type 'windows-nt)
10035 org-file-apps-defaults-windowsnt)
10036 (t org-file-apps-defaults-gnu)))
10038 (defun org-apps-regexp-alist (list &optional add-auto-mode)
10039 "Convert extensions to regular expressions in the cars of LIST.
10040 Also, weed out any non-string entries, because the return value is used
10041 only for regexp matching.
10042 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
10043 point to the symbol `emacs', indicating that the file should
10044 be opened in Emacs."
10045 (append
10046 (delq nil
10047 (mapcar (lambda (x)
10048 (if (not (stringp (car x)))
10050 (if (string-match "\\W" (car x))
10052 (cons (concat "\\." (car x) "\\'") (cdr x)))))
10053 list))
10054 (if add-auto-mode
10055 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
10057 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
10058 (defun org-file-remote-p (file)
10059 "Test whether FILE specifies a location on a remote system.
10060 Return non-nil if the location is indeed remote.
10062 For example, the filename \"/user@host:/foo\" specifies a location
10063 on the system \"/user@host:\"."
10064 (cond ((fboundp 'file-remote-p)
10065 (file-remote-p file))
10066 ((fboundp 'tramp-handle-file-remote-p)
10067 (tramp-handle-file-remote-p file))
10068 ((and (boundp 'ange-ftp-name-format)
10069 (string-match (car ange-ftp-name-format) file))
10071 (t nil)))
10074 ;;;; Refiling
10076 (defun org-get-org-file ()
10077 "Read a filename, with default directory `org-directory'."
10078 (let ((default (or org-default-notes-file remember-data-file)))
10079 (read-file-name (format "File name [%s]: " default)
10080 (file-name-as-directory org-directory)
10081 default)))
10083 (defun org-notes-order-reversed-p ()
10084 "Check if the current file should receive notes in reversed order."
10085 (cond
10086 ((not org-reverse-note-order) nil)
10087 ((eq t org-reverse-note-order) t)
10088 ((not (listp org-reverse-note-order)) nil)
10089 (t (catch 'exit
10090 (let ((all org-reverse-note-order)
10091 entry)
10092 (while (setq entry (pop all))
10093 (if (string-match (car entry) buffer-file-name)
10094 (throw 'exit (cdr entry))))
10095 nil)))))
10097 (defvar org-refile-target-table nil
10098 "The list of refile targets, created by `org-refile'.")
10100 (defvar org-agenda-new-buffers nil
10101 "Buffers created to visit agenda files.")
10103 (defvar org-refile-cache nil
10104 "Cache for refile targets.")
10106 (defvar org-refile-markers nil
10107 "All the markers used for caching refile locations.")
10109 (defun org-refile-marker (pos)
10110 "Get a new refile marker, but only if caching is in use."
10111 (if (not org-refile-use-cache)
10113 (let ((m (make-marker)))
10114 (move-marker m pos)
10115 (push m org-refile-markers)
10116 m)))
10118 (defun org-refile-cache-clear ()
10119 "Clear the refile cache and disable all the markers."
10120 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
10121 (setq org-refile-markers nil)
10122 (setq org-refile-cache nil)
10123 (message "Refile cache has been cleared"))
10125 (defun org-refile-cache-check-set (set)
10126 "Check if all the markers in the cache still have live buffers."
10127 (let (marker)
10128 (catch 'exit
10129 (while (and set (setq marker (nth 3 (pop set))))
10130 ;; if org-refile-use-outline-path is 'file, marker may be nil
10131 (when (and marker (null (marker-buffer marker)))
10132 (message "not found") (sit-for 3)
10133 (throw 'exit nil)))
10134 t)))
10136 (defun org-refile-cache-put (set &rest identifiers)
10137 "Push the refile targets SET into the cache, under IDENTIFIERS."
10138 (let* ((key (sha1 (prin1-to-string identifiers)))
10139 (entry (assoc key org-refile-cache)))
10140 (if entry
10141 (setcdr entry set)
10142 (push (cons key set) org-refile-cache))))
10144 (defun org-refile-cache-get (&rest identifiers)
10145 "Retrieve the cached value for refile targets given by IDENTIFIERS."
10146 (cond
10147 ((not org-refile-cache) nil)
10148 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
10150 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
10151 org-refile-cache))))
10152 (and set (org-refile-cache-check-set set) set)))))
10154 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
10155 "Produce a table with refile targets."
10156 (let ((case-fold-search nil)
10157 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
10158 (entries (or org-refile-targets '((nil . (:level . 1)))))
10159 targets tgs txt re files f desc descre fast-path-p level pos0)
10160 (message "Getting targets...")
10161 (with-current-buffer (or default-buffer (current-buffer))
10162 (while (setq entry (pop entries))
10163 (setq files (car entry) desc (cdr entry))
10164 (setq fast-path-p nil)
10165 (cond
10166 ((null files) (setq files (list (current-buffer))))
10167 ((eq files 'org-agenda-files)
10168 (setq files (org-agenda-files 'unrestricted)))
10169 ((and (symbolp files) (fboundp files))
10170 (setq files (funcall files)))
10171 ((and (symbolp files) (boundp files))
10172 (setq files (symbol-value files))))
10173 (if (stringp files) (setq files (list files)))
10174 (cond
10175 ((eq (car desc) :tag)
10176 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
10177 ((eq (car desc) :todo)
10178 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
10179 ((eq (car desc) :regexp)
10180 (setq descre (cdr desc)))
10181 ((eq (car desc) :level)
10182 (setq descre (concat "^\\*\\{" (number-to-string
10183 (if org-odd-levels-only
10184 (1- (* 2 (cdr desc)))
10185 (cdr desc)))
10186 "\\}[ \t]")))
10187 ((eq (car desc) :maxlevel)
10188 (setq fast-path-p t)
10189 (setq descre (concat "^\\*\\{1," (number-to-string
10190 (if org-odd-levels-only
10191 (1- (* 2 (cdr desc)))
10192 (cdr desc)))
10193 "\\}[ \t]")))
10194 (t (error "Bad refiling target description %s" desc)))
10195 (while (setq f (pop files))
10196 (with-current-buffer
10197 (if (bufferp f) f (org-get-agenda-file-buffer f))
10199 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
10200 (progn
10201 (if (bufferp f) (setq f (buffer-file-name
10202 (buffer-base-buffer f))))
10203 (setq f (and f (expand-file-name f)))
10204 (if (eq org-refile-use-outline-path 'file)
10205 (push (list (file-name-nondirectory f) f nil nil) tgs))
10206 (save-excursion
10207 (save-restriction
10208 (widen)
10209 (goto-char (point-min))
10210 (while (re-search-forward descre nil t)
10211 (goto-char (setq pos0 (point-at-bol)))
10212 (catch 'next
10213 (when org-refile-target-verify-function
10214 (save-match-data
10215 (or (funcall org-refile-target-verify-function)
10216 (throw 'next t))))
10217 (when (and (looking-at org-complex-heading-regexp)
10218 (not (member (match-string 4) excluded-entries)))
10219 (setq level (org-reduced-level
10220 (- (match-end 1) (match-beginning 1)))
10221 txt (org-link-display-format (match-string 4))
10222 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
10223 re (format org-complex-heading-regexp-format
10224 (regexp-quote (match-string 4))))
10225 (when org-refile-use-outline-path
10226 (setq txt (mapconcat
10227 'org-protect-slash
10228 (append
10229 (if (eq org-refile-use-outline-path
10230 'file)
10231 (list (file-name-nondirectory
10232 (buffer-file-name
10233 (buffer-base-buffer))))
10234 (if (eq org-refile-use-outline-path
10235 'full-file-path)
10236 (list (buffer-file-name
10237 (buffer-base-buffer)))))
10238 (org-get-outline-path fast-path-p
10239 level txt)
10240 (list txt))
10241 "/")))
10242 (push (list txt f re (org-refile-marker (point)))
10243 tgs)))
10244 (when (= (point) pos0)
10245 ;; verification function has not moved point
10246 (goto-char (point-at-eol))))))))
10247 (when org-refile-use-cache
10248 (org-refile-cache-put tgs (buffer-file-name) descre))
10249 (setq targets (append tgs targets))
10250 ))))
10251 (message "Getting targets...done")
10252 (nreverse targets)))
10254 (defun org-protect-slash (s)
10255 (while (string-match "/" s)
10256 (setq s (replace-match "\\" t t s)))
10259 (defvar org-olpa (make-vector 20 nil))
10261 (defun org-get-outline-path (&optional fastp level heading)
10262 "Return the outline path to the current entry, as a list.
10264 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
10265 routine which makes outline path derivations for an entire file,
10266 avoiding backtracing. Refile target collection makes use of that."
10267 (if fastp
10268 (progn
10269 (if (> level 19)
10270 (error "Outline path failure, more than 19 levels"))
10271 (loop for i from level upto 19 do
10272 (aset org-olpa i nil))
10273 (prog1
10274 (delq nil (append org-olpa nil))
10275 (aset org-olpa level heading)))
10276 (let (rtn case-fold-search)
10277 (save-excursion
10278 (save-restriction
10279 (widen)
10280 (while (org-up-heading-safe)
10281 (when (looking-at org-complex-heading-regexp)
10282 (push (org-match-string-no-properties 4) rtn)))
10283 rtn)))))
10285 (defun org-format-outline-path (path &optional width prefix)
10286 "Format the outline path PATH for display.
10287 Width is the maximum number of characters that is available.
10288 Prefix is a prefix to be included in the returned string,
10289 such as the file name."
10290 (setq width (or width 79))
10291 (if prefix (setq width (- width (length prefix))))
10292 (if (not path)
10293 (or prefix "")
10294 (let* ((nsteps (length path))
10295 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
10296 (maxwidth (if (<= total-width width)
10297 10000 ;; everything fits
10298 ;; we need to shorten the level headings
10299 (/ (- width nsteps) nsteps)))
10300 (org-odd-levels-only nil)
10301 (n 0)
10302 (total (1+ (length prefix))))
10303 (setq maxwidth (max maxwidth 10))
10304 (concat prefix
10305 (mapconcat
10306 (lambda (h)
10307 (setq n (1+ n))
10308 (if (and (= n nsteps) (< maxwidth 10000))
10309 (setq maxwidth (- total-width total)))
10310 (if (< (length h) maxwidth)
10311 (progn (setq total (+ total (length h) 1)) h)
10312 (setq h (substring h 0 (- maxwidth 2))
10313 total (+ total maxwidth 1))
10314 (if (string-match "[ \t]+\\'" h)
10315 (setq h (substring h 0 (match-beginning 0))))
10316 (setq h (concat h "..")))
10317 (org-add-props h nil 'face
10318 (nth (% (1- n) org-n-level-faces)
10319 org-level-faces))
10321 path "/")))))
10323 (defun org-display-outline-path (&optional file current)
10324 "Display the current outline path in the echo area."
10325 (interactive "P")
10326 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
10327 (case-fold-search nil)
10328 (path (and (org-mode-p) (org-get-outline-path))))
10329 (if current (setq path (append path
10330 (save-excursion
10331 (org-back-to-heading t)
10332 (if (looking-at org-complex-heading-regexp)
10333 (list (match-string 4)))))))
10334 (message "%s"
10335 (org-format-outline-path
10336 path
10337 (1- (frame-width))
10338 (and file bfn (concat (file-name-nondirectory bfn) "/"))))))
10340 (defvar org-refile-history nil
10341 "History for refiling operations.")
10343 (defvar org-after-refile-insert-hook nil
10344 "Hook run after `org-refile' has inserted its stuff at the new location.
10345 Note that this is still *before* the stuff will be removed from
10346 the *old* location.")
10348 (defvar org-capture-last-stored-marker)
10349 (defun org-refile (&optional goto default-buffer rfloc)
10350 "Move the entry or entries at point to another heading.
10351 The list of target headings is compiled using the information in
10352 `org-refile-targets', which see.
10354 At the target location, the entry is filed as a subitem of the target
10355 heading. Depending on `org-reverse-note-order', the new subitem will
10356 either be the first or the last subitem.
10358 If there is an active region, all entries in that region will be moved.
10359 However, the region must fulfill the requirement that the first heading
10360 is the first one sets the top-level of the moved text - at most siblings
10361 below it are allowed.
10363 With prefix arg GOTO, the command will only visit the target location
10364 and not actually move anything.
10366 With a double prefix arg \\[universal-argument] \\[universal-argument], \
10367 go to the location where the last refiling operation has put the subtree.
10368 With a prefix argument of `2', refile to the running clock.
10370 RFLOC can be a refile location obtained in a different way.
10372 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
10374 If you are using target caching (see `org-refile-use-cache'),
10375 You have to clear the target cache in order to find new targets.
10376 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
10377 prefix argument (`C-u C-u C-u C-c C-w')."
10379 (interactive "P")
10380 (if (member goto '(0 (64)))
10381 (org-refile-cache-clear)
10382 (let* ((cbuf (current-buffer))
10383 (regionp (org-region-active-p))
10384 (region-start (and regionp (region-beginning)))
10385 (region-end (and regionp (region-end)))
10386 (region-length (and regionp (- region-end region-start)))
10387 (filename (buffer-file-name (buffer-base-buffer cbuf)))
10388 pos it nbuf file re level reversed)
10389 (setq last-command nil)
10390 (when regionp
10391 (goto-char region-start)
10392 (or (bolp) (goto-char (point-at-bol)))
10393 (setq region-start (point))
10394 (unless (org-kill-is-subtree-p
10395 (buffer-substring region-start region-end))
10396 (error "The region is not a (sequence of) subtree(s)")))
10397 (if (equal goto '(16))
10398 (org-refile-goto-last-stored)
10399 (when (or
10400 (and (equal goto 2)
10401 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
10402 (prog1
10403 (setq it (list (or org-clock-heading "running clock")
10404 (buffer-file-name
10405 (marker-buffer org-clock-hd-marker))
10407 (marker-position org-clock-hd-marker)))
10408 (setq goto nil)))
10409 (setq it (or rfloc
10410 (save-excursion
10411 (org-refile-get-location
10412 (if goto "Goto" "Refile to") default-buffer
10413 org-refile-allow-creating-parent-nodes)))))
10414 (setq file (nth 1 it)
10415 re (nth 2 it)
10416 pos (nth 3 it))
10417 (if (and (not goto)
10419 (equal (buffer-file-name) file)
10420 (if regionp
10421 (and (>= pos region-start)
10422 (<= pos region-end))
10423 (and (>= pos (point))
10424 (< pos (save-excursion
10425 (org-end-of-subtree t t))))))
10426 (error "Cannot refile to position inside the tree or region"))
10428 (setq nbuf (or (find-buffer-visiting file)
10429 (find-file-noselect file)))
10430 (if goto
10431 (progn
10432 (org-pop-to-buffer-same-window nbuf)
10433 (goto-char pos)
10434 (org-show-context 'org-goto))
10435 (if regionp
10436 (progn
10437 (org-kill-new (buffer-substring region-start region-end))
10438 (org-save-markers-in-region region-start region-end))
10439 (org-copy-subtree 1 nil t))
10440 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
10441 (find-file-noselect file)))
10442 (setq reversed (org-notes-order-reversed-p))
10443 (save-excursion
10444 (save-restriction
10445 (widen)
10446 (if pos
10447 (progn
10448 (goto-char pos)
10449 (looking-at org-outline-regexp)
10450 (setq level (org-get-valid-level (funcall outline-level) 1))
10451 (goto-char
10452 (if reversed
10453 (or (outline-next-heading) (point-max))
10454 (or (save-excursion (org-get-next-sibling))
10455 (org-end-of-subtree t t)
10456 (point-max)))))
10457 (setq level 1)
10458 (if (not reversed)
10459 (goto-char (point-max))
10460 (goto-char (point-min))
10461 (or (outline-next-heading) (goto-char (point-max)))))
10462 (if (not (bolp)) (newline))
10463 (org-paste-subtree level)
10464 (when org-log-refile
10465 (org-add-log-setup 'refile nil nil 'findpos
10466 org-log-refile)
10467 (unless (eq org-log-refile 'note)
10468 (save-excursion (org-add-log-note))))
10469 (and org-auto-align-tags (org-set-tags nil t))
10470 (bookmark-set "org-refile-last-stored")
10471 ;; If we are refiling for capture, make sure that the
10472 ;; last-capture pointers point here
10473 (when (org-bound-and-true-p org-refile-for-capture)
10474 (bookmark-set "org-capture-last-stored-marker")
10475 (move-marker org-capture-last-stored-marker (point)))
10476 (if (fboundp 'deactivate-mark) (deactivate-mark))
10477 (run-hooks 'org-after-refile-insert-hook))))
10478 (if regionp
10479 (delete-region (point) (+ (point) region-length))
10480 (org-cut-subtree))
10481 (when (featurep 'org-inlinetask)
10482 (org-inlinetask-remove-END-maybe))
10483 (setq org-markers-to-move nil)
10484 (message "Refiled to \"%s\" in file %s" (car it) file)))))))
10486 (defun org-refile-goto-last-stored ()
10487 "Go to the location where the last refile was stored."
10488 (interactive)
10489 (bookmark-jump "org-refile-last-stored")
10490 (message "This is the location of the last refile"))
10492 (defun org-refile-get-location (&optional prompt default-buffer new-nodes)
10493 "Prompt the user for a refile location, using PROMPT.
10494 PROMPT should not be suffixed with a colon and a space, because
10495 this function appends the default value from
10496 `org-refile-history' automatically, if that is not empty."
10497 (let ((org-refile-targets org-refile-targets)
10498 (org-refile-use-outline-path org-refile-use-outline-path)
10499 excluded-entries)
10500 (when (and (eq major-mode 'org-mode)
10501 (not org-refile-use-cache))
10502 (org-map-tree
10503 (lambda()
10504 (setq excluded-entries
10505 (append excluded-entries (list (org-get-heading t t)))))))
10506 (setq org-refile-target-table
10507 (org-refile-get-targets default-buffer excluded-entries)))
10508 (unless org-refile-target-table
10509 (error "No refile targets"))
10510 (let* ((prompt (concat prompt
10511 (and (car org-refile-history)
10512 (concat " (default " (car org-refile-history) ")"))
10513 ": "))
10514 (cbuf (current-buffer))
10515 (partial-completion-mode nil)
10516 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
10517 (cfunc (if (and org-refile-use-outline-path
10518 org-outline-path-complete-in-steps)
10519 'org-olpath-completing-read
10520 'org-icompleting-read))
10521 (extra (if org-refile-use-outline-path "/" ""))
10522 (filename (and cfn (expand-file-name cfn)))
10523 (tbl (mapcar
10524 (lambda (x)
10525 (if (and (not (member org-refile-use-outline-path
10526 '(file full-file-path)))
10527 (not (equal filename (nth 1 x))))
10528 (cons (concat (car x) extra " ("
10529 (file-name-nondirectory (nth 1 x)) ")")
10530 (cdr x))
10531 (cons (concat (car x) extra) (cdr x))))
10532 org-refile-target-table))
10533 (completion-ignore-case t)
10534 pa answ parent-target child parent old-hist)
10535 (setq old-hist org-refile-history)
10536 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
10537 nil 'org-refile-history (car org-refile-history)))
10538 (setq pa (or (assoc answ tbl) (assoc (concat answ "/") tbl)))
10539 (org-refile-check-position pa)
10540 (if pa
10541 (progn
10542 (when (or (not org-refile-history)
10543 (not (eq old-hist org-refile-history))
10544 (not (equal (car pa) (car org-refile-history))))
10545 (setq org-refile-history
10546 (cons (car pa) (if (assoc (car org-refile-history) tbl)
10547 org-refile-history
10548 (cdr org-refile-history))))
10549 (if (equal (car org-refile-history) (nth 1 org-refile-history))
10550 (pop org-refile-history)))
10552 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
10553 (progn
10554 (setq parent (match-string 1 answ)
10555 child (match-string 2 answ))
10556 (setq parent-target (or (assoc parent tbl)
10557 (assoc (concat parent "/") tbl)))
10558 (when (and parent-target
10559 (or (eq new-nodes t)
10560 (and (eq new-nodes 'confirm)
10561 (y-or-n-p (format "Create new node \"%s\"? "
10562 child)))))
10563 (org-refile-new-child parent-target child)))
10564 (error "Invalid target location")))))
10566 (defun org-refile-check-position (refile-pointer)
10567 "Check if the refile pointer matches the readline to which it points."
10568 (let* ((file (nth 1 refile-pointer))
10569 (re (nth 2 refile-pointer))
10570 (pos (nth 3 refile-pointer))
10571 buffer)
10572 (when (org-string-nw-p re)
10573 (setq buffer (if (markerp pos)
10574 (marker-buffer pos)
10575 (or (find-buffer-visiting file)
10576 (find-file-noselect file))))
10577 (with-current-buffer buffer
10578 (save-excursion
10579 (save-restriction
10580 (widen)
10581 (goto-char pos)
10582 (beginning-of-line 1)
10583 (unless (org-looking-at-p re)
10584 (error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling"))))))))
10586 (defun org-refile-new-child (parent-target child)
10587 "Use refile target PARENT-TARGET to add new CHILD below it."
10588 (unless parent-target
10589 (error "Cannot find parent for new node"))
10590 (let ((file (nth 1 parent-target))
10591 (pos (nth 3 parent-target))
10592 level)
10593 (with-current-buffer (or (find-buffer-visiting file)
10594 (find-file-noselect file))
10595 (save-excursion
10596 (save-restriction
10597 (widen)
10598 (if pos
10599 (goto-char pos)
10600 (goto-char (point-max))
10601 (if (not (bolp)) (newline)))
10602 (when (looking-at org-outline-regexp)
10603 (setq level (funcall outline-level))
10604 (org-end-of-subtree t t))
10605 (org-back-over-empty-lines)
10606 (insert "\n" (make-string
10607 (if pos (org-get-valid-level level 1) 1) ?*)
10608 " " child "\n")
10609 (beginning-of-line 0)
10610 (list (concat (car parent-target) "/" child) file "" (point)))))))
10612 (defun org-olpath-completing-read (prompt collection &rest args)
10613 "Read an outline path like a file name."
10614 (let ((thetable collection)
10615 (org-completion-use-ido nil) ; does not work with ido.
10616 (org-completion-use-iswitchb nil)) ; or iswitchb
10617 (apply
10618 'org-icompleting-read prompt
10619 (lambda (string predicate &optional flag)
10620 (let (rtn r f (l (length string)))
10621 (cond
10622 ((eq flag nil)
10623 ;; try completion
10624 (try-completion string thetable))
10625 ((eq flag t)
10626 ;; all-completions
10627 (setq rtn (all-completions string thetable predicate))
10628 (mapcar
10629 (lambda (x)
10630 (setq r (substring x l))
10631 (if (string-match " ([^)]*)$" x)
10632 (setq f (match-string 0 x))
10633 (setq f ""))
10634 (if (string-match "/" r)
10635 (concat string (substring r 0 (match-end 0)) f)
10637 rtn))
10638 ((eq flag 'lambda)
10639 ;; exact match?
10640 (assoc string thetable)))
10642 args)))
10644 ;;;; Dynamic blocks
10646 (defun org-find-dblock (name)
10647 "Find the first dynamic block with name NAME in the buffer.
10648 If not found, stay at current position and return nil."
10649 (let (pos)
10650 (save-excursion
10651 (goto-char (point-min))
10652 (setq pos (and (re-search-forward (concat "^[ \t]*#\\+BEGIN:[ \t]+" name "\\>")
10653 nil t)
10654 (match-beginning 0))))
10655 (if pos (goto-char pos))
10656 pos))
10658 (defconst org-dblock-start-re
10659 "^[ \t]*#\\+BEGIN:[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
10660 "Matches the start line of a dynamic block, with parameters.")
10662 (defconst org-dblock-end-re "^[ \t]*#\\+END\\([: \t\r\n]\\|$\\)"
10663 "Matches the end of a dynamic block.")
10665 (defun org-create-dblock (plist)
10666 "Create a dynamic block section, with parameters taken from PLIST.
10667 PLIST must contain a :name entry which is used as name of the block."
10668 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
10669 (end-of-line 1)
10670 (newline))
10671 (let ((col (current-column))
10672 (name (plist-get plist :name)))
10673 (insert "#+BEGIN: " name)
10674 (while plist
10675 (if (eq (car plist) :name)
10676 (setq plist (cddr plist))
10677 (insert " " (prin1-to-string (pop plist)))))
10678 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
10679 (beginning-of-line -2)))
10681 (defun org-prepare-dblock ()
10682 "Prepare dynamic block for refresh.
10683 This empties the block, puts the cursor at the insert position and returns
10684 the property list including an extra property :name with the block name."
10685 (unless (looking-at org-dblock-start-re)
10686 (error "Not at a dynamic block"))
10687 (let* ((begdel (1+ (match-end 0)))
10688 (name (org-no-properties (match-string 1)))
10689 (params (append (list :name name)
10690 (read (concat "(" (match-string 3) ")")))))
10691 (save-excursion
10692 (beginning-of-line 1)
10693 (skip-chars-forward " \t")
10694 (setq params (plist-put params :indentation-column (current-column))))
10695 (unless (re-search-forward org-dblock-end-re nil t)
10696 (error "Dynamic block not terminated"))
10697 (setq params
10698 (append params
10699 (list :content (buffer-substring
10700 begdel (match-beginning 0)))))
10701 (delete-region begdel (match-beginning 0))
10702 (goto-char begdel)
10703 (open-line 1)
10704 params))
10706 (defun org-map-dblocks (&optional command)
10707 "Apply COMMAND to all dynamic blocks in the current buffer.
10708 If COMMAND is not given, use `org-update-dblock'."
10709 (let ((cmd (or command 'org-update-dblock)))
10710 (save-excursion
10711 (goto-char (point-min))
10712 (while (re-search-forward org-dblock-start-re nil t)
10713 (goto-char (match-beginning 0))
10714 (save-excursion
10715 (condition-case nil
10716 (funcall cmd)
10717 (error (message "Error during update of dynamic block"))))
10718 (unless (re-search-forward org-dblock-end-re nil t)
10719 (error "Dynamic block not terminated"))))))
10721 (defun org-dblock-update (&optional arg)
10722 "User command for updating dynamic blocks.
10723 Update the dynamic block at point. With prefix ARG, update all dynamic
10724 blocks in the buffer."
10725 (interactive "P")
10726 (if arg
10727 (org-update-all-dblocks)
10728 (or (looking-at org-dblock-start-re)
10729 (org-beginning-of-dblock))
10730 (org-update-dblock)))
10732 (defun org-update-dblock ()
10733 "Update the dynamic block at point.
10734 This means to empty the block, parse for parameters and then call
10735 the correct writing function."
10736 (interactive)
10737 (save-window-excursion
10738 (let* ((pos (point))
10739 (line (org-current-line))
10740 (params (org-prepare-dblock))
10741 (name (plist-get params :name))
10742 (indent (plist-get params :indentation-column))
10743 (cmd (intern (concat "org-dblock-write:" name))))
10744 (message "Updating dynamic block `%s' at line %d..." name line)
10745 (funcall cmd params)
10746 (message "Updating dynamic block `%s' at line %d...done" name line)
10747 (goto-char pos)
10748 (when (and indent (> indent 0))
10749 (setq indent (make-string indent ?\ ))
10750 (save-excursion
10751 (org-beginning-of-dblock)
10752 (forward-line 1)
10753 (while (not (looking-at org-dblock-end-re))
10754 (insert indent)
10755 (beginning-of-line 2))
10756 (when (looking-at org-dblock-end-re)
10757 (and (looking-at "[ \t]+")
10758 (replace-match ""))
10759 (insert indent)))))))
10761 (defun org-beginning-of-dblock ()
10762 "Find the beginning of the dynamic block at point.
10763 Error if there is no such block at point."
10764 (let ((pos (point))
10765 beg)
10766 (end-of-line 1)
10767 (if (and (re-search-backward org-dblock-start-re nil t)
10768 (setq beg (match-beginning 0))
10769 (re-search-forward org-dblock-end-re nil t)
10770 (> (match-end 0) pos))
10771 (goto-char beg)
10772 (goto-char pos)
10773 (error "Not in a dynamic block"))))
10775 (defun org-update-all-dblocks ()
10776 "Update all dynamic blocks in the buffer.
10777 This function can be used in a hook."
10778 (interactive)
10779 (when (org-mode-p)
10780 (org-map-dblocks 'org-update-dblock)))
10783 ;;;; Completion
10785 (defconst org-additional-option-like-keywords
10786 '("BEGIN_HTML" "END_HTML" "HTML:" "ATTR_HTML:"
10787 "BEGIN_DocBook" "END_DocBook" "DocBook:" "ATTR_DocBook:"
10788 "BEGIN_LaTeX" "END_LaTeX" "LaTeX:" "LATEX_HEADER:"
10789 "LATEX_CLASS:" "LATEX_CLASS_OPTIONS:" "ATTR_LaTeX:"
10790 "BEGIN:" "END:"
10791 "ORGTBL" "TBLFM:" "TBLNAME:"
10792 "BEGIN_EXAMPLE" "END_EXAMPLE"
10793 "BEGIN_QUOTE" "END_QUOTE"
10794 "BEGIN_VERSE" "END_VERSE"
10795 "BEGIN_CENTER" "END_CENTER"
10796 "BEGIN_SRC" "END_SRC"
10797 "BEGIN_RESULT" "END_RESULT"
10798 "SOURCE:" "SRCNAME:" "FUNCTION:"
10799 "RESULTS:" "DATA:"
10800 "HEADER:" "HEADERS:"
10801 "BABEL:"
10802 "CATEGORY:" "COLUMNS:" "PROPERTY:"
10803 "CAPTION:" "LABEL:"
10804 "SETUPFILE:"
10805 "INCLUDE:"
10806 "BIND:"
10807 "MACRO:"))
10809 (defcustom org-structure-template-alist
10811 ("s" "#+begin_src ?\n\n#+end_src"
10812 "<src lang=\"?\">\n\n</src>")
10813 ("e" "#+begin_example\n?\n#+end_example"
10814 "<example>\n?\n</example>")
10815 ("q" "#+begin_quote\n?\n#+end_quote"
10816 "<quote>\n?\n</quote>")
10817 ("v" "#+begin_verse\n?\n#+end_verse"
10818 "<verse>\n?\n/verse>")
10819 ("c" "#+begin_center\n?\n#+end_center"
10820 "<center>\n?\n/center>")
10821 ("l" "#+begin_latex\n?\n#+end_latex"
10822 "<literal style=\"latex\">\n?\n</literal>")
10823 ("L" "#+latex: "
10824 "<literal style=\"latex\">?</literal>")
10825 ("h" "#+begin_html\n?\n#+end_html"
10826 "<literal style=\"html\">\n?\n</literal>")
10827 ("H" "#+html: "
10828 "<literal style=\"html\">?</literal>")
10829 ("a" "#+begin_ascii\n?\n#+end_ascii")
10830 ("A" "#+ascii: ")
10831 ("i" "#+index: ?"
10832 "#+index: ?")
10833 ("I" "#+include %file ?"
10834 "<include file=%file markup=\"?\">")
10836 "Structure completion elements.
10837 This is a list of abbreviation keys and values. The value gets inserted
10838 if you type `<' followed by the key and then press the completion key,
10839 usually `M-TAB'. %file will be replaced by a file name after prompting
10840 for the file using completion. The cursor will be placed at the position
10841 of the `?` in the template.
10842 There are two templates for each key, the first uses the original Org syntax,
10843 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
10844 the default when the /org-mtags.el/ module has been loaded. See also the
10845 variable `org-mtags-prefer-muse-templates'.
10846 This is an experimental feature, it is undecided if it is going to stay in."
10847 :group 'org-completion
10848 :type '(repeat
10849 (string :tag "Key")
10850 (string :tag "Template")
10851 (string :tag "Muse Template")))
10853 (defun org-try-structure-completion ()
10854 "Try to complete a structure template before point.
10855 This looks for strings like \"<e\" on an otherwise empty line and
10856 expands them."
10857 (let ((l (buffer-substring (point-at-bol) (point)))
10859 (when (and (looking-at "[ \t]*$")
10860 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
10861 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
10862 (org-complete-expand-structure-template (+ -1 (point-at-bol)
10863 (match-beginning 1)) a)
10864 t)))
10866 (defun org-complete-expand-structure-template (start cell)
10867 "Expand a structure template."
10868 (let* ((musep (org-bound-and-true-p org-mtags-prefer-muse-templates))
10869 (rpl (nth (if musep 2 1) cell))
10870 (ind ""))
10871 (delete-region start (point))
10872 (when (string-match "\\`#\\+" rpl)
10873 (cond
10874 ((bolp))
10875 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
10876 (setq ind (buffer-substring (point-at-bol) (point))))
10877 (t (newline))))
10878 (setq start (point))
10879 (if (string-match "%file" rpl)
10880 (setq rpl (replace-match
10881 (concat
10882 "\""
10883 (save-match-data
10884 (abbreviate-file-name (read-file-name "Include file: ")))
10885 "\"")
10886 t t rpl)))
10887 (setq rpl (mapconcat 'identity (split-string rpl "\n")
10888 (concat "\n" ind)))
10889 (insert rpl)
10890 (if (re-search-backward "\\?" start t) (delete-char 1))))
10892 ;;;; TODO, DEADLINE, Comments
10894 (defun org-toggle-comment ()
10895 "Change the COMMENT state of an entry."
10896 (interactive)
10897 (save-excursion
10898 (org-back-to-heading)
10899 (let (case-fold-search)
10900 (if (looking-at (concat org-outline-regexp
10901 "\\( *\\<" org-comment-string "\\>[ \t]*\\)"))
10902 (replace-match "" t t nil 1)
10903 (if (looking-at org-outline-regexp)
10904 (progn
10905 (goto-char (match-end 0))
10906 (insert org-comment-string " ")))))))
10908 (defvar org-last-todo-state-is-todo nil
10909 "This is non-nil when the last TODO state change led to a TODO state.
10910 If the last change removed the TODO tag or switched to DONE, then
10911 this is nil.")
10913 (defvar org-setting-tags nil) ; dynamically skipped
10915 (defvar org-todo-setup-filter-hook nil
10916 "Hook for functions that pre-filter todo specs.
10917 Each function takes a todo spec and returns either nil or the spec
10918 transformed into canonical form." )
10920 (defvar org-todo-get-default-hook nil
10921 "Hook for functions that get a default item for todo.
10922 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
10923 nil or a string to be used for the todo mark." )
10925 (defvar org-agenda-headline-snapshot-before-repeat)
10927 (defun org-current-effective-time ()
10928 "Return current time adjusted for `org-extend-today-until' variable"
10929 (let* ((ct (org-current-time))
10930 (dct (decode-time ct))
10931 (ct1
10932 (if (< (nth 2 dct) org-extend-today-until)
10933 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct))
10934 ct)))
10935 ct1))
10937 (defun org-todo-yesterday (&optional arg)
10938 "Like `org-todo' but the time of change will be 23:59 of yesterday"
10939 (interactive "P")
10940 (let* ((hour (third (decode-time
10941 (org-current-time))))
10942 (org-extend-today-until (1+ hour)))
10943 (org-todo arg)))
10945 (defun org-agenda-todo-yesterday (&optional arg)
10946 "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday"
10947 (interactive "P")
10948 (let* ((hour (third (decode-time
10949 (org-current-time))))
10950 (org-extend-today-until (1+ hour)))
10951 (org-agenda-todo arg)))
10953 (defun org-todo (&optional arg)
10954 "Change the TODO state of an item.
10955 The state of an item is given by a keyword at the start of the heading,
10956 like
10957 *** TODO Write paper
10958 *** DONE Call mom
10960 The different keywords are specified in the variable `org-todo-keywords'.
10961 By default the available states are \"TODO\" and \"DONE\".
10962 So for this example: when the item starts with TODO, it is changed to DONE.
10963 When it starts with DONE, the DONE is removed. And when neither TODO nor
10964 DONE are present, add TODO at the beginning of the heading.
10966 With \\[universal-argument] prefix arg, use completion to determine the new \
10967 state.
10968 With numeric prefix arg, switch to that state.
10969 With a double \\[universal-argument] prefix, switch to the next set of TODO \
10970 keywords (nextset).
10971 With a triple \\[universal-argument] prefix, circumvent any state blocking.
10973 For calling through lisp, arg is also interpreted in the following way:
10974 'none -> empty state
10975 \"\"(empty string) -> switch to empty state
10976 'done -> switch to DONE
10977 'nextset -> switch to the next set of keywords
10978 'previousset -> switch to the previous set of keywords
10979 \"WAITING\" -> switch to the specified keyword, but only if it
10980 really is a member of `org-todo-keywords'."
10981 (interactive "P")
10982 (if (equal arg '(16)) (setq arg 'nextset))
10983 (let ((org-blocker-hook org-blocker-hook)
10984 (case-fold-search nil))
10985 (when (equal arg '(64))
10986 (setq arg nil org-blocker-hook nil))
10987 (when (and org-blocker-hook
10988 (or org-inhibit-blocking
10989 (org-entry-get nil "NOBLOCKING")))
10990 (setq org-blocker-hook nil))
10991 (save-excursion
10992 (catch 'exit
10993 (org-back-to-heading t)
10994 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
10995 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|$\\)"))
10996 (looking-at " *"))
10997 (let* ((match-data (match-data))
10998 (startpos (point-at-bol))
10999 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
11000 (org-log-done org-log-done)
11001 (org-log-repeat org-log-repeat)
11002 (org-todo-log-states org-todo-log-states)
11003 (this (match-string 1))
11004 (hl-pos (match-beginning 0))
11005 (head (org-get-todo-sequence-head this))
11006 (ass (assoc head org-todo-kwd-alist))
11007 (interpret (nth 1 ass))
11008 (done-word (nth 3 ass))
11009 (final-done-word (nth 4 ass))
11010 (last-state (or this ""))
11011 (completion-ignore-case t)
11012 (member (member this org-todo-keywords-1))
11013 (tail (cdr member))
11014 (state (cond
11015 ((and org-todo-key-trigger
11016 (or (and (equal arg '(4))
11017 (eq org-use-fast-todo-selection 'prefix))
11018 (and (not arg) org-use-fast-todo-selection
11019 (not (eq org-use-fast-todo-selection
11020 'prefix)))))
11021 ;; Use fast selection
11022 (org-fast-todo-selection))
11023 ((and (equal arg '(4))
11024 (or (not org-use-fast-todo-selection)
11025 (not org-todo-key-trigger)))
11026 ;; Read a state with completion
11027 (org-icompleting-read
11028 "State: " (mapcar (lambda(x) (list x))
11029 org-todo-keywords-1)
11030 nil t))
11031 ((eq arg 'right)
11032 (if this
11033 (if tail (car tail) nil)
11034 (car org-todo-keywords-1)))
11035 ((eq arg 'left)
11036 (if (equal member org-todo-keywords-1)
11038 (if this
11039 (nth (- (length org-todo-keywords-1)
11040 (length tail) 2)
11041 org-todo-keywords-1)
11042 (org-last org-todo-keywords-1))))
11043 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
11044 (setq arg nil))) ; hack to fall back to cycling
11045 (arg
11046 ;; user or caller requests a specific state
11047 (cond
11048 ((equal arg "") nil)
11049 ((eq arg 'none) nil)
11050 ((eq arg 'done) (or done-word (car org-done-keywords)))
11051 ((eq arg 'nextset)
11052 (or (car (cdr (member head org-todo-heads)))
11053 (car org-todo-heads)))
11054 ((eq arg 'previousset)
11055 (let ((org-todo-heads (reverse org-todo-heads)))
11056 (or (car (cdr (member head org-todo-heads)))
11057 (car org-todo-heads))))
11058 ((car (member arg org-todo-keywords-1)))
11059 ((stringp arg)
11060 (error "State `%s' not valid in this file" arg))
11061 ((nth (1- (prefix-numeric-value arg))
11062 org-todo-keywords-1))))
11063 ((null member) (or head (car org-todo-keywords-1)))
11064 ((equal this final-done-word) nil) ;; -> make empty
11065 ((null tail) nil) ;; -> first entry
11066 ((memq interpret '(type priority))
11067 (if (eq this-command last-command)
11068 (car tail)
11069 (if (> (length tail) 0)
11070 (or done-word (car org-done-keywords))
11071 nil)))
11073 (car tail))))
11074 (state (or
11075 (run-hook-with-args-until-success
11076 'org-todo-get-default-hook state last-state)
11077 state))
11078 (next (if state (concat " " state " ") " "))
11079 (change-plist (list :type 'todo-state-change :from this :to state
11080 :position startpos))
11081 dolog now-done-p)
11082 (when org-blocker-hook
11083 (setq org-last-todo-state-is-todo
11084 (not (member this org-done-keywords)))
11085 (unless (save-excursion
11086 (save-match-data
11087 (org-with-wide-buffer
11088 (run-hook-with-args-until-failure
11089 'org-blocker-hook change-plist))))
11090 (if (org-called-interactively-p 'interactive)
11091 (error "TODO state change from %s to %s blocked" this state)
11092 ;; fail silently
11093 (message "TODO state change from %s to %s blocked" this state)
11094 (throw 'exit nil))))
11095 (store-match-data match-data)
11096 (replace-match next t t)
11097 (unless (pos-visible-in-window-p hl-pos)
11098 (message "TODO state changed to %s" (org-trim next)))
11099 (unless head
11100 (setq head (org-get-todo-sequence-head state)
11101 ass (assoc head org-todo-kwd-alist)
11102 interpret (nth 1 ass)
11103 done-word (nth 3 ass)
11104 final-done-word (nth 4 ass)))
11105 (when (memq arg '(nextset previousset))
11106 (message "Keyword-Set %d/%d: %s"
11107 (- (length org-todo-sets) -1
11108 (length (memq (assoc state org-todo-sets) org-todo-sets)))
11109 (length org-todo-sets)
11110 (mapconcat 'identity (assoc state org-todo-sets) " ")))
11111 (setq org-last-todo-state-is-todo
11112 (not (member state org-done-keywords)))
11113 (setq now-done-p (and (member state org-done-keywords)
11114 (not (member this org-done-keywords))))
11115 (and logging (org-local-logging logging))
11116 (when (and (or org-todo-log-states org-log-done)
11117 (not (eq org-inhibit-logging t))
11118 (not (memq arg '(nextset previousset))))
11119 ;; we need to look at recording a time and note
11120 (setq dolog (or (nth 1 (assoc state org-todo-log-states))
11121 (nth 2 (assoc this org-todo-log-states))))
11122 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
11123 (setq dolog 'time))
11124 (when (and state
11125 (member state org-not-done-keywords)
11126 (not (member this org-not-done-keywords)))
11127 ;; This is now a todo state and was not one before
11128 ;; If there was a CLOSED time stamp, get rid of it.
11129 (org-add-planning-info nil nil 'closed))
11130 (when (and now-done-p org-log-done)
11131 ;; It is now done, and it was not done before
11132 (org-add-planning-info 'closed (org-current-effective-time))
11133 (if (and (not dolog) (eq 'note org-log-done))
11134 (org-add-log-setup 'done state this 'findpos 'note)))
11135 (when (and state dolog)
11136 ;; This is a non-nil state, and we need to log it
11137 (org-add-log-setup 'state state this 'findpos dolog)))
11138 ;; Fixup tag positioning
11139 (org-todo-trigger-tag-changes state)
11140 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
11141 (when org-provide-todo-statistics
11142 (org-update-parent-todo-statistics))
11143 (run-hooks 'org-after-todo-state-change-hook)
11144 (if (and arg (not (member state org-done-keywords)))
11145 (setq head (org-get-todo-sequence-head state)))
11146 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
11147 ;; Do we need to trigger a repeat?
11148 (when now-done-p
11149 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
11150 ;; This is for the agenda, take a snapshot of the headline.
11151 (save-match-data
11152 (setq org-agenda-headline-snapshot-before-repeat
11153 (org-get-heading))))
11154 (org-auto-repeat-maybe state))
11155 ;; Fixup cursor location if close to the keyword
11156 (if (and (outline-on-heading-p)
11157 (not (bolp))
11158 (save-excursion (beginning-of-line 1)
11159 (looking-at org-todo-line-regexp))
11160 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
11161 (progn
11162 (goto-char (or (match-end 2) (match-end 1)))
11163 (and (looking-at " ") (just-one-space))))
11164 (when org-trigger-hook
11165 (save-excursion
11166 (run-hook-with-args 'org-trigger-hook change-plist))))))))
11168 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
11169 "Block turning an entry into a TODO, using the hierarchy.
11170 This checks whether the current task should be blocked from state
11171 changes. Such blocking occurs when:
11173 1. The task has children which are not all in a completed state.
11175 2. A task has a parent with the property :ORDERED:, and there
11176 are siblings prior to the current task with incomplete
11177 status.
11179 3. The parent of the task is blocked because it has siblings that should
11180 be done first, or is child of a block grandparent TODO entry."
11182 (if (not org-enforce-todo-dependencies)
11183 t ; if locally turned off don't block
11184 (catch 'dont-block
11185 ;; If this is not a todo state change, or if this entry is already DONE,
11186 ;; do not block
11187 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
11188 (member (plist-get change-plist :from)
11189 (cons 'done org-done-keywords))
11190 (member (plist-get change-plist :to)
11191 (cons 'todo org-not-done-keywords))
11192 (not (plist-get change-plist :to)))
11193 (throw 'dont-block t))
11194 ;; If this task has children, and any are undone, it's blocked
11195 (save-excursion
11196 (org-back-to-heading t)
11197 (let ((this-level (funcall outline-level)))
11198 (outline-next-heading)
11199 (let ((child-level (funcall outline-level)))
11200 (while (and (not (eobp))
11201 (> child-level this-level))
11202 ;; this todo has children, check whether they are all
11203 ;; completed
11204 (if (and (not (org-entry-is-done-p))
11205 (org-entry-is-todo-p))
11206 (throw 'dont-block nil))
11207 (outline-next-heading)
11208 (setq child-level (funcall outline-level))))))
11209 ;; Otherwise, if the task's parent has the :ORDERED: property, and
11210 ;; any previous siblings are undone, it's blocked
11211 (save-excursion
11212 (org-back-to-heading t)
11213 (let* ((pos (point))
11214 (parent-pos (and (org-up-heading-safe) (point))))
11215 (if (not parent-pos) (throw 'dont-block t)) ; no parent
11216 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
11217 (forward-line 1)
11218 (re-search-forward org-not-done-heading-regexp pos t))
11219 (throw 'dont-block nil)) ; block, there is an older sibling not done.
11220 ;; Search further up the hierarchy, to see if an anchestor is blocked
11221 (while t
11222 (goto-char parent-pos)
11223 (if (not (looking-at org-not-done-heading-regexp))
11224 (throw 'dont-block t)) ; do not block, parent is not a TODO
11225 (setq pos (point))
11226 (setq parent-pos (and (org-up-heading-safe) (point)))
11227 (if (not parent-pos) (throw 'dont-block t)) ; no parent
11228 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
11229 (forward-line 1)
11230 (re-search-forward org-not-done-heading-regexp pos t))
11231 (throw 'dont-block nil)))))))) ; block, older sibling not done.
11233 (defcustom org-track-ordered-property-with-tag nil
11234 "Should the ORDERED property also be shown as a tag?
11235 The ORDERED property decides if an entry should require subtasks to be
11236 completed in sequence. Since a property is not very visible, setting
11237 this option means that toggling the ORDERED property with the command
11238 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
11239 not relevant for the behavior, but it makes things more visible.
11241 Note that toggling the tag with tags commands will not change the property
11242 and therefore not influence behavior!
11244 This can be t, meaning the tag ORDERED should be used, It can also be a
11245 string to select a different tag for this task."
11246 :group 'org-todo
11247 :type '(choice
11248 (const :tag "No tracking" nil)
11249 (const :tag "Track with ORDERED tag" t)
11250 (string :tag "Use other tag")))
11252 (defun org-toggle-ordered-property ()
11253 "Toggle the ORDERED property of the current entry.
11254 For better visibility, you can track the value of this property with a tag.
11255 See variable `org-track-ordered-property-with-tag'."
11256 (interactive)
11257 (let* ((t1 org-track-ordered-property-with-tag)
11258 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
11259 (save-excursion
11260 (org-back-to-heading)
11261 (if (org-entry-get nil "ORDERED")
11262 (progn
11263 (org-delete-property "ORDERED")
11264 (and tag (org-toggle-tag tag 'off))
11265 (message "Subtasks can be completed in arbitrary order"))
11266 (org-entry-put nil "ORDERED" "t")
11267 (and tag (org-toggle-tag tag 'on))
11268 (message "Subtasks must be completed in sequence")))))
11270 (defvar org-blocked-by-checkboxes) ; dynamically scoped
11271 (defun org-block-todo-from-checkboxes (change-plist)
11272 "Block turning an entry into a TODO, using checkboxes.
11273 This checks whether the current task should be blocked from state
11274 changes because there are unchecked boxes in this entry."
11275 (if (not org-enforce-todo-checkbox-dependencies)
11276 t ; if locally turned off don't block
11277 (catch 'dont-block
11278 ;; If this is not a todo state change, or if this entry is already DONE,
11279 ;; do not block
11280 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
11281 (member (plist-get change-plist :from)
11282 (cons 'done org-done-keywords))
11283 (member (plist-get change-plist :to)
11284 (cons 'todo org-not-done-keywords))
11285 (not (plist-get change-plist :to)))
11286 (throw 'dont-block t))
11287 ;; If this task has checkboxes that are not checked, it's blocked
11288 (save-excursion
11289 (org-back-to-heading t)
11290 (let ((beg (point)) end)
11291 (outline-next-heading)
11292 (setq end (point))
11293 (goto-char beg)
11294 (if (re-search-forward "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\)[ \t]+\\[[- ]\\]"
11295 end t)
11296 (progn
11297 (if (boundp 'org-blocked-by-checkboxes)
11298 (setq org-blocked-by-checkboxes t))
11299 (throw 'dont-block nil)))))
11300 t))) ; do not block
11302 (defun org-entry-blocked-p ()
11303 "Is the current entry blocked?"
11304 (if (org-entry-get nil "NOBLOCKING")
11305 nil ;; Never block this entry
11306 (not
11307 (run-hook-with-args-until-failure
11308 'org-blocker-hook
11309 (list :type 'todo-state-change
11310 :position (point)
11311 :from 'todo
11312 :to 'done)))))
11314 (defun org-update-statistics-cookies (all)
11315 "Update the statistics cookie, either from TODO or from checkboxes.
11316 This should be called with the cursor in a line with a statistics cookie."
11317 (interactive "P")
11318 (if all
11319 (progn
11320 (org-update-checkbox-count 'all)
11321 (org-map-entries 'org-update-parent-todo-statistics))
11322 (if (not (org-on-heading-p))
11323 (org-update-checkbox-count)
11324 (let ((pos (move-marker (make-marker) (point)))
11325 end l1 l2)
11326 (ignore-errors (org-back-to-heading t))
11327 (if (not (org-on-heading-p))
11328 (org-update-checkbox-count)
11329 (setq l1 (org-outline-level))
11330 (setq end (save-excursion
11331 (outline-next-heading)
11332 (if (org-on-heading-p) (setq l2 (org-outline-level)))
11333 (point)))
11334 (if (and (save-excursion
11335 (re-search-forward
11336 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
11337 (not (save-excursion (re-search-forward
11338 ":COOKIE_DATA:.*\\<todo\\>" end t))))
11339 (org-update-checkbox-count)
11340 (if (and l2 (> l2 l1))
11341 (progn
11342 (goto-char end)
11343 (org-update-parent-todo-statistics))
11344 (goto-char pos)
11345 (beginning-of-line 1)
11346 (while (re-search-forward
11347 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
11348 (point-at-eol) t)
11349 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
11350 (goto-char pos)
11351 (move-marker pos nil)))))
11353 (defvar org-entry-property-inherited-from) ;; defined below
11354 (defun org-update-parent-todo-statistics ()
11355 "Update any statistics cookie in the parent of the current headline.
11356 When `org-hierarchical-todo-statistics' is nil, statistics will cover
11357 the entire subtree and this will travel up the hierarchy and update
11358 statistics everywhere."
11359 (let* ((prop (save-excursion (org-up-heading-safe)
11360 (org-entry-get nil "COOKIE_DATA" 'inherit)))
11361 (recursive (or (not org-hierarchical-todo-statistics)
11362 (and prop (string-match "\\<recursive\\>" prop))))
11363 (lim (or (and prop (marker-position org-entry-property-inherited-from))
11365 (first t)
11366 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
11367 level ltoggle l1 new ndel
11368 (cnt-all 0) (cnt-done 0) is-percent kwd
11369 checkbox-beg ov ovs ove cookie-present)
11370 (catch 'exit
11371 (save-excursion
11372 (beginning-of-line 1)
11373 (setq ltoggle (funcall outline-level))
11374 ;; Three situations are to consider:
11376 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
11377 ;; to the top-level ancestor on the headline;
11379 ;; 2. If parent has "recursive" property, repeat up to the
11380 ;; headline setting that property, taking inheritance into
11381 ;; account;
11383 ;; 3. Else, move up to direct parent and proceed only once.
11384 (while (and (setq level (org-up-heading-safe))
11385 (or recursive first)
11386 (>= (point) lim))
11387 (setq first nil cookie-present nil)
11388 (unless (and level
11389 (not (string-match
11390 "\\<checkbox\\>"
11391 (downcase (or (org-entry-get nil "COOKIE_DATA")
11392 "")))))
11393 (throw 'exit nil))
11394 (while (re-search-forward box-re (point-at-eol) t)
11395 (setq cnt-all 0 cnt-done 0 cookie-present t)
11396 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
11397 (save-match-data
11398 (unless (outline-next-heading) (throw 'exit nil))
11399 (while (and (looking-at org-complex-heading-regexp)
11400 (> (setq l1 (length (match-string 1))) level))
11401 (setq kwd (and (or recursive (= l1 ltoggle))
11402 (match-string 2)))
11403 (if (or (eq org-provide-todo-statistics 'all-headlines)
11404 (and (listp org-provide-todo-statistics)
11405 (or (member kwd org-provide-todo-statistics)
11406 (member kwd org-done-keywords))))
11407 (setq cnt-all (1+ cnt-all))
11408 (if (eq org-provide-todo-statistics t)
11409 (and kwd (setq cnt-all (1+ cnt-all)))))
11410 (and (member kwd org-done-keywords)
11411 (setq cnt-done (1+ cnt-done)))
11412 (outline-next-heading)))
11413 (setq new
11414 (if is-percent
11415 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
11416 (format "[%d/%d]" cnt-done cnt-all))
11417 ndel (- (match-end 0) checkbox-beg))
11418 ;; handle overlays when updating cookie from column view
11419 (when (setq ov (car (overlays-at checkbox-beg)))
11420 (setq ovs (overlay-start ov) ove (overlay-end ov))
11421 (delete-overlay ov))
11422 (goto-char checkbox-beg)
11423 (insert new)
11424 (delete-region (point) (+ (point) ndel))
11425 (when org-auto-align-tags (org-fix-tags-on-the-fly))
11426 (when ov (move-overlay ov ovs ove)))
11427 (when cookie-present
11428 (run-hook-with-args 'org-after-todo-statistics-hook
11429 cnt-done (- cnt-all cnt-done))))))
11430 (run-hooks 'org-todo-statistics-hook)))
11432 (defvar org-after-todo-statistics-hook nil
11433 "Hook that is called after a TODO statistics cookie has been updated.
11434 Each function is called with two arguments: the number of not-done entries
11435 and the number of done entries.
11437 For example, the following function, when added to this hook, will switch
11438 an entry to DONE when all children are done, and back to TODO when new
11439 entries are set to a TODO status. Note that this hook is only called
11440 when there is a statistics cookie in the headline!
11442 (defun org-summary-todo (n-done n-not-done)
11443 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
11444 (let (org-log-done org-log-states) ; turn off logging
11445 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
11448 (defvar org-todo-statistics-hook nil
11449 "Hook that is run whenever Org thinks TODO statistics should be updated.
11450 This hook runs even if there is no statistics cookie present, in which case
11451 `org-after-todo-statistics-hook' would not run.")
11453 (defun org-todo-trigger-tag-changes (state)
11454 "Apply the changes defined in `org-todo-state-tags-triggers'."
11455 (let ((l org-todo-state-tags-triggers)
11456 changes)
11457 (when (or (not state) (equal state ""))
11458 (setq changes (append changes (cdr (assoc "" l)))))
11459 (when (and (stringp state) (> (length state) 0))
11460 (setq changes (append changes (cdr (assoc state l)))))
11461 (when (member state org-not-done-keywords)
11462 (setq changes (append changes (cdr (assoc 'todo l)))))
11463 (when (member state org-done-keywords)
11464 (setq changes (append changes (cdr (assoc 'done l)))))
11465 (dolist (c changes)
11466 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
11468 (defun org-local-logging (value)
11469 "Get logging settings from a property VALUE."
11470 (let* (words w a)
11471 ;; directly set the variables, they are already local.
11472 (setq org-log-done nil
11473 org-log-repeat nil
11474 org-todo-log-states nil)
11475 (setq words (org-split-string value))
11476 (while (setq w (pop words))
11477 (cond
11478 ((setq a (assoc w org-startup-options))
11479 (and (member (nth 1 a) '(org-log-done org-log-repeat))
11480 (set (nth 1 a) (nth 2 a))))
11481 ((setq a (org-extract-log-state-settings w))
11482 (and (member (car a) org-todo-keywords-1)
11483 (push a org-todo-log-states)))))))
11485 (defun org-get-todo-sequence-head (kwd)
11486 "Return the head of the TODO sequence to which KWD belongs.
11487 If KWD is not set, check if there is a text property remembering the
11488 right sequence."
11489 (let (p)
11490 (cond
11491 ((not kwd)
11492 (or (get-text-property (point-at-bol) 'org-todo-head)
11493 (progn
11494 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
11495 nil (point-at-eol)))
11496 (get-text-property p 'org-todo-head))))
11497 ((not (member kwd org-todo-keywords-1))
11498 (car org-todo-keywords-1))
11499 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
11501 (defun org-fast-todo-selection ()
11502 "Fast TODO keyword selection with single keys.
11503 Returns the new TODO keyword, or nil if no state change should occur."
11504 (let* ((fulltable org-todo-key-alist)
11505 (done-keywords org-done-keywords) ;; needed for the faces.
11506 (maxlen (apply 'max (mapcar
11507 (lambda (x)
11508 (if (stringp (car x)) (string-width (car x)) 0))
11509 fulltable)))
11510 (expert nil)
11511 (fwidth (+ maxlen 3 1 3))
11512 (ncol (/ (- (window-width) 4) fwidth))
11513 tg cnt e c tbl
11514 groups ingroup)
11515 (save-excursion
11516 (save-window-excursion
11517 (if expert
11518 (set-buffer (get-buffer-create " *Org todo*"))
11519 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
11520 (erase-buffer)
11521 (org-set-local 'org-done-keywords done-keywords)
11522 (setq tbl fulltable cnt 0)
11523 (while (setq e (pop tbl))
11524 (cond
11525 ((equal e '(:startgroup))
11526 (push '() groups) (setq ingroup t)
11527 (when (not (= cnt 0))
11528 (setq cnt 0)
11529 (insert "\n"))
11530 (insert "{ "))
11531 ((equal e '(:endgroup))
11532 (setq ingroup nil cnt 0)
11533 (insert "}\n"))
11534 ((equal e '(:newline))
11535 (when (not (= cnt 0))
11536 (setq cnt 0)
11537 (insert "\n")
11538 (setq e (car tbl))
11539 (while (equal (car tbl) '(:newline))
11540 (insert "\n")
11541 (setq tbl (cdr tbl)))))
11543 (setq tg (car e) c (cdr e))
11544 (if ingroup (push tg (car groups)))
11545 (setq tg (org-add-props tg nil 'face
11546 (org-get-todo-face tg)))
11547 (if (and (= cnt 0) (not ingroup)) (insert " "))
11548 (insert "[" c "] " tg (make-string
11549 (- fwidth 4 (length tg)) ?\ ))
11550 (when (= (setq cnt (1+ cnt)) ncol)
11551 (insert "\n")
11552 (if ingroup (insert " "))
11553 (setq cnt 0)))))
11554 (insert "\n")
11555 (goto-char (point-min))
11556 (if (not expert) (org-fit-window-to-buffer))
11557 (message "[a-z..]:Set [SPC]:clear")
11558 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
11559 (cond
11560 ((or (= c ?\C-g)
11561 (and (= c ?q) (not (rassoc c fulltable))))
11562 (setq quit-flag t))
11563 ((= c ?\ ) nil)
11564 ((setq e (rassoc c fulltable) tg (car e))
11566 (t (setq quit-flag t)))))))
11568 (defun org-entry-is-todo-p ()
11569 (member (org-get-todo-state) org-not-done-keywords))
11571 (defun org-entry-is-done-p ()
11572 (member (org-get-todo-state) org-done-keywords))
11574 (defun org-get-todo-state ()
11575 (save-excursion
11576 (org-back-to-heading t)
11577 (and (looking-at org-todo-line-regexp)
11578 (match-end 2)
11579 (match-string 2))))
11581 (defun org-at-date-range-p (&optional inactive-ok)
11582 "Is the cursor inside a date range?"
11583 (interactive)
11584 (save-excursion
11585 (catch 'exit
11586 (let ((pos (point)))
11587 (skip-chars-backward "^[<\r\n")
11588 (skip-chars-backward "<[")
11589 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
11590 (>= (match-end 0) pos)
11591 (throw 'exit t))
11592 (skip-chars-backward "^<[\r\n")
11593 (skip-chars-backward "<[")
11594 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
11595 (>= (match-end 0) pos)
11596 (throw 'exit t)))
11597 nil)))
11599 (defun org-get-repeat (&optional tagline)
11600 "Check if there is a deadline/schedule with repeater in this entry."
11601 (save-match-data
11602 (save-excursion
11603 (org-back-to-heading t)
11604 (and (re-search-forward (if tagline
11605 (concat tagline "\\s-*" org-repeat-re)
11606 org-repeat-re)
11607 (org-entry-end-position) t)
11608 (match-string-no-properties 1)))))
11610 (defvar org-last-changed-timestamp)
11611 (defvar org-last-inserted-timestamp)
11612 (defvar org-log-post-message)
11613 (defvar org-log-note-purpose)
11614 (defvar org-log-note-how)
11615 (defvar org-log-note-extra)
11616 (defun org-auto-repeat-maybe (done-word)
11617 "Check if the current headline contains a repeated deadline/schedule.
11618 If yes, set TODO state back to what it was and change the base date
11619 of repeating deadline/scheduled time stamps to new date.
11620 This function is run automatically after each state change to a DONE state."
11621 ;; last-state is dynamically scoped into this function
11622 (let* ((repeat (org-get-repeat))
11623 (aa (assoc last-state org-todo-kwd-alist))
11624 (interpret (nth 1 aa))
11625 (head (nth 2 aa))
11626 (whata '(("d" . day) ("m" . month) ("y" . year)))
11627 (msg "Entry repeats: ")
11628 (org-log-done nil)
11629 (org-todo-log-states nil)
11630 re type n what ts time to-state)
11631 (when repeat
11632 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
11633 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
11634 org-todo-repeat-to-state))
11635 (unless (and to-state (member to-state org-todo-keywords-1))
11636 (setq to-state (if (eq interpret 'type) last-state head)))
11637 (org-todo to-state)
11638 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
11639 (org-entry-put nil "LAST_REPEAT" (format-time-string
11640 (org-time-stamp-format t t))))
11641 (when org-log-repeat
11642 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
11643 (memq 'org-add-log-note post-command-hook))
11644 ;; OK, we are already setup for some record
11645 (if (eq org-log-repeat 'note)
11646 ;; make sure we take a note, not only a time stamp
11647 (setq org-log-note-how 'note))
11648 ;; Set up for taking a record
11649 (org-add-log-setup 'state (or done-word (car org-done-keywords))
11650 last-state
11651 'findpos org-log-repeat)))
11652 (org-back-to-heading t)
11653 (org-add-planning-info nil nil 'closed)
11654 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
11655 org-deadline-time-regexp "\\)\\|\\("
11656 org-ts-regexp "\\)"))
11657 (while (re-search-forward
11658 re (save-excursion (outline-next-heading) (point)) t)
11659 (setq type (if (match-end 1) org-scheduled-string
11660 (if (match-end 3) org-deadline-string "Plain:"))
11661 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
11662 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts)
11663 (setq n (string-to-number (match-string 2 ts))
11664 what (match-string 3 ts))
11665 (if (equal what "w") (setq n (* n 7) what "d"))
11666 ;; Preparation, see if we need to modify the start date for the change
11667 (when (match-end 1)
11668 (setq time (save-match-data (org-time-string-to-time ts)))
11669 (cond
11670 ((equal (match-string 1 ts) ".")
11671 ;; Shift starting date to today
11672 (org-timestamp-change
11673 (- (org-today) (time-to-days time))
11674 'day))
11675 ((equal (match-string 1 ts) "+")
11676 (let ((nshiftmax 10) (nshift 0))
11677 (while (or (= nshift 0)
11678 (<= (time-to-days time)
11679 (time-to-days (current-time))))
11680 (when (= (incf nshift) nshiftmax)
11681 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
11682 (error "Abort")))
11683 (org-timestamp-change n (cdr (assoc what whata)))
11684 (org-at-timestamp-p t)
11685 (setq ts (match-string 1))
11686 (setq time (save-match-data (org-time-string-to-time ts)))))
11687 (org-timestamp-change (- n) (cdr (assoc what whata)))
11688 ;; rematch, so that we have everything in place for the real shift
11689 (org-at-timestamp-p t)
11690 (setq ts (match-string 1))
11691 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts))))
11692 (org-timestamp-change n (cdr (assoc what whata)))
11693 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
11694 (setq org-log-post-message msg)
11695 (message "%s" msg))))
11697 (defun org-show-todo-tree (arg)
11698 "Make a compact tree which shows all headlines marked with TODO.
11699 The tree will show the lines where the regexp matches, and all higher
11700 headlines above the match.
11701 With a \\[universal-argument] prefix, prompt for a regexp to match.
11702 With a numeric prefix N, construct a sparse tree for the Nth element
11703 of `org-todo-keywords-1'."
11704 (interactive "P")
11705 (let ((case-fold-search nil)
11706 (kwd-re
11707 (cond ((null arg) org-not-done-regexp)
11708 ((equal arg '(4))
11709 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
11710 (mapcar 'list org-todo-keywords-1))))
11711 (concat "\\("
11712 (mapconcat 'identity (org-split-string kwd "|") "\\|")
11713 "\\)\\>")))
11714 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
11715 (regexp-quote (nth (1- (prefix-numeric-value arg))
11716 org-todo-keywords-1)))
11717 (t (error "Invalid prefix argument: %s" arg)))))
11718 (message "%d TODO entries found"
11719 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
11721 (defun org-deadline (&optional remove time)
11722 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
11723 With argument REMOVE, remove any deadline from the item.
11724 With argument TIME, set the deadline at the corresponding date. TIME
11725 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
11726 (interactive "P")
11727 (let* ((old-date (org-entry-get nil "DEADLINE"))
11728 (repeater (and old-date
11729 (string-match
11730 "\\([.+-]+[0-9]+[dwmy]\\(?:[/ ][-+]?[0-9]+[dwmy]\\)?\\) ?"
11731 old-date)
11732 (match-string 1 old-date))))
11733 (if remove
11734 (progn
11735 (when (and old-date org-log-redeadline)
11736 (org-add-log-setup 'deldeadline nil old-date 'findpos
11737 org-log-redeadline))
11738 (org-remove-timestamp-with-keyword org-deadline-string)
11739 (message "Item no longer has a deadline."))
11740 (org-add-planning-info 'deadline time 'closed)
11741 (when (and old-date org-log-redeadline
11742 (not (equal old-date
11743 (substring org-last-inserted-timestamp 1 -1))))
11744 (org-add-log-setup 'redeadline nil old-date 'findpos
11745 org-log-redeadline))
11746 (when repeater
11747 (save-excursion
11748 (org-back-to-heading t)
11749 (when (re-search-forward (concat org-deadline-string " "
11750 org-last-inserted-timestamp)
11751 (save-excursion
11752 (outline-next-heading) (point)) t)
11753 (goto-char (1- (match-end 0)))
11754 (insert " " repeater)
11755 (setq org-last-inserted-timestamp
11756 (concat (substring org-last-inserted-timestamp 0 -1)
11757 " " repeater
11758 (substring org-last-inserted-timestamp -1))))))
11759 (message "Deadline on %s" org-last-inserted-timestamp))))
11761 (defun org-schedule (&optional remove time)
11762 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
11763 With argument REMOVE, remove any scheduling date from the item.
11764 With argument TIME, scheduled at the corresponding date. TIME can
11765 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
11766 (interactive "P")
11767 (let* ((old-date (org-entry-get nil "SCHEDULED"))
11768 (repeater (and old-date
11769 (string-match
11770 "\\([.+-]+[0-9]+[dwmy]\\(?:[/ ][-+]?[0-9]+[dwmy]\\)?\\) ?"
11771 old-date)
11772 (match-string 1 old-date))))
11773 (if remove
11774 (progn
11775 (when (and old-date org-log-reschedule)
11776 (org-add-log-setup 'delschedule nil old-date 'findpos
11777 org-log-reschedule))
11778 (org-remove-timestamp-with-keyword org-scheduled-string)
11779 (message "Item is no longer scheduled."))
11780 (org-add-planning-info 'scheduled time 'closed)
11781 (when (and old-date org-log-reschedule
11782 (not (equal old-date
11783 (substring org-last-inserted-timestamp 1 -1))))
11784 (org-add-log-setup 'reschedule nil old-date 'findpos
11785 org-log-reschedule))
11786 (when repeater
11787 (save-excursion
11788 (org-back-to-heading t)
11789 (when (re-search-forward (concat org-scheduled-string " "
11790 org-last-inserted-timestamp)
11791 (save-excursion
11792 (outline-next-heading) (point)) t)
11793 (goto-char (1- (match-end 0)))
11794 (insert " " repeater)
11795 (setq org-last-inserted-timestamp
11796 (concat (substring org-last-inserted-timestamp 0 -1)
11797 " " repeater
11798 (substring org-last-inserted-timestamp -1))))))
11799 (message "Scheduled to %s" org-last-inserted-timestamp))))
11801 (defun org-get-scheduled-time (pom &optional inherit)
11802 "Get the scheduled time as a time tuple, of a format suitable
11803 for calling org-schedule with, or if there is no scheduling,
11804 returns nil."
11805 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
11806 (when time
11807 (apply 'encode-time (org-parse-time-string time)))))
11809 (defun org-get-deadline-time (pom &optional inherit)
11810 "Get the deadline as a time tuple, of a format suitable for
11811 calling org-deadline with, or if there is no scheduling, returns
11812 nil."
11813 (let ((time (org-entry-get pom "DEADLINE" inherit)))
11814 (when time
11815 (apply 'encode-time (org-parse-time-string time)))))
11817 (defun org-remove-timestamp-with-keyword (keyword)
11818 "Remove all time stamps with KEYWORD in the current entry."
11819 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
11820 beg)
11821 (save-excursion
11822 (org-back-to-heading t)
11823 (setq beg (point))
11824 (outline-next-heading)
11825 (while (re-search-backward re beg t)
11826 (replace-match "")
11827 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
11828 (equal (char-before) ?\ ))
11829 (backward-delete-char 1)
11830 (if (string-match "^[ \t]*$" (buffer-substring
11831 (point-at-bol) (point-at-eol)))
11832 (delete-region (point-at-bol)
11833 (min (point-max) (1+ (point-at-eol))))))))))
11835 (defun org-add-planning-info (what &optional time &rest remove)
11836 "Insert new timestamp with keyword in the line directly after the headline.
11837 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
11838 If non is given, the user is prompted for a date.
11839 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
11840 be removed."
11841 (interactive)
11842 (let (org-time-was-given org-end-time-was-given ts
11843 end default-time default-input)
11845 (catch 'exit
11846 (when (and (memq what '(scheduled deadline))
11847 (or (not time)
11848 (and (stringp time)
11849 (string-match "^[-+]+[0-9]" time))))
11850 ;; Try to get a default date/time from existing timestamp
11851 (save-excursion
11852 (org-back-to-heading t)
11853 (setq end (save-excursion (outline-next-heading) (point)))
11854 (when (re-search-forward (if (eq what 'scheduled)
11855 org-scheduled-time-regexp
11856 org-deadline-time-regexp)
11857 end t)
11858 (setq ts (match-string 1)
11859 default-time
11860 (apply 'encode-time (org-parse-time-string ts))
11861 default-input (and ts (org-get-compact-tod ts))))))
11862 (when what
11863 (setq time
11864 (if (and (stringp time)
11865 (string-match "^[-+]+[0-9]" time))
11866 ;; This is a relative time, set the proper date
11867 (apply 'encode-time
11868 (org-read-date-analyze
11869 time default-time (decode-time default-time)))
11870 ;; If necessary, get the time from the user
11871 (or time (org-read-date nil 'to-time nil nil
11872 default-time default-input)))))
11874 (when (and org-insert-labeled-timestamps-at-point
11875 (member what '(scheduled deadline)))
11876 (insert
11877 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
11878 (org-insert-time-stamp time org-time-was-given
11879 nil nil nil (list org-end-time-was-given))
11880 (setq what nil))
11881 (save-excursion
11882 (save-restriction
11883 (let (col list elt ts buffer-invisibility-spec)
11884 (org-back-to-heading t)
11885 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
11886 (goto-char (match-end 1))
11887 (setq col (current-column))
11888 (goto-char (match-end 0))
11889 (if (eobp) (insert "\n") (forward-char 1))
11890 (when (and (not what)
11891 (not (looking-at
11892 (concat "[ \t]*"
11893 org-keyword-time-not-clock-regexp))))
11894 ;; Nothing to add, nothing to remove...... :-)
11895 (throw 'exit nil))
11896 (if (and (not (looking-at org-outline-regexp))
11897 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
11898 "[^\r\n]*"))
11899 (not (equal (match-string 1) org-clock-string)))
11900 (narrow-to-region (match-beginning 0) (match-end 0))
11901 (insert-before-markers "\n")
11902 (backward-char 1)
11903 (narrow-to-region (point) (point))
11904 (and org-adapt-indentation (org-indent-to-column col)))
11905 ;; Check if we have to remove something.
11906 (setq list (cons what remove))
11907 (while list
11908 (setq elt (pop list))
11909 (when (or (and (eq elt 'scheduled)
11910 (re-search-forward org-scheduled-time-regexp nil t))
11911 (and (eq elt 'deadline)
11912 (re-search-forward org-deadline-time-regexp nil t))
11913 (and (eq elt 'closed)
11914 (re-search-forward org-closed-time-regexp nil t)))
11915 (replace-match "")
11916 (if (looking-at "--+<[^>]+>") (replace-match ""))))
11917 (and (looking-at "^[ \t]+") (replace-match ""))
11918 (and org-adapt-indentation (bolp) (org-indent-to-column col))
11919 (when what
11920 (insert
11921 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
11922 (cond ((eq what 'scheduled) org-scheduled-string)
11923 ((eq what 'deadline) org-deadline-string)
11924 ((eq what 'closed) org-closed-string))
11925 " ")
11926 (setq ts (org-insert-time-stamp
11927 time
11928 (or org-time-was-given
11929 (and (eq what 'closed) org-log-done-with-time))
11930 (eq what 'closed)
11931 nil nil (list org-end-time-was-given)))
11932 (insert
11933 (if (not (or (bolp) (eq (char-before) ?\ )
11934 (memq (char-after) '(32 10))
11935 (eobp))) " " ""))
11936 (end-of-line 1))
11937 (goto-char (point-min))
11938 (widen)
11939 (if (and (looking-at "[ \t]*\n")
11940 (equal (char-before) ?\n))
11941 (delete-region (1- (point)) (point-at-eol)))
11942 ts))))))
11944 (defvar org-log-note-marker (make-marker))
11945 (defvar org-log-note-purpose nil)
11946 (defvar org-log-note-state nil)
11947 (defvar org-log-note-previous-state nil)
11948 (defvar org-log-note-how nil)
11949 (defvar org-log-note-extra nil)
11950 (defvar org-log-note-window-configuration nil)
11951 (defvar org-log-note-return-to (make-marker))
11952 (defvar org-log-note-effective-time nil
11953 "Remembered current time so that dynamically scoped
11954 `org-extend-today-until' affects tha timestamps in state change
11955 log")
11957 (defvar org-log-post-message nil
11958 "Message to be displayed after a log note has been stored.
11959 The auto-repeater uses this.")
11961 (defun org-add-note ()
11962 "Add a note to the current entry.
11963 This is done in the same way as adding a state change note."
11964 (interactive)
11965 (org-add-log-setup 'note nil nil 'findpos nil))
11967 (defvar org-property-end-re)
11968 (defun org-add-log-setup (&optional purpose state prev-state
11969 findpos how extra)
11970 "Set up the post command hook to take a note.
11971 If this is about to TODO state change, the new state is expected in STATE.
11972 When FINDPOS is non-nil, find the correct position for the note in
11973 the current entry. If not, assume that it can be inserted at point.
11974 HOW is an indicator what kind of note should be created.
11975 EXTRA is additional text that will be inserted into the notes buffer."
11976 (let* ((org-log-into-drawer (org-log-into-drawer))
11977 (drawer (cond ((stringp org-log-into-drawer)
11978 org-log-into-drawer)
11979 (org-log-into-drawer "LOGBOOK")
11980 (t nil))))
11981 (save-restriction
11982 (save-excursion
11983 (when findpos
11984 (org-back-to-heading t)
11985 (narrow-to-region (point) (save-excursion
11986 (outline-next-heading) (point)))
11987 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"
11988 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
11989 "[^\r\n]*\\)?"))
11990 (goto-char (match-end 0))
11991 (cond
11992 (drawer
11993 (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*$")
11994 nil t)
11995 (progn
11996 (goto-char (match-end 0))
11997 (or org-log-states-order-reversed
11998 (and (re-search-forward org-property-end-re nil t)
11999 (goto-char (1- (match-beginning 0))))))
12000 (insert "\n:" drawer ":\n:END:")
12001 (beginning-of-line 0)
12002 (org-indent-line-function)
12003 (beginning-of-line 2)
12004 (org-indent-line-function)
12005 (end-of-line 0)))
12006 ((and org-log-state-notes-insert-after-drawers
12007 (save-excursion
12008 (forward-line) (looking-at org-drawer-regexp)))
12009 (forward-line)
12010 (while (looking-at org-drawer-regexp)
12011 (goto-char (match-end 0))
12012 (re-search-forward org-property-end-re (point-max) t)
12013 (forward-line))
12014 (forward-line -1)))
12015 (unless org-log-states-order-reversed
12016 (and (= (char-after) ?\n) (forward-char 1))
12017 (org-skip-over-state-notes)
12018 (skip-chars-backward " \t\n\r")))
12019 (move-marker org-log-note-marker (point))
12020 (setq org-log-note-purpose purpose
12021 org-log-note-state state
12022 org-log-note-previous-state prev-state
12023 org-log-note-how how
12024 org-log-note-extra extra
12025 org-log-note-effective-time (org-current-effective-time))
12026 (add-hook 'post-command-hook 'org-add-log-note 'append)))))
12028 (defun org-skip-over-state-notes ()
12029 "Skip past the list of State notes in an entry."
12030 (if (looking-at "\n[ \t]*- State") (forward-char 1))
12031 (when (ignore-errors (goto-char (org-in-item-p)))
12032 (let* ((struct (org-list-struct))
12033 (prevs (org-list-prevs-alist struct)))
12034 (while (looking-at "[ \t]*- State")
12035 (goto-char (or (org-list-get-next-item (point) struct prevs)
12036 (org-list-get-item-end (point) struct)))))))
12038 (defun org-add-log-note (&optional purpose)
12039 "Pop up a window for taking a note, and add this note later at point."
12040 (remove-hook 'post-command-hook 'org-add-log-note)
12041 (setq org-log-note-window-configuration (current-window-configuration))
12042 (delete-other-windows)
12043 (move-marker org-log-note-return-to (point))
12044 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
12045 (goto-char org-log-note-marker)
12046 (org-switch-to-buffer-other-window "*Org Note*")
12047 (erase-buffer)
12048 (if (memq org-log-note-how '(time state))
12049 (let (current-prefix-arg) (org-store-log-note))
12050 (let ((org-inhibit-startup t)) (org-mode))
12051 (insert (format "# Insert note for %s.
12052 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
12053 (cond
12054 ((eq org-log-note-purpose 'clock-out) "stopped clock")
12055 ((eq org-log-note-purpose 'done) "closed todo item")
12056 ((eq org-log-note-purpose 'state)
12057 (format "state change from \"%s\" to \"%s\""
12058 (or org-log-note-previous-state "")
12059 (or org-log-note-state "")))
12060 ((eq org-log-note-purpose 'reschedule)
12061 "rescheduling")
12062 ((eq org-log-note-purpose 'delschedule)
12063 "no longer scheduled")
12064 ((eq org-log-note-purpose 'redeadline)
12065 "changing deadline")
12066 ((eq org-log-note-purpose 'deldeadline)
12067 "removing deadline")
12068 ((eq org-log-note-purpose 'refile)
12069 "refiling")
12070 ((eq org-log-note-purpose 'note)
12071 "this entry")
12072 (t (error "This should not happen")))))
12073 (if org-log-note-extra (insert org-log-note-extra))
12074 (org-set-local 'org-finish-function 'org-store-log-note)
12075 (run-hooks 'org-log-buffer-setup-hook)))
12077 (defvar org-note-abort nil) ; dynamically scoped
12078 (defun org-store-log-note ()
12079 "Finish taking a log note, and insert it to where it belongs."
12080 (let ((txt (buffer-string))
12081 (note (cdr (assq org-log-note-purpose org-log-note-headings)))
12082 lines ind bul)
12083 (kill-buffer (current-buffer))
12084 (while (string-match "\\`#.*\n[ \t\n]*" txt)
12085 (setq txt (replace-match "" t t txt)))
12086 (if (string-match "\\s-+\\'" txt)
12087 (setq txt (replace-match "" t t txt)))
12088 (setq lines (org-split-string txt "\n"))
12089 (when (and note (string-match "\\S-" note))
12090 (setq note
12091 (org-replace-escapes
12092 note
12093 (list (cons "%u" (user-login-name))
12094 (cons "%U" user-full-name)
12095 (cons "%t" (format-time-string
12096 (org-time-stamp-format 'long 'inactive)
12097 org-log-note-effective-time))
12098 (cons "%T" (format-time-string
12099 (org-time-stamp-format 'long nil)
12100 org-log-note-effective-time))
12101 (cons "%s" (if org-log-note-state
12102 (concat "\"" org-log-note-state "\"")
12103 ""))
12104 (cons "%S" (if org-log-note-previous-state
12105 (concat "\"" org-log-note-previous-state "\"")
12106 "\"\"")))))
12107 (if lines (setq note (concat note " \\\\")))
12108 (push note lines))
12109 (when (or current-prefix-arg org-note-abort)
12110 (when org-log-into-drawer
12111 (org-remove-empty-drawer-at
12112 (if (stringp org-log-into-drawer) org-log-into-drawer "LOGBOOK")
12113 org-log-note-marker))
12114 (setq lines nil))
12115 (when lines
12116 (with-current-buffer (marker-buffer org-log-note-marker)
12117 (save-excursion
12118 (goto-char org-log-note-marker)
12119 (move-marker org-log-note-marker nil)
12120 (end-of-line 1)
12121 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
12122 (setq ind (save-excursion
12123 (if (ignore-errors (goto-char (org-in-item-p)))
12124 (let ((struct (org-list-struct)))
12125 (org-list-get-ind
12126 (org-list-get-top-point struct) struct))
12127 (skip-chars-backward " \r\t\n")
12128 (cond
12129 ((and (org-at-heading-p)
12130 org-adapt-indentation)
12131 (1+ (org-current-level)))
12132 ((org-at-heading-p) 0)
12133 (t (org-get-indentation))))))
12134 (setq bul (org-list-bullet-string "-"))
12135 (org-indent-line-to ind)
12136 (insert bul (pop lines))
12137 (let ((ind-body (+ (length bul) ind)))
12138 (while lines
12139 (insert "\n")
12140 (org-indent-line-to ind-body)
12141 (insert (pop lines))))
12142 (message "Note stored")
12143 (org-back-to-heading t)
12144 (org-cycle-hide-drawers 'children)))))
12145 (set-window-configuration org-log-note-window-configuration)
12146 (with-current-buffer (marker-buffer org-log-note-return-to)
12147 (goto-char org-log-note-return-to))
12148 (move-marker org-log-note-return-to nil)
12149 (and org-log-post-message (message "%s" org-log-post-message)))
12151 (defun org-remove-empty-drawer-at (drawer pos)
12152 "Remove an empty drawer DRAWER at position POS.
12153 POS may also be a marker."
12154 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
12155 (save-excursion
12156 (save-restriction
12157 (widen)
12158 (goto-char pos)
12159 (if (org-in-regexp
12160 (concat "^[ \t]*:" drawer ":[ \t]*\n[ \t]*:END:[ \t]*\n?") 2)
12161 (replace-match ""))))))
12163 (defun org-sparse-tree (&optional arg)
12164 "Create a sparse tree, prompt for the details.
12165 This command can create sparse trees. You first need to select the type
12166 of match used to create the tree:
12168 t Show all TODO entries.
12169 T Show entries with a specific TODO keyword.
12170 m Show entries selected by a tags/property match.
12171 p Enter a property name and its value (both with completion on existing
12172 names/values) and show entries with that property.
12173 r Show entries matching a regular expression (`/' can be used as well)
12174 d Show deadlines due within `org-deadline-warning-days'.
12175 b Show deadlines and scheduled items before a date.
12176 a Show deadlines and scheduled items after a date."
12177 (interactive "P")
12178 (let (ans kwd value)
12179 (message "Sparse tree: [r]egexp [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty\n [d]eadlines [b]efore-date [a]fter-date")
12180 (setq ans (read-char-exclusive))
12181 (cond
12182 ((equal ans ?d)
12183 (call-interactively 'org-check-deadlines))
12184 ((equal ans ?b)
12185 (call-interactively 'org-check-before-date))
12186 ((equal ans ?a)
12187 (call-interactively 'org-check-after-date))
12188 ((equal ans ?t)
12189 (org-show-todo-tree nil))
12190 ((equal ans ?T)
12191 (org-show-todo-tree '(4)))
12192 ((member ans '(?T ?m))
12193 (call-interactively 'org-match-sparse-tree))
12194 ((member ans '(?p ?P))
12195 (setq kwd (org-icompleting-read "Property: "
12196 (mapcar 'list (org-buffer-property-keys))))
12197 (setq value (org-icompleting-read "Value: "
12198 (mapcar 'list (org-property-values kwd))))
12199 (unless (string-match "\\`{.*}\\'" value)
12200 (setq value (concat "\"" value "\"")))
12201 (org-match-sparse-tree arg (concat kwd "=" value)))
12202 ((member ans '(?r ?R ?/))
12203 (call-interactively 'org-occur))
12204 (t (error "No such sparse tree command \"%c\"" ans)))))
12206 (defvar org-occur-highlights nil
12207 "List of overlays used for occur matches.")
12208 (make-variable-buffer-local 'org-occur-highlights)
12209 (defvar org-occur-parameters nil
12210 "Parameters of the active org-occur calls.
12211 This is a list, each call to org-occur pushes as cons cell,
12212 containing the regular expression and the callback, onto the list.
12213 The list can contain several entries if `org-occur' has been called
12214 several time with the KEEP-PREVIOUS argument. Otherwise, this list
12215 will only contain one set of parameters. When the highlights are
12216 removed (for example with `C-c C-c', or with the next edit (depending
12217 on `org-remove-highlights-with-change'), this variable is emptied
12218 as well.")
12219 (make-variable-buffer-local 'org-occur-parameters)
12221 (defun org-occur (regexp &optional keep-previous callback)
12222 "Make a compact tree which shows all matches of REGEXP.
12223 The tree will show the lines where the regexp matches, and all higher
12224 headlines above the match. It will also show the heading after the match,
12225 to make sure editing the matching entry is easy.
12226 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
12227 call to `org-occur' will be kept, to allow stacking of calls to this
12228 command.
12229 If CALLBACK is non-nil, it is a function which is called to confirm
12230 that the match should indeed be shown."
12231 (interactive "sRegexp: \nP")
12232 (when (equal regexp "")
12233 (error "Regexp cannot be empty"))
12234 (unless keep-previous
12235 (org-remove-occur-highlights nil nil t))
12236 (push (cons regexp callback) org-occur-parameters)
12237 (let ((cnt 0))
12238 (save-excursion
12239 (goto-char (point-min))
12240 (if (or (not keep-previous) ; do not want to keep
12241 (not org-occur-highlights)) ; no previous matches
12242 ;; hide everything
12243 (org-overview))
12244 (while (re-search-forward regexp nil t)
12245 (when (or (not callback)
12246 (save-match-data (funcall callback)))
12247 (setq cnt (1+ cnt))
12248 (when org-highlight-sparse-tree-matches
12249 (org-highlight-new-match (match-beginning 0) (match-end 0)))
12250 (org-show-context 'occur-tree))))
12251 (when org-remove-highlights-with-change
12252 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
12253 nil 'local))
12254 (unless org-sparse-tree-open-archived-trees
12255 (org-hide-archived-subtrees (point-min) (point-max)))
12256 (run-hooks 'org-occur-hook)
12257 (if (org-called-interactively-p 'interactive)
12258 (message "%d match(es) for regexp %s" cnt regexp))
12259 cnt))
12261 (defun org-occur-next-match (&optional n reset)
12262 "Function for `next-error-function' to find sparse tree matches.
12263 N is the number of matches to move, when negative move backwards.
12264 RESET is entirely ignored - this function always goes back to the
12265 starting point when no match is found."
12266 (let* ((limit (if (< n 0) (point-min) (point-max)))
12267 (search-func (if (< n 0)
12268 'previous-single-char-property-change
12269 'next-single-char-property-change))
12270 (n (abs n))
12271 (pos (point))
12273 (catch 'exit
12274 (while (setq p1 (funcall search-func (point) 'org-type))
12275 (when (equal p1 limit)
12276 (goto-char pos)
12277 (error "No more matches"))
12278 (when (equal (get-char-property p1 'org-type) 'org-occur)
12279 (setq n (1- n))
12280 (when (= n 0)
12281 (goto-char p1)
12282 (throw 'exit (point))))
12283 (goto-char p1))
12284 (goto-char p1)
12285 (error "No more matches"))))
12287 (defun org-show-context (&optional key)
12288 "Make sure point and context are visible.
12289 How much context is shown depends upon the variables
12290 `org-show-hierarchy-above', `org-show-following-heading'. and
12291 `org-show-siblings'."
12292 (let ((heading-p (org-on-heading-p t))
12293 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
12294 (following-p (org-get-alist-option org-show-following-heading key))
12295 (entry-p (org-get-alist-option org-show-entry-below key))
12296 (siblings-p (org-get-alist-option org-show-siblings key)))
12297 (catch 'exit
12298 ;; Show heading or entry text
12299 (if (and heading-p (not entry-p))
12300 (org-flag-heading nil) ; only show the heading
12301 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
12302 (org-show-hidden-entry))) ; show entire entry
12303 (when following-p
12304 ;; Show next sibling, or heading below text
12305 (save-excursion
12306 (and (if heading-p (org-goto-sibling) (outline-next-heading))
12307 (org-flag-heading nil))))
12308 (when siblings-p (org-show-siblings))
12309 (when hierarchy-p
12310 ;; show all higher headings, possibly with siblings
12311 (save-excursion
12312 (while (and (condition-case nil
12313 (progn (org-up-heading-all 1) t)
12314 (error nil))
12315 (not (bobp)))
12316 (org-flag-heading nil)
12317 (when siblings-p (org-show-siblings))))))))
12319 (defvar org-reveal-start-hook nil
12320 "Hook run before revealing a location.")
12322 (defun org-reveal (&optional siblings)
12323 "Show current entry, hierarchy above it, and the following headline.
12324 This can be used to show a consistent set of context around locations
12325 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
12326 not t for the search context.
12328 With optional argument SIBLINGS, on each level of the hierarchy all
12329 siblings are shown. This repairs the tree structure to what it would
12330 look like when opened with hierarchical calls to `org-cycle'.
12331 With double optional argument \\[universal-argument] \\[universal-argument], \
12332 go to the parent and show the
12333 entire tree."
12334 (interactive "P")
12335 (run-hooks 'org-reveal-start-hook)
12336 (let ((org-show-hierarchy-above t)
12337 (org-show-following-heading t)
12338 (org-show-siblings (if siblings t org-show-siblings)))
12339 (org-show-context nil))
12340 (when (equal siblings '(16))
12341 (save-excursion
12342 (when (org-up-heading-safe)
12343 (org-show-subtree)
12344 (run-hook-with-args 'org-cycle-hook 'subtree)))))
12346 (defun org-highlight-new-match (beg end)
12347 "Highlight from BEG to END and mark the highlight is an occur headline."
12348 (let ((ov (make-overlay beg end)))
12349 (overlay-put ov 'face 'secondary-selection)
12350 (overlay-put ov 'org-type 'org-occur)
12351 (push ov org-occur-highlights)))
12353 (defun org-remove-occur-highlights (&optional beg end noremove)
12354 "Remove the occur highlights from the buffer.
12355 BEG and END are ignored. If NOREMOVE is nil, remove this function
12356 from the `before-change-functions' in the current buffer."
12357 (interactive)
12358 (unless org-inhibit-highlight-removal
12359 (mapc 'delete-overlay org-occur-highlights)
12360 (setq org-occur-highlights nil)
12361 (setq org-occur-parameters nil)
12362 (unless noremove
12363 (remove-hook 'before-change-functions
12364 'org-remove-occur-highlights 'local))))
12366 ;;;; Priorities
12368 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
12369 "Regular expression matching the priority indicator.")
12371 (defvar org-remove-priority-next-time nil)
12373 (defun org-priority-up ()
12374 "Increase the priority of the current item."
12375 (interactive)
12376 (org-priority 'up))
12378 (defun org-priority-down ()
12379 "Decrease the priority of the current item."
12380 (interactive)
12381 (org-priority 'down))
12383 (defun org-priority (&optional action)
12384 "Change the priority of an item by ARG.
12385 ACTION can be `set', `up', `down', or a character."
12386 (interactive)
12387 (unless org-enable-priority-commands
12388 (error "Priority commands are disabled"))
12389 (setq action (or action 'set))
12390 (let (current new news have remove)
12391 (save-excursion
12392 (org-back-to-heading t)
12393 (if (looking-at org-priority-regexp)
12394 (setq current (string-to-char (match-string 2))
12395 have t))
12396 (cond
12397 ((eq action 'remove)
12398 (setq remove t new ?\ ))
12399 ((or (eq action 'set)
12400 (if (featurep 'xemacs) (characterp action) (integerp action)))
12401 (if (not (eq action 'set))
12402 (setq new action)
12403 (message "Priority %c-%c, SPC to remove: "
12404 org-highest-priority org-lowest-priority)
12405 (save-match-data
12406 (setq new (read-char-exclusive))))
12407 (if (and (= (upcase org-highest-priority) org-highest-priority)
12408 (= (upcase org-lowest-priority) org-lowest-priority))
12409 (setq new (upcase new)))
12410 (cond ((equal new ?\ ) (setq remove t))
12411 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
12412 (error "Priority must be between `%c' and `%c'"
12413 org-highest-priority org-lowest-priority))))
12414 ((eq action 'up)
12415 (setq new (if have
12416 (1- current) ; normal cycling
12417 ;; last priority was empty
12418 (if (eq last-command this-command)
12419 org-lowest-priority ; wrap around empty to lowest
12420 ;; default
12421 (if org-priority-start-cycle-with-default
12422 org-default-priority
12423 (1- org-default-priority))))))
12424 ((eq action 'down)
12425 (setq new (if have
12426 (1+ current) ; normal cycling
12427 ;; last priority was empty
12428 (if (eq last-command this-command)
12429 org-highest-priority ; wrap around empty to highest
12430 ;; default
12431 (if org-priority-start-cycle-with-default
12432 org-default-priority
12433 (1+ org-default-priority))))))
12434 (t (error "Invalid action")))
12435 (if (or (< (upcase new) org-highest-priority)
12436 (> (upcase new) org-lowest-priority))
12437 (if (and (memq action '(up down))
12438 (not have) (not (eq last-command this-command)))
12439 ;; `new' is from default priority
12440 (error
12441 "The default can not be set, see `org-default-priority' why")
12442 ;; normal cycling: `new' is beyond highest/lowest priority
12443 ;; and is wrapped around to the empty priority
12444 (setq remove t)))
12445 (setq news (format "%c" new))
12446 (if have
12447 (if remove
12448 (replace-match "" t t nil 1)
12449 (replace-match news t t nil 2))
12450 (if remove
12451 (error "No priority cookie found in line")
12452 (let ((case-fold-search nil))
12453 (looking-at org-todo-line-regexp))
12454 (if (match-end 2)
12455 (progn
12456 (goto-char (match-end 2))
12457 (insert " [#" news "]"))
12458 (goto-char (match-beginning 3))
12459 (insert "[#" news "] "))))
12460 (org-preserve-lc (org-set-tags nil 'align)))
12461 (if remove
12462 (message "Priority removed")
12463 (message "Priority of current item set to %s" news))))
12465 (defun org-get-priority (s)
12466 "Find priority cookie and return priority."
12467 (if (functionp org-get-priority-function)
12468 (funcall org-get-priority-function)
12469 (save-match-data
12470 (if (not (string-match org-priority-regexp s))
12471 (* 1000 (- org-lowest-priority org-default-priority))
12472 (* 1000 (- org-lowest-priority
12473 (string-to-char (match-string 2 s))))))))
12475 ;;;; Tags
12477 (defvar org-agenda-archives-mode)
12478 (defvar org-map-continue-from nil
12479 "Position from where mapping should continue.
12480 Can be set by the action argument to `org-scan-tag's and `org-map-entries'.")
12482 (defvar org-scanner-tags nil
12483 "The current tag list while the tags scanner is running.")
12484 (defvar org-trust-scanner-tags nil
12485 "Should `org-get-tags-at' use the tags for the scanner.
12486 This is for internal dynamical scoping only.
12487 When this is non-nil, the function `org-get-tags-at' will return the value
12488 of `org-scanner-tags' instead of building the list by itself. This
12489 can lead to large speed-ups when the tags scanner is used in a file with
12490 many entries, and when the list of tags is retrieved, for example to
12491 obtain a list of properties. Building the tags list for each entry in such
12492 a file becomes an N^2 operation - but with this variable set, it scales
12493 as N.")
12495 (defun org-scan-tags (action matcher &optional todo-only)
12496 "Scan headline tags with inheritance and produce output ACTION.
12498 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
12499 or `agenda' to produce an entry list for an agenda view. It can also be
12500 a Lisp form or a function that should be called at each matched headline, in
12501 this case the return value is a list of all return values from these calls.
12503 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
12504 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
12505 only lines with a TODO keyword are included in the output."
12506 (require 'org-agenda)
12507 (let* ((re (concat "^" org-outline-regexp " *\\(\\<\\("
12508 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
12509 (org-re
12510 "\\>\\)\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
12511 (props (list 'face 'default
12512 'done-face 'org-agenda-done
12513 'undone-face 'default
12514 'mouse-face 'highlight
12515 'org-not-done-regexp org-not-done-regexp
12516 'org-todo-regexp org-todo-regexp
12517 'help-echo
12518 (format "mouse-2 or RET jump to org file %s"
12519 (abbreviate-file-name
12520 (or (buffer-file-name (buffer-base-buffer))
12521 (buffer-name (buffer-base-buffer)))))))
12522 (case-fold-search nil)
12523 (org-map-continue-from nil)
12524 lspos tags tags-list
12525 (tags-alist (list (cons 0 org-file-tags)))
12526 (llast 0) rtn rtn1 level category i txt
12527 todo marker entry priority)
12528 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
12529 (setq action (list 'lambda nil action)))
12530 (save-excursion
12531 (goto-char (point-min))
12532 (when (eq action 'sparse-tree)
12533 (org-overview)
12534 (org-remove-occur-highlights))
12535 (while (re-search-forward re nil t)
12536 (catch :skip
12537 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
12538 tags (if (match-end 4) (org-match-string-no-properties 4)))
12539 (goto-char (setq lspos (match-beginning 0)))
12540 (setq level (org-reduced-level (funcall outline-level))
12541 category (org-get-category))
12542 (setq i llast llast level)
12543 ;; remove tag lists from same and sublevels
12544 (while (>= i level)
12545 (when (setq entry (assoc i tags-alist))
12546 (setq tags-alist (delete entry tags-alist)))
12547 (setq i (1- i)))
12548 ;; add the next tags
12549 (when tags
12550 (setq tags (org-split-string tags ":")
12551 tags-alist
12552 (cons (cons level tags) tags-alist)))
12553 ;; compile tags for current headline
12554 (setq tags-list
12555 (if org-use-tag-inheritance
12556 (apply 'append (mapcar 'cdr (reverse tags-alist)))
12557 tags)
12558 org-scanner-tags tags-list)
12559 (when org-use-tag-inheritance
12560 (setcdr (car tags-alist)
12561 (mapcar (lambda (x)
12562 (setq x (copy-sequence x))
12563 (org-add-prop-inherited x))
12564 (cdar tags-alist))))
12565 (when (and tags org-use-tag-inheritance
12566 (or (not (eq t org-use-tag-inheritance))
12567 org-tags-exclude-from-inheritance))
12568 ;; selective inheritance, remove uninherited ones
12569 (setcdr (car tags-alist)
12570 (org-remove-uninherited-tags (cdar tags-alist))))
12571 (when (and
12573 ;; eval matcher only when the todo condition is OK
12574 (and (or (not todo-only) (member todo org-not-done-keywords))
12575 (let ((case-fold-search t)) (eval matcher)))
12577 ;; Call the skipper, but return t if it does not skip,
12578 ;; so that the `and' form continues evaluating
12579 (progn
12580 (unless (eq action 'sparse-tree) (org-agenda-skip))
12583 ;; Check if timestamps are deselecting this entry
12584 (or (not todo-only)
12585 (and (member todo org-not-done-keywords)
12586 (or (not org-agenda-tags-todo-honor-ignore-options)
12587 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item)))))
12589 ;; Extra check for the archive tag
12590 ;; FIXME: Does the skipper already do this????
12592 (not (member org-archive-tag tags-list))
12593 ;; we have an archive tag, should we use this anyway?
12594 (or (not org-agenda-skip-archived-trees)
12595 (and (eq action 'agenda) org-agenda-archives-mode))))
12597 ;; select this headline
12599 (cond
12600 ((eq action 'sparse-tree)
12601 (and org-highlight-sparse-tree-matches
12602 (org-get-heading) (match-end 0)
12603 (org-highlight-new-match
12604 (match-beginning 0) (match-beginning 1)))
12605 (org-show-context 'tags-tree))
12606 ((eq action 'agenda)
12607 (setq txt (org-format-agenda-item
12609 (concat
12610 (if (eq org-tags-match-list-sublevels 'indented)
12611 (make-string (1- level) ?.) "")
12612 (org-get-heading))
12613 category
12614 tags-list
12616 priority (org-get-priority txt))
12617 (goto-char lspos)
12618 (setq marker (org-agenda-new-marker))
12619 (org-add-props txt props
12620 'org-marker marker 'org-hd-marker marker 'org-category category
12621 'todo-state todo
12622 'priority priority 'type "tagsmatch")
12623 (push txt rtn))
12624 ((functionp action)
12625 (setq org-map-continue-from nil)
12626 (save-excursion
12627 (setq rtn1 (funcall action))
12628 (push rtn1 rtn)))
12629 (t (error "Invalid action")))
12631 ;; if we are to skip sublevels, jump to end of subtree
12632 (unless org-tags-match-list-sublevels
12633 (org-end-of-subtree t)
12634 (backward-char 1))))
12635 ;; Get the correct position from where to continue
12636 (if org-map-continue-from
12637 (goto-char org-map-continue-from)
12638 (and (= (point) lspos) (end-of-line 1)))))
12639 (when (and (eq action 'sparse-tree)
12640 (not org-sparse-tree-open-archived-trees))
12641 (org-hide-archived-subtrees (point-min) (point-max)))
12642 (nreverse rtn)))
12644 (defun org-remove-uninherited-tags (tags)
12645 "Remove all tags that are not inherited from the list TAGS."
12646 (cond
12647 ((eq org-use-tag-inheritance t)
12648 (if org-tags-exclude-from-inheritance
12649 (org-delete-all org-tags-exclude-from-inheritance tags)
12650 tags))
12651 ((not org-use-tag-inheritance) nil)
12652 ((stringp org-use-tag-inheritance)
12653 (delq nil (mapcar
12654 (lambda (x)
12655 (if (and (string-match org-use-tag-inheritance x)
12656 (not (member x org-tags-exclude-from-inheritance)))
12657 x nil))
12658 tags)))
12659 ((listp org-use-tag-inheritance)
12660 (delq nil (mapcar
12661 (lambda (x)
12662 (if (member x org-use-tag-inheritance) x nil))
12663 tags)))))
12665 (defvar todo-only) ;; dynamically scoped
12667 (defun org-match-sparse-tree (&optional todo-only match)
12668 "Create a sparse tree according to tags string MATCH.
12669 MATCH can contain positive and negative selection of tags, like
12670 \"+WORK+URGENT-WITHBOSS\".
12671 If optional argument TODO-ONLY is non-nil, only select lines that are
12672 also TODO lines."
12673 (interactive "P")
12674 (org-prepare-agenda-buffers (list (current-buffer)))
12675 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
12677 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
12679 (defvar org-cached-props nil)
12680 (defun org-cached-entry-get (pom property)
12681 (if (or (eq t org-use-property-inheritance)
12682 (and (stringp org-use-property-inheritance)
12683 (string-match org-use-property-inheritance property))
12684 (and (listp org-use-property-inheritance)
12685 (member property org-use-property-inheritance)))
12686 ;; Caching is not possible, check it directly
12687 (org-entry-get pom property 'inherit)
12688 ;; Get all properties, so that we can do complicated checks easily
12689 (cdr (assoc property (or org-cached-props
12690 (setq org-cached-props
12691 (org-entry-properties pom)))))))
12693 (defun org-global-tags-completion-table (&optional files)
12694 "Return the list of all tags in all agenda buffer/files.
12695 Optional FILES argument is a list of files to which can be used
12696 instead of the agenda files."
12697 (save-excursion
12698 (org-uniquify
12699 (delq nil
12700 (apply 'append
12701 (mapcar
12702 (lambda (file)
12703 (set-buffer (find-file-noselect file))
12704 (append (org-get-buffer-tags)
12705 (mapcar (lambda (x) (if (stringp (car-safe x))
12706 (list (car-safe x)) nil))
12707 org-tag-alist)))
12708 (if (and files (car files))
12709 files
12710 (org-agenda-files))))))))
12712 (defun org-make-tags-matcher (match)
12713 "Create the TAGS/TODO matcher form for the selection string MATCH."
12714 ;; todo-only is scoped dynamically into this function, and the function
12715 ;; may change it if the matcher asks for it.
12716 (unless match
12717 ;; Get a new match request, with completion
12718 (let ((org-last-tags-completion-table
12719 (org-global-tags-completion-table)))
12720 (setq match (org-completing-read-no-i
12721 "Match: " 'org-tags-completion-function nil nil nil
12722 'org-tags-history))))
12724 ;; Parse the string and create a lisp form
12725 (let ((match0 match)
12726 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
12727 minus tag mm
12728 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
12729 orterms term orlist re-p str-p level-p level-op time-p
12730 prop-p pn pv po gv rest)
12731 (if (string-match "/+" match)
12732 ;; match contains also a todo-matching request
12733 (progn
12734 (setq tagsmatch (substring match 0 (match-beginning 0))
12735 todomatch (substring match (match-end 0)))
12736 (if (string-match "^!" todomatch)
12737 (setq todo-only t todomatch (substring todomatch 1)))
12738 (if (string-match "^\\s-*$" todomatch)
12739 (setq todomatch nil)))
12740 ;; only matching tags
12741 (setq tagsmatch match todomatch nil))
12743 ;; Make the tags matcher
12744 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
12745 (setq tagsmatcher t)
12746 (setq orterms (org-split-string tagsmatch "|") orlist nil)
12747 (while (setq term (pop orterms))
12748 (while (and (equal (substring term -1) "\\") orterms)
12749 (setq term (concat term "|" (pop orterms)))) ; repair bad split
12750 (while (string-match re term)
12751 (setq rest (substring term (match-end 0))
12752 minus (and (match-end 1)
12753 (equal (match-string 1 term) "-"))
12754 tag (save-match-data (replace-regexp-in-string
12755 "\\\\-" "-"
12756 (match-string 2 term)))
12757 re-p (equal (string-to-char tag) ?{)
12758 level-p (match-end 4)
12759 prop-p (match-end 5)
12760 mm (cond
12761 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
12762 (level-p
12763 (setq level-op (org-op-to-function (match-string 3 term)))
12764 `(,level-op level ,(string-to-number
12765 (match-string 4 term))))
12766 (prop-p
12767 (setq pn (match-string 5 term)
12768 po (match-string 6 term)
12769 pv (match-string 7 term)
12770 re-p (equal (string-to-char pv) ?{)
12771 str-p (equal (string-to-char pv) ?\")
12772 time-p (save-match-data
12773 (string-match "^\"[[<].*[]>]\"$" pv))
12774 pv (if (or re-p str-p) (substring pv 1 -1) pv))
12775 (if time-p (setq pv (org-matcher-time pv)))
12776 (setq po (org-op-to-function po (if time-p 'time str-p)))
12777 (cond
12778 ((equal pn "CATEGORY")
12779 (setq gv '(get-text-property (point) 'org-category)))
12780 ((equal pn "TODO")
12781 (setq gv 'todo))
12783 (setq gv `(org-cached-entry-get nil ,pn))))
12784 (if re-p
12785 (if (eq po 'org<>)
12786 `(not (string-match ,pv (or ,gv "")))
12787 `(string-match ,pv (or ,gv "")))
12788 (if str-p
12789 `(,po (or ,gv "") ,pv)
12790 `(,po (string-to-number (or ,gv ""))
12791 ,(string-to-number pv) ))))
12792 (t `(member ,tag tags-list)))
12793 mm (if minus (list 'not mm) mm)
12794 term rest)
12795 (push mm tagsmatcher))
12796 (push (if (> (length tagsmatcher) 1)
12797 (cons 'and tagsmatcher)
12798 (car tagsmatcher))
12799 orlist)
12800 (setq tagsmatcher nil))
12801 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
12802 (setq tagsmatcher
12803 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
12804 ;; Make the todo matcher
12805 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
12806 (setq todomatcher t)
12807 (setq orterms (org-split-string todomatch "|") orlist nil)
12808 (while (setq term (pop orterms))
12809 (while (string-match re term)
12810 (setq minus (and (match-end 1)
12811 (equal (match-string 1 term) "-"))
12812 kwd (match-string 2 term)
12813 re-p (equal (string-to-char kwd) ?{)
12814 term (substring term (match-end 0))
12815 mm (if re-p
12816 `(string-match ,(substring kwd 1 -1) todo)
12817 (list 'equal 'todo kwd))
12818 mm (if minus (list 'not mm) mm))
12819 (push mm todomatcher))
12820 (push (if (> (length todomatcher) 1)
12821 (cons 'and todomatcher)
12822 (car todomatcher))
12823 orlist)
12824 (setq todomatcher nil))
12825 (setq todomatcher (if (> (length orlist) 1)
12826 (cons 'or orlist) (car orlist))))
12828 ;; Return the string and lisp forms of the matcher
12829 (setq matcher (if todomatcher
12830 (list 'and tagsmatcher todomatcher)
12831 tagsmatcher))
12832 (cons match0 matcher)))
12834 (defun org-op-to-function (op &optional stringp)
12835 "Turn an operator into the appropriate function."
12836 (setq op
12837 (cond
12838 ((equal op "<" ) '(< string< org-time<))
12839 ((equal op ">" ) '(> org-string> org-time>))
12840 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
12841 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
12842 ((member op '("=" "==")) '(= string= org-time=))
12843 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
12844 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
12846 (defun org<> (a b) (not (= a b)))
12847 (defun org-string<= (a b) (or (string= a b) (string< a b)))
12848 (defun org-string>= (a b) (not (string< a b)))
12849 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
12850 (defun org-string<> (a b) (not (string= a b)))
12851 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
12852 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
12853 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
12854 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
12855 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
12856 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
12857 (defun org-2ft (s)
12858 "Convert S to a floating point time.
12859 If S is already a number, just return it. If it is a string, parse
12860 it as a time string and apply `float-time' to it. If S is nil, just return 0."
12861 (cond
12862 ((numberp s) s)
12863 ((stringp s)
12864 (condition-case nil
12865 (float-time (apply 'encode-time (org-parse-time-string s)))
12866 (error 0.)))
12867 (t 0.)))
12869 (defun org-time-today ()
12870 "Time in seconds today at 0:00.
12871 Returns the float number of seconds since the beginning of the
12872 epoch to the beginning of today (00:00)."
12873 (float-time (apply 'encode-time
12874 (append '(0 0 0) (nthcdr 3 (decode-time))))))
12876 (defun org-matcher-time (s)
12877 "Interpret a time comparison value."
12878 (save-match-data
12879 (cond
12880 ((string= s "<now>") (float-time))
12881 ((string= s "<today>") (org-time-today))
12882 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
12883 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
12884 ((string-match "^<\\([-+][0-9]+\\)\\([dwmy]\\)>$" s)
12885 (+ (org-time-today)
12886 (* (string-to-number (match-string 1 s))
12887 (cdr (assoc (match-string 2 s)
12888 '(("d" . 86400.0) ("w" . 604800.0)
12889 ("m" . 2678400.0) ("y" . 31557600.0)))))))
12890 (t (org-2ft s)))))
12892 (defun org-match-any-p (re list)
12893 "Does re match any element of list?"
12894 (setq list (mapcar (lambda (x) (string-match re x)) list))
12895 (delq nil list))
12897 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
12898 (defvar org-tags-overlay (make-overlay 1 1))
12899 (org-detach-overlay org-tags-overlay)
12901 (defun org-get-local-tags-at (&optional pos)
12902 "Get a list of tags defined in the current headline."
12903 (org-get-tags-at pos 'local))
12905 (defun org-get-local-tags ()
12906 "Get a list of tags defined in the current headline."
12907 (org-get-tags-at nil 'local))
12909 (defun org-get-tags-at (&optional pos local)
12910 "Get a list of all headline tags applicable at POS.
12911 POS defaults to point. If tags are inherited, the list contains
12912 the targets in the same sequence as the headlines appear, i.e.
12913 the tags of the current headline come last.
12914 When LOCAL is non-nil, only return tags from the current headline,
12915 ignore inherited ones."
12916 (interactive)
12917 (if (and org-trust-scanner-tags
12918 (or (not pos) (equal pos (point)))
12919 (not local))
12920 org-scanner-tags
12921 (let (tags ltags lastpos parent)
12922 (save-excursion
12923 (save-restriction
12924 (widen)
12925 (goto-char (or pos (point)))
12926 (save-match-data
12927 (catch 'done
12928 (condition-case nil
12929 (progn
12930 (org-back-to-heading t)
12931 (while (not (equal lastpos (point)))
12932 (setq lastpos (point))
12933 (when (looking-at
12934 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
12935 (setq ltags (org-split-string
12936 (org-match-string-no-properties 1) ":"))
12937 (when parent
12938 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
12939 (setq tags (append
12940 (if parent
12941 (org-remove-uninherited-tags ltags)
12942 ltags)
12943 tags)))
12944 (or org-use-tag-inheritance (throw 'done t))
12945 (if local (throw 'done t))
12946 (or (org-up-heading-safe) (error nil))
12947 (setq parent t)))
12948 (error nil)))))
12949 (if local
12950 tags
12951 (append (org-remove-uninherited-tags org-file-tags) tags))))))
12953 (defun org-add-prop-inherited (s)
12954 (add-text-properties 0 (length s) '(inherited t) s)
12957 (defun org-toggle-tag (tag &optional onoff)
12958 "Toggle the tag TAG for the current line.
12959 If ONOFF is `on' or `off', don't toggle but set to this state."
12960 (let (res current)
12961 (save-excursion
12962 (org-back-to-heading t)
12963 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
12964 (point-at-eol) t)
12965 (progn
12966 (setq current (match-string 1))
12967 (replace-match ""))
12968 (setq current ""))
12969 (setq current (nreverse (org-split-string current ":")))
12970 (cond
12971 ((eq onoff 'on)
12972 (setq res t)
12973 (or (member tag current) (push tag current)))
12974 ((eq onoff 'off)
12975 (or (not (member tag current)) (setq current (delete tag current))))
12976 (t (if (member tag current)
12977 (setq current (delete tag current))
12978 (setq res t)
12979 (push tag current))))
12980 (end-of-line 1)
12981 (if current
12982 (progn
12983 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
12984 (org-set-tags nil t))
12985 (delete-horizontal-space))
12986 (run-hooks 'org-after-tags-change-hook))
12987 res))
12989 (defun org-align-tags-here (to-col)
12990 ;; Assumes that this is a headline
12991 (let ((pos (point)) (col (current-column)) ncol tags-l p)
12992 (beginning-of-line 1)
12993 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
12994 (< pos (match-beginning 2)))
12995 (progn
12996 (setq tags-l (- (match-end 2) (match-beginning 2)))
12997 (goto-char (match-beginning 1))
12998 (insert " ")
12999 (delete-region (point) (1+ (match-beginning 2)))
13000 (setq ncol (max (1+ (current-column))
13001 (1+ col)
13002 (if (> to-col 0)
13003 to-col
13004 (- (abs to-col) tags-l))))
13005 (setq p (point))
13006 (insert (make-string (- ncol (current-column)) ?\ ))
13007 (setq ncol (current-column))
13008 (when indent-tabs-mode (tabify p (point-at-eol)))
13009 (org-move-to-column (min ncol col) t))
13010 (goto-char pos))))
13012 (defun org-set-tags-command (&optional arg just-align)
13013 "Call the set-tags command for the current entry."
13014 (interactive "P")
13015 (if (org-on-heading-p)
13016 (org-set-tags arg just-align)
13017 (save-excursion
13018 (org-back-to-heading t)
13019 (org-set-tags arg just-align))))
13021 (defun org-set-tags-to (data)
13022 "Set the tags of the current entry to DATA, replacing the current tags.
13023 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
13024 If DATA is nil or the empty string, any tags will be removed."
13025 (interactive "sTags: ")
13026 (setq data
13027 (cond
13028 ((eq data nil) "")
13029 ((equal data "") "")
13030 ((stringp data)
13031 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
13032 ":"))
13033 ((listp data)
13034 (concat ":" (mapconcat 'identity data ":") ":"))
13035 (t nil)))
13036 (when data
13037 (save-excursion
13038 (org-back-to-heading t)
13039 (when (looking-at org-complex-heading-regexp)
13040 (if (match-end 5)
13041 (progn
13042 (goto-char (match-beginning 5))
13043 (insert data)
13044 (delete-region (point) (point-at-eol))
13045 (org-set-tags nil 'align))
13046 (goto-char (point-at-eol))
13047 (insert " " data)
13048 (org-set-tags nil 'align)))
13049 (beginning-of-line 1)
13050 (if (looking-at ".*?\\([ \t]+\\)$")
13051 (delete-region (match-beginning 1) (match-end 1))))))
13053 (defun org-align-all-tags ()
13054 "Align the tags i all headings."
13055 (interactive)
13056 (save-excursion
13057 (or (ignore-errors (org-back-to-heading t))
13058 (outline-next-heading))
13059 (if (org-on-heading-p)
13060 (org-set-tags t)
13061 (message "No headings"))))
13063 (defvar org-indent-indentation-per-level)
13064 (defun org-set-tags (&optional arg just-align)
13065 "Set the tags for the current headline.
13066 With prefix ARG, realign all tags in headings in the current buffer."
13067 (interactive "P")
13068 (let* ((re org-outline-regexp-bol)
13069 (current (org-get-tags-string))
13070 (col (current-column))
13071 (org-setting-tags t)
13072 table current-tags inherited-tags ; computed below when needed
13073 tags p0 c0 c1 rpl di tc level)
13074 (if arg
13075 (save-excursion
13076 (goto-char (point-min))
13077 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
13078 (while (re-search-forward re nil t)
13079 (org-set-tags nil t)
13080 (end-of-line 1)))
13081 (message "All tags realigned to column %d" org-tags-column))
13082 (if just-align
13083 (setq tags current)
13084 ;; Get a new set of tags from the user
13085 (save-excursion
13086 (setq table (append org-tag-persistent-alist
13087 (or org-tag-alist (org-get-buffer-tags))
13088 (and
13089 org-complete-tags-always-offer-all-agenda-tags
13090 (org-global-tags-completion-table
13091 (org-agenda-files))))
13092 org-last-tags-completion-table table
13093 current-tags (org-split-string current ":")
13094 inherited-tags (nreverse
13095 (nthcdr (length current-tags)
13096 (nreverse (org-get-tags-at))))
13097 tags
13098 (if (or (eq t org-use-fast-tag-selection)
13099 (and org-use-fast-tag-selection
13100 (delq nil (mapcar 'cdr table))))
13101 (org-fast-tag-selection
13102 current-tags inherited-tags table
13103 (if org-fast-tag-selection-include-todo
13104 org-todo-key-alist))
13105 (let ((org-add-colon-after-tag-completion t))
13106 (org-trim
13107 (org-icompleting-read "Tags: "
13108 'org-tags-completion-function
13109 nil nil current 'org-tags-history))))))
13110 (while (string-match "[-+&]+" tags)
13111 ;; No boolean logic, just a list
13112 (setq tags (replace-match ":" t t tags))))
13114 (setq tags (replace-regexp-in-string "[,]" ":" tags))
13116 (if org-tags-sort-function
13117 (setq tags (mapconcat 'identity
13118 (sort (org-split-string
13119 tags (org-re "[^[:alnum:]_@#%]+"))
13120 org-tags-sort-function) ":")))
13122 (if (string-match "\\`[\t ]*\\'" tags)
13123 (setq tags "")
13124 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
13125 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
13127 ;; Insert new tags at the correct column
13128 (beginning-of-line 1)
13129 (setq level (or (and (looking-at org-outline-regexp)
13130 (- (match-end 0) (point) 1))
13132 (cond
13133 ((and (equal current "") (equal tags "")))
13134 ((re-search-forward
13135 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
13136 (point-at-eol) t)
13137 (if (equal tags "")
13138 (setq rpl "")
13139 (goto-char (match-beginning 0))
13140 (setq c0 (current-column)
13141 ;; compute offset for the case of org-indent-mode active
13142 di (if org-indent-mode
13143 (* (1- org-indent-indentation-per-level) (1- level))
13145 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
13146 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
13147 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (length tags))))
13148 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
13149 (replace-match rpl t t)
13150 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
13151 tags)
13152 (t (error "Tags alignment failed")))
13153 (org-move-to-column col)
13154 (unless just-align
13155 (run-hooks 'org-after-tags-change-hook)))))
13157 (defun org-change-tag-in-region (beg end tag off)
13158 "Add or remove TAG for each entry in the region.
13159 This works in the agenda, and also in an org-mode buffer."
13160 (interactive
13161 (list (region-beginning) (region-end)
13162 (let ((org-last-tags-completion-table
13163 (if (org-mode-p)
13164 (org-get-buffer-tags)
13165 (org-global-tags-completion-table))))
13166 (org-icompleting-read
13167 "Tag: " 'org-tags-completion-function nil nil nil
13168 'org-tags-history))
13169 (progn
13170 (message "[s]et or [r]emove? ")
13171 (equal (read-char-exclusive) ?r))))
13172 (if (fboundp 'deactivate-mark) (deactivate-mark))
13173 (let ((agendap (equal major-mode 'org-agenda-mode))
13174 l1 l2 m buf pos newhead (cnt 0))
13175 (goto-char end)
13176 (setq l2 (1- (org-current-line)))
13177 (goto-char beg)
13178 (setq l1 (org-current-line))
13179 (loop for l from l1 to l2 do
13180 (org-goto-line l)
13181 (setq m (get-text-property (point) 'org-hd-marker))
13182 (when (or (and (org-mode-p) (org-on-heading-p))
13183 (and agendap m))
13184 (setq buf (if agendap (marker-buffer m) (current-buffer))
13185 pos (if agendap m (point)))
13186 (with-current-buffer buf
13187 (save-excursion
13188 (save-restriction
13189 (goto-char pos)
13190 (setq cnt (1+ cnt))
13191 (org-toggle-tag tag (if off 'off 'on))
13192 (setq newhead (org-get-heading)))))
13193 (and agendap (org-agenda-change-all-lines newhead m))))
13194 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
13196 (defun org-tags-completion-function (string predicate &optional flag)
13197 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
13198 (confirm (lambda (x) (stringp (car x)))))
13199 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
13200 (setq s1 (match-string 1 string)
13201 s2 (match-string 2 string))
13202 (setq s1 "" s2 string))
13203 (cond
13204 ((eq flag nil)
13205 ;; try completion
13206 (setq rtn (try-completion s2 ctable confirm))
13207 (if (stringp rtn)
13208 (setq rtn
13209 (concat s1 s2 (substring rtn (length s2))
13210 (if (and org-add-colon-after-tag-completion
13211 (assoc rtn ctable))
13212 ":" ""))))
13213 rtn)
13214 ((eq flag t)
13215 ;; all-completions
13216 (all-completions s2 ctable confirm)
13218 ((eq flag 'lambda)
13219 ;; exact match?
13220 (assoc s2 ctable)))
13223 (defun org-fast-tag-insert (kwd tags face &optional end)
13224 "Insert KDW, and the TAGS, the latter with face FACE. Also insert END."
13225 (insert (format "%-12s" (concat kwd ":"))
13226 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
13227 (or end "")))
13229 (defun org-fast-tag-show-exit (flag)
13230 (save-excursion
13231 (org-goto-line 3)
13232 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
13233 (replace-match ""))
13234 (when flag
13235 (end-of-line 1)
13236 (org-move-to-column (- (window-width) 19) t)
13237 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
13239 (defun org-set-current-tags-overlay (current prefix)
13240 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
13241 (if (featurep 'xemacs)
13242 (org-overlay-display org-tags-overlay (concat prefix s)
13243 'secondary-selection)
13244 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
13245 (org-overlay-display org-tags-overlay (concat prefix s)))))
13247 (defvar org-last-tag-selection-key nil)
13248 (defun org-fast-tag-selection (current inherited table &optional todo-table)
13249 "Fast tag selection with single keys.
13250 CURRENT is the current list of tags in the headline, INHERITED is the
13251 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
13252 possibly with grouping information. TODO-TABLE is a similar table with
13253 TODO keywords, should these have keys assigned to them.
13254 If the keys are nil, a-z are automatically assigned.
13255 Returns the new tags string, or nil to not change the current settings."
13256 (let* ((fulltable (append table todo-table))
13257 (maxlen (apply 'max (mapcar
13258 (lambda (x)
13259 (if (stringp (car x)) (string-width (car x)) 0))
13260 fulltable)))
13261 (buf (current-buffer))
13262 (expert (eq org-fast-tag-selection-single-key 'expert))
13263 (buffer-tags nil)
13264 (fwidth (+ maxlen 3 1 3))
13265 (ncol (/ (- (window-width) 4) fwidth))
13266 (i-face 'org-done)
13267 (c-face 'org-todo)
13268 tg cnt e c char c1 c2 ntable tbl rtn
13269 ov-start ov-end ov-prefix
13270 (exit-after-next org-fast-tag-selection-single-key)
13271 (done-keywords org-done-keywords)
13272 groups ingroup)
13273 (save-excursion
13274 (beginning-of-line 1)
13275 (if (looking-at
13276 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
13277 (setq ov-start (match-beginning 1)
13278 ov-end (match-end 1)
13279 ov-prefix "")
13280 (setq ov-start (1- (point-at-eol))
13281 ov-end (1+ ov-start))
13282 (skip-chars-forward "^\n\r")
13283 (setq ov-prefix
13284 (concat
13285 (buffer-substring (1- (point)) (point))
13286 (if (> (current-column) org-tags-column)
13288 (make-string (- org-tags-column (current-column)) ?\ ))))))
13289 (move-overlay org-tags-overlay ov-start ov-end)
13290 (save-window-excursion
13291 (if expert
13292 (set-buffer (get-buffer-create " *Org tags*"))
13293 (delete-other-windows)
13294 (split-window-vertically)
13295 (org-switch-to-buffer-other-window (get-buffer-create " *Org tags*")))
13296 (erase-buffer)
13297 (org-set-local 'org-done-keywords done-keywords)
13298 (org-fast-tag-insert "Inherited" inherited i-face "\n")
13299 (org-fast-tag-insert "Current" current c-face "\n\n")
13300 (org-fast-tag-show-exit exit-after-next)
13301 (org-set-current-tags-overlay current ov-prefix)
13302 (setq tbl fulltable char ?a cnt 0)
13303 (while (setq e (pop tbl))
13304 (cond
13305 ((equal (car e) :startgroup)
13306 (push '() groups) (setq ingroup t)
13307 (when (not (= cnt 0))
13308 (setq cnt 0)
13309 (insert "\n"))
13310 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
13311 ((equal (car e) :endgroup)
13312 (setq ingroup nil cnt 0)
13313 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
13314 ((equal e '(:newline))
13315 (when (not (= cnt 0))
13316 (setq cnt 0)
13317 (insert "\n")
13318 (setq e (car tbl))
13319 (while (equal (car tbl) '(:newline))
13320 (insert "\n")
13321 (setq tbl (cdr tbl)))))
13323 (setq tg (copy-sequence (car e)) c2 nil)
13324 (if (cdr e)
13325 (setq c (cdr e))
13326 ;; automatically assign a character.
13327 (setq c1 (string-to-char
13328 (downcase (substring
13329 tg (if (= (string-to-char tg) ?@) 1 0)))))
13330 (if (or (rassoc c1 ntable) (rassoc c1 table))
13331 (while (or (rassoc char ntable) (rassoc char table))
13332 (setq char (1+ char)))
13333 (setq c2 c1))
13334 (setq c (or c2 char)))
13335 (if ingroup (push tg (car groups)))
13336 (setq tg (org-add-props tg nil 'face
13337 (cond
13338 ((not (assoc tg table))
13339 (org-get-todo-face tg))
13340 ((member tg current) c-face)
13341 ((member tg inherited) i-face)
13342 (t nil))))
13343 (if (and (= cnt 0) (not ingroup)) (insert " "))
13344 (insert "[" c "] " tg (make-string
13345 (- fwidth 4 (length tg)) ?\ ))
13346 (push (cons tg c) ntable)
13347 (when (= (setq cnt (1+ cnt)) ncol)
13348 (insert "\n")
13349 (if ingroup (insert " "))
13350 (setq cnt 0)))))
13351 (setq ntable (nreverse ntable))
13352 (insert "\n")
13353 (goto-char (point-min))
13354 (if (not expert) (org-fit-window-to-buffer))
13355 (setq rtn
13356 (catch 'exit
13357 (while t
13358 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
13359 (if (not groups) "no " "")
13360 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
13361 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13362 (setq org-last-tag-selection-key c)
13363 (cond
13364 ((= c ?\r) (throw 'exit t))
13365 ((= c ?!)
13366 (setq groups (not groups))
13367 (goto-char (point-min))
13368 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
13369 ((= c ?\C-c)
13370 (if (not expert)
13371 (org-fast-tag-show-exit
13372 (setq exit-after-next (not exit-after-next)))
13373 (setq expert nil)
13374 (delete-other-windows)
13375 (set-window-buffer (split-window-vertically) " *Org tags*")
13376 (org-switch-to-buffer-other-window " *Org tags*")
13377 (org-fit-window-to-buffer)))
13378 ((or (= c ?\C-g)
13379 (and (= c ?q) (not (rassoc c ntable))))
13380 (org-detach-overlay org-tags-overlay)
13381 (setq quit-flag t))
13382 ((= c ?\ )
13383 (setq current nil)
13384 (if exit-after-next (setq exit-after-next 'now)))
13385 ((= c ?\t)
13386 (condition-case nil
13387 (setq tg (org-icompleting-read
13388 "Tag: "
13389 (or buffer-tags
13390 (with-current-buffer buf
13391 (org-get-buffer-tags)))))
13392 (quit (setq tg "")))
13393 (when (string-match "\\S-" tg)
13394 (add-to-list 'buffer-tags (list tg))
13395 (if (member tg current)
13396 (setq current (delete tg current))
13397 (push tg current)))
13398 (if exit-after-next (setq exit-after-next 'now)))
13399 ((setq e (rassoc c todo-table) tg (car e))
13400 (with-current-buffer buf
13401 (save-excursion (org-todo tg)))
13402 (if exit-after-next (setq exit-after-next 'now)))
13403 ((setq e (rassoc c ntable) tg (car e))
13404 (if (member tg current)
13405 (setq current (delete tg current))
13406 (loop for g in groups do
13407 (if (member tg g)
13408 (mapc (lambda (x)
13409 (setq current (delete x current)))
13410 g)))
13411 (push tg current))
13412 (if exit-after-next (setq exit-after-next 'now))))
13414 ;; Create a sorted list
13415 (setq current
13416 (sort current
13417 (lambda (a b)
13418 (assoc b (cdr (memq (assoc a ntable) ntable))))))
13419 (if (eq exit-after-next 'now) (throw 'exit t))
13420 (goto-char (point-min))
13421 (beginning-of-line 2)
13422 (delete-region (point) (point-at-eol))
13423 (org-fast-tag-insert "Current" current c-face)
13424 (org-set-current-tags-overlay current ov-prefix)
13425 (while (re-search-forward
13426 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
13427 (setq tg (match-string 1))
13428 (add-text-properties
13429 (match-beginning 1) (match-end 1)
13430 (list 'face
13431 (cond
13432 ((member tg current) c-face)
13433 ((member tg inherited) i-face)
13434 (t (get-text-property (match-beginning 1) 'face))))))
13435 (goto-char (point-min)))))
13436 (org-detach-overlay org-tags-overlay)
13437 (if rtn
13438 (mapconcat 'identity current ":")
13439 nil))))
13441 (defun org-get-tags-string ()
13442 "Get the TAGS string in the current headline."
13443 (unless (org-on-heading-p t)
13444 (error "Not on a heading"))
13445 (save-excursion
13446 (beginning-of-line 1)
13447 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
13448 (org-match-string-no-properties 1)
13449 "")))
13451 (defun org-get-tags ()
13452 "Get the list of tags specified in the current headline."
13453 (org-split-string (org-get-tags-string) ":"))
13455 (defun org-get-buffer-tags ()
13456 "Get a table of all tags used in the buffer, for completion."
13457 (let (tags)
13458 (save-excursion
13459 (goto-char (point-min))
13460 (while (re-search-forward
13461 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
13462 (when (equal (char-after (point-at-bol 0)) ?*)
13463 (mapc (lambda (x) (add-to-list 'tags x))
13464 (org-split-string (org-match-string-no-properties 1) ":")))))
13465 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
13466 (mapcar 'list tags)))
13468 ;;;; The mapping API
13470 ;;;###autoload
13471 (defun org-map-entries (func &optional match scope &rest skip)
13472 "Call FUNC at each headline selected by MATCH in SCOPE.
13474 FUNC is a function or a lisp form. The function will be called without
13475 arguments, with the cursor positioned at the beginning of the headline.
13476 The return values of all calls to the function will be collected and
13477 returned as a list.
13479 The call to FUNC will be wrapped into a save-excursion form, so FUNC
13480 does not need to preserve point. After evaluation, the cursor will be
13481 moved to the end of the line (presumably of the headline of the
13482 processed entry) and search continues from there. Under some
13483 circumstances, this may not produce the wanted results. For example,
13484 if you have removed (e.g. archived) the current (sub)tree it could
13485 mean that the next entry will be skipped entirely. In such cases, you
13486 can specify the position from where search should continue by making
13487 FUNC set the variable `org-map-continue-from' to the desired buffer
13488 position.
13490 MATCH is a tags/property/todo match as it is used in the agenda tags view.
13491 Only headlines that are matched by this query will be considered during
13492 the iteration. When MATCH is nil or t, all headlines will be
13493 visited by the iteration.
13495 SCOPE determines the scope of this command. It can be any of:
13497 nil The current buffer, respecting the restriction if any
13498 tree The subtree started with the entry at point
13499 region The entries within the active region, if any
13500 file The current buffer, without restriction
13501 file-with-archives
13502 The current buffer, and any archives associated with it
13503 agenda All agenda files
13504 agenda-with-archives
13505 All agenda files with any archive files associated with them
13506 \(file1 file2 ...)
13507 If this is a list, all files in the list will be scanned
13509 The remaining args are treated as settings for the skipping facilities of
13510 the scanner. The following items can be given here:
13512 archive skip trees with the archive tag.
13513 comment skip trees with the COMMENT keyword
13514 function or Emacs Lisp form:
13515 will be used as value for `org-agenda-skip-function', so whenever
13516 the function returns t, FUNC will not be called for that
13517 entry and search will continue from the point where the
13518 function leaves it.
13520 If your function needs to retrieve the tags including inherited tags
13521 at the *current* entry, you can use the value of the variable
13522 `org-scanner-tags' which will be much faster than getting the value
13523 with `org-get-tags-at'. If your function gets properties with
13524 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
13525 to t around the call to `org-entry-properties' to get the same speedup.
13526 Note that if your function moves around to retrieve tags and properties at
13527 a *different* entry, you cannot use these techniques."
13528 (let* ((org-agenda-archives-mode nil) ; just to make sure
13529 (org-agenda-skip-archived-trees (memq 'archive skip))
13530 (org-agenda-skip-comment-trees (memq 'comment skip))
13531 (org-agenda-skip-function
13532 (car (org-delete-all '(comment archive) skip)))
13533 (org-tags-match-list-sublevels t)
13534 matcher file res
13535 org-todo-keywords-for-agenda
13536 org-done-keywords-for-agenda
13537 org-todo-keyword-alist-for-agenda
13538 org-drawers-for-agenda
13539 org-tag-alist-for-agenda)
13541 (cond
13542 ((eq match t) (setq matcher t))
13543 ((eq match nil) (setq matcher t))
13544 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
13546 (save-excursion
13547 (save-restriction
13548 (cond ((eq scope 'tree)
13549 (org-back-to-heading t)
13550 (org-narrow-to-subtree)
13551 (setq scope nil))
13552 ((and (eq scope 'region) (org-region-active-p))
13553 (narrow-to-region (region-beginning) (region-end))
13554 (setq scope nil)))
13556 (if (not scope)
13557 (progn
13558 (org-prepare-agenda-buffers
13559 (list (buffer-file-name (current-buffer))))
13560 (setq res (org-scan-tags func matcher)))
13561 ;; Get the right scope
13562 (cond
13563 ((and scope (listp scope) (symbolp (car scope)))
13564 (setq scope (eval scope)))
13565 ((eq scope 'agenda)
13566 (setq scope (org-agenda-files t)))
13567 ((eq scope 'agenda-with-archives)
13568 (setq scope (org-agenda-files t))
13569 (setq scope (org-add-archive-files scope)))
13570 ((eq scope 'file)
13571 (setq scope (list (buffer-file-name))))
13572 ((eq scope 'file-with-archives)
13573 (setq scope (org-add-archive-files (list (buffer-file-name))))))
13574 (org-prepare-agenda-buffers scope)
13575 (while (setq file (pop scope))
13576 (with-current-buffer (org-find-base-buffer-visiting file)
13577 (save-excursion
13578 (save-restriction
13579 (widen)
13580 (goto-char (point-min))
13581 (setq res (append res (org-scan-tags func matcher))))))))))
13582 res))
13584 ;;;; Properties
13586 ;;; Setting and retrieving properties
13588 (defconst org-special-properties
13589 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "CLOSED" "PRIORITY"
13590 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE" "CLOCKSUM")
13591 "The special properties valid in Org-mode.
13593 These are properties that are not defined in the property drawer,
13594 but in some other way.")
13596 (defconst org-default-properties
13597 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
13598 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
13599 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
13600 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
13601 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE"
13602 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
13603 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
13604 "Some properties that are used by Org-mode for various purposes.
13605 Being in this list makes sure that they are offered for completion.")
13607 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
13608 "Regular expression matching the first line of a property drawer.")
13610 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
13611 "Regular expression matching the last line of a property drawer.")
13613 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
13614 "Regular expression matching the first line of a property drawer.")
13616 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
13617 "Regular expression matching the first line of a property drawer.")
13619 (defconst org-property-drawer-re
13620 (concat "\\(" org-property-start-re "\\)[^\000]*\\("
13621 org-property-end-re "\\)\n?")
13622 "Matches an entire property drawer.")
13624 (defconst org-clock-drawer-re
13625 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*\\("
13626 org-property-end-re "\\)\n?")
13627 "Matches an entire clock drawer.")
13629 (defsubst org-re-property (property)
13630 "Return a regexp matching PROPERTY.
13631 Match group 1 will be set to the value "
13632 (concat "^[ \t]*:" (regexp-quote property) ":[ \t]*\\(\\S-.*\\)"))
13634 (defun org-property-action ()
13635 "Do an action on properties."
13636 (interactive)
13637 (let (c)
13638 (org-at-property-p)
13639 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
13640 (setq c (read-char-exclusive))
13641 (cond
13642 ((equal c ?s)
13643 (call-interactively 'org-set-property))
13644 ((equal c ?d)
13645 (call-interactively 'org-delete-property))
13646 ((equal c ?D)
13647 (call-interactively 'org-delete-property-globally))
13648 ((equal c ?c)
13649 (call-interactively 'org-compute-property-at-point))
13650 (t (error "No such property action %c" c)))))
13652 (defun org-set-effort (&optional value)
13653 "Set the effort property of the current entry.
13654 With numerical prefix arg, use the nth allowed value, 0 stands for the 10th
13655 allowed value."
13656 (interactive "P")
13657 (if (equal value 0) (setq value 10))
13658 (let* ((completion-ignore-case t)
13659 (prop org-effort-property)
13660 (cur (org-entry-get nil prop))
13661 (allowed (org-property-get-allowed-values nil prop 'table))
13662 (existing (mapcar 'list (org-property-values prop)))
13664 (val (cond
13665 ((stringp value) value)
13666 ((and allowed (integerp value))
13667 (or (car (nth (1- value) allowed))
13668 (car (org-last allowed))))
13669 (allowed
13670 (message "Select 1-9,0, [RET%s]: %s"
13671 (if cur (concat "=" cur) "")
13672 (mapconcat 'car allowed " "))
13673 (setq rpl (read-char-exclusive))
13674 (if (equal rpl ?\r)
13676 (setq rpl (- rpl ?0))
13677 (if (equal rpl 0) (setq rpl 10))
13678 (if (and (> rpl 0) (<= rpl (length allowed)))
13679 (car (nth (1- rpl) allowed))
13680 (org-completing-read "Effort: " allowed nil))))
13682 (let (org-completion-use-ido org-completion-use-iswitchb)
13683 (org-completing-read
13684 (concat "Effort " (if (and cur (string-match "\\S-" cur))
13685 (concat "[" cur "]") "")
13686 ": ")
13687 existing nil nil "" nil cur))))))
13688 (unless (equal (org-entry-get nil prop) val)
13689 (org-entry-put nil prop val))
13690 (message "%s is now %s" prop val)))
13692 (defun org-at-property-p ()
13693 "Is cursor inside a property drawer?"
13694 (save-excursion
13695 (beginning-of-line 1)
13696 (when (looking-at (org-re "^[ \t]*\\(:\\([[:alpha:]][[:alnum:]_-]*\\):\\)[ \t]*\\(.*\\)"))
13697 (save-match-data ;; Used by calling procedures
13698 (let ((p (point))
13699 (range (unless (org-before-first-heading-p)
13700 (org-get-property-block))))
13701 (and range (<= (car range) p) (< p (cdr range))))))))
13703 (defun org-get-property-block (&optional beg end force)
13704 "Return the (beg . end) range of the body of the property drawer.
13705 BEG and END can be beginning and end of subtree, if not given
13706 they will be found.
13707 If the drawer does not exist and FORCE is non-nil, create the drawer."
13708 (catch 'exit
13709 (save-excursion
13710 (let* ((beg (or beg (progn (org-back-to-heading t) (point))))
13711 (end (or end (progn (outline-next-heading) (point)))))
13712 (goto-char beg)
13713 (if (re-search-forward org-property-start-re end t)
13714 (setq beg (1+ (match-end 0)))
13715 (if force
13716 (save-excursion
13717 (org-insert-property-drawer)
13718 (setq end (progn (outline-next-heading) (point))))
13719 (throw 'exit nil))
13720 (goto-char beg)
13721 (if (re-search-forward org-property-start-re end t)
13722 (setq beg (1+ (match-end 0)))))
13723 (if (re-search-forward org-property-end-re end t)
13724 (setq end (match-beginning 0))
13725 (or force (throw 'exit nil))
13726 (goto-char beg)
13727 (setq end beg)
13728 (org-indent-line-function)
13729 (insert ":END:\n"))
13730 (cons beg end)))))
13732 (defun org-entry-properties (&optional pom which specific)
13733 "Get all properties of the entry at point-or-marker POM.
13734 This includes the TODO keyword, the tags, time strings for deadline,
13735 scheduled, and clocking, and any additional properties defined in the
13736 entry. The return value is an alist, keys may occur multiple times
13737 if the property key was used several times.
13738 POM may also be nil, in which case the current entry is used.
13739 If WHICH is nil or `all', get all properties. If WHICH is
13740 `special' or `standard', only get that subclass. If WHICH
13741 is a string only get exactly this property. SPECIFIC can be a string, the
13742 specific property we are interested in. Specifying it can speed
13743 things up because then unnecessary parsing is avoided."
13744 (setq which (or which 'all))
13745 (org-with-point-at pom
13746 (let ((clockstr (substring org-clock-string 0 -1))
13747 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY" "BLOCKED"))
13748 (case-fold-search nil)
13749 beg end range props sum-props key key1 value string clocksum)
13750 (save-excursion
13751 (when (condition-case nil
13752 (and (org-mode-p) (org-back-to-heading t))
13753 (error nil))
13754 (setq beg (point))
13755 (setq sum-props (get-text-property (point) 'org-summaries))
13756 (setq clocksum (get-text-property (point) :org-clock-minutes))
13757 (outline-next-heading)
13758 (setq end (point))
13759 (when (memq which '(all special))
13760 ;; Get the special properties, like TODO and tags
13761 (goto-char beg)
13762 (when (and (or (not specific) (string= specific "TODO"))
13763 (looking-at org-todo-line-regexp) (match-end 2))
13764 (push (cons "TODO" (org-match-string-no-properties 2)) props))
13765 (when (and (or (not specific) (string= specific "PRIORITY"))
13766 (looking-at org-priority-regexp))
13767 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
13768 (when (or (not specific) (string= specific "FILE"))
13769 (push (cons "FILE" buffer-file-name) props))
13770 (when (and (or (not specific) (string= specific "TAGS"))
13771 (setq value (org-get-tags-string))
13772 (string-match "\\S-" value))
13773 (push (cons "TAGS" value) props))
13774 (when (and (or (not specific) (string= specific "ALLTAGS"))
13775 (setq value (org-get-tags-at)))
13776 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":")
13777 ":"))
13778 props))
13779 (when (or (not specific) (string= specific "BLOCKED"))
13780 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props))
13781 (when (or (not specific)
13782 (member specific
13783 '("SCHEDULED" "DEADLINE" "CLOCK" "CLOSED"
13784 "TIMESTAMP" "TIMESTAMP_IA")))
13785 (catch 'match
13786 (while (re-search-forward org-maybe-keyword-time-regexp end t)
13787 (setq key (if (match-end 1)
13788 (substring (org-match-string-no-properties 1)
13789 0 -1))
13790 string (if (equal key clockstr)
13791 (org-no-properties
13792 (org-trim
13793 (buffer-substring
13794 (match-beginning 3) (goto-char
13795 (point-at-eol)))))
13796 (substring (org-match-string-no-properties 3)
13797 1 -1)))
13798 ;; Get the correct property name from the key. This is
13799 ;; necessary if the user has configured time keywords.
13800 (setq key1 (concat key ":"))
13801 (cond
13802 ((not key)
13803 (setq key
13804 (if (= (char-after (match-beginning 3)) ?\[)
13805 "TIMESTAMP_IA" "TIMESTAMP")))
13806 ((equal key1 org-scheduled-string) (setq key "SCHEDULED"))
13807 ((equal key1 org-deadline-string) (setq key "DEADLINE"))
13808 ((equal key1 org-closed-string) (setq key "CLOSED"))
13809 ((equal key1 org-clock-string) (setq key "CLOCK")))
13810 (if (and specific (equal key specific) (not (equal key "CLOCK")))
13811 (progn
13812 (push (cons key string) props)
13813 ;; no need to search further if match is found
13814 (throw 'match t))
13815 (when (or (equal key "CLOCK") (not (assoc key props)))
13816 (push (cons key string) props))))))
13819 (when (memq which '(all standard))
13820 ;; Get the standard properties, like :PROP: ...
13821 (setq range (org-get-property-block beg end))
13822 (when range
13823 (goto-char (car range))
13824 (while (re-search-forward
13825 (org-re "^[ \t]*:\\([[:alpha:]][[:alnum:]_-]*\\):[ \t]*\\(\\S-.*\\)?")
13826 (cdr range) t)
13827 (setq key (org-match-string-no-properties 1)
13828 value (org-trim (or (org-match-string-no-properties 2) "")))
13829 (unless (member key excluded)
13830 (push (cons key (or value "")) props)))))
13831 (if clocksum
13832 (push (cons "CLOCKSUM"
13833 (org-columns-number-to-string (/ (float clocksum) 60.)
13834 'add_times))
13835 props))
13836 (unless (assoc "CATEGORY" props)
13837 (push (cons "CATEGORY" (org-get-category)) props))
13838 (append sum-props (nreverse props)))))))
13840 (defun org-entry-get (pom property &optional inherit literal-nil)
13841 "Get value of PROPERTY for entry at point-or-marker POM.
13842 If INHERIT is non-nil and the entry does not have the property,
13843 then also check higher levels of the hierarchy.
13844 If INHERIT is the symbol `selective', use inheritance only if the setting
13845 in `org-use-property-inheritance' selects PROPERTY for inheritance.
13846 If the property is present but empty, the return value is the empty string.
13847 If the property is not present at all, nil is returned.
13849 If LITERAL-NIL is set, return the string value \"nil\" as a string,
13850 do not interpret it as the list atom nil. This is used for inheritance
13851 when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
13852 (org-with-point-at pom
13853 (if (and inherit (if (eq inherit 'selective)
13854 (org-property-inherit-p property)
13856 (org-entry-get-with-inheritance property literal-nil)
13857 (if (member property org-special-properties)
13858 ;; We need a special property. Use `org-entry-properties' to
13859 ;; retrieve it, but specify the wanted property
13860 (cdr (assoc property (org-entry-properties nil 'special property)))
13861 (let ((range (unless (org-before-first-heading-p)
13862 (org-get-property-block))))
13863 (if (and range
13864 (goto-char (car range))
13865 (re-search-forward
13866 (org-re-property property)
13867 (cdr range) t))
13868 ;; Found the property, return it.
13869 (if (match-end 1)
13870 (if literal-nil
13871 (org-match-string-no-properties 1)
13872 (org-not-nil (org-match-string-no-properties 1)))
13873 "")))))))
13875 (defun org-property-or-variable-value (var &optional inherit)
13876 "Check if there is a property fixing the value of VAR.
13877 If yes, return this value. If not, return the current value of the variable."
13878 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
13879 (if (and prop (stringp prop) (string-match "\\S-" prop))
13880 (read prop)
13881 (symbol-value var))))
13883 (defun org-entry-delete (pom property)
13884 "Delete the property PROPERTY from entry at point-or-marker POM."
13885 (org-with-point-at pom
13886 (if (member property org-special-properties)
13887 nil ; cannot delete these properties.
13888 (let ((range (org-get-property-block)))
13889 (if (and range
13890 (goto-char (car range))
13891 (re-search-forward
13892 (org-re-property property)
13893 (cdr range) t))
13894 (progn
13895 (delete-region (match-beginning 0) (1+ (point-at-eol)))
13897 nil)))))
13899 ;; Multi-values properties are properties that contain multiple values
13900 ;; These values are assumed to be single words, separated by whitespace.
13901 (defun org-entry-add-to-multivalued-property (pom property value)
13902 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
13903 (let* ((old (org-entry-get pom property))
13904 (values (and old (org-split-string old "[ \t]"))))
13905 (setq value (org-entry-protect-space value))
13906 (unless (member value values)
13907 (setq values (cons value values))
13908 (org-entry-put pom property
13909 (mapconcat 'identity values " ")))))
13911 (defun org-entry-remove-from-multivalued-property (pom property value)
13912 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
13913 (let* ((old (org-entry-get pom property))
13914 (values (and old (org-split-string old "[ \t]"))))
13915 (setq value (org-entry-protect-space value))
13916 (when (member value values)
13917 (setq values (delete value values))
13918 (org-entry-put pom property
13919 (mapconcat 'identity values " ")))))
13921 (defun org-entry-member-in-multivalued-property (pom property value)
13922 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
13923 (let* ((old (org-entry-get pom property))
13924 (values (and old (org-split-string old "[ \t]"))))
13925 (setq value (org-entry-protect-space value))
13926 (member value values)))
13928 (defun org-entry-get-multivalued-property (pom property)
13929 "Return a list of values in a multivalued property."
13930 (let* ((value (org-entry-get pom property))
13931 (values (and value (org-split-string value "[ \t]"))))
13932 (mapcar 'org-entry-restore-space values)))
13934 (defun org-entry-put-multivalued-property (pom property &rest values)
13935 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
13936 VALUES should be a list of strings. Spaces will be protected."
13937 (org-entry-put pom property
13938 (mapconcat 'org-entry-protect-space values " "))
13939 (let* ((value (org-entry-get pom property))
13940 (values (and value (org-split-string value "[ \t]"))))
13941 (mapcar 'org-entry-restore-space values)))
13943 (defun org-entry-protect-space (s)
13944 "Protect spaces and newline in string S."
13945 (while (string-match " " s)
13946 (setq s (replace-match "%20" t t s)))
13947 (while (string-match "\n" s)
13948 (setq s (replace-match "%0A" t t s)))
13951 (defun org-entry-restore-space (s)
13952 "Restore spaces and newline in string S."
13953 (while (string-match "%20" s)
13954 (setq s (replace-match " " t t s)))
13955 (while (string-match "%0A" s)
13956 (setq s (replace-match "\n" t t s)))
13959 (defvar org-entry-property-inherited-from (make-marker)
13960 "Marker pointing to the entry from where a property was inherited.
13961 Each call to `org-entry-get-with-inheritance' will set this marker to the
13962 location of the entry where the inheritance search matched. If there was
13963 no match, the marker will point nowhere.
13964 Note that also `org-entry-get' calls this function, if the INHERIT flag
13965 is set.")
13967 (defun org-entry-get-with-inheritance (property &optional literal-nil)
13968 "Get entry property, and search higher levels if not present.
13969 The search will stop at the first ancestor which has the property defined.
13970 If the value found is \"nil\", return nil to show that the property
13971 should be considered as undefined (this is the meaning of nil here).
13972 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
13973 (move-marker org-entry-property-inherited-from nil)
13974 (let (tmp)
13975 (unless (org-before-first-heading-p)
13976 (save-excursion
13977 (save-restriction
13978 (widen)
13979 (catch 'ex
13980 (while t
13981 (when (setq tmp (org-entry-get nil property nil 'literal-nil))
13982 (org-back-to-heading t)
13983 (move-marker org-entry-property-inherited-from (point))
13984 (throw 'ex tmp))
13985 (or (org-up-heading-safe) (throw 'ex nil)))))))
13986 (setq tmp (or tmp
13987 (cdr (assoc property org-file-properties))
13988 (cdr (assoc property org-global-properties))
13989 (cdr (assoc property org-global-properties-fixed))))
13990 (if literal-nil tmp (org-not-nil tmp))))
13992 (defvar org-property-changed-functions nil
13993 "Hook called when the value of a property has changed.
13994 Each hook function should accept two arguments, the name of the property
13995 and the new value.")
13997 (defun org-entry-put (pom property value)
13998 "Set PROPERTY to VALUE for entry at point-or-marker POM."
13999 (org-with-point-at pom
14000 (org-back-to-heading t)
14001 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
14002 range)
14003 (cond
14004 ((equal property "TODO")
14005 (when (and (stringp value) (string-match "\\S-" value)
14006 (not (member value org-todo-keywords-1)))
14007 (error "\"%s\" is not a valid TODO state" value))
14008 (if (or (not value)
14009 (not (string-match "\\S-" value)))
14010 (setq value 'none))
14011 (org-todo value)
14012 (org-set-tags nil 'align))
14013 ((equal property "PRIORITY")
14014 (org-priority (if (and value (stringp value) (string-match "\\S-" value))
14015 (string-to-char value) ?\ ))
14016 (org-set-tags nil 'align))
14017 ((equal property "SCHEDULED")
14018 (if (re-search-forward org-scheduled-time-regexp end t)
14019 (cond
14020 ((eq value 'earlier) (org-timestamp-change -1 'day))
14021 ((eq value 'later) (org-timestamp-change 1 'day))
14022 (t (call-interactively 'org-schedule)))
14023 (call-interactively 'org-schedule)))
14024 ((equal property "DEADLINE")
14025 (if (re-search-forward org-deadline-time-regexp end t)
14026 (cond
14027 ((eq value 'earlier) (org-timestamp-change -1 'day))
14028 ((eq value 'later) (org-timestamp-change 1 'day))
14029 (t (call-interactively 'org-deadline)))
14030 (call-interactively 'org-deadline)))
14031 ((member property org-special-properties)
14032 (error "The %s property can not yet be set with `org-entry-put'"
14033 property))
14034 (t ; a non-special property
14035 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
14036 (setq range (org-get-property-block beg end 'force))
14037 (goto-char (car range))
14038 (if (re-search-forward
14039 (org-re-property property) (cdr range) t)
14040 (progn
14041 (delete-region (match-beginning 0) (match-end 0))
14042 (goto-char (match-beginning 0)))
14043 (goto-char (cdr range))
14044 (insert "\n")
14045 (backward-char 1)
14046 (org-indent-line-function))
14047 (insert ":" property ":")
14048 (and value (insert " " value))
14049 (org-indent-line-function)))))
14050 (run-hook-with-args 'org-property-changed-functions property value)))
14052 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
14053 "Get all property keys in the current buffer.
14054 With INCLUDE-SPECIALS, also list the special properties that reflect things
14055 like tags and TODO state.
14056 With INCLUDE-DEFAULTS, also include properties that has special meaning
14057 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING
14058 and others.
14059 With INCLUDE-COLUMNS, also include property names given in COLUMN
14060 formats in the current buffer."
14061 (let (rtn range cfmt s p)
14062 (save-excursion
14063 (save-restriction
14064 (widen)
14065 (goto-char (point-min))
14066 (while (re-search-forward org-property-start-re nil t)
14067 (setq range (org-get-property-block))
14068 (goto-char (car range))
14069 (while (re-search-forward
14070 (org-re "^[ \t]*:\\([-[:alnum:]_]+\\):")
14071 (cdr range) t)
14072 (add-to-list 'rtn (org-match-string-no-properties 1)))
14073 (outline-next-heading))))
14075 (when include-specials
14076 (setq rtn (append org-special-properties rtn)))
14078 (when include-defaults
14079 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties)
14080 (add-to-list 'rtn org-effort-property))
14082 (when include-columns
14083 (save-excursion
14084 (save-restriction
14085 (widen)
14086 (goto-char (point-min))
14087 (while (re-search-forward
14088 "^\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
14089 nil t)
14090 (setq cfmt (match-string 2) s 0)
14091 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
14092 cfmt s)
14093 (setq s (match-end 0)
14094 p (match-string 1 cfmt))
14095 (unless (or (equal p "ITEM")
14096 (member p org-special-properties))
14097 (add-to-list 'rtn (match-string 1 cfmt))))))))
14099 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
14101 (defun org-property-values (key)
14102 "Return a list of all values of property KEY in the current buffer."
14103 (save-excursion
14104 (save-restriction
14105 (widen)
14106 (goto-char (point-min))
14107 (let ((re (org-re-property key))
14108 values)
14109 (while (re-search-forward re nil t)
14110 (add-to-list 'values (org-trim (match-string 1))))
14111 (delete "" values)))))
14113 (defun org-insert-property-drawer ()
14114 "Insert a property drawer into the current entry."
14115 (interactive)
14116 (org-back-to-heading t)
14117 (looking-at org-outline-regexp)
14118 (let ((indent (if org-adapt-indentation
14119 (- (match-end 0)(match-beginning 0))
14121 (beg (point))
14122 (re (concat "^[ \t]*" org-keyword-time-regexp))
14123 end hiddenp)
14124 (outline-next-heading)
14125 (setq end (point))
14126 (goto-char beg)
14127 (while (re-search-forward re end t))
14128 (setq hiddenp (outline-invisible-p))
14129 (end-of-line 1)
14130 (and (equal (char-after) ?\n) (forward-char 1))
14131 (while (looking-at "^[ \t]*\\(:CLOCK:\\|:LOGBOOK:\\|CLOCK:\\|:END:\\)")
14132 (if (member (match-string 1) '("CLOCK:" ":END:"))
14133 ;; just skip this line
14134 (beginning-of-line 2)
14135 ;; Drawer start, find the end
14136 (re-search-forward "^\\*+ \\|^[ \t]*:END:" nil t)
14137 (beginning-of-line 1)))
14138 (org-skip-over-state-notes)
14139 (skip-chars-backward " \t\n\r")
14140 (if (eq (char-before) ?*) (forward-char 1))
14141 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
14142 (beginning-of-line 0)
14143 (org-indent-to-column indent)
14144 (beginning-of-line 2)
14145 (org-indent-to-column indent)
14146 (beginning-of-line 0)
14147 (if hiddenp
14148 (save-excursion
14149 (org-back-to-heading t)
14150 (hide-entry))
14151 (org-flag-drawer t))))
14153 (defvar org-property-set-functions-alist nil
14154 "Property set function alist.
14155 Each entry should have the following format:
14157 (PROPERTY . READ-FUNCTION)
14159 The read function will be called with the same argument as
14160 `org-completing-read'.")
14162 (defun org-set-property-function (property)
14163 "Get the function that should be used to set PROPERTY.
14164 This is computed according to `org-property-set-functions-alist'."
14165 (or (cdr (assoc property org-property-set-functions-alist))
14166 'org-completing-read))
14168 (defun org-read-property-value (property)
14169 "Read PROPERTY value from user."
14170 (let* ((completion-ignore-case t)
14171 (allowed (org-property-get-allowed-values nil property 'table))
14172 (cur (org-entry-get nil property))
14173 (prompt (concat property " value"
14174 (if (and cur (string-match "\\S-" cur))
14175 (concat " [" cur "]") "") ": "))
14176 (set-function (org-set-property-function property))
14177 (val (if allowed
14178 (funcall set-function prompt allowed nil
14179 (not (get-text-property 0 'org-unrestricted
14180 (caar allowed))))
14181 (let (org-completion-use-ido org-completion-use-iswitchb)
14182 (funcall set-function prompt
14183 (mapcar 'list (org-property-values property))
14184 nil nil "" nil cur)))))
14185 (if (equal val "")
14187 val)))
14189 (defvar org-last-set-property nil)
14190 (defun org-read-property-name ()
14191 "Read a property name."
14192 (let* ((completion-ignore-case t)
14193 (keys (org-buffer-property-keys nil t t))
14194 (default-prop (or (save-excursion
14195 (save-match-data
14196 (beginning-of-line)
14197 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
14198 (null (string= (match-string 1) "END"))
14199 (match-string 1))))
14200 org-last-set-property))
14201 (property (org-icompleting-read
14202 (concat "Property"
14203 (if default-prop (concat " [" default-prop "]") "")
14204 ": ")
14205 (mapcar 'list keys)
14206 nil nil nil nil
14207 default-prop
14209 (if (member property keys)
14210 property
14211 (or (cdr (assoc (downcase property)
14212 (mapcar (lambda (x) (cons (downcase x) x))
14213 keys)))
14214 property))))
14216 (defun org-set-property (property value)
14217 "In the current entry, set PROPERTY to VALUE.
14218 When called interactively, this will prompt for a property name, offering
14219 completion on existing and default properties. And then it will prompt
14220 for a value, offering completion either on allowed values (via an inherited
14221 xxx_ALL property) or on existing values in other instances of this property
14222 in the current file."
14223 (interactive (list nil nil))
14224 (let* ((property (or property (org-read-property-name)))
14225 (value (or value (org-read-property-value property))))
14226 (setq org-last-set-property property)
14227 (unless (equal (org-entry-get nil property) value)
14228 (org-entry-put nil property value))))
14230 (defun org-delete-property (property)
14231 "In the current entry, delete PROPERTY."
14232 (interactive
14233 (let* ((completion-ignore-case t)
14234 (prop (org-icompleting-read "Property: "
14235 (org-entry-properties nil 'standard))))
14236 (list prop)))
14237 (message "Property %s %s" property
14238 (if (org-entry-delete nil property)
14239 "deleted"
14240 "was not present in the entry")))
14242 (defun org-delete-property-globally (property)
14243 "Remove PROPERTY globally, from all entries."
14244 (interactive
14245 (let* ((completion-ignore-case t)
14246 (prop (org-icompleting-read
14247 "Globally remove property: "
14248 (mapcar 'list (org-buffer-property-keys)))))
14249 (list prop)))
14250 (save-excursion
14251 (save-restriction
14252 (widen)
14253 (goto-char (point-min))
14254 (let ((cnt 0))
14255 (while (re-search-forward
14256 (org-re-property property)
14257 nil t)
14258 (setq cnt (1+ cnt))
14259 (replace-match ""))
14260 (message "Property \"%s\" removed from %d entries" property cnt)))))
14262 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
14264 (defun org-compute-property-at-point ()
14265 "Compute the property at point.
14266 This looks for an enclosing column format, extracts the operator and
14267 then applies it to the property in the column format's scope."
14268 (interactive)
14269 (unless (org-at-property-p)
14270 (error "Not at a property"))
14271 (let ((prop (org-match-string-no-properties 2)))
14272 (org-columns-get-format-and-top-level)
14273 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
14274 (error "No operator defined for property %s" prop))
14275 (org-columns-compute prop)))
14277 (defvar org-property-allowed-value-functions nil
14278 "Hook for functions supplying allowed values for a specific property.
14279 The functions must take a single argument, the name of the property, and
14280 return a flat list of allowed values. If \":ETC\" is one of
14281 the values, this means that these values are intended as defaults for
14282 completion, but that other values should be allowed too.
14283 The functions must return nil if they are not responsible for this
14284 property.")
14286 (defun org-property-get-allowed-values (pom property &optional table)
14287 "Get allowed values for the property PROPERTY.
14288 When TABLE is non-nil, return an alist that can directly be used for
14289 completion."
14290 (let (vals)
14291 (cond
14292 ((equal property "TODO")
14293 (setq vals (org-with-point-at pom
14294 (append org-todo-keywords-1 '("")))))
14295 ((equal property "PRIORITY")
14296 (let ((n org-lowest-priority))
14297 (while (>= n org-highest-priority)
14298 (push (char-to-string n) vals)
14299 (setq n (1- n)))))
14300 ((member property org-special-properties))
14301 ((setq vals (run-hook-with-args-until-success
14302 'org-property-allowed-value-functions property)))
14304 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
14305 (when (and vals (string-match "\\S-" vals))
14306 (setq vals (car (read-from-string (concat "(" vals ")"))))
14307 (setq vals (mapcar (lambda (x)
14308 (cond ((stringp x) x)
14309 ((numberp x) (number-to-string x))
14310 ((symbolp x) (symbol-name x))
14311 (t "???")))
14312 vals)))))
14313 (when (member ":ETC" vals)
14314 (setq vals (remove ":ETC" vals))
14315 (org-add-props (car vals) '(org-unrestricted t)))
14316 (if table (mapcar 'list vals) vals)))
14318 (defun org-property-previous-allowed-value (&optional previous)
14319 "Switch to the next allowed value for this property."
14320 (interactive)
14321 (org-property-next-allowed-value t))
14323 (defun org-property-next-allowed-value (&optional previous)
14324 "Switch to the next allowed value for this property."
14325 (interactive)
14326 (unless (org-at-property-p)
14327 (error "Not at a property"))
14328 (let* ((key (match-string 2))
14329 (value (match-string 3))
14330 (allowed (or (org-property-get-allowed-values (point) key)
14331 (and (member value '("[ ]" "[-]" "[X]"))
14332 '("[ ]" "[X]"))))
14333 nval)
14334 (unless allowed
14335 (error "Allowed values for this property have not been defined"))
14336 (if previous (setq allowed (reverse allowed)))
14337 (if (member value allowed)
14338 (setq nval (car (cdr (member value allowed)))))
14339 (setq nval (or nval (car allowed)))
14340 (if (equal nval value)
14341 (error "Only one allowed value for this property"))
14342 (org-at-property-p)
14343 (replace-match (concat " :" key ": " nval) t t)
14344 (org-indent-line-function)
14345 (beginning-of-line 1)
14346 (skip-chars-forward " \t")
14347 (run-hook-with-args 'org-property-changed-functions key nval)))
14349 (defun org-find-olp (path &optional this-buffer)
14350 "Return a marker pointing to the entry at outline path OLP.
14351 If anything goes wrong, throw an error.
14352 You can wrap this call to catch the error like this:
14354 (condition-case msg
14355 (org-mobile-locate-entry (match-string 4))
14356 (error (nth 1 msg)))
14358 The return value will then be either a string with the error message,
14359 or a marker if everything is OK.
14361 If THIS-BUFFER is set, the outline path does not contain a file,
14362 only headings."
14363 (let* ((file (if this-buffer buffer-file-name (pop path)))
14364 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
14365 (level 1)
14366 (lmin 1)
14367 (lmax 1)
14368 limit re end found pos heading cnt flevel)
14369 (unless buffer (error "File not found :%s" file))
14370 (with-current-buffer buffer
14371 (save-excursion
14372 (save-restriction
14373 (widen)
14374 (setq limit (point-max))
14375 (goto-char (point-min))
14376 (while (setq heading (pop path))
14377 (setq re (format org-complex-heading-regexp-format
14378 (regexp-quote heading)))
14379 (setq cnt 0 pos (point))
14380 (while (re-search-forward re end t)
14381 (setq level (- (match-end 1) (match-beginning 1)))
14382 (if (and (>= level lmin) (<= level lmax))
14383 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
14384 (when (= cnt 0) (error "Heading not found on level %d: %s"
14385 lmax heading))
14386 (when (> cnt 1) (error "Heading not unique on level %d: %s"
14387 lmax heading))
14388 (goto-char found)
14389 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
14390 (setq end (save-excursion (org-end-of-subtree t t))))
14391 (when (org-on-heading-p)
14392 (move-marker (make-marker) (point))))))))
14394 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
14395 "Find node HEADING in BUFFER.
14396 Return a marker to the heading if it was found, or nil if not.
14397 If POS-ONLY is set, return just the position instead of a marker.
14399 The heading text must match exact, but it may have a TODO keyword,
14400 a priority cookie and tags in the standard locations."
14401 (with-current-buffer (or buffer (current-buffer))
14402 (save-excursion
14403 (save-restriction
14404 (widen)
14405 (goto-char (point-min))
14406 (let (case-fold-search)
14407 (if (re-search-forward
14408 (format org-complex-heading-regexp-format
14409 (regexp-quote heading)) nil t)
14410 (if pos-only
14411 (match-beginning 0)
14412 (move-marker (make-marker) (match-beginning 0)))))))))
14414 (defun org-find-exact-heading-in-directory (heading &optional dir)
14415 "Find Org node headline HEADING in all .org files in directory DIR.
14416 When the target headline is found, return a marker to this location."
14417 (let ((files (directory-files (or dir default-directory)
14418 nil "\\`[^.#].*\\.org\\'"))
14419 file visiting m buffer)
14420 (catch 'found
14421 (while (setq file (pop files))
14422 (message "trying %s" file)
14423 (setq visiting (org-find-base-buffer-visiting file))
14424 (setq buffer (or visiting (find-file-noselect file)))
14425 (setq m (org-find-exact-headline-in-buffer
14426 heading buffer))
14427 (when (and (not m) (not visiting)) (kill-buffer buffer))
14428 (and m (throw 'found m))))))
14430 (defun org-find-entry-with-id (ident)
14431 "Locate the entry that contains the ID property with exact value IDENT.
14432 IDENT can be a string, a symbol or a number, this function will search for
14433 the string representation of it.
14434 Return the position where this entry starts, or nil if there is no such entry."
14435 (interactive "sID: ")
14436 (let ((id (cond
14437 ((stringp ident) ident)
14438 ((symbol-name ident) (symbol-name ident))
14439 ((numberp ident) (number-to-string ident))
14440 (t (error "IDENT %s must be a string, symbol or number" ident))))
14441 (case-fold-search nil))
14442 (save-excursion
14443 (save-restriction
14444 (widen)
14445 (goto-char (point-min))
14446 (when (re-search-forward
14447 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
14448 nil t)
14449 (org-back-to-heading t)
14450 (point))))))
14452 ;;;; Timestamps
14454 (defvar org-last-changed-timestamp nil)
14455 (defvar org-last-inserted-timestamp nil
14456 "The last time stamp inserted with `org-insert-time-stamp'.")
14457 (defvar org-time-was-given) ; dynamically scoped parameter
14458 (defvar org-end-time-was-given) ; dynamically scoped parameter
14459 (defvar org-ts-what) ; dynamically scoped parameter
14461 (defun org-time-stamp (arg &optional inactive)
14462 "Prompt for a date/time and insert a time stamp.
14463 If the user specifies a time like HH:MM, or if this command is called
14464 with a prefix argument, the time stamp will contain date and time.
14465 Otherwise, only the date will be included. All parts of a date not
14466 specified by the user will be filled in from the current date/time.
14467 So if you press just return without typing anything, the time stamp
14468 will represent the current date/time. If there is already a timestamp
14469 at the cursor, it will be modified."
14470 (interactive "P")
14471 (let* ((ts nil)
14472 (default-time
14473 ;; Default time is either today, or, when entering a range,
14474 ;; the range start.
14475 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
14476 (save-excursion
14477 (re-search-backward
14478 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
14479 (- (point) 20) t)))
14480 (apply 'encode-time (org-parse-time-string (match-string 1)))
14481 (current-time)))
14482 (default-input (and ts (org-get-compact-tod ts)))
14483 (repeater (save-excursion
14484 (save-match-data
14485 (beginning-of-line)
14486 (when (re-search-forward
14487 "\\([.+-]+[0-9]+[dwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[dwmy]\\)?\\) ?"
14488 (save-excursion (progn (end-of-line) (point))) t)
14489 (match-string 0)))))
14490 org-time-was-given org-end-time-was-given time)
14491 (cond
14492 ((and (org-at-timestamp-p t)
14493 (memq last-command '(org-time-stamp org-time-stamp-inactive))
14494 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
14495 (insert "--")
14496 (setq time (let ((this-command this-command))
14497 (org-read-date arg 'totime nil nil
14498 default-time default-input)))
14499 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
14500 ((org-at-timestamp-p t)
14501 (setq time (let ((this-command this-command))
14502 (org-read-date arg 'totime nil nil default-time default-input)))
14503 (when (org-at-timestamp-p t) ; just to get the match data
14504 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
14505 (replace-match "")
14506 (setq org-last-changed-timestamp
14507 (org-insert-time-stamp
14508 time (or org-time-was-given arg)
14509 inactive nil nil (list org-end-time-was-given)))
14510 (when repeater (goto-char (1- (point))) (insert " " repeater)
14511 (setq org-last-changed-timestamp
14512 (concat (substring org-last-inserted-timestamp 0 -1)
14513 " " repeater ">"))))
14514 (message "Timestamp updated"))
14516 (setq time (let ((this-command this-command))
14517 (org-read-date arg 'totime nil nil default-time default-input)))
14518 (org-insert-time-stamp time (or org-time-was-given arg) inactive
14519 nil nil (list org-end-time-was-given))))))
14521 ;; FIXME: can we use this for something else, like computing time differences?
14522 (defun org-get-compact-tod (s)
14523 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
14524 (let* ((t1 (match-string 1 s))
14525 (h1 (string-to-number (match-string 2 s)))
14526 (m1 (string-to-number (match-string 3 s)))
14527 (t2 (and (match-end 4) (match-string 5 s)))
14528 (h2 (and t2 (string-to-number (match-string 6 s))))
14529 (m2 (and t2 (string-to-number (match-string 7 s))))
14530 dh dm)
14531 (if (not t2)
14533 (setq dh (- h2 h1) dm (- m2 m1))
14534 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
14535 (concat t1 "+" (number-to-string dh)
14536 (if (/= 0 dm) (concat ":" (number-to-string dm))))))))
14538 (defun org-time-stamp-inactive (&optional arg)
14539 "Insert an inactive time stamp.
14540 An inactive time stamp is enclosed in square brackets instead of angle
14541 brackets. It is inactive in the sense that it does not trigger agenda entries,
14542 does not link to the calendar and cannot be changed with the S-cursor keys.
14543 So these are more for recording a certain time/date."
14544 (interactive "P")
14545 (org-time-stamp arg 'inactive))
14547 (defvar org-date-ovl (make-overlay 1 1))
14548 (overlay-put org-date-ovl 'face 'org-warning)
14549 (org-detach-overlay org-date-ovl)
14551 (defvar org-ans1) ; dynamically scoped parameter
14552 (defvar org-ans2) ; dynamically scoped parameter
14554 (defvar org-plain-time-of-day-regexp) ; defined below
14556 (defvar org-overriding-default-time nil) ; dynamically scoped
14557 (defvar org-read-date-overlay nil)
14558 (defvar org-dcst nil) ; dynamically scoped
14559 (defvar org-read-date-history nil)
14560 (defvar org-read-date-final-answer nil)
14561 (defvar org-read-date-analyze-futurep nil)
14562 (defvar org-read-date-analyze-forced-year nil)
14564 (defun org-read-date (&optional with-time to-time from-string prompt
14565 default-time default-input)
14566 "Read a date, possibly a time, and make things smooth for the user.
14567 The prompt will suggest to enter an ISO date, but you can also enter anything
14568 which will at least partially be understood by `parse-time-string'.
14569 Unrecognized parts of the date will default to the current day, month, year,
14570 hour and minute. If this command is called to replace a timestamp at point,
14571 of to enter the second timestamp of a range, the default time is taken
14572 from the existing stamp. Furthermore, the command prefers the future,
14573 so if you are giving a date where the year is not given, and the day-month
14574 combination is already past in the current year, it will assume you
14575 mean next year. For details, see the manual. A few examples:
14577 3-2-5 --> 2003-02-05
14578 feb 15 --> currentyear-02-15
14579 2/15 --> currentyear-02-15
14580 sep 12 9 --> 2009-09-12
14581 12:45 --> today 12:45
14582 22 sept 0:34 --> currentyear-09-22 0:34
14583 12 --> currentyear-currentmonth-12
14584 Fri --> nearest Friday (today or later)
14585 etc.
14587 Furthermore you can specify a relative date by giving, as the *first* thing
14588 in the input: a plus/minus sign, a number and a letter [dwmy] to indicate
14589 change in days weeks, months, years.
14590 With a single plus or minus, the date is relative to today. With a double
14591 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
14592 +4d --> four days from today
14593 +4 --> same as above
14594 +2w --> two weeks from today
14595 ++5 --> five days from default date
14597 The function understands only English month and weekday abbreviations,
14598 but this can be configured with the variables `parse-time-months' and
14599 `parse-time-weekdays'.
14601 While prompting, a calendar is popped up - you can also select the
14602 date with the mouse (button 1). The calendar shows a period of three
14603 months. To scroll it to other months, use the keys `>' and `<'.
14604 If you don't like the calendar, turn it off with
14605 \(setq org-read-date-popup-calendar nil)
14607 With optional argument TO-TIME, the date will immediately be converted
14608 to an internal time.
14609 With an optional argument WITH-TIME, the prompt will suggest to also
14610 insert a time. Note that when WITH-TIME is not set, you can still
14611 enter a time, and this function will inform the calling routine about
14612 this change. The calling routine may then choose to change the format
14613 used to insert the time stamp into the buffer to include the time.
14614 With optional argument FROM-STRING, read from this string instead from
14615 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
14616 the time/date that is used for everything that is not specified by the
14617 user."
14618 (require 'parse-time)
14619 (let* ((org-time-stamp-rounding-minutes
14620 (if (equal with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
14621 (org-dcst org-display-custom-times)
14622 (ct (org-current-time))
14623 (def (or org-overriding-default-time default-time ct))
14624 (defdecode (decode-time def))
14625 (dummy (progn
14626 (when (< (nth 2 defdecode) org-extend-today-until)
14627 (setcar (nthcdr 2 defdecode) -1)
14628 (setcar (nthcdr 1 defdecode) 59)
14629 (setq def (apply 'encode-time defdecode)
14630 defdecode (decode-time def)))))
14631 (calendar-frame-setup nil)
14632 (calendar-setup nil)
14633 (calendar-move-hook nil)
14634 (calendar-view-diary-initially-flag nil)
14635 (calendar-view-holidays-initially-flag nil)
14636 (timestr (format-time-string
14637 (if with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") def))
14638 (prompt (concat (if prompt (concat prompt " ") "")
14639 (format "Date+time [%s]: " timestr)))
14640 ans (org-ans0 "") org-ans1 org-ans2 final)
14642 (cond
14643 (from-string (setq ans from-string))
14644 (org-read-date-popup-calendar
14645 (save-excursion
14646 (save-window-excursion
14647 (calendar)
14648 (unwind-protect
14649 (progn
14650 (calendar-forward-day (- (time-to-days def)
14651 (calendar-absolute-from-gregorian
14652 (calendar-current-date))))
14653 (org-eval-in-calendar nil t)
14654 (let* ((old-map (current-local-map))
14655 (map (copy-keymap calendar-mode-map))
14656 (minibuffer-local-map (copy-keymap minibuffer-local-map)))
14657 (org-defkey map (kbd "RET") 'org-calendar-select)
14658 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
14659 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
14660 (org-defkey minibuffer-local-map [(meta shift left)]
14661 (lambda () (interactive)
14662 (org-eval-in-calendar '(calendar-backward-month 1))))
14663 (org-defkey minibuffer-local-map [(meta shift right)]
14664 (lambda () (interactive)
14665 (org-eval-in-calendar '(calendar-forward-month 1))))
14666 (org-defkey minibuffer-local-map [(meta shift up)]
14667 (lambda () (interactive)
14668 (org-eval-in-calendar '(calendar-backward-year 1))))
14669 (org-defkey minibuffer-local-map [(meta shift down)]
14670 (lambda () (interactive)
14671 (org-eval-in-calendar '(calendar-forward-year 1))))
14672 (org-defkey minibuffer-local-map [?\e (shift left)]
14673 (lambda () (interactive)
14674 (org-eval-in-calendar '(calendar-backward-month 1))))
14675 (org-defkey minibuffer-local-map [?\e (shift right)]
14676 (lambda () (interactive)
14677 (org-eval-in-calendar '(calendar-forward-month 1))))
14678 (org-defkey minibuffer-local-map [?\e (shift up)]
14679 (lambda () (interactive)
14680 (org-eval-in-calendar '(calendar-backward-year 1))))
14681 (org-defkey minibuffer-local-map [?\e (shift down)]
14682 (lambda () (interactive)
14683 (org-eval-in-calendar '(calendar-forward-year 1))))
14684 (org-defkey minibuffer-local-map [(shift up)]
14685 (lambda () (interactive)
14686 (org-eval-in-calendar '(calendar-backward-week 1))))
14687 (org-defkey minibuffer-local-map [(shift down)]
14688 (lambda () (interactive)
14689 (org-eval-in-calendar '(calendar-forward-week 1))))
14690 (org-defkey minibuffer-local-map [(shift left)]
14691 (lambda () (interactive)
14692 (org-eval-in-calendar '(calendar-backward-day 1))))
14693 (org-defkey minibuffer-local-map [(shift right)]
14694 (lambda () (interactive)
14695 (org-eval-in-calendar '(calendar-forward-day 1))))
14696 (org-defkey minibuffer-local-map ">"
14697 (lambda () (interactive)
14698 (org-eval-in-calendar '(scroll-calendar-left 1))))
14699 (org-defkey minibuffer-local-map "<"
14700 (lambda () (interactive)
14701 (org-eval-in-calendar '(scroll-calendar-right 1))))
14702 (org-defkey minibuffer-local-map "\C-v"
14703 (lambda () (interactive)
14704 (org-eval-in-calendar
14705 '(calendar-scroll-left-three-months 1))))
14706 (org-defkey minibuffer-local-map "\M-v"
14707 (lambda () (interactive)
14708 (org-eval-in-calendar
14709 '(calendar-scroll-right-three-months 1))))
14710 (run-hooks 'org-read-date-minibuffer-setup-hook)
14711 (unwind-protect
14712 (progn
14713 (use-local-map map)
14714 (add-hook 'post-command-hook 'org-read-date-display)
14715 (setq org-ans0 (read-string prompt default-input
14716 'org-read-date-history nil))
14717 ;; org-ans0: from prompt
14718 ;; org-ans1: from mouse click
14719 ;; org-ans2: from calendar motion
14720 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
14721 (remove-hook 'post-command-hook 'org-read-date-display)
14722 (use-local-map old-map)
14723 (when org-read-date-overlay
14724 (delete-overlay org-read-date-overlay)
14725 (setq org-read-date-overlay nil)))))
14726 (bury-buffer "*Calendar*")))))
14728 (t ; Naked prompt only
14729 (unwind-protect
14730 (setq ans (read-string prompt default-input
14731 'org-read-date-history timestr))
14732 (when org-read-date-overlay
14733 (delete-overlay org-read-date-overlay)
14734 (setq org-read-date-overlay nil)))))
14736 (setq final (org-read-date-analyze ans def defdecode))
14738 (when org-read-date-analyze-forced-year
14739 (message "Year was forced into %s"
14740 (if org-read-date-force-compatible-dates
14741 "compatible range (1970-2037)"
14742 "range representable on this machine"))
14743 (ding))
14745 ;; One round trip to get rid of 34th of August and stuff like that....
14746 (setq final (decode-time (apply 'encode-time final)))
14748 (setq org-read-date-final-answer ans)
14750 (if to-time
14751 (apply 'encode-time final)
14752 (if (and (boundp 'org-time-was-given) org-time-was-given)
14753 (format "%04d-%02d-%02d %02d:%02d"
14754 (nth 5 final) (nth 4 final) (nth 3 final)
14755 (nth 2 final) (nth 1 final))
14756 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
14758 (defvar def)
14759 (defvar defdecode)
14760 (defvar with-time)
14761 (defun org-read-date-display ()
14762 "Display the current date prompt interpretation in the minibuffer."
14763 (when org-read-date-display-live
14764 (when org-read-date-overlay
14765 (delete-overlay org-read-date-overlay))
14766 (let ((p (point)))
14767 (end-of-line 1)
14768 (while (not (equal (buffer-substring
14769 (max (point-min) (- (point) 4)) (point))
14770 " "))
14771 (insert " "))
14772 (goto-char p))
14773 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
14774 " " (or org-ans1 org-ans2)))
14775 (org-end-time-was-given nil)
14776 (f (org-read-date-analyze ans def defdecode))
14777 (fmts (if org-dcst
14778 org-time-stamp-custom-formats
14779 org-time-stamp-formats))
14780 (fmt (if (or with-time
14781 (and (boundp 'org-time-was-given) org-time-was-given))
14782 (cdr fmts)
14783 (car fmts)))
14784 (txt (concat "=> " (format-time-string fmt (apply 'encode-time f)))))
14785 (when (and org-end-time-was-given
14786 (string-match org-plain-time-of-day-regexp txt))
14787 (setq txt (concat (substring txt 0 (match-end 0)) "-"
14788 org-end-time-was-given
14789 (substring txt (match-end 0)))))
14790 (when org-read-date-analyze-futurep
14791 (setq txt (concat txt " (=>F)")))
14792 (setq org-read-date-overlay
14793 (make-overlay (1- (point-at-eol)) (point-at-eol)))
14794 (org-overlay-display org-read-date-overlay txt 'secondary-selection))))
14796 (defun org-read-date-analyze (ans def defdecode)
14797 "Analyze the combined answer of the date prompt."
14798 ;; FIXME: cleanup and comment
14799 (let ((nowdecode (decode-time (current-time)))
14800 delta deltan deltaw deltadef year month day
14801 hour minute second wday pm h2 m2 tl wday1
14802 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
14803 (setq org-read-date-analyze-futurep nil
14804 org-read-date-analyze-forced-year nil)
14805 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
14806 (setq ans "+0"))
14808 (when (setq delta (org-read-date-get-relative ans (current-time) def))
14809 (setq ans (replace-match "" t t ans)
14810 deltan (car delta)
14811 deltaw (nth 1 delta)
14812 deltadef (nth 2 delta)))
14814 ;; Check if there is an iso week date in there
14815 ;; If yes, store the info and postpone interpreting it until the rest
14816 ;; of the parsing is done
14817 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
14818 (setq iso-year (if (match-end 1)
14819 (org-small-year-to-year
14820 (string-to-number (match-string 1 ans))))
14821 iso-weekday (if (match-end 3)
14822 (string-to-number (match-string 3 ans)))
14823 iso-week (string-to-number (match-string 2 ans)))
14824 (setq ans (replace-match "" t t ans)))
14826 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
14827 (when (string-match
14828 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
14829 (setq year (if (match-end 2)
14830 (string-to-number (match-string 2 ans))
14831 (progn (setq kill-year t)
14832 (string-to-number (format-time-string "%Y"))))
14833 month (string-to-number (match-string 3 ans))
14834 day (string-to-number (match-string 4 ans)))
14835 (if (< year 100) (setq year (+ 2000 year)))
14836 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
14837 t nil ans)))
14839 ;; Help matching dottet european dates
14840 (when (string-match
14841 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\. ?\\([1-9][0-9][0-9][0-9]\\)?" ans)
14842 (setq year (if (match-end 3)
14843 (string-to-number (match-string 3 ans))
14844 (progn (setq kill-year t)
14845 (string-to-number (format-time-string "%Y"))))
14846 day (string-to-number (match-string 1 ans))
14847 month (string-to-number (match-string 2 ans))
14848 ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
14849 t nil ans)))
14851 ;; Help matching american dates, like 5/30 or 5/30/7
14852 (when (string-match
14853 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
14854 (setq year (if (match-end 4)
14855 (string-to-number (match-string 4 ans))
14856 (progn (setq kill-year t)
14857 (string-to-number (format-time-string "%Y"))))
14858 month (string-to-number (match-string 1 ans))
14859 day (string-to-number (match-string 2 ans)))
14860 (if (< year 100) (setq year (+ 2000 year)))
14861 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
14862 t nil ans)))
14863 ;; Help matching am/pm times, because `parse-time-string' does not do that.
14864 ;; If there is a time with am/pm, and *no* time without it, we convert
14865 ;; so that matching will be successful.
14866 (loop for i from 1 to 2 do ; twice, for end time as well
14867 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
14868 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
14869 (setq hour (string-to-number (match-string 1 ans))
14870 minute (if (match-end 3)
14871 (string-to-number (match-string 3 ans))
14873 pm (equal ?p
14874 (string-to-char (downcase (match-string 4 ans)))))
14875 (if (and (= hour 12) (not pm))
14876 (setq hour 0)
14877 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
14878 (setq ans (replace-match (format "%02d:%02d" hour minute)
14879 t t ans))))
14881 ;; Check if a time range is given as a duration
14882 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
14883 (setq hour (string-to-number (match-string 1 ans))
14884 h2 (+ hour (string-to-number (match-string 3 ans)))
14885 minute (string-to-number (match-string 2 ans))
14886 m2 (+ minute (if (match-end 5) (string-to-number
14887 (match-string 5 ans))0)))
14888 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
14889 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
14890 t t ans)))
14892 ;; Check if there is a time range
14893 (when (boundp 'org-end-time-was-given)
14894 (setq org-time-was-given nil)
14895 (when (and (string-match org-plain-time-of-day-regexp ans)
14896 (match-end 8))
14897 (setq org-end-time-was-given (match-string 8 ans))
14898 (setq ans (concat (substring ans 0 (match-beginning 7))
14899 (substring ans (match-end 7))))))
14901 (setq tl (parse-time-string ans)
14902 day (or (nth 3 tl) (nth 3 defdecode))
14903 month (or (nth 4 tl)
14904 (if (and org-read-date-prefer-future
14905 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
14906 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
14907 (nth 4 defdecode)))
14908 year (or (and (not kill-year) (nth 5 tl))
14909 (if (and org-read-date-prefer-future
14910 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
14911 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
14912 (nth 5 defdecode)))
14913 hour (or (nth 2 tl) (nth 2 defdecode))
14914 minute (or (nth 1 tl) (nth 1 defdecode))
14915 second (or (nth 0 tl) 0)
14916 wday (nth 6 tl))
14918 (when (and (eq org-read-date-prefer-future 'time)
14919 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
14920 (equal day (nth 3 nowdecode))
14921 (equal month (nth 4 nowdecode))
14922 (equal year (nth 5 nowdecode))
14923 (nth 2 tl)
14924 (or (< (nth 2 tl) (nth 2 nowdecode))
14925 (and (= (nth 2 tl) (nth 2 nowdecode))
14926 (nth 1 tl)
14927 (< (nth 1 tl) (nth 1 nowdecode)))))
14928 (setq day (1+ day)
14929 futurep t))
14931 ;; Special date definitions below
14932 (cond
14933 (iso-week
14934 ;; There was an iso week
14935 (require 'cal-iso)
14936 (setq futurep nil)
14937 (setq year (or iso-year year)
14938 day (or iso-weekday wday 1)
14939 wday nil ; to make sure that the trigger below does not match
14940 iso-date (calendar-gregorian-from-absolute
14941 (calendar-absolute-from-iso
14942 (list iso-week day year))))
14943 ; FIXME: Should we also push ISO weeks into the future?
14944 ; (when (and org-read-date-prefer-future
14945 ; (not iso-year)
14946 ; (< (calendar-absolute-from-gregorian iso-date)
14947 ; (time-to-days (current-time))))
14948 ; (setq year (1+ year)
14949 ; iso-date (calendar-gregorian-from-absolute
14950 ; (calendar-absolute-from-iso
14951 ; (list iso-week day year)))))
14952 (setq month (car iso-date)
14953 year (nth 2 iso-date)
14954 day (nth 1 iso-date)))
14955 (deltan
14956 (setq futurep nil)
14957 (unless deltadef
14958 (let ((now (decode-time (current-time))))
14959 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
14960 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
14961 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
14962 ((equal deltaw "m") (setq month (+ month deltan)))
14963 ((equal deltaw "y") (setq year (+ year deltan)))))
14964 ((and wday (not (nth 3 tl)))
14965 (setq futurep nil)
14966 ;; Weekday was given, but no day, so pick that day in the week
14967 ;; on or after the derived date.
14968 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
14969 (unless (equal wday wday1)
14970 (setq day (+ day (% (- wday wday1 -7) 7))))))
14971 (if (and (boundp 'org-time-was-given)
14972 (nth 2 tl))
14973 (setq org-time-was-given t))
14974 (if (< year 100) (setq year (+ 2000 year)))
14975 ;; Check of the date is representable
14976 (if org-read-date-force-compatible-dates
14977 (progn
14978 (if (< year 1970)
14979 (setq year 1970 org-read-date-analyze-forced-year t))
14980 (if (> year 2037)
14981 (setq year 2037 org-read-date-analyze-forced-year t)))
14982 (condition-case nil
14983 (ignore (encode-time second minute hour day month year))
14984 (error
14985 (setq year (nth 5 defdecode))
14986 (setq org-read-date-analyze-forced-year t))))
14987 (setq org-read-date-analyze-futurep futurep)
14988 (list second minute hour day month year)))
14990 (defvar parse-time-weekdays)
14992 (defun org-read-date-get-relative (s today default)
14993 "Check string S for special relative date string.
14994 TODAY and DEFAULT are internal times, for today and for a default.
14995 Return shift list (N what def-flag)
14996 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
14997 N is the number of WHATs to shift.
14998 DEF-FLAG is t when a double ++ or -- indicates shift relative to
14999 the DEFAULT date rather than TODAY."
15000 (when (and
15001 (string-match
15002 (concat
15003 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
15004 "\\([0-9]+\\)?"
15005 "\\([dwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
15006 "\\([ \t]\\|$\\)") s)
15007 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
15008 (let* ((dir (if (> (match-end 1) (match-beginning 1))
15009 (string-to-char (substring (match-string 1 s) -1))
15010 ?+))
15011 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
15012 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
15013 (what (if (match-end 3) (match-string 3 s) "d"))
15014 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
15015 (date (if rel default today))
15016 (wday (nth 6 (decode-time date)))
15017 delta)
15018 (if wday1
15019 (progn
15020 (setq delta (mod (+ 7 (- wday1 wday)) 7))
15021 (if (= dir ?-) (setq delta (- delta 7)))
15022 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
15023 (list delta "d" rel))
15024 (list (* n (if (= dir ?-) -1 1)) what rel)))))
15026 (defun org-order-calendar-date-args (arg1 arg2 arg3)
15027 "Turn a user-specified date into the internal representation.
15028 The internal representation needed by the calendar is (month day year).
15029 This is a wrapper to handle the brain-dead convention in calendar that
15030 user function argument order change dependent on argument order."
15031 (if (boundp 'calendar-date-style)
15032 (cond
15033 ((eq calendar-date-style 'american)
15034 (list arg1 arg2 arg3))
15035 ((eq calendar-date-style 'european)
15036 (list arg2 arg1 arg3))
15037 ((eq calendar-date-style 'iso)
15038 (list arg2 arg3 arg1)))
15039 (with-no-warnings ;; european-calendar-style is obsolete as of version 23.1
15040 (if (org-bound-and-true-p european-calendar-style)
15041 (list arg2 arg1 arg3)
15042 (list arg1 arg2 arg3)))))
15044 (defun org-eval-in-calendar (form &optional keepdate)
15045 "Eval FORM in the calendar window and return to current window.
15046 Also, store the cursor date in variable org-ans2."
15047 (let ((sf (selected-frame))
15048 (sw (selected-window)))
15049 (select-window (get-buffer-window "*Calendar*" t))
15050 (eval form)
15051 (when (and (not keepdate) (calendar-cursor-to-date))
15052 (let* ((date (calendar-cursor-to-date))
15053 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
15054 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
15055 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
15056 (select-window sw)
15057 (org-select-frame-set-input-focus sf)))
15059 (defun org-calendar-select ()
15060 "Return to `org-read-date' with the date currently selected.
15061 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
15062 (interactive)
15063 (when (calendar-cursor-to-date)
15064 (let* ((date (calendar-cursor-to-date))
15065 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
15066 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
15067 (if (active-minibuffer-window) (exit-minibuffer))))
15069 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
15070 "Insert a date stamp for the date given by the internal TIME.
15071 WITH-HM means use the stamp format that includes the time of the day.
15072 INACTIVE means use square brackets instead of angular ones, so that the
15073 stamp will not contribute to the agenda.
15074 PRE and POST are optional strings to be inserted before and after the
15075 stamp.
15076 The command returns the inserted time stamp."
15077 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
15078 stamp)
15079 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
15080 (insert-before-markers (or pre ""))
15081 (when (listp extra)
15082 (setq extra (car extra))
15083 (if (and (stringp extra)
15084 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
15085 (setq extra (format "-%02d:%02d"
15086 (string-to-number (match-string 1 extra))
15087 (string-to-number (match-string 2 extra))))
15088 (setq extra nil)))
15089 (when extra
15090 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
15091 (insert-before-markers (setq stamp (format-time-string fmt time)))
15092 (insert-before-markers (or post ""))
15093 (setq org-last-inserted-timestamp stamp)))
15095 (defun org-toggle-time-stamp-overlays ()
15096 "Toggle the use of custom time stamp formats."
15097 (interactive)
15098 (setq org-display-custom-times (not org-display-custom-times))
15099 (unless org-display-custom-times
15100 (let ((p (point-min)) (bmp (buffer-modified-p)))
15101 (while (setq p (next-single-property-change p 'display))
15102 (if (and (get-text-property p 'display)
15103 (eq (get-text-property p 'face) 'org-date))
15104 (remove-text-properties
15105 p (setq p (next-single-property-change p 'display))
15106 '(display t))))
15107 (set-buffer-modified-p bmp)))
15108 (if (featurep 'xemacs)
15109 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
15110 (org-restart-font-lock)
15111 (setq org-table-may-need-update t)
15112 (if org-display-custom-times
15113 (message "Time stamps are overlayed with custom format")
15114 (message "Time stamp overlays removed")))
15116 (defun org-display-custom-time (beg end)
15117 "Overlay modified time stamp format over timestamp between BEG and END."
15118 (let* ((ts (buffer-substring beg end))
15119 t1 w1 with-hm tf time str w2 (off 0))
15120 (save-match-data
15121 (setq t1 (org-parse-time-string ts t))
15122 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)?\\'" ts)
15123 (setq off (- (match-end 0) (match-beginning 0)))))
15124 (setq end (- end off))
15125 (setq w1 (- end beg)
15126 with-hm (and (nth 1 t1) (nth 2 t1))
15127 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
15128 time (org-fix-decoded-time t1)
15129 str (org-add-props
15130 (format-time-string
15131 (substring tf 1 -1) (apply 'encode-time time))
15132 nil 'mouse-face 'highlight)
15133 w2 (length str))
15134 (if (not (= w2 w1))
15135 (add-text-properties (1+ beg) (+ 2 beg)
15136 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
15137 (if (featurep 'xemacs)
15138 (progn
15139 (put-text-property beg end 'invisible t)
15140 (put-text-property beg end 'end-glyph (make-glyph str)))
15141 (put-text-property beg end 'display str))))
15143 (defun org-translate-time (string)
15144 "Translate all timestamps in STRING to custom format.
15145 But do this only if the variable `org-display-custom-times' is set."
15146 (when org-display-custom-times
15147 (save-match-data
15148 (let* ((start 0)
15149 (re org-ts-regexp-both)
15150 t1 with-hm inactive tf time str beg end)
15151 (while (setq start (string-match re string start))
15152 (setq beg (match-beginning 0)
15153 end (match-end 0)
15154 t1 (save-match-data
15155 (org-parse-time-string (substring string beg end) t))
15156 with-hm (and (nth 1 t1) (nth 2 t1))
15157 inactive (equal (substring string beg (1+ beg)) "[")
15158 tf (funcall (if with-hm 'cdr 'car)
15159 org-time-stamp-custom-formats)
15160 time (org-fix-decoded-time t1)
15161 str (format-time-string
15162 (concat
15163 (if inactive "[" "<") (substring tf 1 -1)
15164 (if inactive "]" ">"))
15165 (apply 'encode-time time))
15166 string (replace-match str t t string)
15167 start (+ start (length str)))))))
15168 string)
15170 (defun org-fix-decoded-time (time)
15171 "Set 0 instead of nil for the first 6 elements of time.
15172 Don't touch the rest."
15173 (let ((n 0))
15174 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
15176 (defun org-days-to-time (timestamp-string)
15177 "Difference between TIMESTAMP-STRING and now in days."
15178 (- (time-to-days (org-time-string-to-time timestamp-string))
15179 (time-to-days (current-time))))
15181 (defun org-deadline-close (timestamp-string &optional ndays)
15182 "Is the time in TIMESTAMP-STRING close to the current date?"
15183 (setq ndays (or ndays (org-get-wdays timestamp-string)))
15184 (and (< (org-days-to-time timestamp-string) ndays)
15185 (not (org-entry-is-done-p))))
15187 (defun org-get-wdays (ts)
15188 "Get the deadline lead time appropriate for timestring TS."
15189 (cond
15190 ((<= org-deadline-warning-days 0)
15191 ;; 0 or negative, enforce this value no matter what
15192 (- org-deadline-warning-days))
15193 ((string-match "-\\([0-9]+\\)\\([dwmy]\\)\\(\\'\\|>\\| \\)" ts)
15194 ;; lead time is specified.
15195 (floor (* (string-to-number (match-string 1 ts))
15196 (cdr (assoc (match-string 2 ts)
15197 '(("d" . 1) ("w" . 7)
15198 ("m" . 30.4) ("y" . 365.25)))))))
15199 ;; go for the default.
15200 (t org-deadline-warning-days)))
15202 (defun org-calendar-select-mouse (ev)
15203 "Return to `org-read-date' with the date currently selected.
15204 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
15205 (interactive "e")
15206 (mouse-set-point ev)
15207 (when (calendar-cursor-to-date)
15208 (let* ((date (calendar-cursor-to-date))
15209 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
15210 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
15211 (if (active-minibuffer-window) (exit-minibuffer))))
15213 (defun org-check-deadlines (ndays)
15214 "Check if there are any deadlines due or past due.
15215 A deadline is considered due if it happens within `org-deadline-warning-days'
15216 days from today's date. If the deadline appears in an entry marked DONE,
15217 it is not shown. The prefix arg NDAYS can be used to test that many
15218 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
15219 (interactive "P")
15220 (let* ((org-warn-days
15221 (cond
15222 ((equal ndays '(4)) 100000)
15223 (ndays (prefix-numeric-value ndays))
15224 (t (abs org-deadline-warning-days))))
15225 (case-fold-search nil)
15226 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
15227 (callback
15228 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
15230 (message "%d deadlines past-due or due within %d days"
15231 (org-occur regexp nil callback)
15232 org-warn-days)))
15234 (defun org-check-before-date (date)
15235 "Check if there are deadlines or scheduled entries before DATE."
15236 (interactive (list (org-read-date)))
15237 (let ((case-fold-search nil)
15238 (regexp (concat "\\<\\(" org-deadline-string
15239 "\\|" org-scheduled-string
15240 "\\) *<\\([^>]+\\)>"))
15241 (callback
15242 (lambda () (time-less-p
15243 (org-time-string-to-time (match-string 2))
15244 (org-time-string-to-time date)))))
15245 (message "%d entries before %s"
15246 (org-occur regexp nil callback) date)))
15248 (defun org-check-after-date (date)
15249 "Check if there are deadlines or scheduled entries after DATE."
15250 (interactive (list (org-read-date)))
15251 (let ((case-fold-search nil)
15252 (regexp (concat "\\<\\(" org-deadline-string
15253 "\\|" org-scheduled-string
15254 "\\) *<\\([^>]+\\)>"))
15255 (callback
15256 (lambda () (not
15257 (time-less-p
15258 (org-time-string-to-time (match-string 2))
15259 (org-time-string-to-time date))))))
15260 (message "%d entries after %s"
15261 (org-occur regexp nil callback) date)))
15263 (defun org-evaluate-time-range (&optional to-buffer)
15264 "Evaluate a time range by computing the difference between start and end.
15265 Normally the result is just printed in the echo area, but with prefix arg
15266 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
15267 If the time range is actually in a table, the result is inserted into the
15268 next column.
15269 For time difference computation, a year is assumed to be exactly 365
15270 days in order to avoid rounding problems."
15271 (interactive "P")
15273 (org-clock-update-time-maybe)
15274 (save-excursion
15275 (unless (org-at-date-range-p t)
15276 (goto-char (point-at-bol))
15277 (re-search-forward org-tr-regexp-both (point-at-eol) t))
15278 (if (not (org-at-date-range-p t))
15279 (error "Not at a time-stamp range, and none found in current line")))
15280 (let* ((ts1 (match-string 1))
15281 (ts2 (match-string 2))
15282 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
15283 (match-end (match-end 0))
15284 (time1 (org-time-string-to-time ts1))
15285 (time2 (org-time-string-to-time ts2))
15286 (t1 (org-float-time time1))
15287 (t2 (org-float-time time2))
15288 (diff (abs (- t2 t1)))
15289 (negative (< (- t2 t1) 0))
15290 ;; (ys (floor (* 365 24 60 60)))
15291 (ds (* 24 60 60))
15292 (hs (* 60 60))
15293 (fy "%dy %dd %02d:%02d")
15294 (fy1 "%dy %dd")
15295 (fd "%dd %02d:%02d")
15296 (fd1 "%dd")
15297 (fh "%02d:%02d")
15298 y d h m align)
15299 (if havetime
15300 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
15302 d (floor (/ diff ds)) diff (mod diff ds)
15303 h (floor (/ diff hs)) diff (mod diff hs)
15304 m (floor (/ diff 60)))
15305 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
15307 d (floor (+ (/ diff ds) 0.5))
15308 h 0 m 0))
15309 (if (not to-buffer)
15310 (message "%s" (org-make-tdiff-string y d h m))
15311 (if (org-at-table-p)
15312 (progn
15313 (goto-char match-end)
15314 (setq align t)
15315 (and (looking-at " *|") (goto-char (match-end 0))))
15316 (goto-char match-end))
15317 (if (looking-at
15318 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
15319 (replace-match ""))
15320 (if negative (insert " -"))
15321 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
15322 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
15323 (insert " " (format fh h m))))
15324 (if align (org-table-align))
15325 (message "Time difference inserted")))))
15327 (defun org-make-tdiff-string (y d h m)
15328 (let ((fmt "")
15329 (l nil))
15330 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
15331 l (push y l)))
15332 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
15333 l (push d l)))
15334 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
15335 l (push h l)))
15336 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
15337 l (push m l)))
15338 (apply 'format fmt (nreverse l))))
15340 (defun org-time-string-to-time (s)
15341 (apply 'encode-time (org-parse-time-string s)))
15342 (defun org-time-string-to-seconds (s)
15343 (org-float-time (org-time-string-to-time s)))
15345 (defun org-time-string-to-absolute (s &optional daynr prefer show-all)
15346 "Convert a time stamp to an absolute day number.
15347 If there is a specifier for a cyclic time stamp, get the closest date to
15348 DAYNR.
15349 PREFER and SHOW-ALL are passed through to `org-closest-date'.
15350 The variable date is bound by the calendar when this is called."
15351 (cond
15352 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
15353 (if (org-diary-sexp-entry (match-string 1 s) "" date)
15354 daynr
15355 (+ daynr 1000)))
15356 ((and daynr (string-match "\\+[0-9]+[dwmy]" s))
15357 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
15358 (time-to-days (current-time))) (match-string 0 s)
15359 prefer show-all))
15360 (t (time-to-days (apply 'encode-time (org-parse-time-string s))))))
15362 (defun org-days-to-iso-week (days)
15363 "Return the iso week number."
15364 (require 'cal-iso)
15365 (car (calendar-iso-from-absolute days)))
15367 (defun org-small-year-to-year (year)
15368 "Convert 2-digit years into 4-digit years.
15369 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2007.
15370 The year 2000 cannot be abbreviated. Any year larger than 99
15371 is returned unchanged."
15372 (if (< year 38)
15373 (setq year (+ 2000 year))
15374 (if (< year 100)
15375 (setq year (+ 1900 year))))
15376 year)
15378 (defun org-time-from-absolute (d)
15379 "Return the time corresponding to date D.
15380 D may be an absolute day number, or a calendar-type list (month day year)."
15381 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
15382 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
15384 (defun org-calendar-holiday ()
15385 "List of holidays, for Diary display in Org-mode."
15386 (require 'holidays)
15387 (let ((hl (funcall
15388 (if (fboundp 'calendar-check-holidays)
15389 'calendar-check-holidays 'check-calendar-holidays) date)))
15390 (if hl (mapconcat 'identity hl "; "))))
15392 (defun org-diary-sexp-entry (sexp entry date)
15393 "Process a SEXP diary ENTRY for DATE."
15394 (require 'diary-lib)
15395 (let ((result (if calendar-debug-sexp
15396 (let ((stack-trace-on-error t))
15397 (eval (car (read-from-string sexp))))
15398 (condition-case nil
15399 (eval (car (read-from-string sexp)))
15400 (error
15401 (beep)
15402 (message "Bad sexp at line %d in %s: %s"
15403 (org-current-line)
15404 (buffer-file-name) sexp)
15405 (sleep-for 2))))))
15406 (cond ((stringp result) (split-string result "; "))
15407 ((and (consp result)
15408 (not (consp (cdr result)))
15409 (stringp (cdr result))) (cdr result))
15410 ((and (consp result)
15411 (stringp (car result))) result)
15412 (result entry)
15413 (t nil))))
15415 (defun org-diary-to-ical-string (frombuf)
15416 "Get iCalendar entries from diary entries in buffer FROMBUF.
15417 This uses the icalendar.el library."
15418 (let* ((tmpdir (if (featurep 'xemacs)
15419 (temp-directory)
15420 temporary-file-directory))
15421 (tmpfile (make-temp-name
15422 (expand-file-name "orgics" tmpdir)))
15423 buf rtn b e)
15424 (with-current-buffer frombuf
15425 (icalendar-export-region (point-min) (point-max) tmpfile)
15426 (setq buf (find-buffer-visiting tmpfile))
15427 (set-buffer buf)
15428 (goto-char (point-min))
15429 (if (re-search-forward "^BEGIN:VEVENT" nil t)
15430 (setq b (match-beginning 0)))
15431 (goto-char (point-max))
15432 (if (re-search-backward "^END:VEVENT" nil t)
15433 (setq e (match-end 0)))
15434 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
15435 (kill-buffer buf)
15436 (delete-file tmpfile)
15437 rtn))
15439 (defun org-closest-date (start current change prefer show-all)
15440 "Find the date closest to CURRENT that is consistent with START and CHANGE.
15441 When PREFER is `past', return a date that is either CURRENT or past.
15442 When PREFER is `future', return a date that is either CURRENT or future.
15443 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
15444 ;; Make the proper lists from the dates
15445 (catch 'exit
15446 (let ((a1 '(("d" . day) ("w" . week) ("m" . month) ("y" . year)))
15447 dn dw sday cday n1 n2 n0
15448 d m y y1 y2 date1 date2 nmonths nm ny m2)
15450 (setq start (org-date-to-gregorian start)
15451 current (org-date-to-gregorian
15452 (if show-all
15453 current
15454 (time-to-days (current-time))))
15455 sday (calendar-absolute-from-gregorian start)
15456 cday (calendar-absolute-from-gregorian current))
15458 (if (<= cday sday) (throw 'exit sday))
15460 (if (string-match "\\(\\+[0-9]+\\)\\([dwmy]\\)" change)
15461 (setq dn (string-to-number (match-string 1 change))
15462 dw (cdr (assoc (match-string 2 change) a1)))
15463 (error "Invalid change specifier: %s" change))
15464 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
15465 (cond
15466 ((eq dw 'day)
15467 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
15468 n2 (+ n1 dn)))
15469 ((eq dw 'year)
15470 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
15471 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
15472 (setq date1 (list m d y1)
15473 n1 (calendar-absolute-from-gregorian date1)
15474 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
15475 n2 (calendar-absolute-from-gregorian date2)))
15476 ((eq dw 'month)
15477 ;; approx number of month between the two dates
15478 (setq nmonths (floor (/ (- cday sday) 30.436875)))
15479 ;; How often does dn fit in there?
15480 (setq d (nth 1 start) m (car start) y (nth 2 start)
15481 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
15482 m (+ m nm)
15483 ny (floor (/ m 12))
15484 y (+ y ny)
15485 m (- m (* ny 12)))
15486 (while (> m 12) (setq m (- m 12) y (1+ y)))
15487 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
15488 (setq m2 (+ m dn) y2 y)
15489 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
15490 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
15491 (while (<= n2 cday)
15492 (setq n1 n2 m m2 y y2)
15493 (setq m2 (+ m dn) y2 y)
15494 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
15495 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
15496 ;; Make sure n1 is the earlier date
15497 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
15498 (if show-all
15499 (cond
15500 ((eq prefer 'past) (if (= cday n2) n2 n1))
15501 ((eq prefer 'future) (if (= cday n1) n1 n2))
15502 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
15503 (cond
15504 ((eq prefer 'past) (if (= cday n2) n2 n1))
15505 ((eq prefer 'future) (if (= cday n1) n1 n2))
15506 (t (if (= cday n1) n1 n2)))))))
15508 (defun org-date-to-gregorian (date)
15509 "Turn any specification of DATE into a Gregorian date for the calendar."
15510 (cond ((integerp date) (calendar-gregorian-from-absolute date))
15511 ((and (listp date) (= (length date) 3)) date)
15512 ((stringp date)
15513 (setq date (org-parse-time-string date))
15514 (list (nth 4 date) (nth 3 date) (nth 5 date)))
15515 ((listp date)
15516 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
15518 (defun org-parse-time-string (s &optional nodefault)
15519 "Parse the standard Org-mode time string.
15520 This should be a lot faster than the normal `parse-time-string'.
15521 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
15522 hour and minute fields will be nil if not given."
15523 (if (string-match org-ts-regexp0 s)
15524 (list 0
15525 (if (or (match-beginning 8) (not nodefault))
15526 (string-to-number (or (match-string 8 s) "0")))
15527 (if (or (match-beginning 7) (not nodefault))
15528 (string-to-number (or (match-string 7 s) "0")))
15529 (string-to-number (match-string 4 s))
15530 (string-to-number (match-string 3 s))
15531 (string-to-number (match-string 2 s))
15532 nil nil nil)
15533 (error "Not a standard Org-mode time string: %s" s)))
15535 (defun org-timestamp-up (&optional arg)
15536 "Increase the date item at the cursor by one.
15537 If the cursor is on the year, change the year. If it is on the month,
15538 the day or the time, change that.
15539 With prefix ARG, change by that many units."
15540 (interactive "p")
15541 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
15543 (defun org-timestamp-down (&optional arg)
15544 "Decrease the date item at the cursor by one.
15545 If the cursor is on the year, change the year. If it is on the month,
15546 the day or the time, change that.
15547 With prefix ARG, change by that many units."
15548 (interactive "p")
15549 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
15551 (defun org-timestamp-up-day (&optional arg)
15552 "Increase the date in the time stamp by one day.
15553 With prefix ARG, change that many days."
15554 (interactive "p")
15555 (if (and (not (org-at-timestamp-p t))
15556 (org-on-heading-p))
15557 (org-todo 'up)
15558 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
15560 (defun org-timestamp-down-day (&optional arg)
15561 "Decrease the date in the time stamp by one day.
15562 With prefix ARG, change that many days."
15563 (interactive "p")
15564 (if (and (not (org-at-timestamp-p t))
15565 (org-on-heading-p))
15566 (org-todo 'down)
15567 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
15569 (defun org-at-timestamp-p (&optional inactive-ok)
15570 "Determine if the cursor is in or at a timestamp."
15571 (interactive)
15572 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
15573 (pos (point))
15574 (ans (or (looking-at tsr)
15575 (save-excursion
15576 (skip-chars-backward "^[<\n\r\t")
15577 (if (> (point) (point-min)) (backward-char 1))
15578 (and (looking-at tsr)
15579 (> (- (match-end 0) pos) -1))))))
15580 (and ans
15581 (boundp 'org-ts-what)
15582 (setq org-ts-what
15583 (cond
15584 ((= pos (match-beginning 0)) 'bracket)
15585 ((= pos (1- (match-end 0))) 'bracket)
15586 ((org-pos-in-match-range pos 2) 'year)
15587 ((org-pos-in-match-range pos 3) 'month)
15588 ((org-pos-in-match-range pos 7) 'hour)
15589 ((org-pos-in-match-range pos 8) 'minute)
15590 ((or (org-pos-in-match-range pos 4)
15591 (org-pos-in-match-range pos 5)) 'day)
15592 ((and (> pos (or (match-end 8) (match-end 5)))
15593 (< pos (match-end 0)))
15594 (- pos (or (match-end 8) (match-end 5))))
15595 (t 'day))))
15596 ans))
15598 (defun org-toggle-timestamp-type ()
15599 "Toggle the type (<active> or [inactive]) of a time stamp."
15600 (interactive)
15601 (when (org-at-timestamp-p t)
15602 (let ((beg (match-beginning 0)) (end (match-end 0))
15603 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
15604 (save-excursion
15605 (goto-char beg)
15606 (while (re-search-forward "[][<>]" end t)
15607 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
15608 t t)))
15609 (message "Timestamp is now %sactive"
15610 (if (equal (char-after beg) ?<) "" "in")))))
15612 (defun org-timestamp-change (n &optional what updown)
15613 "Change the date in the time stamp at point.
15614 The date will be changed by N times WHAT. WHAT can be `day', `month',
15615 `year', `minute', `second'. If WHAT is not given, the cursor position
15616 in the timestamp determines what will be changed."
15617 (let ((origin (point)) origin-cat
15618 with-hm inactive
15619 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
15620 org-ts-what
15621 extra rem
15622 ts time time0)
15623 (if (not (org-at-timestamp-p t))
15624 (error "Not at a timestamp"))
15625 (if (and (not what) (eq org-ts-what 'bracket))
15626 (org-toggle-timestamp-type)
15627 ;; Point isn't on brackets. Remember the part of the time-stamp
15628 ;; the point was in. Indeed, size of time-stamps may change,
15629 ;; but point must be kept in the same category nonetheless.
15630 (setq origin-cat org-ts-what)
15631 (if (and (not what) (not (eq org-ts-what 'day))
15632 org-display-custom-times
15633 (get-text-property (point) 'display)
15634 (not (get-text-property (1- (point)) 'display)))
15635 (setq org-ts-what 'day))
15636 (setq org-ts-what (or what org-ts-what)
15637 inactive (= (char-after (match-beginning 0)) ?\[)
15638 ts (match-string 0))
15639 (replace-match "")
15640 (if (string-match
15641 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?[-+][0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)*\\)[]>]"
15643 (setq extra (match-string 1 ts)))
15644 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
15645 (setq with-hm t))
15646 (setq time0 (org-parse-time-string ts))
15647 (when (and updown
15648 (eq org-ts-what 'minute)
15649 (not current-prefix-arg))
15650 ;; This looks like s-up and s-down. Change by one rounding step.
15651 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
15652 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
15653 (setcar (cdr time0) (+ (nth 1 time0)
15654 (if (> n 0) (- rem) (- dm rem))))))
15655 (setq time
15656 (encode-time (or (car time0) 0)
15657 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
15658 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
15659 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
15660 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
15661 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
15662 (nthcdr 6 time0)))
15663 (when (and (member org-ts-what '(hour minute))
15664 extra
15665 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
15666 (setq extra (org-modify-ts-extra
15667 extra
15668 (if (eq org-ts-what 'hour) 2 5)
15669 n dm)))
15670 (when (integerp org-ts-what)
15671 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
15672 (if (eq what 'calendar)
15673 (let ((cal-date (org-get-date-from-calendar)))
15674 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
15675 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
15676 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
15677 (setcar time0 (or (car time0) 0))
15678 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
15679 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
15680 (setq time (apply 'encode-time time0))))
15681 ;; Insert the new time-stamp, and ensure point stays in the same
15682 ;; category as before (i.e. not after the last position in that
15683 ;; category).
15684 (let ((pos (point)))
15685 ;; Stay before inserted string. `save-excursion' is of no use.
15686 (setq org-last-changed-timestamp
15687 (org-insert-time-stamp time with-hm inactive nil nil extra))
15688 (goto-char pos))
15689 (save-match-data
15690 (looking-at org-ts-regexp3)
15691 (goto-char (cond
15692 ;; `day' category ends before `hour' if any, or at
15693 ;; the end of the day name.
15694 ((eq origin-cat 'day)
15695 (min (or (match-beginning 7) (1- (match-end 5))) origin))
15696 ((eq origin-cat 'hour) (min (match-end 7) origin))
15697 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
15698 ((integerp origin-cat) (min (1- (match-end 0)) origin))
15699 ;; `year' and `month' have both fixed size: point
15700 ;; couldn't have moved into another part.
15701 (t origin))))
15702 ;; Update clock if on a CLOCK line.
15703 (org-clock-update-time-maybe)
15704 ;; Try to recenter the calendar window, if any.
15705 (if (and org-calendar-follow-timestamp-change
15706 (get-buffer-window "*Calendar*" t)
15707 (memq org-ts-what '(day month year)))
15708 (org-recenter-calendar (time-to-days time))))))
15710 (defun org-modify-ts-extra (s pos n dm)
15711 "Change the different parts of the lead-time and repeat fields in timestamp."
15712 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
15713 ng h m new rem)
15714 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
15715 (cond
15716 ((or (org-pos-in-match-range pos 2)
15717 (org-pos-in-match-range pos 3))
15718 (setq m (string-to-number (match-string 3 s))
15719 h (string-to-number (match-string 2 s)))
15720 (if (org-pos-in-match-range pos 2)
15721 (setq h (+ h n))
15722 (setq n (* dm (org-no-warnings (signum n))))
15723 (when (not (= 0 (setq rem (% m dm))))
15724 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
15725 (setq m (+ m n)))
15726 (if (< m 0) (setq m (+ m 60) h (1- h)))
15727 (if (> m 59) (setq m (- m 60) h (1+ h)))
15728 (setq h (min 24 (max 0 h)))
15729 (setq ng 1 new (format "-%02d:%02d" h m)))
15730 ((org-pos-in-match-range pos 6)
15731 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
15732 ((org-pos-in-match-range pos 5)
15733 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
15735 ((org-pos-in-match-range pos 9)
15736 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
15737 ((org-pos-in-match-range pos 8)
15738 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
15740 (when ng
15741 (setq s (concat
15742 (substring s 0 (match-beginning ng))
15744 (substring s (match-end ng))))))
15747 (defun org-recenter-calendar (date)
15748 "If the calendar is visible, recenter it to DATE."
15749 (let* ((win (selected-window))
15750 (cwin (get-buffer-window "*Calendar*" t))
15751 (calendar-move-hook nil))
15752 (when cwin
15753 (select-window cwin)
15754 (calendar-goto-date (if (listp date) date
15755 (calendar-gregorian-from-absolute date)))
15756 (select-window win))))
15758 (defun org-goto-calendar (&optional arg)
15759 "Go to the Emacs calendar at the current date.
15760 If there is a time stamp in the current line, go to that date.
15761 A prefix ARG can be used to force the current date."
15762 (interactive "P")
15763 (let ((tsr org-ts-regexp) diff
15764 (calendar-move-hook nil)
15765 (calendar-view-holidays-initially-flag nil)
15766 (calendar-view-diary-initially-flag nil))
15767 (if (or (org-at-timestamp-p)
15768 (save-excursion
15769 (beginning-of-line 1)
15770 (looking-at (concat ".*" tsr))))
15771 (let ((d1 (time-to-days (current-time)))
15772 (d2 (time-to-days
15773 (org-time-string-to-time (match-string 1)))))
15774 (setq diff (- d2 d1))))
15775 (calendar)
15776 (calendar-goto-today)
15777 (if (and diff (not arg)) (calendar-forward-day diff))))
15779 (defun org-get-date-from-calendar ()
15780 "Return a list (month day year) of date at point in calendar."
15781 (with-current-buffer "*Calendar*"
15782 (save-match-data
15783 (calendar-cursor-to-date))))
15785 (defun org-date-from-calendar ()
15786 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
15787 If there is already a time stamp at the cursor position, update it."
15788 (interactive)
15789 (if (org-at-timestamp-p t)
15790 (org-timestamp-change 0 'calendar)
15791 (let ((cal-date (org-get-date-from-calendar)))
15792 (org-insert-time-stamp
15793 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
15795 (defun org-minutes-to-hh:mm-string (m)
15796 "Compute H:MM from a number of minutes."
15797 (let ((h (/ m 60)))
15798 (setq m (- m (* 60 h)))
15799 (format org-time-clocksum-format h m)))
15801 (defun org-hh:mm-string-to-minutes (s)
15802 "Convert a string H:MM to a number of minutes.
15803 If the string is just a number, interpret it as minutes.
15804 In fact, the first hh:mm or number in the string will be taken,
15805 there can be extra stuff in the string.
15806 If no number is found, the return value is 0."
15807 (cond
15808 ((integerp s) s)
15809 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
15810 (+ (* (string-to-number (match-string 1 s)) 60)
15811 (string-to-number (match-string 2 s))))
15812 ((string-match "\\([0-9]+\\)" s)
15813 (string-to-number (match-string 1 s)))
15814 (t 0)))
15816 (defcustom org-effort-durations
15817 `(("h" . 60)
15818 ("d" . ,(* 60 8))
15819 ("w" . ,(* 60 8 5))
15820 ("m" . ,(* 60 8 5 4))
15821 ("y" . ,(* 60 8 5 40)))
15822 "Conversion factor to minutes for an effort modifier.
15824 Each entry has the form (MODIFIER . MINUTES).
15826 In an effort string, a number followed by MODIFIER is multiplied
15827 by the specified number of MINUTES to obtain an effort in
15828 minutes.
15830 For example, if the value of this variable is ((\"hours\" . 60)), then an
15831 effort string \"2hours\" is equivalent to 120 minutes."
15832 :group 'org-agenda
15833 :type '(alist :key-type (string :tag "Modifier")
15834 :value-type (number :tag "Minutes")))
15836 (defun org-duration-string-to-minutes (s)
15837 "Convert a duration string S to minutes.
15839 A bare number is interpreted as minutes, modifiers can be set by
15840 customizing `org-effort-durations' (which see).
15842 Entries containing a colon are interpreted as H:MM by
15843 `org-hh:mm-string-to-minutes'."
15844 (let ((result 0)
15845 (re (concat "\\([0-9]+\\) *\\("
15846 (regexp-opt (mapcar 'car org-effort-durations))
15847 "\\)")))
15848 (while (string-match re s)
15849 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
15850 (string-to-number (match-string 1 s))))
15851 (setq s (replace-match "" nil t s)))
15852 (incf result (org-hh:mm-string-to-minutes s))
15853 result))
15855 ;;;; Files
15857 (defun org-save-all-org-buffers ()
15858 "Save all Org-mode buffers without user confirmation."
15859 (interactive)
15860 (message "Saving all Org-mode buffers...")
15861 (save-some-buffers t 'org-mode-p)
15862 (when (featurep 'org-id) (org-id-locations-save))
15863 (message "Saving all Org-mode buffers... done"))
15865 (defun org-revert-all-org-buffers ()
15866 "Revert all Org-mode buffers.
15867 Prompt for confirmation when there are unsaved changes.
15868 Be sure you know what you are doing before letting this function
15869 overwrite your changes.
15871 This function is useful in a setup where one tracks org files
15872 with a version control system, to revert on one machine after pulling
15873 changes from another. I believe the procedure must be like this:
15875 1. M-x org-save-all-org-buffers
15876 2. Pull changes from the other machine, resolve conflicts
15877 3. M-x org-revert-all-org-buffers"
15878 (interactive)
15879 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
15880 (error "Abort"))
15881 (save-excursion
15882 (save-window-excursion
15883 (mapc
15884 (lambda (b)
15885 (when (and (with-current-buffer b (org-mode-p))
15886 (with-current-buffer b buffer-file-name))
15887 (org-pop-to-buffer-same-window b)
15888 (revert-buffer t 'no-confirm)))
15889 (buffer-list))
15890 (when (and (featurep 'org-id) org-id-track-globally)
15891 (org-id-locations-load)))))
15893 ;;;; Agenda files
15895 ;;;###autoload
15896 (defun org-switchb (&optional arg)
15897 "Switch between Org buffers.
15898 With a prefix argument, restrict available to files.
15899 With two prefix arguments, restrict available buffers to agenda files.
15901 Defaults to `iswitchb' for buffer name completion.
15902 Set `org-completion-use-ido' to make it use ido instead."
15903 (interactive "P")
15904 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
15905 ((equal arg '(16)) (org-buffer-list 'agenda))
15906 (t (org-buffer-list))))
15907 (org-completion-use-iswitchb org-completion-use-iswitchb)
15908 (org-completion-use-ido org-completion-use-ido))
15909 (unless (or org-completion-use-ido org-completion-use-iswitchb)
15910 (setq org-completion-use-iswitchb t))
15911 (org-pop-to-buffer-same-window
15912 (org-icompleting-read "Org buffer: "
15913 (mapcar 'list (mapcar 'buffer-name blist))
15914 nil t))))
15916 ;;; Define some older names previously used for this functionality
15917 ;;;###autoload
15918 (defalias 'org-ido-switchb 'org-switchb)
15919 ;;;###autoload
15920 (defalias 'org-iswitchb 'org-switchb)
15922 (defun org-buffer-list (&optional predicate exclude-tmp)
15923 "Return a list of Org buffers.
15924 PREDICATE can be `export', `files' or `agenda'.
15926 export restrict the list to Export buffers.
15927 files restrict the list to buffers visiting Org files.
15928 agenda restrict the list to buffers visiting agenda files.
15930 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
15931 (let* ((bfn nil)
15932 (agenda-files (and (eq predicate 'agenda)
15933 (mapcar 'file-truename (org-agenda-files t))))
15934 (filter
15935 (cond
15936 ((eq predicate 'files)
15937 (lambda (b) (with-current-buffer b (org-mode-p))))
15938 ((eq predicate 'export)
15939 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
15940 ((eq predicate 'agenda)
15941 (lambda (b)
15942 (with-current-buffer b
15943 (and (org-mode-p)
15944 (setq bfn (buffer-file-name b))
15945 (member (file-truename bfn) agenda-files)))))
15946 (t (lambda (b) (with-current-buffer b
15947 (or (org-mode-p)
15948 (string-match "\*Org .*Export"
15949 (buffer-name b)))))))))
15950 (delq nil
15951 (mapcar
15952 (lambda(b)
15953 (if (and (funcall filter b)
15954 (or (not exclude-tmp)
15955 (not (string-match "tmp" (buffer-name b)))))
15957 nil))
15958 (buffer-list)))))
15960 (defun org-agenda-files (&optional unrestricted archives)
15961 "Get the list of agenda files.
15962 Optional UNRESTRICTED means return the full list even if a restriction
15963 is currently in place.
15964 When ARCHIVES is t, include all archive files that are really being
15965 used by the agenda files. If ARCHIVE is `ifmode', do this only if
15966 `org-agenda-archives-mode' is t."
15967 (let ((files
15968 (cond
15969 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
15970 ((stringp org-agenda-files) (org-read-agenda-file-list))
15971 ((listp org-agenda-files) org-agenda-files)
15972 (t (error "Invalid value of `org-agenda-files'")))))
15973 (setq files (apply 'append
15974 (mapcar (lambda (f)
15975 (if (file-directory-p f)
15976 (directory-files
15977 f t org-agenda-file-regexp)
15978 (list f)))
15979 files)))
15980 (when org-agenda-skip-unavailable-files
15981 (setq files (delq nil
15982 (mapcar (function
15983 (lambda (file)
15984 (and (file-readable-p file) file)))
15985 files))))
15986 (when (or (eq archives t)
15987 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
15988 (setq files (org-add-archive-files files)))
15989 files))
15991 (defun org-agenda-file-p (&optional file)
15992 "Return non-nil, if FILE is an agenda file.
15993 If FILE is omitted, use the file associated with the current
15994 buffer."
15995 (member (or file (buffer-file-name))
15996 (org-agenda-files t)))
15998 (defun org-edit-agenda-file-list ()
15999 "Edit the list of agenda files.
16000 Depending on setup, this either uses customize to edit the variable
16001 `org-agenda-files', or it visits the file that is holding the list. In the
16002 latter case, the buffer is set up in a way that saving it automatically kills
16003 the buffer and restores the previous window configuration."
16004 (interactive)
16005 (if (stringp org-agenda-files)
16006 (let ((cw (current-window-configuration)))
16007 (find-file org-agenda-files)
16008 (org-set-local 'org-window-configuration cw)
16009 (org-add-hook 'after-save-hook
16010 (lambda ()
16011 (set-window-configuration
16012 (prog1 org-window-configuration
16013 (kill-buffer (current-buffer))))
16014 (org-install-agenda-files-menu)
16015 (message "New agenda file list installed"))
16016 nil 'local)
16017 (message "%s" (substitute-command-keys
16018 "Edit list and finish with \\[save-buffer]")))
16019 (customize-variable 'org-agenda-files)))
16021 (defun org-store-new-agenda-file-list (list)
16022 "Set new value for the agenda file list and save it correctly."
16023 (if (stringp org-agenda-files)
16024 (let ((fe (org-read-agenda-file-list t)) b u)
16025 (while (setq b (find-buffer-visiting org-agenda-files))
16026 (kill-buffer b))
16027 (with-temp-file org-agenda-files
16028 (insert
16029 (mapconcat
16030 (lambda (f) ;; Keep un-expanded entries.
16031 (if (setq u (assoc f fe))
16032 (cdr u)
16034 list "\n")
16035 "\n")))
16036 (let ((org-mode-hook nil) (org-inhibit-startup t)
16037 (org-insert-mode-line-in-empty-file nil))
16038 (setq org-agenda-files list)
16039 (customize-save-variable 'org-agenda-files org-agenda-files))))
16041 (defun org-read-agenda-file-list (&optional pair-with-expansion)
16042 "Read the list of agenda files from a file.
16043 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
16044 filenames, used by `org-store-new-agenda-file-list' to write back
16045 un-expanded file names."
16046 (when (file-directory-p org-agenda-files)
16047 (error "`org-agenda-files' cannot be a single directory"))
16048 (when (stringp org-agenda-files)
16049 (with-temp-buffer
16050 (insert-file-contents org-agenda-files)
16051 (mapcar
16052 (lambda (f)
16053 (let ((e (expand-file-name (substitute-in-file-name f)
16054 org-directory)))
16055 (if pair-with-expansion
16056 (cons e f)
16057 e)))
16058 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
16060 ;;;###autoload
16061 (defun org-cycle-agenda-files ()
16062 "Cycle through the files in `org-agenda-files'.
16063 If the current buffer visits an agenda file, find the next one in the list.
16064 If the current buffer does not, find the first agenda file."
16065 (interactive)
16066 (let* ((fs (org-agenda-files t))
16067 (files (append fs (list (car fs))))
16068 (tcf (if buffer-file-name (file-truename buffer-file-name)))
16069 file)
16070 (unless files (error "No agenda files"))
16071 (catch 'exit
16072 (while (setq file (pop files))
16073 (if (equal (file-truename file) tcf)
16074 (when (car files)
16075 (find-file (car files))
16076 (throw 'exit t))))
16077 (find-file (car fs)))
16078 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
16080 (defun org-agenda-file-to-front (&optional to-end)
16081 "Move/add the current file to the top of the agenda file list.
16082 If the file is not present in the list, it is added to the front. If it is
16083 present, it is moved there. With optional argument TO-END, add/move to the
16084 end of the list."
16085 (interactive "P")
16086 (let ((org-agenda-skip-unavailable-files nil)
16087 (file-alist (mapcar (lambda (x)
16088 (cons (file-truename x) x))
16089 (org-agenda-files t)))
16090 (ctf (file-truename buffer-file-name))
16091 x had)
16092 (setq x (assoc ctf file-alist) had x)
16094 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
16095 (if to-end
16096 (setq file-alist (append (delq x file-alist) (list x)))
16097 (setq file-alist (cons x (delq x file-alist))))
16098 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
16099 (org-install-agenda-files-menu)
16100 (message "File %s to %s of agenda file list"
16101 (if had "moved" "added") (if to-end "end" "front"))))
16103 (defun org-remove-file (&optional file)
16104 "Remove current file from the list of files in variable `org-agenda-files'.
16105 These are the files which are being checked for agenda entries.
16106 Optional argument FILE means use this file instead of the current."
16107 (interactive)
16108 (let* ((org-agenda-skip-unavailable-files nil)
16109 (file (or file buffer-file-name))
16110 (true-file (file-truename file))
16111 (afile (abbreviate-file-name file))
16112 (files (delq nil (mapcar
16113 (lambda (x)
16114 (if (equal true-file
16115 (file-truename x))
16116 nil x))
16117 (org-agenda-files t)))))
16118 (if (not (= (length files) (length (org-agenda-files t))))
16119 (progn
16120 (org-store-new-agenda-file-list files)
16121 (org-install-agenda-files-menu)
16122 (message "Removed file: %s" afile))
16123 (message "File was not in list: %s (not removed)" afile))))
16125 (defun org-file-menu-entry (file)
16126 (vector file (list 'find-file file) t))
16128 (defun org-check-agenda-file (file)
16129 "Make sure FILE exists. If not, ask user what to do."
16130 (when (not (file-exists-p file))
16131 (message "non-existent agenda file %s. [R]emove from list or [A]bort?"
16132 (abbreviate-file-name file))
16133 (let ((r (downcase (read-char-exclusive))))
16134 (cond
16135 ((equal r ?r)
16136 (org-remove-file file)
16137 (throw 'nextfile t))
16138 (t (error "Abort"))))))
16140 (defun org-get-agenda-file-buffer (file)
16141 "Get a buffer visiting FILE. If the buffer needs to be created, add
16142 it to the list of buffers which might be released later."
16143 (let ((buf (org-find-base-buffer-visiting file)))
16144 (if buf
16145 buf ; just return it
16146 ;; Make a new buffer and remember it
16147 (setq buf (find-file-noselect file))
16148 (if buf (push buf org-agenda-new-buffers))
16149 buf)))
16151 (defun org-release-buffers (blist)
16152 "Release all buffers in list, asking the user for confirmation when needed.
16153 When a buffer is unmodified, it is just killed. When modified, it is saved
16154 \(if the user agrees) and then killed."
16155 (let (buf file)
16156 (while (setq buf (pop blist))
16157 (setq file (buffer-file-name buf))
16158 (when (and (buffer-modified-p buf)
16159 file
16160 (y-or-n-p (format "Save file %s? " file)))
16161 (with-current-buffer buf (save-buffer)))
16162 (kill-buffer buf))))
16164 (defun org-prepare-agenda-buffers (files)
16165 "Create buffers for all agenda files, protect archived trees and comments."
16166 (interactive)
16167 (let ((pa '(:org-archived t))
16168 (pc '(:org-comment t))
16169 (pall '(:org-archived t :org-comment t))
16170 (inhibit-read-only t)
16171 (rea (concat ":" org-archive-tag ":"))
16172 bmp file re)
16173 (save-excursion
16174 (save-restriction
16175 (while (setq file (pop files))
16176 (catch 'nextfile
16177 (if (bufferp file)
16178 (set-buffer file)
16179 (org-check-agenda-file file)
16180 (set-buffer (org-get-agenda-file-buffer file)))
16181 (widen)
16182 (setq bmp (buffer-modified-p))
16183 (org-refresh-category-properties)
16184 (setq org-todo-keywords-for-agenda
16185 (append org-todo-keywords-for-agenda org-todo-keywords-1))
16186 (setq org-done-keywords-for-agenda
16187 (append org-done-keywords-for-agenda org-done-keywords))
16188 (setq org-todo-keyword-alist-for-agenda
16189 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
16190 (setq org-drawers-for-agenda
16191 (append org-drawers-for-agenda org-drawers))
16192 (setq org-tag-alist-for-agenda
16193 (append org-tag-alist-for-agenda org-tag-alist))
16195 (save-excursion
16196 (remove-text-properties (point-min) (point-max) pall)
16197 (when org-agenda-skip-archived-trees
16198 (goto-char (point-min))
16199 (while (re-search-forward rea nil t)
16200 (if (org-on-heading-p t)
16201 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
16202 (goto-char (point-min))
16203 (setq re (concat org-outline-regexp-bol "+" org-comment-string "\\>"))
16204 (while (re-search-forward re nil t)
16205 (add-text-properties
16206 (match-beginning 0) (org-end-of-subtree t) pc)))
16207 (set-buffer-modified-p bmp)))))
16208 (setq org-todo-keywords-for-agenda
16209 (org-uniquify org-todo-keywords-for-agenda))
16210 (setq org-todo-keyword-alist-for-agenda
16211 (org-uniquify org-todo-keyword-alist-for-agenda)
16212 org-tag-alist-for-agenda (org-uniquify org-tag-alist-for-agenda))))
16214 ;;;; Embedded LaTeX
16216 (defvar org-cdlatex-mode-map (make-sparse-keymap)
16217 "Keymap for the minor `org-cdlatex-mode'.")
16219 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
16220 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
16221 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
16222 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
16223 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
16225 (defvar org-cdlatex-texmathp-advice-is-done nil
16226 "Flag remembering if we have applied the advice to texmathp already.")
16228 (define-minor-mode org-cdlatex-mode
16229 "Toggle the minor `org-cdlatex-mode'.
16230 This mode supports entering LaTeX environment and math in LaTeX fragments
16231 in Org-mode.
16232 \\{org-cdlatex-mode-map}"
16233 nil " OCDL" nil
16234 (when org-cdlatex-mode (require 'cdlatex))
16235 (unless org-cdlatex-texmathp-advice-is-done
16236 (setq org-cdlatex-texmathp-advice-is-done t)
16237 (defadvice texmathp (around org-math-always-on activate)
16238 "Always return t in org-mode buffers.
16239 This is because we want to insert math symbols without dollars even outside
16240 the LaTeX math segments. If Orgmode thinks that point is actually inside
16241 an embedded LaTeX fragment, let texmathp do its job.
16242 \\[org-cdlatex-mode-map]"
16243 (interactive)
16244 (let (p)
16245 (cond
16246 ((not (org-mode-p)) ad-do-it)
16247 ((eq this-command 'cdlatex-math-symbol)
16248 (setq ad-return-value t
16249 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
16251 (let ((p (org-inside-LaTeX-fragment-p)))
16252 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
16253 (setq ad-return-value t
16254 texmathp-why '("Org-mode embedded math" . 0))
16255 (if p ad-do-it)))))))))
16257 (defun turn-on-org-cdlatex ()
16258 "Unconditionally turn on `org-cdlatex-mode'."
16259 (org-cdlatex-mode 1))
16261 (defun org-inside-LaTeX-fragment-p ()
16262 "Test if point is inside a LaTeX fragment.
16263 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
16264 sequence appearing also before point.
16265 Even though the matchers for math are configurable, this function assumes
16266 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
16267 delimiters are skipped when they have been removed by customization.
16268 The return value is nil, or a cons cell with the delimiter and the
16269 position of this delimiter.
16271 This function does a reasonably good job, but can locally be fooled by
16272 for example currency specifications. For example it will assume being in
16273 inline math after \"$22.34\". The LaTeX fragment formatter will only format
16274 fragments that are properly closed, but during editing, we have to live
16275 with the uncertainty caused by missing closing delimiters. This function
16276 looks only before point, not after."
16277 (catch 'exit
16278 (let ((pos (point))
16279 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
16280 (lim (progn
16281 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
16282 (point)))
16283 dd-on str (start 0) m re)
16284 (goto-char pos)
16285 (when dodollar
16286 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
16287 re (nth 1 (assoc "$" org-latex-regexps)))
16288 (while (string-match re str start)
16289 (cond
16290 ((= (match-end 0) (length str))
16291 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
16292 ((= (match-end 0) (- (length str) 5))
16293 (throw 'exit nil))
16294 (t (setq start (match-end 0))))))
16295 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
16296 (goto-char pos)
16297 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
16298 (and (match-beginning 2) (throw 'exit nil))
16299 ;; count $$
16300 (while (re-search-backward "\\$\\$" lim t)
16301 (setq dd-on (not dd-on)))
16302 (goto-char pos)
16303 (if dd-on (cons "$$" m))))))
16305 (defun org-inside-latex-macro-p ()
16306 "Is point inside a LaTeX macro or its arguments?"
16307 (save-match-data
16308 (org-in-regexp
16309 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
16311 (defun org-try-cdlatex-tab ()
16312 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
16313 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
16314 - inside a LaTeX fragment, or
16315 - after the first word in a line, where an abbreviation expansion could
16316 insert a LaTeX environment."
16317 (when org-cdlatex-mode
16318 (cond
16319 ((save-excursion
16320 (skip-chars-backward "a-zA-Z0-9*")
16321 (skip-chars-backward " \t")
16322 (bolp))
16323 (cdlatex-tab) t)
16324 ((org-inside-LaTeX-fragment-p)
16325 (cdlatex-tab) t)
16326 (t nil))))
16328 (defun org-cdlatex-underscore-caret (&optional arg)
16329 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
16330 Revert to the normal definition outside of these fragments."
16331 (interactive "P")
16332 (if (org-inside-LaTeX-fragment-p)
16333 (call-interactively 'cdlatex-sub-superscript)
16334 (let (org-cdlatex-mode)
16335 (call-interactively (key-binding (vector last-input-event))))))
16337 (defun org-cdlatex-math-modify (&optional arg)
16338 "Execute `cdlatex-math-modify' in LaTeX fragments.
16339 Revert to the normal definition outside of these fragments."
16340 (interactive "P")
16341 (if (org-inside-LaTeX-fragment-p)
16342 (call-interactively 'cdlatex-math-modify)
16343 (let (org-cdlatex-mode)
16344 (call-interactively (key-binding (vector last-input-event))))))
16346 (defvar org-latex-fragment-image-overlays nil
16347 "List of overlays carrying the images of latex fragments.")
16348 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
16350 (defun org-remove-latex-fragment-image-overlays ()
16351 "Remove all overlays with LaTeX fragment images in current buffer."
16352 (mapc 'delete-overlay org-latex-fragment-image-overlays)
16353 (setq org-latex-fragment-image-overlays nil))
16355 (defun org-preview-latex-fragment (&optional subtree)
16356 "Preview the LaTeX fragment at point, or all locally or globally.
16357 If the cursor is in a LaTeX fragment, create the image and overlay
16358 it over the source code. If there is no fragment at point, display
16359 all fragments in the current text, from one headline to the next. With
16360 prefix SUBTREE, display all fragments in the current subtree. With a
16361 double prefix arg \\[universal-argument] \\[universal-argument], or when \
16362 the cursor is before the first headline,
16363 display all fragments in the buffer.
16364 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
16365 (interactive "P")
16366 (org-remove-latex-fragment-image-overlays)
16367 (save-excursion
16368 (save-restriction
16369 (let (beg end at msg)
16370 (cond
16371 ((or (equal subtree '(16))
16372 (not (save-excursion
16373 (re-search-backward org-outline-regexp-bol nil t))))
16374 (setq beg (point-min) end (point-max)
16375 msg "Creating images for buffer...%s"))
16376 ((equal subtree '(4))
16377 (org-back-to-heading)
16378 (setq beg (point) end (org-end-of-subtree t)
16379 msg "Creating images for subtree...%s"))
16381 (if (setq at (org-inside-LaTeX-fragment-p))
16382 (goto-char (max (point-min) (- (cdr at) 2)))
16383 (org-back-to-heading))
16384 (setq beg (point) end (progn (outline-next-heading) (point))
16385 msg (if at "Creating image...%s"
16386 "Creating images for entry...%s"))))
16387 (message msg "")
16388 (narrow-to-region beg end)
16389 (goto-char beg)
16390 (org-format-latex
16391 (concat "ltxpng/" (file-name-sans-extension
16392 (file-name-nondirectory
16393 buffer-file-name)))
16394 default-directory 'overlays msg at 'forbuffer 'dvipng)
16395 (message msg "done. Use `C-c C-c' to remove images.")))))
16397 (defvar org-latex-regexps
16398 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
16399 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
16400 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
16401 ("$1" "\\([^$]\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
16402 ("$" "\\([^$]\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
16403 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
16404 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
16405 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
16406 "Regular expressions for matching embedded LaTeX.")
16408 (defvar org-export-have-math nil) ;; dynamic scoping
16409 (defun org-format-latex (prefix &optional dir overlays msg at
16410 forbuffer processing-type)
16411 "Replace LaTeX fragments with links to an image, and produce images.
16412 Some of the options can be changed using the variable
16413 `org-format-latex-options'."
16414 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
16415 (let* ((prefixnodir (file-name-nondirectory prefix))
16416 (absprefix (expand-file-name prefix dir))
16417 (todir (file-name-directory absprefix))
16418 (opt org-format-latex-options)
16419 (matchers (plist-get opt :matchers))
16420 (re-list org-latex-regexps)
16421 (org-format-latex-header-extra
16422 (plist-get (org-infile-export-plist) :latex-header-extra))
16423 (cnt 0) txt hash link beg end re e checkdir
16424 executables-checked string
16425 m n block linkfile movefile ov)
16426 ;; Check the different regular expressions
16427 (while (setq e (pop re-list))
16428 (setq m (car e) re (nth 1 e) n (nth 2 e)
16429 block (if (nth 3 e) "\n\n" ""))
16430 (when (member m matchers)
16431 (goto-char (point-min))
16432 (while (re-search-forward re nil t)
16433 (when (and (or (not at) (equal (cdr at) (match-beginning n)))
16434 (not (get-text-property (match-beginning n)
16435 'org-protected))
16436 (or (not overlays)
16437 (not (eq (get-char-property (match-beginning n)
16438 'org-overlay-type)
16439 'org-latex-overlay))))
16440 (setq org-export-have-math t)
16441 (cond
16442 ((eq processing-type 'verbatim)
16443 ;; Leave the text verbatim, just protect it
16444 (add-text-properties (match-beginning n) (match-end n)
16445 '(org-protected t)))
16446 ((eq processing-type 'mathjax)
16447 ;; Prepare for MathJax processing
16448 (setq string (match-string n))
16449 (if (member m '("$" "$1"))
16450 (save-excursion
16451 (delete-region (match-beginning n) (match-end n))
16452 (goto-char (match-beginning n))
16453 (insert (org-add-props (concat "\\(" (substring string 1 -1)
16454 "\\)")
16455 '(org-protected t))))
16456 (add-text-properties (match-beginning n) (match-end n)
16457 '(org-protected t))))
16458 ((or (eq processing-type 'dvipng) t)
16459 ;; Process to an image
16460 (setq txt (match-string n)
16461 beg (match-beginning n) end (match-end n)
16462 cnt (1+ cnt))
16463 (let (print-length print-level) ; make sure full list is printed
16464 (setq hash (sha1 (prin1-to-string
16465 (list org-format-latex-header
16466 org-format-latex-header-extra
16467 org-export-latex-default-packages-alist
16468 org-export-latex-packages-alist
16469 org-format-latex-options
16470 forbuffer txt)))
16471 linkfile (format "%s_%s.png" prefix hash)
16472 movefile (format "%s_%s.png" absprefix hash)))
16473 (setq link (concat block "[[file:" linkfile "]]" block))
16474 (if msg (message msg cnt))
16475 (goto-char beg)
16476 (unless checkdir ; make sure the directory exists
16477 (setq checkdir t)
16478 (or (file-directory-p todir) (make-directory todir t)))
16480 (unless executables-checked
16481 (org-check-external-command
16482 "latex" "needed to convert LaTeX fragments to images")
16483 (org-check-external-command
16484 "dvipng" "needed to convert LaTeX fragments to images")
16485 (setq executables-checked t))
16487 (unless (file-exists-p movefile)
16488 (org-create-formula-image
16489 txt movefile opt forbuffer))
16490 (if overlays
16491 (progn
16492 (mapc (lambda (o)
16493 (if (eq (overlay-get o 'org-overlay-type)
16494 'org-latex-overlay)
16495 (delete-overlay o)))
16496 (overlays-in beg end))
16497 (setq ov (make-overlay beg end))
16498 (overlay-put ov 'org-overlay-type 'org-latex-overlay)
16499 (if (featurep 'xemacs)
16500 (progn
16501 (overlay-put ov 'invisible t)
16502 (overlay-put
16503 ov 'end-glyph
16504 (make-glyph (vector 'png :file movefile))))
16505 (overlay-put
16506 ov 'display
16507 (list 'image :type 'png :file movefile :ascent 'center)))
16508 (push ov org-latex-fragment-image-overlays)
16509 (goto-char end))
16510 (delete-region beg end)
16511 (insert (org-add-props link
16512 (list 'org-latex-src
16513 (replace-regexp-in-string
16514 "\"" "" txt)))))))))))))
16516 ;; This function borrows from Ganesh Swami's latex2png.el
16517 (defun org-create-formula-image (string tofile options buffer)
16518 "This calls dvipng."
16519 (require 'org-latex)
16520 (let* ((tmpdir (if (featurep 'xemacs)
16521 (temp-directory)
16522 temporary-file-directory))
16523 (texfilebase (make-temp-name
16524 (expand-file-name "orgtex" tmpdir)))
16525 (texfile (concat texfilebase ".tex"))
16526 (dvifile (concat texfilebase ".dvi"))
16527 (pngfile (concat texfilebase ".png"))
16528 (fnh (if (featurep 'xemacs)
16529 (font-height (get-face-font 'default))
16530 (face-attribute 'default :height nil)))
16531 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
16532 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
16533 (fg (or (plist-get options (if buffer :foreground :html-foreground))
16534 "Black"))
16535 (bg (or (plist-get options (if buffer :background :html-background))
16536 "Transparent")))
16537 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground)))
16538 (if (eq bg 'default) (setq bg (org-dvipng-color :background)))
16539 (with-temp-file texfile
16540 (insert (org-splice-latex-header
16541 org-format-latex-header
16542 org-export-latex-default-packages-alist
16543 org-export-latex-packages-alist t
16544 org-format-latex-header-extra))
16545 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")
16546 (require 'org-latex)
16547 (org-export-latex-fix-inputenc))
16548 (let ((dir default-directory))
16549 (condition-case nil
16550 (progn
16551 (cd tmpdir)
16552 (call-process "latex" nil nil nil texfile))
16553 (error nil))
16554 (cd dir))
16555 (if (not (file-exists-p dvifile))
16556 (progn (message "Failed to create dvi file from %s" texfile) nil)
16557 (condition-case nil
16558 (call-process "dvipng" nil nil nil
16559 "-fg" fg "-bg" bg
16560 "-D" dpi
16561 ;;"-x" scale "-y" scale
16562 "-T" "tight"
16563 "-o" pngfile
16564 dvifile)
16565 (error nil))
16566 (if (not (file-exists-p pngfile))
16567 (if org-format-latex-signal-error
16568 (error "Failed to create png file from %s" texfile)
16569 (message "Failed to create png file from %s" texfile)
16570 nil)
16571 ;; Use the requested file name and clean up
16572 (copy-file pngfile tofile 'replace)
16573 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png") do
16574 (delete-file (concat texfilebase e)))
16575 pngfile))))
16577 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
16578 "Fill a LaTeX header template TPL.
16579 In the template, the following place holders will be recognized:
16581 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
16582 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
16583 [PACKAGES] \\usepackage statements for PKG
16584 [NO-PACKAGES] do not include PKG
16585 [EXTRA] the string EXTRA
16586 [NO-EXTRA] do not include EXTRA
16588 For backward compatibility, if both the positive and the negative place
16589 holder is missing, the positive one (without the \"NO-\") will be
16590 assumed to be present at the end of the template.
16591 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
16592 EXTRA is a string.
16593 SNIPPETS-P indicates if this is run to create snippet images for HTML."
16594 (let (rpl (end ""))
16595 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
16596 (setq rpl (if (or (match-end 1) (not def-pkg))
16597 "" (org-latex-packages-to-string def-pkg snippets-p t))
16598 tpl (replace-match rpl t t tpl))
16599 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
16601 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
16602 (setq rpl (if (or (match-end 1) (not pkg))
16603 "" (org-latex-packages-to-string pkg snippets-p t))
16604 tpl (replace-match rpl t t tpl))
16605 (if pkg (setq end
16606 (concat end "\n"
16607 (org-latex-packages-to-string pkg snippets-p)))))
16609 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
16610 (setq rpl (if (or (match-end 1) (not extra))
16611 "" (concat extra "\n"))
16612 tpl (replace-match rpl t t tpl))
16613 (if (and extra (string-match "\\S-" extra))
16614 (setq end (concat end "\n" extra))))
16616 (if (string-match "\\S-" end)
16617 (concat tpl "\n" end)
16618 tpl)))
16620 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
16621 "Turn an alist of packages into a string with the \\usepackage macros."
16622 (setq pkg (mapconcat (lambda(p)
16623 (cond
16624 ((stringp p) p)
16625 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
16626 (format "%% Package %s omitted" (cadr p)))
16627 ((equal "" (car p))
16628 (format "\\usepackage{%s}" (cadr p)))
16630 (format "\\usepackage[%s]{%s}"
16631 (car p) (cadr p)))))
16633 "\n"))
16634 (if newline (concat pkg "\n") pkg))
16636 (defun org-dvipng-color (attr)
16637 "Return an rgb color specification for dvipng."
16638 (apply 'format "rgb %s %s %s"
16639 (mapcar 'org-normalize-color
16640 (color-values (face-attribute 'default attr nil)))))
16642 (defun org-normalize-color (value)
16643 "Return string to be used as color value for an RGB component."
16644 (format "%g" (/ value 65535.0)))
16646 ;; Image display
16649 (defvar org-inline-image-overlays nil)
16650 (make-variable-buffer-local 'org-inline-image-overlays)
16652 (defun org-toggle-inline-images (&optional include-linked)
16653 "Toggle the display of inline images.
16654 INCLUDE-LINKED is passed to `org-display-inline-images'."
16655 (interactive "P")
16656 (if org-inline-image-overlays
16657 (progn
16658 (org-remove-inline-images)
16659 (message "Inline image display turned off"))
16660 (org-display-inline-images include-linked)
16661 (if org-inline-image-overlays
16662 (message "%d images displayed inline"
16663 (length org-inline-image-overlays))
16664 (message "No images to display inline"))))
16666 (defun org-display-inline-images (&optional include-linked refresh beg end)
16667 "Display inline images.
16668 Normally only links without a description part are inlined, because this
16669 is how it will work for export. When INCLUDE-LINKED is set, also links
16670 with a description part will be inlined. This can be nice for a quick
16671 look at those images, but it does not reflect what exported files will look
16672 like.
16673 When REFRESH is set, refresh existing images between BEG and END.
16674 This will create new image displays only if necessary.
16675 BEG and END default to the buffer boundaries."
16676 (interactive "P")
16677 (unless refresh
16678 (org-remove-inline-images)
16679 (if (fboundp 'clear-image-cache) (clear-image-cache)))
16680 (save-excursion
16681 (save-restriction
16682 (widen)
16683 (setq beg (or beg (point-min)) end (or end (point-max)))
16684 (goto-char (point-min))
16685 (let ((re (concat "\\[\\[\\(\\(file:\\)\\|\\([./~]\\)\\)\\([^]\n]+?"
16686 (substring (org-image-file-name-regexp) 0 -2)
16687 "\\)\\]" (if include-linked "" "\\]")))
16688 old file ov img)
16689 (while (re-search-forward re end t)
16690 (setq old (get-char-property-and-overlay (match-beginning 1)
16691 'org-image-overlay))
16692 (setq file (expand-file-name
16693 (concat (or (match-string 3) "") (match-string 4))))
16694 (when (file-exists-p file)
16695 (if (and (car-safe old) refresh)
16696 (image-refresh (overlay-get (cdr old) 'display))
16697 (setq img (save-match-data (create-image file)))
16698 (when img
16699 (setq ov (make-overlay (match-beginning 0) (match-end 0)))
16700 (overlay-put ov 'display img)
16701 (overlay-put ov 'face 'default)
16702 (overlay-put ov 'org-image-overlay t)
16703 (overlay-put ov 'modification-hooks
16704 (list 'org-display-inline-modification-hook))
16705 (push ov org-inline-image-overlays)))))))))
16707 (defun org-display-inline-modification-hook (ov after beg end &optional len)
16708 "Remove inline-display overlay if a corresponding region is modified."
16709 (let ((inhibit-modification-hooks t))
16710 (when (and ov after)
16711 (delete ov org-inline-image-overlays)
16712 (delete-overlay ov))))
16714 (defun org-remove-inline-images ()
16715 "Remove inline display of images."
16716 (interactive)
16717 (mapc 'delete-overlay org-inline-image-overlays)
16718 (setq org-inline-image-overlays nil))
16720 ;;;; Key bindings
16722 ;; Make `C-c C-x' a prefix key
16723 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
16725 ;; TAB key with modifiers
16726 (org-defkey org-mode-map "\C-i" 'org-cycle)
16727 (org-defkey org-mode-map [(tab)] 'org-cycle)
16728 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
16729 (org-defkey org-mode-map [(meta tab)] 'pcomplete)
16730 (org-defkey org-mode-map "\M-\t" 'pcomplete)
16731 (org-defkey org-mode-map "\M-\C-i" 'pcomplete)
16732 ;; The following line is necessary under Suse GNU/Linux
16733 (unless (featurep 'xemacs)
16734 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
16735 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
16736 (define-key org-mode-map [backtab] 'org-shifttab)
16738 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
16739 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
16740 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
16742 ;; Cursor keys with modifiers
16743 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
16744 (org-defkey org-mode-map [(meta right)] 'org-metaright)
16745 (org-defkey org-mode-map [(meta up)] 'org-metaup)
16746 (org-defkey org-mode-map [(meta down)] 'org-metadown)
16748 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
16749 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
16750 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
16751 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
16753 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
16754 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
16755 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
16756 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
16758 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
16759 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
16760 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
16761 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
16763 ;; Babel keys
16764 (define-key org-mode-map org-babel-key-prefix org-babel-map)
16765 (mapc (lambda (pair)
16766 (define-key org-babel-map (car pair) (cdr pair)))
16767 org-babel-key-bindings)
16769 ;;; Extra keys for tty access.
16770 ;; We only set them when really needed because otherwise the
16771 ;; menus don't show the simple keys
16773 (when (or org-use-extra-keys
16774 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
16775 (not window-system))
16776 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
16777 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
16778 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
16779 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
16780 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
16781 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
16782 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
16783 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
16784 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
16785 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
16786 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
16787 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
16788 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
16789 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
16790 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
16791 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
16792 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
16793 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
16794 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
16795 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
16796 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
16797 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
16798 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
16799 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
16800 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
16801 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
16802 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
16803 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
16805 ;; All the other keys
16807 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
16808 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
16809 (if (boundp 'narrow-map)
16810 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
16811 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
16812 (if (boundp 'narrow-map)
16813 (org-defkey narrow-map "b" 'org-narrow-to-block)
16814 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
16815 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-same-level)
16816 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-same-level)
16817 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
16818 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
16819 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
16820 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
16821 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
16822 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
16823 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
16824 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
16825 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
16826 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
16827 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
16828 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
16829 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
16830 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
16831 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
16832 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
16833 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
16834 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
16835 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
16836 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
16837 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
16838 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
16839 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
16840 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
16841 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
16842 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
16843 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
16844 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
16845 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
16846 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
16847 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
16848 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
16849 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
16850 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
16851 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
16852 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
16853 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
16854 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
16855 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
16856 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
16857 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
16858 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
16859 (org-defkey org-mode-map "\C-c^" 'org-sort)
16860 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
16861 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
16862 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
16863 (org-defkey org-mode-map "\C-m" 'org-return)
16864 (org-defkey org-mode-map "\C-j" 'org-return-indent)
16865 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
16866 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
16867 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
16868 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
16869 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
16870 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
16871 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
16872 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
16873 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
16874 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
16875 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
16876 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
16877 (org-defkey org-mode-map "\C-c\C-e" 'org-export)
16878 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section)
16879 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
16880 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
16881 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
16882 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
16883 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
16884 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
16885 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
16887 (org-defkey org-mode-map "\C-c\C-x\C-k" 'org-mark-entry-for-agenda-action)
16888 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
16889 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
16890 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
16892 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
16893 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
16894 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
16895 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
16896 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-cancel)
16897 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
16898 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
16899 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
16900 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
16901 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
16902 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
16903 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
16904 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
16905 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
16906 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
16907 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
16908 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
16909 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
16911 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
16912 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
16913 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
16914 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
16915 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
16917 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
16919 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
16921 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
16922 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
16924 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
16927 (when (featurep 'xemacs)
16928 (org-defkey org-mode-map 'button3 'popup-mode-menu))
16931 (defconst org-speed-commands-default
16933 ("Outline Navigation")
16934 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
16935 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
16936 ("f" . (org-speed-move-safe 'org-forward-same-level))
16937 ("b" . (org-speed-move-safe 'org-backward-same-level))
16938 ("u" . (org-speed-move-safe 'outline-up-heading))
16939 ("j" . org-goto)
16940 ("g" . (org-refile t))
16941 ("Outline Visibility")
16942 ("c" . org-cycle)
16943 ("C" . org-shifttab)
16944 (" " . org-display-outline-path)
16945 ("Outline Structure Editing")
16946 ("U" . org-shiftmetaup)
16947 ("D" . org-shiftmetadown)
16948 ("r" . org-metaright)
16949 ("l" . org-metaleft)
16950 ("R" . org-shiftmetaright)
16951 ("L" . org-shiftmetaleft)
16952 ("i" . (progn (forward-char 1) (call-interactively
16953 'org-insert-heading-respect-content)))
16954 ("^" . org-sort)
16955 ("w" . org-refile)
16956 ("a" . org-archive-subtree-default-with-confirmation)
16957 ("." . org-mark-subtree)
16958 ("Clock Commands")
16959 ("I" . org-clock-in)
16960 ("O" . org-clock-out)
16961 ("Meta Data Editing")
16962 ("t" . org-todo)
16963 ("0" . (org-priority ?\ ))
16964 ("1" . (org-priority ?A))
16965 ("2" . (org-priority ?B))
16966 ("3" . (org-priority ?C))
16967 (";" . org-set-tags-command)
16968 ("e" . org-set-effort)
16969 ("Agenda Views etc")
16970 ("v" . org-agenda)
16971 ("/" . org-sparse-tree)
16972 ("Misc")
16973 ("o" . org-open-at-point)
16974 ("?" . org-speed-command-help)
16975 ("<" . (org-agenda-set-restriction-lock 'subtree))
16976 (">" . (org-agenda-remove-restriction-lock))
16978 "The default speed commands.")
16980 (defun org-print-speed-command (e)
16981 (if (> (length (car e)) 1)
16982 (progn
16983 (princ "\n")
16984 (princ (car e))
16985 (princ "\n")
16986 (princ (make-string (length (car e)) ?-))
16987 (princ "\n"))
16988 (princ (car e))
16989 (princ " ")
16990 (if (symbolp (cdr e))
16991 (princ (symbol-name (cdr e)))
16992 (prin1 (cdr e)))
16993 (princ "\n")))
16995 (defun org-speed-command-help ()
16996 "Show the available speed commands."
16997 (interactive)
16998 (if (not org-use-speed-commands)
16999 (error "Speed commands are not activated, customize `org-use-speed-commands'")
17000 (with-output-to-temp-buffer "*Help*"
17001 (princ "User-defined Speed commands\n===========================\n")
17002 (mapc 'org-print-speed-command org-speed-commands-user)
17003 (princ "\n")
17004 (princ "Built-in Speed commands\n=======================\n")
17005 (mapc 'org-print-speed-command org-speed-commands-default))
17006 (with-current-buffer "*Help*"
17007 (setq truncate-lines t))))
17009 (defun org-speed-move-safe (cmd)
17010 "Execute CMD, but make sure that the cursor always ends up in a headline.
17011 If not, return to the original position and throw an error."
17012 (interactive)
17013 (let ((pos (point)))
17014 (call-interactively cmd)
17015 (unless (and (bolp) (org-on-heading-p))
17016 (goto-char pos)
17017 (error "Boundary reached while executing %s" cmd))))
17019 (defvar org-self-insert-command-undo-counter 0)
17021 (defvar org-table-auto-blank-field) ; defined in org-table.el
17022 (defvar org-speed-command nil)
17024 (defun org-speed-command-default-hook (keys)
17025 "Hook for activating single-letter speed commands.
17026 `org-speed-commands-default' specifies a minimal command set. Use
17027 `org-speed-commands-user' for further customization."
17028 (when (or (and (bolp) (looking-at org-outline-regexp))
17029 (and (functionp org-use-speed-commands)
17030 (funcall org-use-speed-commands)))
17031 (cdr (assoc keys (append org-speed-commands-user
17032 org-speed-commands-default)))))
17034 (defun org-babel-speed-command-hook (keys)
17035 "Hook for activating single-letter code block commands."
17036 (when (and (bolp) (looking-at org-babel-src-block-regexp))
17037 (cdr (assoc keys org-babel-key-bindings))))
17039 (defcustom org-speed-command-hook
17040 '(org-speed-command-default-hook org-babel-speed-command-hook)
17041 "Hook for activating speed commands at strategic locations.
17042 Hook functions are called in sequence until a valid handler is
17043 found.
17045 Each hook takes a single argument, a user-pressed command key
17046 which is also a `self-insert-command' from the global map.
17048 Within the hook, examine the cursor position and the command key
17049 and return nil or a valid handler as appropriate. Handler could
17050 be one of an interactive command, a function, or a form.
17052 Set `org-use-speed-commands' to non-nil value to enable this
17053 hook. The default setting is `org-speed-command-default-hook'."
17054 :group 'org-structure
17055 :type 'hook)
17057 (defun org-self-insert-command (N)
17058 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
17059 If the cursor is in a table looking at whitespace, the whitespace is
17060 overwritten, and the table is not marked as requiring realignment."
17061 (interactive "p")
17062 (cond
17063 ((and org-use-speed-commands
17064 (setq org-speed-command
17065 (run-hook-with-args-until-success
17066 'org-speed-command-hook (this-command-keys))))
17067 (cond
17068 ((commandp org-speed-command)
17069 (setq this-command org-speed-command)
17070 (call-interactively org-speed-command))
17071 ((functionp org-speed-command)
17072 (funcall org-speed-command))
17073 ((and org-speed-command (listp org-speed-command))
17074 (eval org-speed-command))
17075 (t (let (org-use-speed-commands)
17076 (call-interactively 'org-self-insert-command)))))
17077 ((and
17078 (org-table-p)
17079 (progn
17080 ;; check if we blank the field, and if that triggers align
17081 (and (featurep 'org-table) org-table-auto-blank-field
17082 (member last-command
17083 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand))
17084 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
17085 ;; got extra space, this field does not determine column width
17086 (let (org-table-may-need-update) (org-table-blank-field))
17087 ;; no extra space, this field may determine column width
17088 (org-table-blank-field)))
17090 (eq N 1)
17091 (looking-at "[^|\n]* |"))
17092 (let (org-table-may-need-update)
17093 (goto-char (1- (match-end 0)))
17094 (delete-char -1)
17095 (goto-char (match-beginning 0))
17096 (self-insert-command N)))
17098 (setq org-table-may-need-update t)
17099 (self-insert-command N)
17100 (org-fix-tags-on-the-fly)
17101 (if org-self-insert-cluster-for-undo
17102 (if (not (eq last-command 'org-self-insert-command))
17103 (setq org-self-insert-command-undo-counter 1)
17104 (if (>= org-self-insert-command-undo-counter 20)
17105 (setq org-self-insert-command-undo-counter 1)
17106 (and (> org-self-insert-command-undo-counter 0)
17107 buffer-undo-list (listp buffer-undo-list)
17108 (not (cadr buffer-undo-list)) ; remove nil entry
17109 (setcdr buffer-undo-list (cddr buffer-undo-list)))
17110 (setq org-self-insert-command-undo-counter
17111 (1+ org-self-insert-command-undo-counter))))))))
17113 (defun org-fix-tags-on-the-fly ()
17114 (when (and (equal (char-after (point-at-bol)) ?*)
17115 (org-on-heading-p))
17116 (org-align-tags-here org-tags-column)))
17118 (defun org-delete-backward-char (N)
17119 "Like `delete-backward-char', insert whitespace at field end in tables.
17120 When deleting backwards, in tables this function will insert whitespace in
17121 front of the next \"|\" separator, to keep the table aligned. The table will
17122 still be marked for re-alignment if the field did fill the entire column,
17123 because, in this case the deletion might narrow the column."
17124 (interactive "p")
17125 (if (and (org-table-p)
17126 (eq N 1)
17127 (string-match "|" (buffer-substring (point-at-bol) (point)))
17128 (looking-at ".*?|"))
17129 (let ((pos (point))
17130 (noalign (looking-at "[^|\n\r]* |"))
17131 (c org-table-may-need-update))
17132 (backward-delete-char N)
17133 (if (not overwrite-mode)
17134 (progn
17135 (skip-chars-forward "^|")
17136 (insert " ")
17137 (goto-char (1- pos))))
17138 ;; noalign: if there were two spaces at the end, this field
17139 ;; does not determine the width of the column.
17140 (if noalign (setq org-table-may-need-update c)))
17141 (backward-delete-char N)
17142 (org-fix-tags-on-the-fly)))
17144 (defun org-delete-char (N)
17145 "Like `delete-char', but insert whitespace at field end in tables.
17146 When deleting characters, in tables this function will insert whitespace in
17147 front of the next \"|\" separator, to keep the table aligned. The table will
17148 still be marked for re-alignment if the field did fill the entire column,
17149 because, in this case the deletion might narrow the column."
17150 (interactive "p")
17151 (if (and (org-table-p)
17152 (not (bolp))
17153 (not (= (char-after) ?|))
17154 (eq N 1))
17155 (if (looking-at ".*?|")
17156 (let ((pos (point))
17157 (noalign (looking-at "[^|\n\r]* |"))
17158 (c org-table-may-need-update))
17159 (replace-match (concat
17160 (substring (match-string 0) 1 -1)
17161 " |"))
17162 (goto-char pos)
17163 ;; noalign: if there were two spaces at the end, this field
17164 ;; does not determine the width of the column.
17165 (if noalign (setq org-table-may-need-update c)))
17166 (delete-char N))
17167 (delete-char N)
17168 (org-fix-tags-on-the-fly)))
17170 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
17171 (put 'org-self-insert-command 'delete-selection t)
17172 (put 'orgtbl-self-insert-command 'delete-selection t)
17173 (put 'org-delete-char 'delete-selection 'supersede)
17174 (put 'org-delete-backward-char 'delete-selection 'supersede)
17175 (put 'org-yank 'delete-selection 'yank)
17177 ;; Make `flyspell-mode' delay after some commands
17178 (put 'org-self-insert-command 'flyspell-delayed t)
17179 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
17180 (put 'org-delete-char 'flyspell-delayed t)
17181 (put 'org-delete-backward-char 'flyspell-delayed t)
17183 ;; Make pabbrev-mode expand after org-mode commands
17184 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
17185 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
17187 ;; How to do this: Measure non-white length of current string
17188 ;; If equal to column width, we should realign.
17190 (defun org-remap (map &rest commands)
17191 "In MAP, remap the functions given in COMMANDS.
17192 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
17193 (let (new old)
17194 (while commands
17195 (setq old (pop commands) new (pop commands))
17196 (if (fboundp 'command-remapping)
17197 (org-defkey map (vector 'remap old) new)
17198 (substitute-key-definition old new map global-map)))))
17200 (when (eq org-enable-table-editor 'optimized)
17201 ;; If the user wants maximum table support, we need to hijack
17202 ;; some standard editing functions
17203 (org-remap org-mode-map
17204 'self-insert-command 'org-self-insert-command
17205 'delete-char 'org-delete-char
17206 'delete-backward-char 'org-delete-backward-char)
17207 (org-defkey org-mode-map "|" 'org-force-self-insert))
17209 (defvar org-ctrl-c-ctrl-c-hook nil
17210 "Hook for functions attaching themselves to `C-c C-c'.
17212 This can be used to add additional functionality to the C-c C-c
17213 key which executes context-dependent commands. This hook is run
17214 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
17215 run after the last test.
17217 Each function will be called with no arguments. The function
17218 must check if the context is appropriate for it to act. If yes,
17219 it should do its thing and then return a non-nil value. If the
17220 context is wrong, just do nothing and return nil.")
17222 (defvar org-ctrl-c-ctrl-c-final-hook nil
17223 "Hook for functions attaching themselves to `C-c C-c'.
17225 This can be used to add additional functionality to the C-c C-c
17226 key which executes context-dependent commands. This hook is run
17227 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
17228 before the first test.
17230 Each function will be called with no arguments. The function
17231 must check if the context is appropriate for it to act. If yes,
17232 it should do its thing and then return a non-nil value. If the
17233 context is wrong, just do nothing and return nil.")
17235 (defvar org-tab-first-hook nil
17236 "Hook for functions to attach themselves to TAB.
17237 See `org-ctrl-c-ctrl-c-hook' for more information.
17238 This hook runs as the first action when TAB is pressed, even before
17239 `org-cycle' messes around with the `outline-regexp' to cater for
17240 inline tasks and plain list item folding.
17241 If any function in this hook returns t, any other actions that
17242 would have been caused by TAB (such as table field motion or visibility
17243 cycling) will not occur.")
17245 (defvar org-tab-after-check-for-table-hook nil
17246 "Hook for functions to attach themselves to TAB.
17247 See `org-ctrl-c-ctrl-c-hook' for more information.
17248 This hook runs after it has been established that the cursor is not in a
17249 table, but before checking if the cursor is in a headline or if global cycling
17250 should be done.
17251 If any function in this hook returns t, not other actions like visibility
17252 cycling will be done.")
17254 (defvar org-tab-after-check-for-cycling-hook nil
17255 "Hook for functions to attach themselves to TAB.
17256 See `org-ctrl-c-ctrl-c-hook' for more information.
17257 This hook runs after it has been established that not table field motion and
17258 not visibility should be done because of current context. This is probably
17259 the place where a package like yasnippets can hook in.")
17261 (defvar org-tab-before-tab-emulation-hook nil
17262 "Hook for functions to attach themselves to TAB.
17263 See `org-ctrl-c-ctrl-c-hook' for more information.
17264 This hook runs after every other options for TAB have been exhausted, but
17265 before indentation and \t insertion takes place.")
17267 (defvar org-metaleft-hook nil
17268 "Hook for functions attaching themselves to `M-left'.
17269 See `org-ctrl-c-ctrl-c-hook' for more information.")
17270 (defvar org-metaright-hook nil
17271 "Hook for functions attaching themselves to `M-right'.
17272 See `org-ctrl-c-ctrl-c-hook' for more information.")
17273 (defvar org-metaup-hook nil
17274 "Hook for functions attaching themselves to `M-up'.
17275 See `org-ctrl-c-ctrl-c-hook' for more information.")
17276 (defvar org-metadown-hook nil
17277 "Hook for functions attaching themselves to `M-down'.
17278 See `org-ctrl-c-ctrl-c-hook' for more information.")
17279 (defvar org-shiftmetaleft-hook nil
17280 "Hook for functions attaching themselves to `M-S-left'.
17281 See `org-ctrl-c-ctrl-c-hook' for more information.")
17282 (defvar org-shiftmetaright-hook nil
17283 "Hook for functions attaching themselves to `M-S-right'.
17284 See `org-ctrl-c-ctrl-c-hook' for more information.")
17285 (defvar org-shiftmetaup-hook nil
17286 "Hook for functions attaching themselves to `M-S-up'.
17287 See `org-ctrl-c-ctrl-c-hook' for more information.")
17288 (defvar org-shiftmetadown-hook nil
17289 "Hook for functions attaching themselves to `M-S-down'.
17290 See `org-ctrl-c-ctrl-c-hook' for more information.")
17291 (defvar org-metareturn-hook nil
17292 "Hook for functions attaching themselves to `M-RET'.
17293 See `org-ctrl-c-ctrl-c-hook' for more information.")
17294 (defvar org-shiftup-hook nil
17295 "Hook for functions attaching themselves to `S-up'.
17296 See `org-ctrl-c-ctrl-c-hook' for more information.")
17297 (defvar org-shiftup-final-hook nil
17298 "Hook for functions attaching themselves to `S-up'.
17299 This one runs after all other options except shift-select have been excluded.
17300 See `org-ctrl-c-ctrl-c-hook' for more information.")
17301 (defvar org-shiftdown-hook nil
17302 "Hook for functions attaching themselves to `S-down'.
17303 See `org-ctrl-c-ctrl-c-hook' for more information.")
17304 (defvar org-shiftdown-final-hook nil
17305 "Hook for functions attaching themselves to `S-down'.
17306 This one runs after all other options except shift-select have been excluded.
17307 See `org-ctrl-c-ctrl-c-hook' for more information.")
17308 (defvar org-shiftleft-hook nil
17309 "Hook for functions attaching themselves to `S-left'.
17310 See `org-ctrl-c-ctrl-c-hook' for more information.")
17311 (defvar org-shiftleft-final-hook nil
17312 "Hook for functions attaching themselves to `S-left'.
17313 This one runs after all other options except shift-select have been excluded.
17314 See `org-ctrl-c-ctrl-c-hook' for more information.")
17315 (defvar org-shiftright-hook nil
17316 "Hook for functions attaching themselves to `S-right'.
17317 See `org-ctrl-c-ctrl-c-hook' for more information.")
17318 (defvar org-shiftright-final-hook nil
17319 "Hook for functions attaching themselves to `S-right'.
17320 This one runs after all other options except shift-select have been excluded.
17321 See `org-ctrl-c-ctrl-c-hook' for more information.")
17323 (defun org-modifier-cursor-error ()
17324 "Throw an error, a modified cursor command was applied in wrong context."
17325 (error "This command is active in special context like tables, headlines or items"))
17327 (defun org-shiftselect-error ()
17328 "Throw an error because Shift-Cursor command was applied in wrong context."
17329 (if (and (boundp 'shift-select-mode) shift-select-mode)
17330 (error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
17331 (error "This command works only in special context like headlines or timestamps")))
17333 (defun org-call-for-shift-select (cmd)
17334 (let ((this-command-keys-shift-translated t))
17335 (call-interactively cmd)))
17337 (defun org-shifttab (&optional arg)
17338 "Global visibility cycling or move to previous table field.
17339 Calls `org-cycle' with argument t, or `org-table-previous-field', depending
17340 on context.
17341 See the individual commands for more information."
17342 (interactive "P")
17343 (cond
17344 ((org-at-table-p) (call-interactively 'org-table-previous-field))
17345 ((integerp arg)
17346 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
17347 (message "Content view to level: %d" arg)
17348 (org-content (prefix-numeric-value arg2))
17349 (setq org-cycle-global-status 'overview)))
17350 (t (call-interactively 'org-global-cycle))))
17352 (defun org-shiftmetaleft ()
17353 "Promote subtree or delete table column.
17354 Calls `org-promote-subtree', `org-outdent-item',
17355 or `org-table-delete-column', depending on context.
17356 See the individual commands for more information."
17357 (interactive)
17358 (cond
17359 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
17360 ((org-at-table-p) (call-interactively 'org-table-delete-column))
17361 ((org-on-heading-p) (call-interactively 'org-promote-subtree))
17362 ((org-at-item-p) (call-interactively 'org-outdent-item-tree))
17363 (t (org-modifier-cursor-error))))
17365 (defun org-shiftmetaright ()
17366 "Demote subtree or insert table column.
17367 Calls `org-demote-subtree', `org-indent-item',
17368 or `org-table-insert-column', depending on context.
17369 See the individual commands for more information."
17370 (interactive)
17371 (cond
17372 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
17373 ((org-at-table-p) (call-interactively 'org-table-insert-column))
17374 ((org-on-heading-p) (call-interactively 'org-demote-subtree))
17375 ((org-at-item-p) (call-interactively 'org-indent-item-tree))
17376 (t (org-modifier-cursor-error))))
17378 (defun org-shiftmetaup (&optional arg)
17379 "Move subtree up or kill table row.
17380 Calls `org-move-subtree-up' or `org-table-kill-row' or
17381 `org-move-item-up' depending on context. See the individual commands
17382 for more information."
17383 (interactive "P")
17384 (cond
17385 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
17386 ((org-at-table-p) (call-interactively 'org-table-kill-row))
17387 ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
17388 ((org-at-item-p) (call-interactively 'org-move-item-up))
17389 (t (org-modifier-cursor-error))))
17391 (defun org-shiftmetadown (&optional arg)
17392 "Move subtree down or insert table row.
17393 Calls `org-move-subtree-down' or `org-table-insert-row' or
17394 `org-move-item-down', depending on context. See the individual
17395 commands for more information."
17396 (interactive "P")
17397 (cond
17398 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
17399 ((org-at-table-p) (call-interactively 'org-table-insert-row))
17400 ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
17401 ((org-at-item-p) (call-interactively 'org-move-item-down))
17402 (t (org-modifier-cursor-error))))
17404 (defsubst org-hidden-tree-error ()
17405 (error
17406 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
17408 (defun org-metaleft (&optional arg)
17409 "Promote heading or move table column to left.
17410 Calls `org-do-promote' or `org-table-move-column', depending on context.
17411 With no specific context, calls the Emacs default `backward-word'.
17412 See the individual commands for more information."
17413 (interactive "P")
17414 (cond
17415 ((run-hook-with-args-until-success 'org-metaleft-hook))
17416 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
17417 ((org-with-limited-levels
17418 (or (org-on-heading-p)
17419 (and (org-region-active-p)
17420 (save-excursion
17421 (goto-char (region-beginning))
17422 (org-on-heading-p)))))
17423 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
17424 (call-interactively 'org-do-promote))
17425 ;; At an inline task.
17426 ((org-on-heading-p)
17427 (call-interactively 'org-inlinetask-promote))
17428 ((or (org-at-item-p)
17429 (and (org-region-active-p)
17430 (save-excursion
17431 (goto-char (region-beginning))
17432 (org-at-item-p))))
17433 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
17434 (call-interactively 'org-outdent-item))
17435 (t (call-interactively 'backward-word))))
17437 (defun org-metaright (&optional arg)
17438 "Demote subtree or move table column to right.
17439 Calls `org-do-demote' or `org-table-move-column', depending on context.
17440 With no specific context, calls the Emacs default `forward-word'.
17441 See the individual commands for more information."
17442 (interactive "P")
17443 (cond
17444 ((run-hook-with-args-until-success 'org-metaright-hook))
17445 ((org-at-table-p) (call-interactively 'org-table-move-column))
17446 ((org-with-limited-levels
17447 (or (org-on-heading-p)
17448 (and (org-region-active-p)
17449 (save-excursion
17450 (goto-char (region-beginning))
17451 (org-on-heading-p)))))
17452 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
17453 (call-interactively 'org-do-demote))
17454 ;; At an inline task.
17455 ((org-on-heading-p)
17456 (call-interactively 'org-inlinetask-demote))
17457 ((or (org-at-item-p)
17458 (and (org-region-active-p)
17459 (save-excursion
17460 (goto-char (region-beginning))
17461 (org-at-item-p))))
17462 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
17463 (call-interactively 'org-indent-item))
17464 (t (call-interactively 'forward-word))))
17466 (defun org-check-for-hidden (what)
17467 "Check if there are hidden headlines/items in the current visual line.
17468 WHAT can be either `headlines' or `items'. If the current line is
17469 an outline or item heading and it has a folded subtree below it,
17470 this function returns t, nil otherwise."
17471 (let ((re (cond
17472 ((eq what 'headlines) org-outline-regexp-bol)
17473 ((eq what 'items) (org-item-beginning-re))
17474 (t (error "This should not happen"))))
17475 beg end)
17476 (save-excursion
17477 (catch 'exit
17478 (unless (org-region-active-p)
17479 (setq beg (point-at-bol))
17480 (beginning-of-line 2)
17481 (while (and (not (eobp)) ;; this is like `next-line'
17482 (get-char-property (1- (point)) 'invisible))
17483 (beginning-of-line 2))
17484 (setq end (point))
17485 (goto-char beg)
17486 (goto-char (point-at-eol))
17487 (setq end (max end (point)))
17488 (while (re-search-forward re end t)
17489 (if (get-char-property (match-beginning 0) 'invisible)
17490 (throw 'exit t))))
17491 nil))))
17493 (defun org-metaup (&optional arg)
17494 "Move subtree up or move table row up.
17495 Calls `org-move-subtree-up' or `org-table-move-row' or
17496 `org-move-item-up', depending on context. See the individual commands
17497 for more information."
17498 (interactive "P")
17499 (cond
17500 ((run-hook-with-args-until-success 'org-metaup-hook))
17501 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
17502 ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
17503 ((org-at-item-p) (call-interactively 'org-move-item-up))
17504 (t (transpose-lines 1) (beginning-of-line -1))))
17506 (defun org-metadown (&optional arg)
17507 "Move subtree down or move table row down.
17508 Calls `org-move-subtree-down' or `org-table-move-row' or
17509 `org-move-item-down', depending on context. See the individual
17510 commands for more information."
17511 (interactive "P")
17512 (cond
17513 ((run-hook-with-args-until-success 'org-metadown-hook))
17514 ((org-at-table-p) (call-interactively 'org-table-move-row))
17515 ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
17516 ((org-at-item-p) (call-interactively 'org-move-item-down))
17517 (t (beginning-of-line 2) (transpose-lines 1) (beginning-of-line 0))))
17519 (defun org-shiftup (&optional arg)
17520 "Increase item in timestamp or increase priority of current headline.
17521 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
17522 depending on context. See the individual commands for more information."
17523 (interactive "P")
17524 (cond
17525 ((run-hook-with-args-until-success 'org-shiftup-hook))
17526 ((and org-support-shift-select (org-region-active-p))
17527 (org-call-for-shift-select 'previous-line))
17528 ((org-at-timestamp-p t)
17529 (call-interactively (if org-edit-timestamp-down-means-later
17530 'org-timestamp-down 'org-timestamp-up)))
17531 ((and (not (eq org-support-shift-select 'always))
17532 org-enable-priority-commands
17533 (org-on-heading-p))
17534 (call-interactively 'org-priority-up))
17535 ((and (not org-support-shift-select) (org-at-item-p))
17536 (call-interactively 'org-previous-item))
17537 ((org-clocktable-try-shift 'up arg))
17538 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
17539 (org-support-shift-select
17540 (org-call-for-shift-select 'previous-line))
17541 (t (org-shiftselect-error))))
17543 (defun org-shiftdown (&optional arg)
17544 "Decrease item in timestamp or decrease priority of current headline.
17545 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
17546 depending on context. See the individual commands for more information."
17547 (interactive "P")
17548 (cond
17549 ((run-hook-with-args-until-success 'org-shiftdown-hook))
17550 ((and org-support-shift-select (org-region-active-p))
17551 (org-call-for-shift-select 'next-line))
17552 ((org-at-timestamp-p t)
17553 (call-interactively (if org-edit-timestamp-down-means-later
17554 'org-timestamp-up 'org-timestamp-down)))
17555 ((and (not (eq org-support-shift-select 'always))
17556 org-enable-priority-commands
17557 (org-on-heading-p))
17558 (call-interactively 'org-priority-down))
17559 ((and (not org-support-shift-select) (org-at-item-p))
17560 (call-interactively 'org-next-item))
17561 ((org-clocktable-try-shift 'down arg))
17562 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
17563 (org-support-shift-select
17564 (org-call-for-shift-select 'next-line))
17565 (t (org-shiftselect-error))))
17567 (defun org-shiftright (&optional arg)
17568 "Cycle the thing at point or in the current line, depending on context.
17569 Depending on context, this does one of the following:
17571 - switch a timestamp at point one day into the future
17572 - on a headline, switch to the next TODO keyword.
17573 - on an item, switch entire list to the next bullet type
17574 - on a property line, switch to the next allowed value
17575 - on a clocktable definition line, move time block into the future"
17576 (interactive "P")
17577 (cond
17578 ((run-hook-with-args-until-success 'org-shiftright-hook))
17579 ((and org-support-shift-select (org-region-active-p))
17580 (org-call-for-shift-select 'forward-char))
17581 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
17582 ((and (not (eq org-support-shift-select 'always))
17583 (org-on-heading-p))
17584 (let ((org-inhibit-logging
17585 (not org-treat-S-cursor-todo-selection-as-state-change))
17586 (org-inhibit-blocking
17587 (not org-treat-S-cursor-todo-selection-as-state-change)))
17588 (org-call-with-arg 'org-todo 'right)))
17589 ((or (and org-support-shift-select
17590 (not (eq org-support-shift-select 'always))
17591 (org-at-item-bullet-p))
17592 (and (not org-support-shift-select) (org-at-item-p)))
17593 (org-call-with-arg 'org-cycle-list-bullet nil))
17594 ((and (not (eq org-support-shift-select 'always))
17595 (org-at-property-p))
17596 (call-interactively 'org-property-next-allowed-value))
17597 ((org-clocktable-try-shift 'right arg))
17598 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
17599 (org-support-shift-select
17600 (org-call-for-shift-select 'forward-char))
17601 (t (org-shiftselect-error))))
17603 (defun org-shiftleft (&optional arg)
17604 "Cycle the thing at point or in the current line, depending on context.
17605 Depending on context, this does one of the following:
17607 - switch a timestamp at point one day into the past
17608 - on a headline, switch to the previous TODO keyword.
17609 - on an item, switch entire list to the previous bullet type
17610 - on a property line, switch to the previous allowed value
17611 - on a clocktable definition line, move time block into the past"
17612 (interactive "P")
17613 (cond
17614 ((run-hook-with-args-until-success 'org-shiftleft-hook))
17615 ((and org-support-shift-select (org-region-active-p))
17616 (org-call-for-shift-select 'backward-char))
17617 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
17618 ((and (not (eq org-support-shift-select 'always))
17619 (org-on-heading-p))
17620 (let ((org-inhibit-logging
17621 (not org-treat-S-cursor-todo-selection-as-state-change))
17622 (org-inhibit-blocking
17623 (not org-treat-S-cursor-todo-selection-as-state-change)))
17624 (org-call-with-arg 'org-todo 'left)))
17625 ((or (and org-support-shift-select
17626 (not (eq org-support-shift-select 'always))
17627 (org-at-item-bullet-p))
17628 (and (not org-support-shift-select) (org-at-item-p)))
17629 (org-call-with-arg 'org-cycle-list-bullet 'previous))
17630 ((and (not (eq org-support-shift-select 'always))
17631 (org-at-property-p))
17632 (call-interactively 'org-property-previous-allowed-value))
17633 ((org-clocktable-try-shift 'left arg))
17634 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
17635 (org-support-shift-select
17636 (org-call-for-shift-select 'backward-char))
17637 (t (org-shiftselect-error))))
17639 (defun org-shiftcontrolright ()
17640 "Switch to next TODO set."
17641 (interactive)
17642 (cond
17643 ((and org-support-shift-select (org-region-active-p))
17644 (org-call-for-shift-select 'forward-word))
17645 ((and (not (eq org-support-shift-select 'always))
17646 (org-on-heading-p))
17647 (org-call-with-arg 'org-todo 'nextset))
17648 (org-support-shift-select
17649 (org-call-for-shift-select 'forward-word))
17650 (t (org-shiftselect-error))))
17652 (defun org-shiftcontrolleft ()
17653 "Switch to previous TODO set."
17654 (interactive)
17655 (cond
17656 ((and org-support-shift-select (org-region-active-p))
17657 (org-call-for-shift-select 'backward-word))
17658 ((and (not (eq org-support-shift-select 'always))
17659 (org-on-heading-p))
17660 (org-call-with-arg 'org-todo 'previousset))
17661 (org-support-shift-select
17662 (org-call-for-shift-select 'backward-word))
17663 (t (org-shiftselect-error))))
17665 (defun org-shiftcontrolup ()
17666 "Change timestamps synchronously up in CLOCK log lines."
17667 (interactive)
17668 (cond ((and (not org-support-shift-select)
17669 (org-at-clock-log-p)
17670 (org-at-timestamp-p t))
17671 (org-clock-timestamps-up))
17672 (t (org-shiftselect-error))))
17674 (defun org-shiftcontroldown ()
17675 "Change timestamps synchronously down in CLOCK log lines."
17676 (interactive)
17677 (cond ((and (not org-support-shift-select)
17678 (org-at-clock-log-p)
17679 (org-at-timestamp-p t))
17680 (org-clock-timestamps-down))
17681 (t (org-shiftselect-error))))
17683 (defun org-ctrl-c-ret ()
17684 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
17685 (interactive)
17686 (cond
17687 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
17688 (t (call-interactively 'org-insert-heading))))
17690 (defun org-copy-visible (beg end)
17691 "Copy the visible parts of the region."
17692 (interactive "r")
17693 (let (snippets s)
17694 (save-excursion
17695 (save-restriction
17696 (narrow-to-region beg end)
17697 (setq s (goto-char (point-min)))
17698 (while (not (= (point) (point-max)))
17699 (goto-char (org-find-invisible))
17700 (push (buffer-substring s (point)) snippets)
17701 (setq s (goto-char (org-find-visible))))))
17702 (kill-new (apply 'concat (nreverse snippets)))))
17704 (defun org-copy-special ()
17705 "Copy region in table or copy current subtree.
17706 Calls `org-table-copy' or `org-copy-subtree', depending on context.
17707 See the individual commands for more information."
17708 (interactive)
17709 (call-interactively
17710 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
17712 (defun org-cut-special ()
17713 "Cut region in table or cut current subtree.
17714 Calls `org-table-copy' or `org-cut-subtree', depending on context.
17715 See the individual commands for more information."
17716 (interactive)
17717 (call-interactively
17718 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
17720 (defun org-paste-special (arg)
17721 "Paste rectangular region into table, or past subtree relative to level.
17722 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
17723 See the individual commands for more information."
17724 (interactive "P")
17725 (if (org-at-table-p)
17726 (org-table-paste-rectangle)
17727 (org-paste-subtree arg)))
17729 (defun org-edit-special (&optional arg)
17730 "Call a special editor for the stuff at point.
17731 When at a table, call the formula editor with `org-table-edit-formulas'.
17732 When at the first line of an src example, call `org-edit-src-code'.
17733 When in an #+include line, visit the include file. Otherwise call
17734 `ffap' to visit the file at point."
17735 (interactive)
17736 ;; possibly prep session before editing source
17737 (when arg
17738 (let* ((info (org-babel-get-src-block-info))
17739 (lang (nth 0 info))
17740 (params (nth 2 info))
17741 (session (cdr (assoc :session params))))
17742 (when (and info session) ;; we are in a source-code block with a session
17743 (funcall
17744 (intern (concat "org-babel-prep-session:" lang)) session params))))
17745 (cond ;; proceed with `org-edit-special'
17746 ((save-excursion
17747 (beginning-of-line 1)
17748 (looking-at "\\(?:#\\+\\(?:setupfile\\|include\\):?[ \t]+\"?\\|[ \t]*<include\\>.*?file=\"\\)\\([^\"\n>]+\\)"))
17749 (find-file (org-trim (match-string 1))))
17750 ((org-edit-src-code))
17751 ((org-edit-fixed-width-region))
17752 ((org-at-table.el-p)
17753 (org-edit-src-code))
17754 ((or (org-at-table-p)
17755 (save-excursion
17756 (beginning-of-line 1)
17757 (looking-at "[ \t]*#\\+TBLFM:")))
17758 (call-interactively 'org-table-edit-formulas))
17759 (t (call-interactively 'ffap))))
17761 (defun org-ctrl-c-ctrl-c (&optional arg)
17762 "Set tags in headline, or update according to changed information at point.
17764 This command does many different things, depending on context:
17766 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
17767 this is what we do.
17769 - If the cursor is on a statistics cookie, update it.
17771 - If the cursor is in a headline, prompt for tags and insert them
17772 into the current line, aligned to `org-tags-column'. When called
17773 with prefix arg, realign all tags in the current buffer.
17775 - If the cursor is in one of the special #+KEYWORD lines, this
17776 triggers scanning the buffer for these lines and updating the
17777 information.
17779 - If the cursor is inside a table, realign the table. This command
17780 works even if the automatic table editor has been turned off.
17782 - If the cursor is on a #+TBLFM line, re-apply the formulas to
17783 the entire table.
17785 - If the cursor is at a footnote reference or definition, jump to
17786 the corresponding definition or references, respectively.
17788 - If the cursor is a the beginning of a dynamic block, update it.
17790 - If the current buffer is a capture buffer, close note and file it.
17792 - If the cursor is on a <<<target>>>, update radio targets and
17793 corresponding links in this buffer.
17795 - If the cursor is on a numbered item in a plain list, renumber the
17796 ordered list.
17798 - If the cursor is on a checkbox, toggle it.
17800 - If the cursor is on a code block, evaluate it. The variable
17801 `org-confirm-babel-evaluate' can be used to control prompting
17802 before code block evaluation, by default every code block
17803 evaluation requires confirmation. Code block evaluation can be
17804 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
17805 (interactive "P")
17806 (let ((org-enable-table-editor t))
17807 (cond
17808 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
17809 org-occur-highlights
17810 org-latex-fragment-image-overlays)
17811 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
17812 (org-remove-occur-highlights)
17813 (org-remove-latex-fragment-image-overlays)
17814 (message "Temporary highlights/overlays removed from current buffer"))
17815 ((and (local-variable-p 'org-finish-function (current-buffer))
17816 (fboundp org-finish-function))
17817 (funcall org-finish-function))
17818 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
17819 ((or (looking-at org-property-start-re)
17820 (org-at-property-p))
17821 (call-interactively 'org-property-action))
17822 ((org-on-target-p) (call-interactively 'org-update-radio-target-regexp))
17823 ((and (org-in-regexp "\\[\\([0-9]*%\\|[0-9]*/[0-9]*\\)\\]")
17824 (or (org-on-heading-p) (org-at-item-p)))
17825 (call-interactively 'org-update-statistics-cookies))
17826 ((org-on-heading-p) (call-interactively 'org-set-tags))
17827 ((org-at-table.el-p)
17828 (message "Use C-c ' to edit table.el tables"))
17829 ((org-at-table-p)
17830 (org-table-maybe-eval-formula)
17831 (if arg
17832 (call-interactively 'org-table-recalculate)
17833 (org-table-maybe-recalculate-line))
17834 (call-interactively 'org-table-align)
17835 (orgtbl-send-table 'maybe))
17836 ((or (org-footnote-at-reference-p)
17837 (org-footnote-at-definition-p))
17838 (call-interactively 'org-footnote-action))
17839 ((org-at-item-checkbox-p)
17840 ;; Cursor at a checkbox: repair list and update checkboxes. Send
17841 ;; list only if at top item.
17842 (let* ((cbox (match-string 1))
17843 (struct (org-list-struct))
17844 (old-struct (copy-tree struct))
17845 (parents (org-list-parents-alist struct))
17846 (prevs (org-list-prevs-alist struct))
17847 (orderedp (org-entry-get nil "ORDERED"))
17848 (firstp (= (org-list-get-top-point struct) (point-at-bol)))
17849 block-item)
17850 ;; Use a light version of `org-toggle-checkbox' to avoid
17851 ;; computing list structure twice.
17852 (org-list-set-checkbox (point-at-bol) struct
17853 (cond
17854 ((equal arg '(16)) "[-]")
17855 ((equal arg '(4)) nil)
17856 ((equal "[X]" cbox) "[ ]")
17857 (t "[X]")))
17858 (org-list-struct-fix-ind struct parents)
17859 (org-list-struct-fix-bul struct prevs)
17860 (setq block-item
17861 (org-list-struct-fix-box struct parents prevs orderedp))
17862 (when block-item
17863 (message
17864 "Checkboxes were removed due to unchecked box at line %d"
17865 (org-current-line block-item)))
17866 (org-list-struct-apply-struct struct old-struct)
17867 (org-update-checkbox-count-maybe)
17868 (when firstp (org-list-send-list 'maybe))))
17869 ((org-at-item-p)
17870 ;; Cursor at an item: repair list. Do checkbox related actions
17871 ;; only if function was called with an argument. Send list only
17872 ;; if at top item.
17873 (let* ((struct (org-list-struct))
17874 (old-struct (copy-tree struct))
17875 (parents (org-list-parents-alist struct))
17876 (prevs (org-list-prevs-alist struct))
17877 (firstp (= (org-list-get-top-point struct) (point-at-bol))))
17878 (org-list-struct-fix-ind struct parents)
17879 (org-list-struct-fix-bul struct prevs)
17880 (when arg
17881 (org-list-set-checkbox (point-at-bol) struct "[ ]")
17882 (org-list-struct-fix-box struct parents prevs))
17883 (org-list-struct-apply-struct struct old-struct)
17884 (when arg (org-update-checkbox-count-maybe))
17885 (when firstp (org-list-send-list 'maybe))))
17886 ((save-excursion (beginning-of-line 1) (looking-at org-dblock-start-re))
17887 ;; Dynamic block
17888 (beginning-of-line 1)
17889 (save-excursion (org-update-dblock)))
17890 ((save-excursion
17891 (beginning-of-line 1)
17892 (looking-at "[ \t]*#\\+\\([A-Z]+\\)"))
17893 (cond
17894 ((equal (match-string 1) "TBLFM")
17895 ;; Recalculate the table before this line
17896 (save-excursion
17897 (beginning-of-line 1)
17898 (skip-chars-backward " \r\n\t")
17899 (if (org-at-table-p)
17900 (org-call-with-arg 'org-table-recalculate (or arg t)))))
17902 (let ((org-inhibit-startup-visibility-stuff t)
17903 (org-startup-align-all-tables nil))
17904 (org-save-outline-visibility 'use-markers (org-mode-restart)))
17905 (message "Local setup has been refreshed"))))
17906 ((org-clock-update-time-maybe))
17908 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
17909 (error "C-c C-c can do nothing useful at this location"))))))
17911 (defun org-mode-restart ()
17912 "Restart Org-mode, to scan again for special lines.
17913 Also updates the keyword regular expressions."
17914 (interactive)
17915 (org-mode)
17916 (message "Org-mode restarted"))
17918 (defun org-kill-note-or-show-branches ()
17919 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
17920 (interactive)
17921 (if (not org-finish-function)
17922 (progn
17923 (hide-subtree)
17924 (call-interactively 'show-branches))
17925 (let ((org-note-abort t))
17926 (funcall org-finish-function))))
17928 (defun org-return (&optional indent)
17929 "Goto next table row or insert a newline.
17930 Calls `org-table-next-row' or `newline', depending on context.
17931 See the individual commands for more information."
17932 (interactive)
17933 (cond
17934 ((bobp) (if indent (newline-and-indent) (newline)))
17935 ((org-at-table-p)
17936 (org-table-justify-field-maybe)
17937 (call-interactively 'org-table-next-row))
17938 ;; when `newline-and-indent' is called within a list, make sure
17939 ;; text moved stays inside the item.
17940 ((and (org-in-item-p) indent)
17941 (if (and (org-at-item-p) (>= (point) (match-end 0)))
17942 (progn
17943 (save-match-data (newline))
17944 (org-indent-line-to (length (match-string 0))))
17945 (let ((ind (org-get-indentation)))
17946 (newline)
17947 (if (org-looking-back org-list-end-re)
17948 (org-indent-line-function)
17949 (org-indent-line-to ind)))))
17950 ((and org-return-follows-link
17951 (eq (get-text-property (point) 'face) 'org-link))
17952 (call-interactively 'org-open-at-point))
17953 ((and (org-at-heading-p)
17954 (looking-at
17955 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
17956 (org-show-entry)
17957 (end-of-line 1)
17958 (newline))
17959 (t (if indent (newline-and-indent) (newline)))))
17961 (defun org-return-indent ()
17962 "Goto next table row or insert a newline and indent.
17963 Calls `org-table-next-row' or `newline-and-indent', depending on
17964 context. See the individual commands for more information."
17965 (interactive)
17966 (org-return t))
17968 (defun org-ctrl-c-star ()
17969 "Compute table, or change heading status of lines.
17970 Calls `org-table-recalculate' or `org-toggle-heading',
17971 depending on context."
17972 (interactive)
17973 (cond
17974 ((org-at-table-p)
17975 (call-interactively 'org-table-recalculate))
17977 ;; Convert all lines in region to list items
17978 (call-interactively 'org-toggle-heading))))
17980 (defun org-ctrl-c-minus ()
17981 "Insert separator line in table or modify bullet status of line.
17982 Also turns a plain line or a region of lines into list items.
17983 Calls `org-table-insert-hline', `org-toggle-item', or
17984 `org-cycle-list-bullet', depending on context."
17985 (interactive)
17986 (cond
17987 ((org-at-table-p)
17988 (call-interactively 'org-table-insert-hline))
17989 ((org-region-active-p)
17990 (call-interactively 'org-toggle-item))
17991 ((org-in-item-p)
17992 (call-interactively 'org-cycle-list-bullet))
17994 (call-interactively 'org-toggle-item))))
17996 (defun org-toggle-item (arg)
17997 "Convert headings or normal lines to items, items to normal lines.
17998 If there is no active region, only the current line is considered.
18000 If the first non blank line in the region is an headline, convert
18001 all headlines to items, shifting text accordingly.
18003 If it is an item, convert all items to normal lines.
18005 If it is normal text, change region into an item. With a prefix
18006 argument ARG, change each line in region into an item."
18007 (interactive "P")
18008 (let ((shift-text
18009 (function
18010 ;; Shift text in current section to IND, from point to END.
18011 ;; The function leaves point to END line.
18012 (lambda (ind end)
18013 (let ((min-i 1000) (end (copy-marker end)))
18014 ;; First determine the minimum indentation (MIN-I) of
18015 ;; the text.
18016 (save-excursion
18017 (catch 'exit
18018 (while (< (point) end)
18019 (let ((i (org-get-indentation)))
18020 (cond
18021 ;; Skip blank lines and inline tasks.
18022 ((looking-at "^[ \t]*$"))
18023 ((looking-at org-outline-regexp-bol))
18024 ;; We can't find less than 0 indentation.
18025 ((zerop i) (throw 'exit (setq min-i 0)))
18026 ((< i min-i) (setq min-i i))))
18027 (forward-line))))
18028 ;; Then indent each line so that a line indented to
18029 ;; MIN-I becomes indented to IND. Ignore blank lines
18030 ;; and inline tasks in the process.
18031 (let ((delta (- ind min-i)))
18032 (while (< (point) end)
18033 (unless (or (looking-at "^[ \t]*$")
18034 (looking-at org-outline-regexp-bol))
18035 (org-indent-line-to (+ (org-get-indentation) delta)))
18036 (forward-line)))))))
18037 (skip-blanks
18038 (function
18039 ;; Return beginning of first non-blank line, starting from
18040 ;; line at POS.
18041 (lambda (pos)
18042 (save-excursion
18043 (goto-char pos)
18044 (skip-chars-forward " \r\t\n")
18045 (point-at-bol)))))
18046 beg end)
18047 ;; Determine boundaries of changes.
18048 (if (org-region-active-p)
18049 (setq beg (funcall skip-blanks (region-beginning))
18050 end (copy-marker (region-end)))
18051 (setq beg (funcall skip-blanks (point-at-bol))
18052 end (copy-marker (point-at-eol))))
18053 ;; Depending on the starting line, choose an action on the text
18054 ;; between BEG and END.
18055 (org-with-limited-levels
18056 (save-excursion
18057 (goto-char beg)
18058 (cond
18059 ;; Case 1. Start at an item: de-itemize. Note that it only
18060 ;; happens when a region is active: `org-ctrl-c-minus'
18061 ;; would call `org-cycle-list-bullet' otherwise.
18062 ((org-at-item-p)
18063 (while (< (point) end)
18064 (when (org-at-item-p)
18065 (skip-chars-forward " \t")
18066 (delete-region (point) (match-end 0)))
18067 (forward-line)))
18068 ;; Case 2. Start at an heading: convert to items.
18069 ((org-on-heading-p)
18070 (let* ((bul (org-list-bullet-string "-"))
18071 (bul-len (length bul))
18072 ;; Indentation of the first heading. It should be
18073 ;; relative to the indentation of its parent, if any.
18074 (start-ind (save-excursion
18075 (cond
18076 ((not org-adapt-indentation) 0)
18077 ((not (outline-previous-heading)) 0)
18078 (t (length (match-string 0))))))
18079 ;; Level of first heading. Further headings will be
18080 ;; compared to it to determine hierarchy in the list.
18081 (ref-level (org-reduced-level (org-outline-level))))
18082 (while (< (point) end)
18083 (let* ((level (org-reduced-level (org-outline-level)))
18084 (delta (max 0 (- level ref-level))))
18085 ;; If current headline is less indented than the first
18086 ;; one, set it as reference, in order to preserve
18087 ;; subtrees.
18088 (when (< level ref-level) (setq ref-level level))
18089 (replace-match bul t t)
18090 (org-indent-line-to (+ start-ind (* delta bul-len)))
18091 ;; Ensure all text down to END (or SECTION-END) belongs
18092 ;; to the newly created item.
18093 (let ((section-end (save-excursion
18094 (or (outline-next-heading) (point)))))
18095 (forward-line)
18096 (funcall shift-text
18097 (+ start-ind (* (1+ delta) bul-len))
18098 (min end section-end)))))))
18099 ;; Case 3. Normal line with ARG: turn each non-item line into
18100 ;; an item.
18101 (arg
18102 (while (< (point) end)
18103 (unless (or (org-on-heading-p) (org-at-item-p))
18104 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
18105 (replace-match
18106 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
18107 (forward-line)))
18108 ;; Case 4. Normal line without ARG: make the first line of
18109 ;; region an item, and shift indentation of others
18110 ;; lines to set them as item's body.
18111 (t (let* ((bul (org-list-bullet-string "-"))
18112 (bul-len (length bul))
18113 (ref-ind (org-get-indentation)))
18114 (skip-chars-forward " \t")
18115 (insert bul)
18116 (forward-line)
18117 (while (< (point) end)
18118 ;; Ensure that lines less indented than first one
18119 ;; still get included in item body.
18120 (funcall shift-text
18121 (+ ref-ind bul-len)
18122 (min end (save-excursion (or (outline-next-heading)
18123 (point)))))
18124 (forward-line)))))))))
18126 (defun org-toggle-heading (&optional nstars)
18127 "Convert headings to normal text, or items or text to headings.
18128 If there is no active region, only the current line is considered.
18130 If the first non blank line is an headline, remove the stars from
18131 all headlines in the region.
18133 If it is a plain list item, turn all plain list items into headings.
18135 If it is a normal line, turn each and every normal line (i.e. not
18136 an heading or an item) in the region into a heading.
18138 When converting a line into a heading, the number of stars is chosen
18139 such that the lines become children of the current entry. However,
18140 when a prefix argument is given, its value determines the number of
18141 stars to add."
18142 (interactive "P")
18143 (let ((skip-blanks
18144 (function
18145 ;; Return beginning of first non-blank line, starting from
18146 ;; line at POS.
18147 (lambda (pos)
18148 (save-excursion
18149 (goto-char pos)
18150 (skip-chars-forward " \r\t\n")
18151 (point-at-bol)))))
18152 beg end)
18153 ;; Determine boundaries of changes. If region ends at a bol, do
18154 ;; not consider the last line to be in the region.
18155 (if (org-region-active-p)
18156 (setq beg (funcall skip-blanks (region-beginning))
18157 end (copy-marker (save-excursion
18158 (goto-char (region-end))
18159 (if (bolp) (point) (point-at-eol)))))
18160 (setq beg (funcall skip-blanks (point-at-bol))
18161 end (copy-marker (point-at-eol))))
18162 ;; Ensure inline tasks don't count as headings.
18163 (org-with-limited-levels
18164 (save-excursion
18165 (goto-char beg)
18166 (cond
18167 ;; Case 1. Started at an heading: de-star headings.
18168 ((org-on-heading-p)
18169 (while (< (point) end)
18170 (when (org-on-heading-p t)
18171 (looking-at org-outline-regexp) (replace-match ""))
18172 (forward-line)))
18173 ;; Case 2. Started at an item: change items into headlines.
18174 ;; One star will be added by `org-list-to-subtree'.
18175 ((org-at-item-p)
18176 (let* ((stars (make-string
18177 (if nstars
18178 ;; subtract the star that will be added again by
18179 ;; `org-list-to-subtree'
18180 (1- (prefix-numeric-value current-prefix-arg))
18181 (or (org-current-level) 0))
18182 ?*))
18183 (add-stars
18184 (cond (nstars "") ; stars from prefix only
18185 ((equal stars "") "") ; before first heading
18186 (org-odd-levels-only "*") ; inside heading, odd
18187 (t "")))) ; inside heading, oddeven
18188 (while (< (point) end)
18189 (when (org-at-item-p)
18190 ;; Pay attention to cases when region ends before list.
18191 (let* ((struct (org-list-struct))
18192 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
18193 (save-restriction
18194 (narrow-to-region (point) list-end)
18195 (insert
18196 (org-list-to-subtree
18197 (org-list-parse-list t)
18198 '(:istart (concat stars add-stars (funcall get-stars depth))
18199 :icount (concat stars add-stars (funcall get-stars depth))))))))
18200 (forward-line))))
18201 ;; Case 3. Started at normal text: make every line an heading,
18202 ;; skipping headlines and items.
18203 (t (let* ((stars (make-string
18204 (if nstars
18205 (prefix-numeric-value current-prefix-arg)
18206 (or (org-current-level) 0))
18207 ?*))
18208 (add-stars
18209 (cond (nstars "") ; stars from prefix only
18210 ((equal stars "") "*") ; before first heading
18211 (org-odd-levels-only "**") ; inside heading, odd
18212 (t "*"))) ; inside heading, oddeven
18213 (rpl (concat stars add-stars " ")))
18214 (while (< (point) end)
18215 (when (and (not (org-on-heading-p)) (not (org-at-item-p))
18216 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
18217 (replace-match (concat rpl (match-string 2))))
18218 (forward-line)))))))))
18220 (defun org-meta-return (&optional arg)
18221 "Insert a new heading or wrap a region in a table.
18222 Calls `org-insert-heading' or `org-table-wrap-region', depending on context.
18223 See the individual commands for more information."
18224 (interactive "P")
18225 (cond
18226 ((run-hook-with-args-until-success 'org-metareturn-hook))
18227 ((org-at-table-p)
18228 (call-interactively 'org-table-wrap-region))
18229 (t (call-interactively 'org-insert-heading))))
18231 ;;; Menu entries
18233 ;; Define the Org-mode menus
18234 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
18235 '("Tbl"
18236 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
18237 ["Next Field" org-cycle (org-at-table-p)]
18238 ["Previous Field" org-shifttab (org-at-table-p)]
18239 ["Next Row" org-return (org-at-table-p)]
18240 "--"
18241 ["Blank Field" org-table-blank-field (org-at-table-p)]
18242 ["Edit Field" org-table-edit-field (org-at-table-p)]
18243 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
18244 "--"
18245 ("Column"
18246 ["Move Column Left" org-metaleft (org-at-table-p)]
18247 ["Move Column Right" org-metaright (org-at-table-p)]
18248 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
18249 ["Insert Column" org-shiftmetaright (org-at-table-p)])
18250 ("Row"
18251 ["Move Row Up" org-metaup (org-at-table-p)]
18252 ["Move Row Down" org-metadown (org-at-table-p)]
18253 ["Delete Row" org-shiftmetaup (org-at-table-p)]
18254 ["Insert Row" org-shiftmetadown (org-at-table-p)]
18255 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
18256 "--"
18257 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
18258 ("Rectangle"
18259 ["Copy Rectangle" org-copy-special (org-at-table-p)]
18260 ["Cut Rectangle" org-cut-special (org-at-table-p)]
18261 ["Paste Rectangle" org-paste-special (org-at-table-p)]
18262 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
18263 "--"
18264 ("Calculate"
18265 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
18266 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
18267 ["Edit Formulas" org-edit-special (org-at-table-p)]
18268 "--"
18269 ["Recalculate line" org-table-recalculate (org-at-table-p)]
18270 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
18271 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
18272 "--"
18273 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
18274 "--"
18275 ["Sum Column/Rectangle" org-table-sum
18276 (or (org-at-table-p) (org-region-active-p))]
18277 ["Which Column?" org-table-current-column (org-at-table-p)])
18278 ["Debug Formulas"
18279 org-table-toggle-formula-debugger
18280 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
18281 ["Show Col/Row Numbers"
18282 org-table-toggle-coordinate-overlays
18283 :style toggle
18284 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
18285 "--"
18286 ["Create" org-table-create (and (not (org-at-table-p))
18287 org-enable-table-editor)]
18288 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
18289 ["Import from File" org-table-import (not (org-at-table-p))]
18290 ["Export to File" org-table-export (org-at-table-p)]
18291 "--"
18292 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
18294 (easy-menu-define org-org-menu org-mode-map "Org menu"
18295 '("Org"
18296 ("Show/Hide"
18297 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
18298 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
18299 ["Sparse Tree..." org-sparse-tree t]
18300 ["Reveal Context" org-reveal t]
18301 ["Show All" show-all t]
18302 "--"
18303 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
18304 "--"
18305 ["New Heading" org-insert-heading t]
18306 ("Navigate Headings"
18307 ["Up" outline-up-heading t]
18308 ["Next" outline-next-visible-heading t]
18309 ["Previous" outline-previous-visible-heading t]
18310 ["Next Same Level" outline-forward-same-level t]
18311 ["Previous Same Level" outline-backward-same-level t]
18312 "--"
18313 ["Jump" org-goto t])
18314 ("Edit Structure"
18315 ["Move Subtree Up" org-shiftmetaup (not (org-at-table-p))]
18316 ["Move Subtree Down" org-shiftmetadown (not (org-at-table-p))]
18317 "--"
18318 ["Copy Subtree" org-copy-special (not (org-at-table-p))]
18319 ["Cut Subtree" org-cut-special (not (org-at-table-p))]
18320 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
18321 "--"
18322 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
18323 "--"
18324 ["Copy visible text" org-copy-visible t]
18325 "--"
18326 ["Promote Heading" org-metaleft (not (org-at-table-p))]
18327 ["Promote Subtree" org-shiftmetaleft (not (org-at-table-p))]
18328 ["Demote Heading" org-metaright (not (org-at-table-p))]
18329 ["Demote Subtree" org-shiftmetaright (not (org-at-table-p))]
18330 "--"
18331 ["Sort Region/Children" org-sort (not (org-at-table-p))]
18332 "--"
18333 ["Convert to odd levels" org-convert-to-odd-levels t]
18334 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
18335 ("Editing"
18336 ["Emphasis..." org-emphasize t]
18337 ["Edit Source Example" org-edit-special t]
18338 "--"
18339 ["Footnote new/jump" org-footnote-action t]
18340 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
18341 ("Archive"
18342 ["Archive (default method)" org-archive-subtree-default t]
18343 "--"
18344 ["Move Subtree to Archive file" org-advertized-archive-subtree t]
18345 ["Toggle ARCHIVE tag" org-toggle-archive-tag t]
18346 ["Move subtree to Archive sibling" org-archive-to-archive-sibling t]
18348 "--"
18349 ("Hyperlinks"
18350 ["Store Link (Global)" org-store-link t]
18351 ["Find existing link to here" org-occur-link-in-agenda-files t]
18352 ["Insert Link" org-insert-link t]
18353 ["Follow Link" org-open-at-point t]
18354 "--"
18355 ["Next link" org-next-link t]
18356 ["Previous link" org-previous-link t]
18357 "--"
18358 ["Descriptive Links"
18359 (progn (add-to-invisibility-spec '(org-link)) (org-restart-font-lock))
18360 :style radio
18361 :selected (member '(org-link) buffer-invisibility-spec)]
18362 ["Literal Links"
18363 (progn
18364 (org-remove-from-invisibility-spec '(org-link)) (org-restart-font-lock))
18365 :style radio
18366 :selected (not (member '(org-link) buffer-invisibility-spec))])
18367 "--"
18368 ("TODO Lists"
18369 ["TODO/DONE/-" org-todo t]
18370 ("Select keyword"
18371 ["Next keyword" org-shiftright (org-on-heading-p)]
18372 ["Previous keyword" org-shiftleft (org-on-heading-p)]
18373 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
18374 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))]
18375 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))])
18376 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
18377 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
18378 "--"
18379 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
18380 :selected org-enforce-todo-dependencies :style toggle :active t]
18381 "Settings for tree at point"
18382 ["Do Children sequentially" org-toggle-ordered-property :style radio
18383 :selected (org-entry-get nil "ORDERED")
18384 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
18385 ["Do Children parallel" org-toggle-ordered-property :style radio
18386 :selected (not (org-entry-get nil "ORDERED"))
18387 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
18388 "--"
18389 ["Set Priority" org-priority t]
18390 ["Priority Up" org-shiftup t]
18391 ["Priority Down" org-shiftdown t]
18392 "--"
18393 ["Get news from all feeds" org-feed-update-all t]
18394 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
18395 ["Customize feeds" (customize-variable 'org-feed-alist) t])
18396 ("TAGS and Properties"
18397 ["Set Tags" org-set-tags-command t]
18398 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
18399 "--"
18400 ["Set property" org-set-property t]
18401 ["Column view of properties" org-columns t]
18402 ["Insert Column View DBlock" org-insert-columns-dblock t])
18403 ("Dates and Scheduling"
18404 ["Timestamp" org-time-stamp t]
18405 ["Timestamp (inactive)" org-time-stamp-inactive t]
18406 ("Change Date"
18407 ["1 Day Later" org-shiftright t]
18408 ["1 Day Earlier" org-shiftleft t]
18409 ["1 ... Later" org-shiftup t]
18410 ["1 ... Earlier" org-shiftdown t])
18411 ["Compute Time Range" org-evaluate-time-range t]
18412 ["Schedule Item" org-schedule t]
18413 ["Deadline" org-deadline t]
18414 "--"
18415 ["Custom time format" org-toggle-time-stamp-overlays
18416 :style radio :selected org-display-custom-times]
18417 "--"
18418 ["Goto Calendar" org-goto-calendar t]
18419 ["Date from Calendar" org-date-from-calendar t]
18420 "--"
18421 ["Start/Restart Timer" org-timer-start t]
18422 ["Pause/Continue Timer" org-timer-pause-or-continue t]
18423 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
18424 ["Insert Timer String" org-timer t]
18425 ["Insert Timer Item" org-timer-item t])
18426 ("Logging work"
18427 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
18428 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
18429 ["Clock out" org-clock-out t]
18430 ["Clock cancel" org-clock-cancel t]
18431 "--"
18432 ["Mark as default task" org-clock-mark-default-task t]
18433 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
18434 ["Goto running clock" org-clock-goto t]
18435 "--"
18436 ["Display times" org-clock-display t]
18437 ["Create clock table" org-clock-report t]
18438 "--"
18439 ["Record DONE time"
18440 (progn (setq org-log-done (not org-log-done))
18441 (message "Switching to %s will %s record a timestamp"
18442 (car org-done-keywords)
18443 (if org-log-done "automatically" "not")))
18444 :style toggle :selected org-log-done])
18445 "--"
18446 ["Agenda Command..." org-agenda t]
18447 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
18448 ("File List for Agenda")
18449 ("Special views current file"
18450 ["TODO Tree" org-show-todo-tree t]
18451 ["Check Deadlines" org-check-deadlines t]
18452 ["Timeline" org-timeline t]
18453 ["Tags/Property tree" org-match-sparse-tree t])
18454 "--"
18455 ["Export/Publish..." org-export t]
18456 ("LaTeX"
18457 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
18458 :selected org-cdlatex-mode]
18459 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
18460 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
18461 ["Modify math symbol" org-cdlatex-math-modify
18462 (org-inside-LaTeX-fragment-p)]
18463 ["Insert citation" org-reftex-citation t]
18464 "--"
18465 ["Template for BEAMER" org-insert-beamer-options-template t])
18466 "--"
18467 ("MobileOrg"
18468 ["Push Files and Views" org-mobile-push t]
18469 ["Get Captured and Flagged" org-mobile-pull t]
18470 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
18471 "--"
18472 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
18473 "--"
18474 ("Documentation"
18475 ["Show Version" org-version t]
18476 ["Info Documentation" org-info t])
18477 ("Customize"
18478 ["Browse Org Group" org-customize t]
18479 "--"
18480 ["Expand This Menu" org-create-customize-menu
18481 (fboundp 'customize-menu-create)])
18482 ["Send bug report" org-submit-bug-report t]
18483 "--"
18484 ("Refresh/Reload"
18485 ["Refresh setup current buffer" org-mode-restart t]
18486 ["Reload Org (after update)" org-reload t]
18487 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x r"])
18490 (defun org-info (&optional node)
18491 "Read documentation for Org-mode in the info system.
18492 With optional NODE, go directly to that node."
18493 (interactive)
18494 (info (format "(org)%s" (or node ""))))
18496 ;;;###autoload
18497 (defun org-submit-bug-report ()
18498 "Submit a bug report on Org-mode via mail.
18500 Don't hesitate to report any problems or inaccurate documentation.
18502 If you don't have setup sending mail from (X)Emacs, please copy the
18503 output buffer into your mail program, as it gives us important
18504 information about your Org-mode version and configuration."
18505 (interactive)
18506 (require 'reporter)
18507 (org-load-modules-maybe)
18508 (org-require-autoloaded-modules)
18509 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
18510 (reporter-submit-bug-report
18511 "emacs-orgmode@gnu.org"
18512 (org-version)
18513 (let (list)
18514 (save-window-excursion
18515 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
18516 (delete-other-windows)
18517 (erase-buffer)
18518 (insert "You are about to submit a bug report to the Org-mode mailing list.
18520 We would like to add your full Org-mode and Outline configuration to the
18521 bug report. This greatly simplifies the work of the maintainer and
18522 other experts on the mailing list.
18524 HOWEVER, some variables you have customized may contain private
18525 information. The names of customers, colleagues, or friends, might
18526 appear in the form of file names, tags, todo states, or search strings.
18527 If you answer yes to the prompt, you might want to check and remove
18528 such private information before sending the email.")
18529 (add-text-properties (point-min) (point-max) '(face org-warning))
18530 (when (yes-or-no-p "Include your Org-mode configuration ")
18531 (mapatoms
18532 (lambda (v)
18533 (and (boundp v)
18534 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
18535 (or (and (symbol-value v)
18536 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
18537 (and
18538 (get v 'custom-type) (get v 'standard-value)
18539 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
18540 (push v list)))))
18541 (kill-buffer (get-buffer "*Warn about privacy*"))
18542 list))
18543 nil nil
18544 "Remember to cover the basics, that is, what you expected to happen and
18545 what in fact did happen. You don't know how to make a good report? See
18547 http://orgmode.org/manual/Feedback.html#Feedback
18549 Your bug report will be posted to the Org-mode mailing list.
18550 ------------------------------------------------------------------------")
18551 (save-excursion
18552 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
18553 (replace-match "\\1Bug: \\3 [\\2]")))))
18556 (defun org-install-agenda-files-menu ()
18557 (let ((bl (buffer-list)))
18558 (save-excursion
18559 (while bl
18560 (set-buffer (pop bl))
18561 (if (org-mode-p) (setq bl nil)))
18562 (when (org-mode-p)
18563 (easy-menu-change
18564 '("Org") "File List for Agenda"
18565 (append
18566 (list
18567 ["Edit File List" (org-edit-agenda-file-list) t]
18568 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
18569 ["Remove Current File from List" org-remove-file t]
18570 ["Cycle through agenda files" org-cycle-agenda-files t]
18571 ["Occur in all agenda files" org-occur-in-agenda-files t]
18572 "--")
18573 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
18575 ;;;; Documentation
18577 ;;;###autoload
18578 (defun org-require-autoloaded-modules ()
18579 (interactive)
18580 (mapc 'require
18581 '(org-agenda org-archive org-ascii org-attach org-clock org-colview
18582 org-docbook org-exp org-html org-icalendar
18583 org-id org-latex
18584 org-publish org-remember org-table
18585 org-timer org-xoxo)))
18587 ;;;###autoload
18588 (defun org-reload (&optional uncompiled)
18589 "Reload all org lisp files.
18590 With prefix arg UNCOMPILED, load the uncompiled versions."
18591 (interactive "P")
18592 (require 'find-func)
18593 (let* ((file-re "^\\(org\\|orgtbl\\)\\(\\.el\\|-.*\\.el\\)")
18594 (dir-org (file-name-directory (org-find-library-name "org")))
18595 (dir-org-contrib (ignore-errors
18596 (file-name-directory
18597 (org-find-library-name "org-contribdir"))))
18598 (babel-files
18599 (mapcar (lambda (el) (concat "ob" (when el (format "-%s" el)) ".el"))
18600 (append (list nil "comint" "eval" "exp" "keys"
18601 "lob" "ref" "table" "tangle")
18602 (delq nil
18603 (mapcar
18604 (lambda (lang)
18605 (when (cdr lang) (symbol-name (car lang))))
18606 org-babel-load-languages)))))
18607 (files
18608 (append (directory-files dir-org t file-re)
18609 babel-files
18610 (and dir-org-contrib
18611 (directory-files dir-org-contrib t file-re))))
18612 (remove-re (concat (if (featurep 'xemacs)
18613 "org-colview" "org-colview-xemacs")
18614 "\\'")))
18615 (setq files (mapcar 'file-name-sans-extension files))
18616 (setq files (mapcar
18617 (lambda (x) (if (string-match remove-re x) nil x))
18618 files))
18619 (setq files (delq nil files))
18620 (mapc
18621 (lambda (f)
18622 (when (featurep (intern (file-name-nondirectory f)))
18623 (if (and (not uncompiled)
18624 (file-exists-p (concat f ".elc")))
18625 (load (concat f ".elc") nil nil t)
18626 (load (concat f ".el") nil nil t))))
18627 files))
18628 (org-version))
18630 ;;;###autoload
18631 (defun org-customize ()
18632 "Call the customize function with org as argument."
18633 (interactive)
18634 (org-load-modules-maybe)
18635 (org-require-autoloaded-modules)
18636 (customize-browse 'org))
18638 (defun org-create-customize-menu ()
18639 "Create a full customization menu for Org-mode, insert it into the menu."
18640 (interactive)
18641 (org-load-modules-maybe)
18642 (org-require-autoloaded-modules)
18643 (if (fboundp 'customize-menu-create)
18644 (progn
18645 (easy-menu-change
18646 '("Org") "Customize"
18647 `(["Browse Org group" org-customize t]
18648 "--"
18649 ,(customize-menu-create 'org)
18650 ["Set" Custom-set t]
18651 ["Save" Custom-save t]
18652 ["Reset to Current" Custom-reset-current t]
18653 ["Reset to Saved" Custom-reset-saved t]
18654 ["Reset to Standard Settings" Custom-reset-standard t]))
18655 (message "\"Org\"-menu now contains full customization menu"))
18656 (error "Cannot expand menu (outdated version of cus-edit.el)")))
18658 ;;;; Miscellaneous stuff
18660 ;;; Generally useful functions
18662 (defun org-get-at-bol (property)
18663 "Get text property PROPERTY at beginning of line."
18664 (get-text-property (point-at-bol) property))
18666 (defun org-find-text-property-in-string (prop s)
18667 "Return the first non-nil value of property PROP in string S."
18668 (or (get-text-property 0 prop s)
18669 (get-text-property (or (next-single-property-change 0 prop s) 0)
18670 prop s)))
18672 (defun org-display-warning (message) ;; Copied from Emacs-Muse
18673 "Display the given MESSAGE as a warning."
18674 (if (fboundp 'display-warning)
18675 (display-warning 'org message
18676 (if (featurep 'xemacs) 'warning :warning))
18677 (let ((buf (get-buffer-create "*Org warnings*")))
18678 (with-current-buffer buf
18679 (goto-char (point-max))
18680 (insert "Warning (Org): " message)
18681 (unless (bolp)
18682 (newline)))
18683 (display-buffer buf)
18684 (sit-for 0))))
18686 (defun org-eval (form)
18687 "Eval FORM and return result."
18688 (condition-case error
18689 (eval form)
18690 (error (format "%%![Error: %s]" error))))
18692 (defun org-in-commented-line ()
18693 "Is point in a line starting with `#'?"
18694 (equal (char-after (point-at-bol)) ?#))
18696 (defun org-in-indented-comment-line ()
18697 "Is point in a line starting with `#' after some white space?"
18698 (save-excursion
18699 (save-match-data
18700 (goto-char (point-at-bol))
18701 (looking-at "[ \t]*#"))))
18703 (defun org-in-verbatim-emphasis ()
18704 (save-match-data
18705 (and (org-in-regexp org-emph-re 2) (member (match-string 3) '("=" "~")))))
18707 (defun org-goto-marker-or-bmk (marker &optional bookmark)
18708 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
18709 (if (and marker (marker-buffer marker)
18710 (buffer-live-p (marker-buffer marker)))
18711 (progn
18712 (org-pop-to-buffer-same-window (marker-buffer marker))
18713 (if (or (> marker (point-max)) (< marker (point-min)))
18714 (widen))
18715 (goto-char marker)
18716 (org-show-context 'org-goto))
18717 (if bookmark
18718 (bookmark-jump bookmark)
18719 (error "Cannot find location"))))
18721 (defun org-quote-csv-field (s)
18722 "Quote field for inclusion in CSV material."
18723 (if (string-match "[\",]" s)
18724 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
18727 (defun org-force-self-insert (N)
18728 "Needed to enforce self-insert under remapping."
18729 (interactive "p")
18730 (self-insert-command N))
18732 (defun org-string-width (s)
18733 "Compute width of string, ignoring invisible characters.
18734 This ignores character with invisibility property `org-link', and also
18735 characters with property `org-cwidth', because these will become invisible
18736 upon the next fontification round."
18737 (let (b l)
18738 (when (or (eq t buffer-invisibility-spec)
18739 (assq 'org-link buffer-invisibility-spec))
18740 (while (setq b (text-property-any 0 (length s)
18741 'invisible 'org-link s))
18742 (setq s (concat (substring s 0 b)
18743 (substring s (or (next-single-property-change
18744 b 'invisible s) (length s)))))))
18745 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
18746 (setq s (concat (substring s 0 b)
18747 (substring s (or (next-single-property-change
18748 b 'org-cwidth s) (length s))))))
18749 (setq l (string-width s) b -1)
18750 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
18751 (setq l (- l (get-text-property b 'org-dwidth-n s))))
18754 (defun org-shorten-string (s maxlength)
18755 "Shorten string S so tht it is no longer than MAXLENGTH characters.
18756 If the string is shorter or has length MAXLENGTH, just return the
18757 original string. If it is longer, the functions finds a space in the
18758 string, breaks this string off at that locations and adds three dots
18759 as ellipsis. Including the ellipsis, the string will not be longer
18760 than MAXLENGTH. If finding a good breaking point in the string does
18761 not work, the string is just chopped off in the middle of a word
18762 if necessary."
18763 (if (<= (length s) maxlength)
18765 (let* ((n (max (- maxlength 4) 1))
18766 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
18767 (if (string-match re s)
18768 (concat (match-string 1 s) "...")
18769 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
18771 (defun org-get-indentation (&optional line)
18772 "Get the indentation of the current line, interpreting tabs.
18773 When LINE is given, assume it represents a line and compute its indentation."
18774 (if line
18775 (if (string-match "^ *" (org-remove-tabs line))
18776 (match-end 0))
18777 (save-excursion
18778 (beginning-of-line 1)
18779 (skip-chars-forward " \t")
18780 (current-column))))
18782 (defun org-get-string-indentation (s)
18783 "What indentation has S due to SPACE and TAB at the beginning of the string?"
18784 (let ((n -1) (i 0) (w tab-width) c)
18785 (catch 'exit
18786 (while (< (setq n (1+ n)) (length s))
18787 (setq c (aref s n))
18788 (cond ((= c ?\ ) (setq i (1+ i)))
18789 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
18790 (t (throw 'exit t)))))
18793 (defun org-remove-tabs (s &optional width)
18794 "Replace tabulators in S with spaces.
18795 Assumes that s is a single line, starting in column 0."
18796 (setq width (or width tab-width))
18797 (while (string-match "\t" s)
18798 (setq s (replace-match
18799 (make-string
18800 (- (* width (/ (+ (match-beginning 0) width) width))
18801 (match-beginning 0)) ?\ )
18802 t t s)))
18805 (defun org-fix-indentation (line ind)
18806 "Fix indentation in LINE.
18807 IND is a cons cell with target and minimum indentation.
18808 If the current indentation in LINE is smaller than the minimum,
18809 leave it alone. If it is larger than ind, set it to the target."
18810 (let* ((l (org-remove-tabs line))
18811 (i (org-get-indentation l))
18812 (i1 (car ind)) (i2 (cdr ind)))
18813 (if (>= i i2) (setq l (substring line i2)))
18814 (if (> i1 0)
18815 (concat (make-string i1 ?\ ) l)
18816 l)))
18818 (defun org-remove-indentation (code &optional n)
18819 "Remove the maximum common indentation from the lines in CODE.
18820 N may optionally be the number of spaces to remove."
18821 (with-temp-buffer
18822 (insert code)
18823 (org-do-remove-indentation n)
18824 (buffer-string)))
18826 (defun org-do-remove-indentation (&optional n)
18827 "Remove the maximum common indentation from the buffer."
18828 (untabify (point-min) (point-max))
18829 (let ((min 10000) re)
18830 (if n
18831 (setq min n)
18832 (goto-char (point-min))
18833 (while (re-search-forward "^ *[^ \n]" nil t)
18834 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
18835 (unless (or (= min 0) (= min 10000))
18836 (setq re (format "^ \\{%d\\}" min))
18837 (goto-char (point-min))
18838 (while (re-search-forward re nil t)
18839 (replace-match "")
18840 (end-of-line 1))
18841 min)))
18843 (defun org-fill-template (template alist)
18844 "Find each %key of ALIST in TEMPLATE and replace it."
18845 (let ((case-fold-search nil)
18846 entry key value)
18847 (setq alist (sort (copy-sequence alist)
18848 (lambda (a b) (< (length (car a)) (length (car b))))))
18849 (while (setq entry (pop alist))
18850 (setq template
18851 (replace-regexp-in-string
18852 (concat "%" (regexp-quote (car entry)))
18853 (cdr entry) template t t)))
18854 template))
18856 (defun org-base-buffer (buffer)
18857 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
18858 (if (not buffer)
18859 buffer
18860 (or (buffer-base-buffer buffer)
18861 buffer)))
18863 (defun org-trim (s)
18864 "Remove whitespace at beginning and end of string."
18865 (if (string-match "\\`[ \t\n\r]+" s) (setq s (replace-match "" t t s)))
18866 (if (string-match "[ \t\n\r]+\\'" s) (setq s (replace-match "" t t s)))
18869 (defun org-wrap (string &optional width lines)
18870 "Wrap string to either a number of lines, or a width in characters.
18871 If WIDTH is non-nil, the string is wrapped to that width, however many lines
18872 that costs. If there is a word longer than WIDTH, the text is actually
18873 wrapped to the length of that word.
18874 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
18875 many lines, whatever width that takes.
18876 The return value is a list of lines, without newlines at the end."
18877 (let* ((words (org-split-string string "[ \t\n]+"))
18878 (maxword (apply 'max (mapcar 'org-string-width words)))
18879 w ll)
18880 (cond (width
18881 (org-do-wrap words (max maxword width)))
18882 (lines
18883 (setq w maxword)
18884 (setq ll (org-do-wrap words maxword))
18885 (if (<= (length ll) lines)
18887 (setq ll words)
18888 (while (> (length ll) lines)
18889 (setq w (1+ w))
18890 (setq ll (org-do-wrap words w)))
18891 ll))
18892 (t (error "Cannot wrap this")))))
18894 (defun org-do-wrap (words width)
18895 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
18896 (let (lines line)
18897 (while words
18898 (setq line (pop words))
18899 (while (and words (< (+ (length line) (length (car words))) width))
18900 (setq line (concat line " " (pop words))))
18901 (setq lines (push line lines)))
18902 (nreverse lines)))
18904 (defun org-split-string (string &optional separators)
18905 "Splits STRING into substrings at SEPARATORS.
18906 No empty strings are returned if there are matches at the beginning
18907 and end of string."
18908 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
18909 (start 0)
18910 notfirst
18911 (list nil))
18912 (while (and (string-match rexp string
18913 (if (and notfirst
18914 (= start (match-beginning 0))
18915 (< start (length string)))
18916 (1+ start) start))
18917 (< (match-beginning 0) (length string)))
18918 (setq notfirst t)
18919 (or (eq (match-beginning 0) 0)
18920 (and (eq (match-beginning 0) (match-end 0))
18921 (eq (match-beginning 0) start))
18922 (setq list
18923 (cons (substring string start (match-beginning 0))
18924 list)))
18925 (setq start (match-end 0)))
18926 (or (eq start (length string))
18927 (setq list
18928 (cons (substring string start)
18929 list)))
18930 (nreverse list)))
18932 (defun org-quote-vert (s)
18933 "Replace \"|\" with \"\\vert\"."
18934 (while (string-match "|" s)
18935 (setq s (replace-match "\\vert" t t s)))
18938 (defun org-uuidgen-p (s)
18939 "Is S an ID created by UUIDGEN?"
18940 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
18942 (defun org-context ()
18943 "Return a list of contexts of the current cursor position.
18944 If several contexts apply, all are returned.
18945 Each context entry is a list with a symbol naming the context, and
18946 two positions indicating start and end of the context. Possible
18947 contexts are:
18949 :headline anywhere in a headline
18950 :headline-stars on the leading stars in a headline
18951 :todo-keyword on a TODO keyword (including DONE) in a headline
18952 :tags on the TAGS in a headline
18953 :priority on the priority cookie in a headline
18954 :item on the first line of a plain list item
18955 :item-bullet on the bullet/number of a plain list item
18956 :checkbox on the checkbox in a plain list item
18957 :table in an org-mode table
18958 :table-special on a special filed in a table
18959 :table-table in a table.el table
18960 :link on a hyperlink
18961 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE,COMMENT, QUOTE.
18962 :target on a <<target>>
18963 :radio-target on a <<<radio-target>>>
18964 :latex-fragment on a LaTeX fragment
18965 :latex-preview on a LaTeX fragment with overlayed preview image
18967 This function expects the position to be visible because it uses font-lock
18968 faces as a help to recognize the following contexts: :table-special, :link,
18969 and :keyword."
18970 (let* ((f (get-text-property (point) 'face))
18971 (faces (if (listp f) f (list f)))
18972 (p (point)) clist o)
18973 ;; First the large context
18974 (cond
18975 ((org-on-heading-p t)
18976 (push (list :headline (point-at-bol) (point-at-eol)) clist)
18977 (when (progn
18978 (beginning-of-line 1)
18979 (looking-at org-todo-line-tags-regexp))
18980 (push (org-point-in-group p 1 :headline-stars) clist)
18981 (push (org-point-in-group p 2 :todo-keyword) clist)
18982 (push (org-point-in-group p 4 :tags) clist))
18983 (goto-char p)
18984 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
18985 (if (looking-at "\\[#[A-Z0-9]\\]")
18986 (push (org-point-in-group p 0 :priority) clist)))
18988 ((org-at-item-p)
18989 (push (org-point-in-group p 2 :item-bullet) clist)
18990 (push (list :item (point-at-bol)
18991 (save-excursion (org-end-of-item) (point)))
18992 clist)
18993 (and (org-at-item-checkbox-p)
18994 (push (org-point-in-group p 0 :checkbox) clist)))
18996 ((org-at-table-p)
18997 (push (list :table (org-table-begin) (org-table-end)) clist)
18998 (if (memq 'org-formula faces)
18999 (push (list :table-special
19000 (previous-single-property-change p 'face)
19001 (next-single-property-change p 'face)) clist)))
19002 ((org-at-table-p 'any)
19003 (push (list :table-table) clist)))
19004 (goto-char p)
19006 ;; Now the small context
19007 (cond
19008 ((org-at-timestamp-p)
19009 (push (org-point-in-group p 0 :timestamp) clist))
19010 ((memq 'org-link faces)
19011 (push (list :link
19012 (previous-single-property-change p 'face)
19013 (next-single-property-change p 'face)) clist))
19014 ((memq 'org-special-keyword faces)
19015 (push (list :keyword
19016 (previous-single-property-change p 'face)
19017 (next-single-property-change p 'face)) clist))
19018 ((org-on-target-p)
19019 (push (org-point-in-group p 0 :target) clist)
19020 (goto-char (1- (match-beginning 0)))
19021 (if (looking-at org-radio-target-regexp)
19022 (push (org-point-in-group p 0 :radio-target) clist))
19023 (goto-char p))
19024 ((setq o (car (delq nil
19025 (mapcar
19026 (lambda (x)
19027 (if (memq x org-latex-fragment-image-overlays) x))
19028 (overlays-at (point))))))
19029 (push (list :latex-fragment
19030 (overlay-start o) (overlay-end o)) clist)
19031 (push (list :latex-preview
19032 (overlay-start o) (overlay-end o)) clist))
19033 ((org-inside-LaTeX-fragment-p)
19034 ;; FIXME: positions wrong.
19035 (push (list :latex-fragment (point) (point)) clist)))
19037 (setq clist (nreverse (delq nil clist)))
19038 clist))
19040 ;; FIXME: Compare with at-regexp-p Do we need both?
19041 (defun org-in-regexp (re &optional nlines visually)
19042 "Check if point is inside a match of regexp.
19043 Normally only the current line is checked, but you can include NLINES extra
19044 lines both before and after point into the search.
19045 If VISUALLY is set, require that the cursor is not after the match but
19046 really on, so that the block visually is on the match."
19047 (catch 'exit
19048 (let ((pos (point))
19049 (eol (point-at-eol (+ 1 (or nlines 0))))
19050 (inc (if visually 1 0)))
19051 (save-excursion
19052 (beginning-of-line (- 1 (or nlines 0)))
19053 (while (re-search-forward re eol t)
19054 (if (and (<= (match-beginning 0) pos)
19055 (>= (+ inc (match-end 0)) pos))
19056 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
19058 (defun org-at-regexp-p (regexp)
19059 "Is point inside a match of REGEXP in the current line?"
19060 (catch 'exit
19061 (save-excursion
19062 (let ((pos (point)) (end (point-at-eol)))
19063 (beginning-of-line 1)
19064 (while (re-search-forward regexp end t)
19065 (if (and (<= (match-beginning 0) pos)
19066 (>= (match-end 0) pos))
19067 (throw 'exit t)))
19068 nil))))
19070 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
19071 "Non-nil when point is between matches of START-RE and END-RE.
19073 Also return a non-nil value when point is on one of the matches.
19075 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
19076 buffer positions. Default values are the positions of headlines
19077 surrounding the point.
19079 The functions returns a cons cell whose car (resp. cdr) is the
19080 position before START-RE (resp. after END-RE)."
19081 (save-match-data
19082 (let ((pos (point))
19083 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
19084 (limit-down (or lim-down (save-excursion (outline-next-heading))))
19085 beg end)
19086 (save-excursion
19087 ;; Point is on a block when on START-RE or if START-RE can be
19088 ;; found before it...
19089 (and (or (org-at-regexp-p start-re)
19090 (re-search-backward start-re limit-up t))
19091 (setq beg (match-beginning 0))
19092 ;; ... and END-RE after it...
19093 (goto-char (match-end 0))
19094 (re-search-forward end-re limit-down t)
19095 (> (setq end (match-end 0)) pos)
19096 ;; ... without another START-RE in-between.
19097 (goto-char (match-beginning 0))
19098 (not (re-search-backward start-re pos t))
19099 ;; Return value.
19100 (cons beg end))))))
19102 (defun org-in-block-p (names)
19103 "Is point inside any block whose name belongs to NAMES?
19105 NAMES is a list of strings containing names of blocks."
19106 (save-match-data
19107 (catch 'exit
19108 (let ((case-fold-search t)
19109 (lim-up (save-excursion (outline-previous-heading)))
19110 (lim-down (save-excursion (outline-next-heading))))
19111 (mapc (lambda (name)
19112 (let ((n (regexp-quote name)))
19113 (when (org-between-regexps-p
19114 (concat "^[ \t]*#\\+begin_" n)
19115 (concat "^[ \t]*#\\+end_" n)
19116 lim-up lim-down)
19117 (throw 'exit t))))
19118 names))
19119 nil)))
19121 (defun org-occur-in-agenda-files (regexp &optional nlines)
19122 "Call `multi-occur' with buffers for all agenda files."
19123 (interactive "sOrg-files matching: \np")
19124 (let* ((files (org-agenda-files))
19125 (tnames (mapcar 'file-truename files))
19126 (extra org-agenda-text-search-extra-files)
19128 (when (eq (car extra) 'agenda-archives)
19129 (setq extra (cdr extra))
19130 (setq files (org-add-archive-files files)))
19131 (while (setq f (pop extra))
19132 (unless (member (file-truename f) tnames)
19133 (add-to-list 'files f 'append)
19134 (add-to-list 'tnames (file-truename f) 'append)))
19135 (multi-occur
19136 (mapcar (lambda (x)
19137 (with-current-buffer
19138 (or (get-file-buffer x) (find-file-noselect x))
19139 (widen)
19140 (current-buffer)))
19141 files)
19142 regexp)))
19144 (if (boundp 'occur-mode-find-occurrence-hook)
19145 ;; Emacs 23
19146 (add-hook 'occur-mode-find-occurrence-hook
19147 (lambda ()
19148 (when (org-mode-p)
19149 (org-reveal))))
19150 ;; Emacs 22
19151 (defadvice occur-mode-goto-occurrence
19152 (after org-occur-reveal activate)
19153 (and (org-mode-p) (org-reveal)))
19154 (defadvice occur-mode-goto-occurrence-other-window
19155 (after org-occur-reveal activate)
19156 (and (org-mode-p) (org-reveal)))
19157 (defadvice occur-mode-display-occurrence
19158 (after org-occur-reveal activate)
19159 (when (org-mode-p)
19160 (let ((pos (occur-mode-find-occurrence)))
19161 (with-current-buffer (marker-buffer pos)
19162 (save-excursion
19163 (goto-char pos)
19164 (org-reveal)))))))
19166 (defun org-occur-link-in-agenda-files ()
19167 "Create a link and search for it in the agendas.
19168 The link is not stored in `org-stored-links', it is just created
19169 for the search purpose."
19170 (interactive)
19171 (let ((link (condition-case nil
19172 (org-store-link nil)
19173 (error "Unable to create a link to here"))))
19174 (org-occur-in-agenda-files (regexp-quote link))))
19176 (defun org-uniquify (list)
19177 "Remove duplicate elements from LIST."
19178 (let (res)
19179 (mapc (lambda (x) (add-to-list 'res x 'append)) list)
19180 res))
19182 (defun org-delete-all (elts list)
19183 "Remove all elements in ELTS from LIST."
19184 (while elts
19185 (setq list (delete (pop elts) list)))
19186 list)
19188 (defun org-count (cl-item cl-seq)
19189 "Count the number of occurrences of ITEM in SEQ.
19190 Taken from `count' in cl-seq.el with all keyword arguments removed."
19191 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
19192 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
19193 (while (< cl-start cl-end)
19194 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
19195 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
19196 (setq cl-start (1+ cl-start)))
19197 cl-count))
19199 (defun org-remove-if (predicate seq)
19200 "Remove everything from SEQ that fulfills PREDICATE."
19201 (let (res e)
19202 (while seq
19203 (setq e (pop seq))
19204 (if (not (funcall predicate e)) (push e res)))
19205 (nreverse res)))
19207 (defun org-remove-if-not (predicate seq)
19208 "Remove everything from SEQ that does not fulfill PREDICATE."
19209 (let (res e)
19210 (while seq
19211 (setq e (pop seq))
19212 (if (funcall predicate e) (push e res)))
19213 (nreverse res)))
19215 (defun org-back-over-empty-lines ()
19216 "Move backwards over whitespace, to the beginning of the first empty line.
19217 Returns the number of empty lines passed."
19218 (let ((pos (point)))
19219 (if (cdr (assoc 'heading org-blank-before-new-entry))
19220 (skip-chars-backward " \t\n\r")
19221 (unless (eobp)
19222 (forward-line -1)))
19223 (beginning-of-line 2)
19224 (goto-char (min (point) pos))
19225 (count-lines (point) pos)))
19227 (defun org-skip-whitespace ()
19228 (skip-chars-forward " \t\n\r"))
19230 (defun org-point-in-group (point group &optional context)
19231 "Check if POINT is in match-group GROUP.
19232 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
19233 match. If the match group does not exist or point is not inside it,
19234 return nil."
19235 (and (match-beginning group)
19236 (>= point (match-beginning group))
19237 (<= point (match-end group))
19238 (if context
19239 (list context (match-beginning group) (match-end group))
19240 t)))
19242 (defun org-switch-to-buffer-other-window (&rest args)
19243 "Switch to buffer in a second window on the current frame.
19244 In particular, do not allow pop-up frames.
19245 Returns the newly created buffer."
19246 (let (pop-up-frames special-display-buffer-names special-display-regexps
19247 special-display-function)
19248 (apply 'switch-to-buffer-other-window args)))
19250 (defun org-combine-plists (&rest plists)
19251 "Create a single property list from all plists in PLISTS.
19252 The process starts by copying the first list, and then setting properties
19253 from the other lists. Settings in the last list are the most significant
19254 ones and overrule settings in the other lists."
19255 (let ((rtn (copy-sequence (pop plists)))
19256 p v ls)
19257 (while plists
19258 (setq ls (pop plists))
19259 (while ls
19260 (setq p (pop ls) v (pop ls))
19261 (setq rtn (plist-put rtn p v))))
19262 rtn))
19264 (defun org-move-line-down (arg)
19265 "Move the current line down. With prefix argument, move it past ARG lines."
19266 (interactive "p")
19267 (let ((col (current-column))
19268 beg end pos)
19269 (beginning-of-line 1) (setq beg (point))
19270 (beginning-of-line 2) (setq end (point))
19271 (beginning-of-line (+ 1 arg))
19272 (setq pos (move-marker (make-marker) (point)))
19273 (insert (delete-and-extract-region beg end))
19274 (goto-char pos)
19275 (org-move-to-column col)))
19277 (defun org-move-line-up (arg)
19278 "Move the current line up. With prefix argument, move it past ARG lines."
19279 (interactive "p")
19280 (let ((col (current-column))
19281 beg end pos)
19282 (beginning-of-line 1) (setq beg (point))
19283 (beginning-of-line 2) (setq end (point))
19284 (beginning-of-line (- arg))
19285 (setq pos (move-marker (make-marker) (point)))
19286 (insert (delete-and-extract-region beg end))
19287 (goto-char pos)
19288 (org-move-to-column col)))
19290 (defun org-replace-escapes (string table)
19291 "Replace %-escapes in STRING with values in TABLE.
19292 TABLE is an association list with keys like \"%a\" and string values.
19293 The sequences in STRING may contain normal field width and padding information,
19294 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
19295 so values can contain further %-escapes if they are define later in TABLE."
19296 (let ((tbl (copy-alist table))
19297 (case-fold-search nil)
19298 (pchg 0)
19299 e re rpl)
19300 (while (setq e (pop tbl))
19301 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
19302 (when (and (cdr e) (string-match re (cdr e)))
19303 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
19304 (safe "SREF"))
19305 (add-text-properties 0 3 (list 'sref sref) safe)
19306 (setcdr e (replace-match safe t t (cdr e)))))
19307 (while (string-match re string)
19308 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
19309 (cdr e)))
19310 (setq string (replace-match rpl t t string))))
19311 (while (setq pchg (next-property-change pchg string))
19312 (let ((sref (get-text-property pchg 'sref string)))
19313 (when (and sref (string-match "SREF" string pchg))
19314 (setq string (replace-match sref t t string)))))
19315 string))
19317 (defun org-sublist (list start end)
19318 "Return a section of LIST, from START to END.
19319 Counting starts at 1."
19320 (let (rtn (c start))
19321 (setq list (nthcdr (1- start) list))
19322 (while (and list (<= c end))
19323 (push (pop list) rtn)
19324 (setq c (1+ c)))
19325 (nreverse rtn)))
19327 (defun org-find-base-buffer-visiting (file)
19328 "Like `find-buffer-visiting' but always return the base buffer and
19329 not an indirect buffer."
19330 (let ((buf (or (get-file-buffer file)
19331 (find-buffer-visiting file))))
19332 (if buf
19333 (or (buffer-base-buffer buf) buf)
19334 nil)))
19336 (defun org-image-file-name-regexp (&optional extensions)
19337 "Return regexp matching the file names of images.
19338 If EXTENSIONS is given, only match these."
19339 (if (and (not extensions) (fboundp 'image-file-name-regexp))
19340 (image-file-name-regexp)
19341 (let ((image-file-name-extensions
19342 (or extensions
19343 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
19344 "xbm" "xpm" "pbm" "pgm" "ppm"))))
19345 (concat "\\."
19346 (regexp-opt (nconc (mapcar 'upcase
19347 image-file-name-extensions)
19348 image-file-name-extensions)
19350 "\\'"))))
19352 (defun org-file-image-p (file &optional extensions)
19353 "Return non-nil if FILE is an image."
19354 (save-match-data
19355 (string-match (org-image-file-name-regexp extensions) file)))
19357 (defun org-get-cursor-date ()
19358 "Return the date at cursor in as a time.
19359 This works in the calendar and in the agenda, anywhere else it just
19360 returns the current time."
19361 (let (date day defd)
19362 (cond
19363 ((eq major-mode 'calendar-mode)
19364 (setq date (calendar-cursor-to-date)
19365 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
19366 ((eq major-mode 'org-agenda-mode)
19367 (setq day (get-text-property (point) 'day))
19368 (if day
19369 (setq date (calendar-gregorian-from-absolute day)
19370 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date)
19371 (nth 2 date))))))
19372 (or defd (current-time))))
19374 (defvar org-agenda-action-marker (make-marker)
19375 "Marker pointing to the entry for the next agenda action.")
19377 (defun org-mark-entry-for-agenda-action ()
19378 "Mark the current entry as target of an agenda action.
19379 Agenda actions are actions executed from the agenda with the key `k',
19380 which make use of the date at the cursor."
19381 (interactive)
19382 (move-marker org-agenda-action-marker
19383 (save-excursion (org-back-to-heading t) (point))
19384 (current-buffer))
19385 (message
19386 "Entry marked for action; press `k' at desired date in agenda or calendar"))
19388 (defun org-mark-subtree ()
19389 "Mark the current subtree.
19390 This puts point at the start of the current subtree, and mark at the end.
19392 If point is in an inline task, mark that task instead."
19393 (interactive)
19394 (let ((inline-task-p
19395 (and (featurep 'org-inlinetask)
19396 (org-inlinetask-in-task-p)))
19397 (beg))
19398 ;; Get beginning of subtree
19399 (cond
19400 (inline-task-p (org-inlinetask-goto-beginning))
19401 ((org-at-heading-p) (beginning-of-line))
19402 (t (org-with-limited-levels (outline-previous-visible-heading 1))))
19403 (setq beg (point))
19404 ;; Get end of it
19405 (if inline-task-p
19406 (org-inlinetask-goto-end)
19407 (org-end-of-subtree))
19408 ;; Mark zone
19409 (push-mark (point) nil t)
19410 (goto-char beg)))
19412 ;;; Paragraph filling stuff.
19413 ;; We want this to be just right, so use the full arsenal.
19415 (defun org-indent-line-function ()
19416 "Indent line depending on context."
19417 (interactive)
19418 (let* ((pos (point))
19419 (itemp (org-at-item-p))
19420 (case-fold-search t)
19421 (org-drawer-regexp (or org-drawer-regexp "\000"))
19422 (inline-task-p (and (featurep 'org-inlinetask)
19423 (org-inlinetask-in-task-p)))
19424 (inline-re (and inline-task-p
19425 (org-inlinetask-outline-regexp)))
19426 column)
19427 (beginning-of-line 1)
19428 (cond
19429 ;; Comments
19430 ((looking-at "# ") (setq column 0))
19431 ;; Headings
19432 ((looking-at org-outline-regexp) (setq column 0))
19433 ;; Included files
19434 ((looking-at "#\\+include:") (setq column 0))
19435 ;; Footnote definition
19436 ((looking-at org-footnote-definition-re) (setq column 0))
19437 ;; Literal examples
19438 ((looking-at "[ \t]*:\\( \\|$\\)")
19439 (setq column (org-get-indentation))) ; do nothing
19440 ;; Lists
19441 ((ignore-errors (goto-char (org-in-item-p)))
19442 (setq column (if itemp
19443 (org-get-indentation)
19444 (org-list-item-body-column (point))))
19445 (goto-char pos))
19446 ;; Drawers
19447 ((and (looking-at "[ \t]*:END:")
19448 (save-excursion (re-search-backward org-drawer-regexp nil t)))
19449 (save-excursion
19450 (goto-char (1- (match-beginning 1)))
19451 (setq column (current-column))))
19452 ;; Special blocks
19453 ((and (looking-at "[ \t]*#\\+end_\\([a-z]+\\)")
19454 (save-excursion
19455 (re-search-backward
19456 (concat "^[ \t]*#\\+begin_" (downcase (match-string 1))) nil t)))
19457 (setq column (org-get-indentation (match-string 0))))
19458 ((and (not (looking-at "[ \t]*#\\+begin_"))
19459 (org-between-regexps-p "^[ \t]*#\\+begin_" "[ \t]*#\\+end_"))
19460 (save-excursion
19461 (re-search-backward "^[ \t]*#\\+begin_\\([a-z]+\\)" nil t))
19462 (setq column
19463 (cond ((equal (downcase (match-string 1)) "src")
19464 ;; src blocks: let `org-edit-src-exit' handle them
19465 (org-get-indentation))
19466 ((equal (downcase (match-string 1)) "example")
19467 (max (org-get-indentation)
19468 (org-get-indentation (match-string 0))))
19470 (org-get-indentation (match-string 0))))))
19471 ;; This line has nothing special, look at the previous relevant
19472 ;; line to compute indentation
19474 (beginning-of-line 0)
19475 (while (and (not (bobp))
19476 (not (looking-at org-drawer-regexp))
19477 ;; When point started in an inline task, do not move
19478 ;; above task starting line.
19479 (not (and inline-task-p (looking-at inline-re)))
19480 ;; Skip drawers, blocks, empty lines, verbatim,
19481 ;; comments, tables, footnotes definitions, lists,
19482 ;; inline tasks.
19483 (or (and (looking-at "[ \t]*:END:")
19484 (re-search-backward org-drawer-regexp nil t))
19485 (and (looking-at "[ \t]*#\\+end_")
19486 (re-search-backward "[ \t]*#\\+begin_"nil t))
19487 (looking-at "[ \t]*[\n:#|]")
19488 (looking-at org-footnote-definition-re)
19489 (and (ignore-errors (goto-char (org-in-item-p)))
19490 (goto-char
19491 (org-list-get-top-point (org-list-struct))))
19492 (and (not inline-task-p)
19493 (featurep 'org-inlinetask)
19494 (org-inlinetask-in-task-p)
19495 (or (org-inlinetask-goto-beginning) t))))
19496 (beginning-of-line 0))
19497 (cond
19498 ;; There was an heading above.
19499 ((looking-at "\\*+[ \t]+")
19500 (if (not org-adapt-indentation)
19501 (setq column 0)
19502 (goto-char (match-end 0))
19503 (setq column (current-column))))
19504 ;; A drawer had started and is unfinished
19505 ((looking-at org-drawer-regexp)
19506 (goto-char (1- (match-beginning 1)))
19507 (setq column (current-column)))
19508 ;; Else, nothing noticeable found: get indentation and go on.
19509 (t (setq column (org-get-indentation))))))
19510 ;; Now apply indentation and move cursor accordingly
19511 (goto-char pos)
19512 (if (<= (current-column) (current-indentation))
19513 (org-indent-line-to column)
19514 (save-excursion (org-indent-line-to column)))
19515 ;; Special polishing for properties, see `org-property-format'
19516 (setq column (current-column))
19517 (beginning-of-line 1)
19518 (if (looking-at
19519 "\\([ \t]+\\)\\(:[-_0-9a-zA-Z]+:\\)[ \t]*\\(\\S-.*\\(\\S-\\|$\\)\\)")
19520 (replace-match (concat (match-string 1)
19521 (format org-property-format
19522 (match-string 2) (match-string 3)))
19523 t t))
19524 (org-move-to-column column)))
19526 (defvar org-adaptive-fill-regexp-backup adaptive-fill-regexp
19527 "Variable to store copy of `adaptive-fill-regexp'.
19528 Since `adaptive-fill-regexp' is set to never match, we need to
19529 store a backup of its value before entering `org-mode' so that
19530 the functionality can be provided as a fall-back.")
19532 (defun org-set-autofill-regexps ()
19533 (interactive)
19534 ;; In the paragraph separator we include headlines, because filling
19535 ;; text in a line directly attached to a headline would otherwise
19536 ;; fill the headline as well.
19537 (org-set-local 'comment-start-skip "^#+[ \t]*")
19538 (org-set-local 'paragraph-separate "\f\\|\\*+ \\|[ ]*$\\|[ \t]*[:|#]")
19539 ;; The paragraph starter includes hand-formatted lists.
19540 (org-set-local
19541 'paragraph-start
19542 (concat
19543 "\f" "\\|"
19544 "[ ]*$" "\\|"
19545 org-outline-regexp "\\|"
19546 "[ \t]*#" "\\|"
19547 (org-item-re) "\\|"
19548 "[ \t]*[:|]" "\\|"
19549 "\\$\\$" "\\|"
19550 "\\\\\\(begin\\|end\\|[][]\\)"))
19551 ;; Inhibit auto-fill for headers, tables and fixed-width lines.
19552 ;; But only if the user has not turned off tables or fixed-width regions
19553 (org-set-local
19554 'auto-fill-inhibit-regexp
19555 (concat org-outline-regexp
19556 "\\|#\\+"
19557 "\\|[ \t]*" org-keyword-time-regexp
19558 (if (or org-enable-table-editor org-enable-fixed-width-editor)
19559 (concat
19560 "\\|[ \t]*["
19561 (if org-enable-table-editor "|" "")
19562 (if org-enable-fixed-width-editor ":" "")
19563 "]"))))
19564 ;; We use our own fill-paragraph function, to make sure that tables
19565 ;; and fixed-width regions are not wrapped. That function will pass
19566 ;; through to `fill-paragraph' when appropriate.
19567 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
19568 ;; Prevent auto-fill from inserting unwanted new items.
19569 (org-set-local 'fill-nobreak-predicate
19570 (if (memq 'org-fill-item-nobreak-p fill-nobreak-predicate)
19571 fill-nobreak-predicate
19572 (cons 'org-fill-item-nobreak-p fill-nobreak-predicate)))
19573 ;; Adaptive filling: To get full control, first make sure that
19574 ;; `adaptive-fill-regexp' never matches. Then install our own matcher.
19575 (unless (local-variable-p 'adaptive-fill-regexp (current-buffer))
19576 (org-set-local 'org-adaptive-fill-regexp-backup
19577 adaptive-fill-regexp))
19578 (org-set-local 'adaptive-fill-regexp "\000")
19579 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
19580 (org-set-local 'adaptive-fill-function
19581 'org-adaptive-fill-function)
19582 (org-set-local
19583 'align-mode-rules-list
19584 '((org-in-buffer-settings
19585 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
19586 (modes . '(org-mode))))))
19588 (defun org-fill-item-nobreak-p ()
19589 "Non-nil when a line break at point would insert a new item."
19590 (and (looking-at (org-item-re)) (org-list-in-valid-context-p)))
19592 (defun org-fill-paragraph (&optional justify)
19593 "Re-align a table, pass through to fill-paragraph if no table."
19594 (let ((table-p (org-at-table-p))
19595 (table.el-p (org-at-table.el-p))
19596 (itemp (org-in-item-p)))
19597 (cond ((and (equal (char-after (point-at-bol)) ?*)
19598 (save-excursion (goto-char (point-at-bol))
19599 (looking-at org-outline-regexp)))
19600 t) ; skip headlines
19601 (table.el-p t) ; skip table.el tables
19602 (table-p (org-table-align) t) ; align Org tables
19603 (itemp ; align text in items
19604 (let* ((struct (save-excursion (goto-char itemp)
19605 (org-list-struct)))
19606 (parents (org-list-parents-alist struct))
19607 (children (org-list-get-children itemp struct parents))
19608 beg end prev next prefix)
19609 ;; Determine in which part of item point is: before
19610 ;; first child, after last child, between two
19611 ;; sub-lists, or simply in item if there's no child.
19612 (cond
19613 ((not children)
19614 (setq prefix (make-string (org-list-item-body-column itemp) ?\ )
19615 beg itemp
19616 end (org-list-get-item-end itemp struct)))
19617 ((< (point) (setq next (car children)))
19618 (setq prefix (make-string (org-list-item-body-column itemp) ?\ )
19619 beg itemp
19620 end next))
19621 ((> (point) (setq prev (car (last children))))
19622 (setq beg (org-list-get-item-end prev struct)
19623 end (org-list-get-item-end itemp struct)
19624 prefix (save-excursion
19625 (goto-char beg)
19626 (skip-chars-forward " \t")
19627 (make-string (current-column) ?\ ))))
19628 (t (catch 'exit
19629 (while (setq next (pop children))
19630 (if (> (point) next)
19631 (setq prev next)
19632 (setq beg (org-list-get-item-end prev struct)
19633 end next
19634 prefix (save-excursion
19635 (goto-char beg)
19636 (skip-chars-forward " \t")
19637 (make-string (current-column) ?\ )))
19638 (throw 'exit nil))))))
19639 ;; Use `fill-paragraph' with buffer narrowed to item
19640 ;; without any child, and with our computed PREFIX.
19641 (flet ((fill-context-prefix (from to &optional flr) prefix))
19642 (save-restriction
19643 (narrow-to-region beg end)
19644 (save-excursion (fill-paragraph justify)))) t))
19645 ;; Special case where point is not in a list but is on
19646 ;; a paragraph adjacent to a list: make sure this paragraph
19647 ;; doesn't get merged with the end of the list by narrowing
19648 ;; buffer first.
19649 ((save-excursion (forward-paragraph -1)
19650 (setq itemp (org-in-item-p)))
19651 (let ((struct (save-excursion (goto-char itemp)
19652 (org-list-struct))))
19653 (save-restriction
19654 (narrow-to-region (org-list-get-bottom-point struct)
19655 (save-excursion (forward-paragraph 1)
19656 (point)))
19657 (fill-paragraph justify) t)))
19658 ;; Else simply call `fill-paragraph'.
19659 (t nil))))
19661 ;; For reference, this is the default value of adaptive-fill-regexp
19662 ;; "[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"
19664 (defun org-adaptive-fill-function ()
19665 "Return a fill prefix for org-mode files."
19666 (let (itemp)
19667 (save-excursion
19668 (cond
19669 ;; Comment line
19670 ((looking-at "#[ \t]+")
19671 (match-string-no-properties 0))
19672 ;; Plain list item
19673 ((org-at-item-p)
19674 (make-string (org-list-item-body-column (point-at-bol)) ?\ ))
19675 ;; Point is in a list after `backward-paragraph': original
19676 ;; point wasn't in the list, or filling would have been taken
19677 ;; care of by `org-auto-fill-function', but the list and the
19678 ;; real paragraph are not separated by a blank line. Thus, move
19679 ;; point after the list to go back to real paragraph and
19680 ;; determine fill-prefix.
19681 ((setq itemp (org-in-item-p))
19682 (goto-char itemp)
19683 (let* ((struct (org-list-struct))
19684 (bottom (org-list-get-bottom-point struct)))
19685 (goto-char bottom)
19686 (make-string (org-get-indentation) ?\ )))
19687 ;; Other text
19688 ((looking-at org-adaptive-fill-regexp-backup)
19689 (match-string-no-properties 0))))))
19691 (defun org-auto-fill-function ()
19692 "Auto-fill function."
19693 (let (itemp prefix)
19694 ;; When in a list, compute an appropriate fill-prefix and make
19695 ;; sure it will be used by `do-auto-fill'.
19696 (if (setq itemp (org-in-item-p))
19697 (progn
19698 (setq prefix (make-string (org-list-item-body-column itemp) ?\ ))
19699 (flet ((fill-context-prefix (from to &optional flr) prefix))
19700 (do-auto-fill)))
19701 ;; Else just use `do-auto-fill'.
19702 (do-auto-fill))))
19704 ;;; Other stuff.
19706 (defun org-toggle-fixed-width-section (arg)
19707 "Toggle the fixed-width export.
19708 If there is no active region, the QUOTE keyword at the current headline is
19709 inserted or removed. When present, it causes the text between this headline
19710 and the next to be exported as fixed-width text, and unmodified.
19711 If there is an active region, this command adds or removes a colon as the
19712 first character of this line. If the first character of a line is a colon,
19713 this line is also exported in fixed-width font."
19714 (interactive "P")
19715 (let* ((cc 0)
19716 (regionp (org-region-active-p))
19717 (beg (if regionp (region-beginning) (point)))
19718 (end (if regionp (region-end)))
19719 (nlines (or arg (if (and beg end) (count-lines beg end) 1)))
19720 (case-fold-search nil)
19721 (re "[ \t]*\\(:\\(?: \\|$\\)\\)")
19722 off)
19723 (if regionp
19724 (save-excursion
19725 (goto-char beg)
19726 (setq cc (current-column))
19727 (beginning-of-line 1)
19728 (setq off (looking-at re))
19729 (while (> nlines 0)
19730 (setq nlines (1- nlines))
19731 (beginning-of-line 1)
19732 (cond
19733 (arg
19734 (org-move-to-column cc t)
19735 (insert ": \n")
19736 (forward-line -1))
19737 ((and off (looking-at re))
19738 (replace-match "" t t nil 1))
19739 ((not off) (org-move-to-column cc t) (insert ": ")))
19740 (forward-line 1)))
19741 (save-excursion
19742 (org-back-to-heading)
19743 (if (looking-at (concat org-outline-regexp
19744 "\\( *\\<" org-quote-string "\\>[ \t]*\\)"))
19745 (replace-match "" t t nil 1)
19746 (if (looking-at org-outline-regexp)
19747 (progn
19748 (goto-char (match-end 0))
19749 (insert org-quote-string " "))))))))
19751 (defun org-reftex-citation ()
19752 "Use reftex-citation to insert a citation into the buffer.
19753 This looks for a line like
19755 #+BIBLIOGRAPHY: foo plain option:-d
19757 and derives from it that foo.bib is the bibliography file relevant
19758 for this document. It then installs the necessary environment for RefTeX
19759 to work in this buffer and calls `reftex-citation' to insert a citation
19760 into the buffer.
19762 Export of such citations to both LaTeX and HTML is handled by the contributed
19763 package org-exp-bibtex by Taru Karttunen."
19764 (interactive)
19765 (let ((reftex-docstruct-symbol 'rds)
19766 (reftex-cite-format "\\cite{%l}")
19767 rds bib)
19768 (save-excursion
19769 (save-restriction
19770 (widen)
19771 (let ((case-fold-search t)
19772 (re "^#\\+bibliography:[ \t]+\\([^ \t\n]+\\)"))
19773 (if (not (save-excursion
19774 (or (re-search-forward re nil t)
19775 (re-search-backward re nil t))))
19776 (error "No bibliography defined in file")
19777 (setq bib (concat (match-string 1) ".bib")
19778 rds (list (list 'bib bib)))))))
19779 (call-interactively 'reftex-citation)))
19781 ;;;; Functions extending outline functionality
19783 (defun org-beginning-of-line (&optional arg)
19784 "Go to the beginning of the current line. If that is invisible, continue
19785 to a visible line beginning. This makes the function of C-a more intuitive.
19786 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
19787 first attempt, and only move to after the tags when the cursor is already
19788 beyond the end of the headline."
19789 (interactive "P")
19790 (let ((pos (point))
19791 (special (if (consp org-special-ctrl-a/e)
19792 (car org-special-ctrl-a/e)
19793 org-special-ctrl-a/e))
19794 refpos)
19795 (if (org-bound-and-true-p line-move-visual)
19796 (beginning-of-visual-line 1)
19797 (beginning-of-line 1))
19798 (if (and arg (fboundp 'move-beginning-of-line))
19799 (call-interactively 'move-beginning-of-line)
19800 (if (bobp)
19802 (backward-char 1)
19803 (if (org-truely-invisible-p)
19804 (while (and (not (bobp)) (org-truely-invisible-p))
19805 (backward-char 1)
19806 (beginning-of-line 1))
19807 (forward-char 1))))
19808 (when special
19809 (cond
19810 ((and (looking-at org-complex-heading-regexp)
19811 (= (char-after (match-end 1)) ?\ ))
19812 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
19813 (point-at-eol)))
19814 (goto-char
19815 (if (eq special t)
19816 (cond ((> pos refpos) refpos)
19817 ((= pos (point)) refpos)
19818 (t (point)))
19819 (cond ((> pos (point)) (point))
19820 ((not (eq last-command this-command)) (point))
19821 (t refpos)))))
19822 ((org-at-item-p)
19823 (goto-char
19824 (if (eq special t)
19825 (cond ((> pos (match-end 0)) (match-end 0))
19826 ((= pos (point)) (match-end 0))
19827 (t (point)))
19828 (cond ((> pos (point)) (point))
19829 ((not (eq last-command this-command)) (point))
19830 (t (match-end 0))))))))
19831 (org-no-warnings
19832 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
19834 (defun org-end-of-line (&optional arg)
19835 "Go to the end of the line.
19836 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
19837 first attempt, and only move to after the tags when the cursor is already
19838 beyond the end of the headline."
19839 (interactive "P")
19840 (let ((special (if (consp org-special-ctrl-a/e)
19841 (cdr org-special-ctrl-a/e)
19842 org-special-ctrl-a/e)))
19843 (if (or (not special)
19844 (not (org-on-heading-p))
19845 arg)
19846 (call-interactively
19847 (cond ((org-bound-and-true-p line-move-visual) 'end-of-visual-line)
19848 ((fboundp 'move-end-of-line) 'move-end-of-line)
19849 (t 'end-of-line)))
19850 (let ((pos (point)))
19851 (beginning-of-line 1)
19852 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
19853 (if (eq special t)
19854 (if (or (< pos (match-beginning 1))
19855 (= pos (match-end 0)))
19856 (goto-char (match-beginning 1))
19857 (goto-char (match-end 0)))
19858 (if (or (< pos (match-end 0)) (not (eq this-command last-command)))
19859 (goto-char (match-end 0))
19860 (goto-char (match-beginning 1))))
19861 (call-interactively (if (fboundp 'move-end-of-line)
19862 'move-end-of-line
19863 'end-of-line)))))
19864 (org-no-warnings
19865 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
19867 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
19868 (define-key org-mode-map "\C-e" 'org-end-of-line)
19870 (defun org-backward-sentence (&optional arg)
19871 "Go to beginning of sentence, or beginning of table field.
19872 This will call `backward-sentence' or `org-table-beginning-of-field',
19873 depending on context."
19874 (interactive "P")
19875 (cond
19876 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
19877 (t (call-interactively 'backward-sentence))))
19879 (defun org-forward-sentence (&optional arg)
19880 "Go to end of sentence, or end of table field.
19881 This will call `forward-sentence' or `org-table-end-of-field',
19882 depending on context."
19883 (interactive "P")
19884 (cond
19885 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
19886 (t (call-interactively 'forward-sentence))))
19888 (define-key org-mode-map "\M-a" 'org-backward-sentence)
19889 (define-key org-mode-map "\M-e" 'org-forward-sentence)
19891 (defun org-kill-line (&optional arg)
19892 "Kill line, to tags or end of line."
19893 (interactive "P")
19894 (cond
19895 ((or (not org-special-ctrl-k)
19896 (bolp)
19897 (not (org-on-heading-p)))
19898 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
19899 org-ctrl-k-protect-subtree)
19900 (if (or (eq org-ctrl-k-protect-subtree 'error)
19901 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
19902 (error "C-k aborted - would kill hidden subtree")))
19903 (call-interactively 'kill-line))
19904 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
19905 (kill-region (point) (match-beginning 1))
19906 (org-set-tags nil t))
19907 (t (kill-region (point) (point-at-eol)))))
19909 (define-key org-mode-map "\C-k" 'org-kill-line)
19911 (defun org-yank (&optional arg)
19912 "Yank. If the kill is a subtree, treat it specially.
19913 This command will look at the current kill and check if is a single
19914 subtree, or a series of subtrees[1]. If it passes the test, and if the
19915 cursor is at the beginning of a line or after the stars of a currently
19916 empty headline, then the yank is handled specially. How exactly depends
19917 on the value of the following variables, both set by default.
19919 org-yank-folded-subtrees
19920 When set, the subtree(s) will be folded after insertion, but only
19921 if doing so would now swallow text after the yanked text.
19923 org-yank-adjusted-subtrees
19924 When set, the subtree will be promoted or demoted in order to
19925 fit into the local outline tree structure, which means that the level
19926 will be adjusted so that it becomes the smaller one of the two
19927 *visible* surrounding headings.
19929 Any prefix to this command will cause `yank' to be called directly with
19930 no special treatment. In particular, a simple \\[universal-argument] prefix \
19931 will just
19932 plainly yank the text as it is.
19934 \[1] The test checks if the first non-white line is a heading
19935 and if there are no other headings with fewer stars."
19936 (interactive "P")
19937 (org-yank-generic 'yank arg))
19939 (defun org-yank-generic (command arg)
19940 "Perform some yank-like command.
19942 This function implements the behavior described in the `org-yank'
19943 documentation. However, it has been generalized to work for any
19944 interactive command with similar behavior."
19946 ;; pretend to be command COMMAND
19947 (setq this-command command)
19949 (if arg
19950 (call-interactively command)
19952 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
19953 (and (org-kill-is-subtree-p)
19954 (or (bolp)
19955 (and (looking-at "[ \t]*$")
19956 (string-match
19957 "\\`\\*+\\'"
19958 (buffer-substring (point-at-bol) (point)))))))
19959 swallowp)
19960 (cond
19961 ((and subtreep org-yank-folded-subtrees)
19962 (let ((beg (point))
19963 end)
19964 (if (and subtreep org-yank-adjusted-subtrees)
19965 (org-paste-subtree nil nil 'for-yank)
19966 (call-interactively command))
19968 (setq end (point))
19969 (goto-char beg)
19970 (when (and (bolp) subtreep
19971 (not (setq swallowp
19972 (org-yank-folding-would-swallow-text beg end))))
19973 (org-with-limited-levels
19974 (or (looking-at org-outline-regexp)
19975 (re-search-forward org-outline-regexp-bol end t))
19976 (while (and (< (point) end) (looking-at org-outline-regexp))
19977 (hide-subtree)
19978 (org-cycle-show-empty-lines 'folded)
19979 (condition-case nil
19980 (outline-forward-same-level 1)
19981 (error (goto-char end))))))
19982 (when swallowp
19983 (message
19984 "Inserted text not folded because that would swallow text"))
19986 (goto-char end)
19987 (skip-chars-forward " \t\n\r")
19988 (beginning-of-line 1)
19989 (push-mark beg 'nomsg)))
19990 ((and subtreep org-yank-adjusted-subtrees)
19991 (let ((beg (point-at-bol)))
19992 (org-paste-subtree nil nil 'for-yank)
19993 (push-mark beg 'nomsg)))
19995 (call-interactively command))))))
19997 (defun org-yank-folding-would-swallow-text (beg end)
19998 "Would hide-subtree at BEG swallow any text after END?"
19999 (let (level)
20000 (org-with-limited-levels
20001 (save-excursion
20002 (goto-char beg)
20003 (when (or (looking-at org-outline-regexp)
20004 (re-search-forward org-outline-regexp-bol end t))
20005 (setq level (org-outline-level)))
20006 (goto-char end)
20007 (skip-chars-forward " \t\r\n\v\f")
20008 (if (or (eobp)
20009 (and (bolp) (looking-at org-outline-regexp)
20010 (<= (org-outline-level) level)))
20011 nil ; Nothing would be swallowed
20012 t))))) ; something would swallow
20014 (define-key org-mode-map "\C-y" 'org-yank)
20016 (defun org-truely-invisible-p ()
20017 "Check if point is at a character currently not visible.
20018 This version does not only check the character property, but also
20019 `visible-mode'."
20020 ;; Early versions of noutline don't have `outline-invisible-p'.
20021 (if (org-bound-and-true-p visible-mode)
20023 (outline-invisible-p)))
20025 (defun org-invisible-p2 ()
20026 "Check if point is at a character currently not visible."
20027 (save-excursion
20028 (if (and (eolp) (not (bobp))) (backward-char 1))
20029 ;; Early versions of noutline don't have `outline-invisible-p'.
20030 (outline-invisible-p)))
20032 (defun org-back-to-heading (&optional invisible-ok)
20033 "Call `outline-back-to-heading', but provide a better error message."
20034 (condition-case nil
20035 (outline-back-to-heading invisible-ok)
20036 (error (error "Before first headline at position %d in buffer %s"
20037 (point) (current-buffer)))))
20039 (defun org-beginning-of-defun ()
20040 "Go to the beginning of the subtree, i.e. back to the heading."
20041 (org-back-to-heading))
20042 (defun org-end-of-defun ()
20043 "Go to the end of the subtree."
20044 (org-end-of-subtree nil t))
20046 (defun org-before-first-heading-p ()
20047 "Before first heading?"
20048 (save-excursion
20049 (end-of-line)
20050 (null (re-search-backward org-outline-regexp-bol nil t))))
20052 (defun org-on-heading-p (&optional ignored)
20053 (outline-on-heading-p t))
20054 (defun org-at-heading-p (&optional ignored)
20055 (outline-on-heading-p t))
20057 (defun org-point-at-end-of-empty-headline ()
20058 "If point is at the end of an empty headline, return t, else nil.
20059 If the heading only contains a TODO keyword, it is still still considered
20060 empty."
20061 (and (looking-at "[ \t]*$")
20062 (save-excursion
20063 (beginning-of-line 1)
20064 (let ((case-fold-search nil))
20065 (looking-at (concat "^\\(\\*+\\)[ \t]+\\(" org-todo-regexp
20066 "\\)?[ \t]*$"))))))
20067 (defun org-at-heading-or-item-p ()
20068 (or (org-on-heading-p) (org-at-item-p)))
20070 (defun org-on-target-p ()
20071 (or (org-in-regexp org-radio-target-regexp)
20072 (org-in-regexp org-target-regexp)))
20074 (defun org-up-heading-all (arg)
20075 "Move to the heading line of which the present line is a subheading.
20076 This function considers both visible and invisible heading lines.
20077 With argument, move up ARG levels."
20078 (if (fboundp 'outline-up-heading-all)
20079 (outline-up-heading-all arg) ; emacs 21 version of outline.el
20080 (outline-up-heading arg t))) ; emacs 22 version of outline.el
20082 (defun org-up-heading-safe ()
20083 "Move to the heading line of which the present line is a subheading.
20084 This version will not throw an error. It will return the level of the
20085 headline found, or nil if no higher level is found.
20087 Also, this function will be a lot faster than `outline-up-heading',
20088 because it relies on stars being the outline starters. This can really
20089 make a significant difference in outlines with very many siblings."
20090 (let (start-level re)
20091 (org-back-to-heading t)
20092 (setq start-level (funcall outline-level))
20093 (if (equal start-level 1)
20095 (setq re (concat "^\\*\\{1," (number-to-string (1- start-level)) "\\} "))
20096 (if (re-search-backward re nil t)
20097 (funcall outline-level)))))
20099 (defun org-first-sibling-p ()
20100 "Is this heading the first child of its parents?"
20101 (interactive)
20102 (let ((re org-outline-regexp-bol)
20103 level l)
20104 (unless (org-at-heading-p t)
20105 (error "Not at a heading"))
20106 (setq level (funcall outline-level))
20107 (save-excursion
20108 (if (not (re-search-backward re nil t))
20110 (setq l (funcall outline-level))
20111 (< l level)))))
20113 (defun org-goto-sibling (&optional previous)
20114 "Goto the next sibling, even if it is invisible.
20115 When PREVIOUS is set, go to the previous sibling instead. Returns t
20116 when a sibling was found. When none is found, return nil and don't
20117 move point."
20118 (let ((fun (if previous 're-search-backward 're-search-forward))
20119 (pos (point))
20120 (re org-outline-regexp-bol)
20121 level l)
20122 (when (condition-case nil (org-back-to-heading t) (error nil))
20123 (setq level (funcall outline-level))
20124 (catch 'exit
20125 (or previous (forward-char 1))
20126 (while (funcall fun re nil t)
20127 (setq l (funcall outline-level))
20128 (when (< l level) (goto-char pos) (throw 'exit nil))
20129 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
20130 (goto-char pos)
20131 nil))))
20133 (defun org-show-siblings ()
20134 "Show all siblings of the current headline."
20135 (save-excursion
20136 (while (org-goto-sibling) (org-flag-heading nil)))
20137 (save-excursion
20138 (while (org-goto-sibling 'previous)
20139 (org-flag-heading nil))))
20141 (defun org-goto-first-child ()
20142 "Goto the first child, even if it is invisible.
20143 Return t when a child was found. Otherwise don't move point and
20144 return nil."
20145 (let (level (pos (point)) (re org-outline-regexp-bol))
20146 (when (condition-case nil (org-back-to-heading t) (error nil))
20147 (setq level (outline-level))
20148 (forward-char 1)
20149 (if (and (re-search-forward re nil t) (> (outline-level) level))
20150 (progn (goto-char (match-beginning 0)) t)
20151 (goto-char pos) nil))))
20153 (defun org-show-hidden-entry ()
20154 "Show an entry where even the heading is hidden."
20155 (save-excursion
20156 (org-show-entry)))
20158 (defun org-flag-heading (flag &optional entry)
20159 "Flag the current heading. FLAG non-nil means make invisible.
20160 When ENTRY is non-nil, show the entire entry."
20161 (save-excursion
20162 (org-back-to-heading t)
20163 ;; Check if we should show the entire entry
20164 (if entry
20165 (progn
20166 (org-show-entry)
20167 (save-excursion
20168 (and (outline-next-heading)
20169 (org-flag-heading nil))))
20170 (outline-flag-region (max (point-min) (1- (point)))
20171 (save-excursion (outline-end-of-heading) (point))
20172 flag))))
20174 (defun org-get-next-sibling ()
20175 "Move to next heading of the same level, and return point.
20176 If there is no such heading, return nil.
20177 This is like outline-next-sibling, but invisible headings are ok."
20178 (let ((level (funcall outline-level)))
20179 (outline-next-heading)
20180 (while (and (not (eobp)) (> (funcall outline-level) level))
20181 (outline-next-heading))
20182 (if (or (eobp) (< (funcall outline-level) level))
20184 (point))))
20186 (defun org-get-last-sibling ()
20187 "Move to previous heading of the same level, and return point.
20188 If there is no such heading, return nil."
20189 (let ((opoint (point))
20190 (level (funcall outline-level)))
20191 (outline-previous-heading)
20192 (when (and (/= (point) opoint) (outline-on-heading-p t))
20193 (while (and (> (funcall outline-level) level)
20194 (not (bobp)))
20195 (outline-previous-heading))
20196 (if (< (funcall outline-level) level)
20198 (point)))))
20200 (defun org-end-of-subtree (&optional invisible-OK to-heading)
20201 ;; This contains an exact copy of the original function, but it uses
20202 ;; `org-back-to-heading', to make it work also in invisible
20203 ;; trees. And is uses an invisible-OK argument.
20204 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
20205 ;; Furthermore, when used inside Org, finding the end of a large subtree
20206 ;; with many children and grandchildren etc, this can be much faster
20207 ;; than the outline version.
20208 (org-back-to-heading invisible-OK)
20209 (let ((first t)
20210 (level (funcall outline-level)))
20211 (if (and (org-mode-p) (< level 1000))
20212 ;; A true heading (not a plain list item), in Org-mode
20213 ;; This means we can easily find the end by looking
20214 ;; only for the right number of stars. Using a regexp to do
20215 ;; this is so much faster than using a Lisp loop.
20216 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
20217 (forward-char 1)
20218 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
20219 ;; something else, do it the slow way
20220 (while (and (not (eobp))
20221 (or first (> (funcall outline-level) level)))
20222 (setq first nil)
20223 (outline-next-heading)))
20224 (unless to-heading
20225 (if (memq (preceding-char) '(?\n ?\^M))
20226 (progn
20227 ;; Go to end of line before heading
20228 (forward-char -1)
20229 (if (memq (preceding-char) '(?\n ?\^M))
20230 ;; leave blank line before heading
20231 (forward-char -1))))))
20232 (point))
20234 (defadvice outline-end-of-subtree (around prefer-org-version activate compile)
20235 "Use Org version in org-mode, for dramatic speed-up."
20236 (if (org-mode-p)
20237 (progn
20238 (org-end-of-subtree nil t)
20239 (unless (eobp) (backward-char 1)))
20240 ad-do-it))
20242 (defun org-end-of-meta-data-and-drawers ()
20243 "Jump to the first text after meta data and drawers in the current entry.
20244 This will move over empty lines, lines with planning time stamps,
20245 clocking lines, and drawers."
20246 (org-back-to-heading t)
20247 (let ((end (save-excursion (outline-next-heading) (point)))
20248 (re (concat "\\(" org-drawer-regexp "\\)"
20249 "\\|" "[ \t]*" org-keyword-time-regexp)))
20250 (forward-line 1)
20251 (while (re-search-forward re end t)
20252 (if (not (match-end 1))
20253 ;; empty or planning line
20254 (forward-line 1)
20255 ;; a drawer, find the end
20256 (re-search-forward "^[ \t]*:END:" end 'move)
20257 (forward-line 1)))
20258 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
20259 (point)))
20261 (defun org-forward-same-level (arg &optional invisible-ok)
20262 "Move forward to the arg'th subheading at same level as this one.
20263 Stop at the first and last subheadings of a superior heading.
20264 Normally this only looks at visible headings, but when INVISIBLE-OK is non-nil
20265 it wil also look at invisible ones."
20266 (interactive "p")
20267 (org-back-to-heading invisible-ok)
20268 (org-on-heading-p)
20269 (let* ((level (- (match-end 0) (match-beginning 0) 1))
20270 (re (format "^\\*\\{1,%d\\} " level))
20272 (forward-char 1)
20273 (while (> arg 0)
20274 (while (and (re-search-forward re nil 'move)
20275 (setq l (- (match-end 0) (match-beginning 0) 1))
20276 (= l level)
20277 (not invisible-ok)
20278 (progn (backward-char 1) (outline-invisible-p)))
20279 (if (< l level) (setq arg 1)))
20280 (setq arg (1- arg)))
20281 (beginning-of-line 1)))
20283 (defun org-backward-same-level (arg &optional invisible-ok)
20284 "Move backward to the arg'th subheading at same level as this one.
20285 Stop at the first and last subheadings of a superior heading."
20286 (interactive "p")
20287 (org-back-to-heading)
20288 (org-on-heading-p)
20289 (let* ((level (- (match-end 0) (match-beginning 0) 1))
20290 (re (format "^\\*\\{1,%d\\} " level))
20292 (while (> arg 0)
20293 (while (and (re-search-backward re nil 'move)
20294 (setq l (- (match-end 0) (match-beginning 0) 1))
20295 (= l level)
20296 (not invisible-ok)
20297 (outline-invisible-p))
20298 (if (< l level) (setq arg 1)))
20299 (setq arg (1- arg)))))
20301 (defun org-show-subtree ()
20302 "Show everything after this heading at deeper levels."
20303 (outline-flag-region
20304 (point)
20305 (save-excursion
20306 (org-end-of-subtree t t))
20307 nil))
20309 (defun org-show-entry ()
20310 "Show the body directly following this heading.
20311 Show the heading too, if it is currently invisible."
20312 (interactive)
20313 (save-excursion
20314 (condition-case nil
20315 (progn
20316 (org-back-to-heading t)
20317 (outline-flag-region
20318 (max (point-min) (1- (point)))
20319 (save-excursion
20320 (if (re-search-forward
20321 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
20322 (match-beginning 1)
20323 (point-max)))
20324 nil)
20325 (org-cycle-hide-drawers 'children))
20326 (error nil))))
20328 (defun org-make-options-regexp (kwds &optional extra)
20329 "Make a regular expression for keyword lines."
20330 (concat
20332 "#?[ \t]*\\+\\("
20333 (mapconcat 'regexp-quote kwds "\\|")
20334 (if extra (concat "\\|" extra))
20335 "\\):[ \t]*"
20336 "\\(.*\\)"))
20338 ;; Make isearch reveal the necessary context
20339 (defun org-isearch-end ()
20340 "Reveal context after isearch exits."
20341 (when isearch-success ; only if search was successful
20342 (if (featurep 'xemacs)
20343 ;; Under XEmacs, the hook is run in the correct place,
20344 ;; we directly show the context.
20345 (org-show-context 'isearch)
20346 ;; In Emacs the hook runs *before* restoring the overlays.
20347 ;; So we have to use a one-time post-command-hook to do this.
20348 ;; (Emacs 22 has a special variable, see function `org-mode')
20349 (unless (and (boundp 'isearch-mode-end-hook-quit)
20350 isearch-mode-end-hook-quit)
20351 ;; Only when the isearch was not quitted.
20352 (org-add-hook 'post-command-hook 'org-isearch-post-command
20353 'append 'local)))))
20355 (defun org-isearch-post-command ()
20356 "Remove self from hook, and show context."
20357 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
20358 (org-show-context 'isearch))
20361 ;;;; Integration with and fixes for other packages
20363 ;;; Imenu support
20365 (defvar org-imenu-markers nil
20366 "All markers currently used by Imenu.")
20367 (make-variable-buffer-local 'org-imenu-markers)
20369 (defun org-imenu-new-marker (&optional pos)
20370 "Return a new marker for use by Imenu, and remember the marker."
20371 (let ((m (make-marker)))
20372 (move-marker m (or pos (point)))
20373 (push m org-imenu-markers)
20376 (defun org-imenu-get-tree ()
20377 "Produce the index for Imenu."
20378 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
20379 (setq org-imenu-markers nil)
20380 (let* ((n org-imenu-depth)
20381 (re (concat "^" (org-get-limited-outline-regexp)))
20382 (subs (make-vector (1+ n) nil))
20383 (last-level 0)
20384 m level head)
20385 (save-excursion
20386 (save-restriction
20387 (widen)
20388 (goto-char (point-max))
20389 (while (re-search-backward re nil t)
20390 (setq level (org-reduced-level (funcall outline-level)))
20391 (when (<= level n)
20392 (looking-at org-complex-heading-regexp)
20393 (setq head (org-link-display-format
20394 (org-match-string-no-properties 4))
20395 m (org-imenu-new-marker))
20396 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
20397 (if (>= level last-level)
20398 (push (cons head m) (aref subs level))
20399 (push (cons head (aref subs (1+ level))) (aref subs level))
20400 (loop for i from (1+ level) to n do (aset subs i nil)))
20401 (setq last-level level)))))
20402 (aref subs 1)))
20404 (eval-after-load "imenu"
20405 '(progn
20406 (add-hook 'imenu-after-jump-hook
20407 (lambda ()
20408 (if (org-mode-p)
20409 (org-show-context 'org-goto))))))
20411 (defun org-link-display-format (link)
20412 "Replace a link with either the description, or the link target
20413 if no description is present"
20414 (save-match-data
20415 (if (string-match org-bracket-link-analytic-regexp link)
20416 (replace-match (if (match-end 5)
20417 (match-string 5 link)
20418 (concat (match-string 1 link)
20419 (match-string 3 link)))
20420 nil t link)
20421 link)))
20423 ;; Speedbar support
20425 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
20426 "Overlay marking the agenda restriction line in speedbar.")
20427 (overlay-put org-speedbar-restriction-lock-overlay
20428 'face 'org-agenda-restriction-lock)
20429 (overlay-put org-speedbar-restriction-lock-overlay
20430 'help-echo "Agendas are currently limited to this item.")
20431 (org-detach-overlay org-speedbar-restriction-lock-overlay)
20433 (defun org-speedbar-set-agenda-restriction ()
20434 "Restrict future agenda commands to the location at point in speedbar.
20435 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
20436 (interactive)
20437 (require 'org-agenda)
20438 (let (p m tp np dir txt)
20439 (cond
20440 ((setq p (text-property-any (point-at-bol) (point-at-eol)
20441 'org-imenu t))
20442 (setq m (get-text-property p 'org-imenu-marker))
20443 (with-current-buffer (marker-buffer m)
20444 (goto-char m)
20445 (org-agenda-set-restriction-lock 'subtree)))
20446 ((setq p (text-property-any (point-at-bol) (point-at-eol)
20447 'speedbar-function 'speedbar-find-file))
20448 (setq tp (previous-single-property-change
20449 (1+ p) 'speedbar-function)
20450 np (next-single-property-change
20451 tp 'speedbar-function)
20452 dir (speedbar-line-directory)
20453 txt (buffer-substring-no-properties (or tp (point-min))
20454 (or np (point-max))))
20455 (with-current-buffer (find-file-noselect
20456 (let ((default-directory dir))
20457 (expand-file-name txt)))
20458 (unless (org-mode-p)
20459 (error "Cannot restrict to non-Org-mode file"))
20460 (org-agenda-set-restriction-lock 'file)))
20461 (t (error "Don't know how to restrict Org-mode's agenda")))
20462 (move-overlay org-speedbar-restriction-lock-overlay
20463 (point-at-bol) (point-at-eol))
20464 (setq current-prefix-arg nil)
20465 (org-agenda-maybe-redo)))
20467 (eval-after-load "speedbar"
20468 '(progn
20469 (speedbar-add-supported-extension ".org")
20470 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
20471 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
20472 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
20473 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
20474 (add-hook 'speedbar-visiting-tag-hook
20475 (lambda () (and (org-mode-p) (org-show-context 'org-goto))))))
20477 ;;; Fixes and Hacks for problems with other packages
20479 ;; Make flyspell not check words in links, to not mess up our keymap
20480 (defun org-mode-flyspell-verify ()
20481 "Don't let flyspell put overlays at active buttons, or on
20482 {todo,all-time,additional-option-like}-keywords."
20483 (let ((pos (max (1- (point)) (point-min)))
20484 (word (thing-at-point 'word)))
20485 (and (not (get-text-property pos 'keymap))
20486 (not (get-text-property pos 'org-no-flyspell))
20487 (not (member word org-todo-keywords-1))
20488 (not (member word org-all-time-keywords))
20489 (not (member word org-additional-option-like-keywords)))))
20491 (defun org-remove-flyspell-overlays-in (beg end)
20492 "Remove flyspell overlays in region."
20493 (and (org-bound-and-true-p flyspell-mode)
20494 (fboundp 'flyspell-delete-region-overlays)
20495 (flyspell-delete-region-overlays beg end))
20496 (add-text-properties beg end '(org-no-flyspell t)))
20498 ;; Make `bookmark-jump' shows the jump location if it was hidden.
20499 (eval-after-load "bookmark"
20500 '(if (boundp 'bookmark-after-jump-hook)
20501 ;; We can use the hook
20502 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
20503 ;; Hook not available, use advice
20504 (defadvice bookmark-jump (after org-make-visible activate)
20505 "Make the position visible."
20506 (org-bookmark-jump-unhide))))
20508 ;; Make sure saveplace shows the location if it was hidden
20509 (eval-after-load "saveplace"
20510 '(defadvice save-place-find-file-hook (after org-make-visible activate)
20511 "Make the position visible."
20512 (org-bookmark-jump-unhide)))
20514 ;; Make sure ecb shows the location if it was hidden
20515 (eval-after-load "ecb"
20516 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
20517 "Make hierarchy visible when jumping into location from ECB tree buffer."
20518 (if (org-mode-p)
20519 (org-show-context))))
20521 (defun org-bookmark-jump-unhide ()
20522 "Unhide the current position, to show the bookmark location."
20523 (and (org-mode-p)
20524 (or (outline-invisible-p)
20525 (save-excursion (goto-char (max (point-min) (1- (point))))
20526 (outline-invisible-p)))
20527 (org-show-context 'bookmark-jump)))
20529 ;; Make session.el ignore our circular variable
20530 (eval-after-load "session"
20531 '(add-to-list 'session-globals-exclude 'org-mark-ring))
20533 ;;;; Experimental code
20535 (defun org-closed-in-range ()
20536 "Sparse tree of items closed in a certain time range.
20537 Still experimental, may disappear in the future."
20538 (interactive)
20539 ;; Get the time interval from the user.
20540 (let* ((time1 (org-float-time
20541 (org-read-date nil 'to-time nil "Starting date: ")))
20542 (time2 (org-float-time
20543 (org-read-date nil 'to-time nil "End date:")))
20544 ;; callback function
20545 (callback (lambda ()
20546 (let ((time
20547 (org-float-time
20548 (apply 'encode-time
20549 (org-parse-time-string
20550 (match-string 1))))))
20551 ;; check if time in interval
20552 (and (>= time time1) (<= time time2))))))
20553 ;; make tree, check each match with the callback
20554 (org-occur "CLOSED: +\\[\\(.*?\\)\\]" nil callback)))
20556 ;;;; Finish up
20558 (provide 'org)
20560 (run-hooks 'org-load-hook)
20562 ;; arch-tag: e77da1a7-acc7-4336-b19e-efa25af3f9fd
20564 ;;; org.el ends here