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
4 ;; Free Software Foundation, Inc.
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
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
47 ;; Installation and Activation
48 ;; ---------------------------
49 ;; See the corresponding sections in the manual at
51 ;; http://orgmode.org/org.html#Installation
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
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
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.
93 (unless (fboundp 'time-subtract
) (defalias 'time-subtract
'subtract-time
))
98 (require 'org-entities
)
102 (require 'org-pcomplete
)
104 (require 'org-footnote
)
115 ;; load languages based on value of `org-babel-load-languages'
116 (defvar org-babel-load-languages
)
118 (defun org-babel-do-load-languages (sym value
)
119 "Load the languages defined in `org-babel-load-languages'."
120 (set-default sym value
)
122 (let ((active (cdr pair
)) (lang (symbol-name (car pair
))))
125 (require (intern (concat "ob-" lang
))))
127 (funcall 'fmakunbound
128 (intern (concat "org-babel-execute:" lang
)))
129 (funcall 'fmakunbound
130 (intern (concat "org-babel-expand-body:" lang
)))))))
131 org-babel-load-languages
))
133 (defcustom org-babel-load-languages
'((emacs-lisp . t
))
134 "Languages which can be evaluated in Org-mode buffers.
135 This list can be used to load support for any of the languages
136 below, note that each language will depend on a different set of
137 system executables and/or Emacs modes. When a language is
138 \"loaded\", then code blocks in that language can be evaluated
139 with `org-babel-execute-src-block' bound by default to C-c
140 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
141 be set to remove code block evaluation from the C-c C-c
142 keybinding. By default only Emacs Lisp (which has no
143 requirements) is loaded."
145 :set
'org-babel-do-load-languages
146 :type
'(alist :tag
"Babel Languages"
151 (const :tag
"Asymptote" asymptote
)
152 (const :tag
"Calc" calc
)
153 (const :tag
"Clojure" clojure
)
154 (const :tag
"CSS" css
)
155 (const :tag
"Ditaa" ditaa
)
156 (const :tag
"Dot" dot
)
157 (const :tag
"Emacs Lisp" emacs-lisp
)
158 (const :tag
"Gnuplot" gnuplot
)
159 (const :tag
"Haskell" haskell
)
160 (const :tag
"Javascript" js
)
161 (const :tag
"Latex" latex
)
162 (const :tag
"Ledger" ledger
)
163 (const :tag
"Matlab" matlab
)
164 (const :tag
"Mscgen" mscgen
)
165 (const :tag
"Ocaml" ocaml
)
166 (const :tag
"Octave" octave
)
167 (const :tag
"Org" org
)
168 (const :tag
"Perl" perl
)
169 (const :tag
"PlantUML" plantuml
)
170 (const :tag
"Python" python
)
171 (const :tag
"Ruby" ruby
)
172 (const :tag
"Sass" sass
)
173 (const :tag
"Scheme" scheme
)
174 (const :tag
"Screen" screen
)
175 (const :tag
"Shell Script" sh
)
176 (const :tag
"Sql" sql
)
177 (const :tag
"Sqlite" sqlite
))
178 :value-type
(boolean :tag
"Activate" :value t
)))
180 ;;;; Customization variables
181 (defcustom org-clone-delete-id nil
182 "Remove ID property of clones of a subtree.
183 When non-nil, clones of a subtree don't inherit the ID property.
184 Otherwise they inherit the ID property with a new unique
191 (defconst org-version
"7.4"
192 "The version number of the file org.el.")
194 (defun org-version (&optional here
)
195 "Show the org-mode version in the echo area.
196 With prefix arg HERE, insert it at point."
198 (let* ((origin default-directory
)
199 (version org-version
)
201 (dir (concat (file-name-directory (locate-library "org")) "../" )))
202 (when (and (file-exists-p (expand-file-name ".git" dir
))
203 (executable-find "git"))
207 (when (eql 0 (shell-command "git describe --abbrev=4 HEAD"))
208 (with-current-buffer "*Shell Command Output*"
209 (goto-char (point-min))
210 (setq git-version
(buffer-substring (point) (point-at-eol))))
211 (subst-char-in-string ?- ?. git-version t
)
212 (when (string-match "\\S-"
213 (shell-command-to-string
214 "git diff-index --name-only HEAD --"))
215 (setq git-version
(concat git-version
".dirty")))
216 (setq version
(concat version
" (" git-version
")"))))
218 (setq version
(format "Org-mode version %s" version
))
219 (if here
(insert version
))
222 ;;; Compatibility constants
224 ;;; The custom variables
227 "Outline-based notes management and organizer."
232 (defcustom org-mode-hook nil
233 "Mode hook for Org-mode, run after the mode was turned on."
237 (defcustom org-load-hook nil
238 "Hook that is run after org.el has been loaded."
242 (defvar org-modules
) ; defined below
243 (defvar org-modules-loaded nil
244 "Have the modules been loaded already?")
246 (defun org-load-modules-maybe (&optional force
)
247 "Load all extensions listed in `org-modules'."
248 (when (or force
(not org-modules-loaded
))
250 (condition-case nil
(require ext
)
251 (error (message "Problems while trying to load feature `%s'" ext
))))
253 (setq org-modules-loaded t
)))
255 (defun org-set-modules (var value
)
256 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
258 (when (featurep 'org
)
259 (org-load-modules-maybe 'force
)))
261 (when (org-bound-and-true-p org-modules
)
262 (let ((a (member 'org-infojs org-modules
)))
263 (and a
(setcar a
'org-jsinfo
))))
265 (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
)
266 "Modules that should always be loaded together with org.el.
267 If a description starts with <C>, the file is not part of Emacs
268 and loading it will require that you have downloaded and properly installed
269 the org-mode distribution.
271 You can also use this system to load external packages (i.e. neither Org
272 core modules, nor modules from the CONTRIB directory). Just add symbols
273 to the end of the list. If the package is called org-xyz.el, then you need
274 to add the symbol `xyz', and the package must have a call to
278 :set
'org-set-modules
281 (const :tag
" bbdb: Links to BBDB entries" org-bbdb
)
282 (const :tag
" bibtex: Links to BibTeX entries" org-bibtex
)
283 (const :tag
" crypt: Encryption of subtrees" org-crypt
)
284 (const :tag
" ctags: Access to Emacs tags with links" org-ctags
)
285 (const :tag
" docview: Links to doc-view buffers" org-docview
)
286 (const :tag
" gnus: Links to GNUS folders/messages" org-gnus
)
287 (const :tag
" id: Global IDs for identifying entries" org-id
)
288 (const :tag
" info: Links to Info nodes" org-info
)
289 (const :tag
" jsinfo: Set up Sebastian Rose's JavaScript org-info.js" org-jsinfo
)
290 (const :tag
" habit: Track your consistency with habits" org-habit
)
291 (const :tag
" inlinetask: Tasks independent of outline hierarchy" org-inlinetask
)
292 (const :tag
" irc: Links to IRC/ERC chat sessions" org-irc
)
293 (const :tag
" mac-message: Links to messages in Apple Mail" org-mac-message
)
294 (const :tag
" mew Links to Mew folders/messages" org-mew
)
295 (const :tag
" mhe: Links to MHE folders/messages" org-mhe
)
296 (const :tag
" protocol: Intercept calls from emacsclient" org-protocol
)
297 (const :tag
" rmail: Links to RMAIL folders/messages" org-rmail
)
298 (const :tag
" special-blocks: Turn blocks into LaTeX envs and HTML divs" org-special-blocks
)
299 (const :tag
" vm: Links to VM folders/messages" org-vm
)
300 (const :tag
" wl: Links to Wanderlust folders/messages" org-wl
)
301 (const :tag
" w3m: Special cut/paste from w3m to Org-mode." org-w3m
)
302 (const :tag
" mouse: Additional mouse support" org-mouse
)
303 (const :tag
" TaskJuggler: Export tasks to a TaskJuggler project" org-taskjuggler
)
305 (const :tag
"C annotate-file: Annotate a file with org syntax" org-annotate-file
)
306 (const :tag
"C bookmark: Org-mode links to bookmarks" org-bookmark
)
307 (const :tag
"C checklist: Extra functions for checklists in repeated tasks" org-checklist
)
308 (const :tag
"C choose: Use TODO keywords to mark decisions states" org-choose
)
309 (const :tag
"C collector: Collect properties into tables" org-collector
)
310 (const :tag
"C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend
)
311 (const :tag
"C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol
)
312 (const :tag
"C eshell Support for links to working directories in eshell" org-eshell
)
313 (const :tag
"C eval: Include command output as text" org-eval
)
314 (const :tag
"C eval-light: Evaluate inbuffer-code on demand" org-eval-light
)
315 (const :tag
"C expiry: Expiry mechanism for Org-mode entries" org-expiry
)
316 (const :tag
"C exp-bibtex: Export citations using BibTeX" org-exp-bibtex
)
317 (const :tag
"C git-link: Provide org links to specific file version" org-git-link
)
318 (const :tag
"C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query
)
320 (const :tag
"C invoice: Help manage client invoices in Org-mode" org-invoice
)
322 (const :tag
"C jira: Add a jira:ticket protocol to Org-mode" org-jira
)
323 (const :tag
"C learn: SuperMemo's incremental learning algorithm" org-learn
)
324 (const :tag
"C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix
)
325 (const :tag
"C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal
)
326 (const :tag
"C mac-link-grabber Grab links and URLs from various Mac applications" org-mac-link-grabber
)
327 (const :tag
"C man: Support for links to manpages in Org-mode" org-man
)
328 (const :tag
"C mtags: Support for muse-like tags" org-mtags
)
329 (const :tag
"C panel: Simple routines for us with bad memory" org-panel
)
330 (const :tag
"C registry: A registry for Org-mode links" org-registry
)
331 (const :tag
"C org2rem: Convert org appointments into reminders" org2rem
)
332 (const :tag
"C screen: Visit screen sessions through Org-mode links" org-screen
)
333 (const :tag
"C secretary: Team management with org-mode" org-secretary
)
334 (const :tag
"C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert
)
335 (const :tag
"C toc: Table of contents for Org-mode buffer" org-toc
)
336 (const :tag
"C track: Keep up with Org-mode development" org-track
)
337 (const :tag
"C velocity Something like Notational Velocity for Org" org-velocity
)
338 (const :tag
"C wikinodes: CamelCase wiki-like links" org-wikinodes
)
339 (repeat :tag
"External packages" :inline t
(symbol :tag
"Package"))))
341 (defcustom org-support-shift-select nil
342 "Non-nil means make shift-cursor commands select text when possible.
344 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys start
345 selecting a region, or enlarge regions started in this way.
346 In Org-mode, in special contexts, these same keys are used for other
347 purposes, important enough to compete with shift selection. Org tries
348 to balance these needs by supporting `shift-select-mode' outside these
349 special contexts, under control of this variable.
351 The default of this variable is nil, to avoid confusing behavior. Shifted
352 cursor keys will then execute Org commands in the following contexts:
353 - on a headline, changing TODO state (left/right) and priority (up/down)
354 - on a time stamp, changing the time
355 - in a plain list item, changing the bullet type
356 - in a property definition line, switching between allowed values
357 - in the BEGIN line of a clock table (changing the time block).
358 Outside these contexts, the commands will throw an error.
360 When this variable is t and the cursor is not in a special context,
361 Org-mode will support shift-selection for making and enlarging regions.
362 To make this more effective, the bullet cycling will no longer happen
363 anywhere in an item line, but only if the cursor is exactly on the bullet.
365 If you set this variable to the symbol `always', then the keys
366 will not be special in headlines, property lines, and item lines, to make
367 shift selection work there as well. If this is what you want, you can
368 use the following alternative commands: `C-c C-t' and `C-c ,' to
369 change TODO state and priority, `C-u C-u C-c C-t' can be used to switch
370 TODO sets, `C-c -' to cycle item bullet types, and properties can be
371 edited by hand or in column view.
373 However, when the cursor is on a timestamp, shift-cursor commands
374 will still edit the time stamp - this is just too good to give up.
376 XEmacs user should have this variable set to nil, because shift-select-mode
380 (const :tag
"Never" nil
)
381 (const :tag
"When outside special context" t
)
382 (const :tag
"Everywhere except timestamps" always
)))
384 (defgroup org-startup nil
385 "Options concerning startup of Org-mode."
389 (defcustom org-startup-folded t
390 "Non-nil means entering Org-mode will switch to OVERVIEW.
391 This can also be configured on a per-file basis by adding one of
392 the following lines anywhere in the buffer:
394 #+STARTUP: fold (or `overview', this is equivalent)
395 #+STARTUP: nofold (or `showall', this is equivalent)
397 #+STARTUP: showeverything"
400 (const :tag
"nofold: show all" nil
)
401 (const :tag
"fold: overview" t
)
402 (const :tag
"content: all headlines" content
)
403 (const :tag
"show everything, even drawers" showeverything
)))
405 (defcustom org-startup-truncated t
406 "Non-nil means entering Org-mode will set `truncate-lines'.
407 This is useful since some lines containing links can be very long and
408 uninteresting. Also tables look terrible when wrapped."
412 (defcustom org-startup-indented nil
413 "Non-nil means turn on `org-indent-mode' on startup.
414 This can also be configured on a per-file basis by adding one of
415 the following lines anywhere in the buffer:
419 :group
'org-structure
421 (const :tag
"Not" nil
)
422 (const :tag
"Globally (slow on startup in large files)" t
)))
424 (defcustom org-use-sub-superscripts t
425 "Non-nil means interpret \"_\" and \"^\" for export.
426 When this option is turned on, you can use TeX-like syntax for sub- and
427 superscripts. Several characters after \"_\" or \"^\" will be
428 considered as a single item - so grouping with {} is normally not
429 needed. For example, the following things will be parsed as single
430 sub- or superscripts.
432 10^24 or 10^tau several digits will be considered 1 item.
433 10^-12 or 10^-tau a leading sign with digits or a word
434 x^2-y^3 will be read as x^2 - y^3, because items are
435 terminated by almost any nonword/nondigit char.
436 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
438 Still, ambiguity is possible - so when in doubt use {} to enclose the
439 sub/superscript. If you set this variable to the symbol `{}',
440 the braces are *required* in order to trigger interpretations as
441 sub/superscript. This can be helpful in documents that need \"_\"
442 frequently in plain text.
444 Not all export backends support this, but HTML does.
446 This option can also be set with the +OPTIONS line, e.g. \"^:nil\"."
448 :group
'org-export-translation
450 (const :tag
"Always interpret" t
)
451 (const :tag
"Only with braces" {})
452 (const :tag
"Never interpret" nil
)))
454 (if (fboundp 'defvaralias
)
455 (defvaralias 'org-export-with-sub-superscripts
'org-use-sub-superscripts
))
458 (defcustom org-startup-with-beamer-mode nil
459 "Non-nil means turn on `org-beamer-mode' on startup.
460 This can also be configured on a per-file basis by adding one of
461 the following lines anywhere in the buffer:
467 (defcustom org-startup-align-all-tables nil
468 "Non-nil means align all tables when visiting a file.
469 This is useful when the column width in tables is forced with <N> cookies
470 in table fields. Such tables will look correct only after the first re-align.
471 This can also be configured on a per-file basis by adding one of
472 the following lines anywhere in the buffer:
478 (defcustom org-startup-with-inline-images nil
479 "Non-nil means show inline images when loading a new Org file.
480 This can also be configured on a per-file basis by adding one of
481 the following lines anywhere in the buffer:
482 #+STARTUP: inlineimages
483 #+STARTUP: noinlineimages"
487 (defcustom org-insert-mode-line-in-empty-file nil
488 "Non-nil means insert the first line setting Org-mode in empty files.
489 When the function `org-mode' is called interactively in an empty file, this
490 normally means that the file name does not automatically trigger Org-mode.
491 To ensure that the file will always be in Org-mode in the future, a
492 line enforcing Org-mode will be inserted into the buffer, if this option
497 (defcustom org-replace-disputed-keys nil
498 "Non-nil means use alternative key bindings for some keys.
499 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
500 These keys are also used by other packages like shift-selection-mode'
501 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
502 If you want to use Org-mode together with one of these other modes,
503 or more generally if you would like to move some Org-mode commands to
504 other keys, set this variable and configure the keys with the variable
507 This option is only relevant at load-time of Org-mode, and must be set
508 *before* org.el is loaded. Changing it requires a restart of Emacs to
513 (defcustom org-use-extra-keys nil
514 "Non-nil means use extra key sequence definitions for certain commands.
515 This happens automatically if you run XEmacs or if `window-system'
516 is nil. This variable lets you do the same manually. You must
517 set it before loading org.
519 Example: on Carbon Emacs 22 running graphically, with an external
520 keyboard on a Powerbook, the default way of setting M-left might
521 not work for either Alt or ESC. Setting this variable will make
526 (if (fboundp 'defvaralias
)
527 (defvaralias 'org-CUA-compatible
'org-replace-disputed-keys
))
529 (defcustom org-disputed-keys
530 '(([(shift up
)] .
[(meta p
)])
531 ([(shift down
)] .
[(meta n
)])
532 ([(shift left
)] .
[(meta -
)])
533 ([(shift right
)] .
[(meta +)])
534 ([(control shift right
)] .
[(meta shift
+)])
535 ([(control shift left
)] .
[(meta shift -
)]))
536 "Keys for which Org-mode and other modes compete.
537 This is an alist, cars are the default keys, second element specifies
538 the alternative to use when `org-replace-disputed-keys' is t.
540 Keys can be specified in any syntax supported by `define-key'.
541 The value of this option takes effect only at Org-mode's startup,
542 therefore you'll have to restart Emacs to apply it after changing."
547 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
548 Or return the original if not disputed.
549 Also apply the translations defined in `org-xemacs-key-equivalents'."
550 (when org-replace-disputed-keys
551 (let* ((nkey (key-description key
))
552 (x (org-find-if (lambda (x)
553 (equal (key-description (car x
)) nkey
))
555 (setq key
(if x
(cdr x
) key
))))
556 (when (featurep 'xemacs
)
557 (setq key
(or (cdr (assoc key org-xemacs-key-equivalents
)) key
)))
560 (defun org-find-if (predicate seq
)
563 (if (funcall predicate
(car seq
))
564 (throw 'exit
(car seq
))
567 (defun org-defkey (keymap key def
)
568 "Define a key, possibly translated, as returned by `org-key'."
569 (define-key keymap
(org-key key
) def
))
571 (defcustom org-ellipsis nil
572 "The ellipsis to use in the Org-mode outline.
573 When nil, just use the standard three dots. When a string, use that instead,
574 When a face, use the standard 3 dots, but with the specified face.
575 The change affects only Org-mode (which will then use its own display table).
576 Changing this requires executing `M-x org-mode' in a buffer to become
579 :type
'(choice (const :tag
"Default" nil
)
580 (face :tag
"Face" :value org-warning
)
581 (string :tag
"String" :value
"...#")))
583 (defvar org-display-table nil
584 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
586 (defgroup org-keywords nil
587 "Keywords in Org-mode."
591 (defcustom org-deadline-string
"DEADLINE:"
592 "String to mark deadline entries.
593 A deadline is this string, followed by a time stamp. Should be a word,
594 terminated by a colon. You can insert a schedule keyword and
595 a timestamp with \\[org-deadline].
596 Changes become only effective after restarting Emacs."
600 (defcustom org-scheduled-string
"SCHEDULED:"
601 "String to mark scheduled TODO entries.
602 A schedule is this string, followed by a time stamp. Should be a word,
603 terminated by a colon. You can insert a schedule keyword and
604 a timestamp with \\[org-schedule].
605 Changes become only effective after restarting Emacs."
609 (defcustom org-closed-string
"CLOSED:"
610 "String used as the prefix for timestamps logging closing a TODO entry."
614 (defcustom org-clock-string
"CLOCK:"
615 "String used as prefix for timestamps clocking work hours on an item."
619 (defcustom org-comment-string
"COMMENT"
620 "Entries starting with this keyword will never be exported.
621 An entry can be toggled between COMMENT and normal with
622 \\[org-toggle-comment].
623 Changes become only effective after restarting Emacs."
627 (defcustom org-quote-string
"QUOTE"
628 "Entries starting with this keyword will be exported in fixed-width font.
629 Quoting applies only to the text in the entry following the headline, and does
630 not extend beyond the next headline, even if that is lower level.
631 An entry can be toggled between QUOTE and normal with
632 \\[org-toggle-fixed-width-section]."
636 (defconst org-repeat-re
637 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)"
638 "Regular expression for specifying repeated events.
639 After a match, group 1 contains the repeat expression.")
641 (defgroup org-structure nil
642 "Options concerning the general structure of Org-mode files."
646 (defgroup org-reveal-location nil
647 "Options about how to make context of a location visible."
648 :tag
"Org Reveal Location"
649 :group
'org-structure
)
651 (defconst org-context-choice
653 (const :tag
"Always" t
)
654 (const :tag
"Never" nil
)
655 (repeat :greedy t
:tag
"Individual contexts"
657 (choice :tag
"Context"
664 (const bookmark-jump
)
668 "Contexts for the reveal options.")
670 (defcustom org-show-hierarchy-above
'((default . t
))
671 "Non-nil means show full hierarchy when revealing a location.
672 Org-mode often shows locations in an org-mode file which might have
673 been invisible before. When this is set, the hierarchy of headings
674 above the exposed location is shown.
675 Turning this off for example for sparse trees makes them very compact.
676 Instead of t, this can also be an alist specifying this option for different
677 contexts. Valid contexts are
678 agenda when exposing an entry from the agenda
679 org-goto when using the command `org-goto' on key C-c C-j
680 occur-tree when using the command `org-occur' on key C-c /
681 tags-tree when constructing a sparse tree based on tags matches
682 link-search when exposing search matches associated with a link
683 mark-goto when exposing the jump goal of a mark
684 bookmark-jump when exposing a bookmark location
685 isearch when exiting from an incremental search
686 default default for all contexts not set explicitly"
687 :group
'org-reveal-location
688 :type org-context-choice
)
690 (defcustom org-show-following-heading
'((default . nil
))
691 "Non-nil means show following heading 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 heading following the
695 Turning this off for example for sparse trees makes them very compact,
696 but makes it harder to edit the location of the match. In such a case,
697 use the command \\[org-reveal] to show more context.
698 Instead of t, this can also be an alist specifying this option for different
699 contexts. See `org-show-hierarchy-above' for valid contexts."
700 :group
'org-reveal-location
701 :type org-context-choice
)
703 (defcustom org-show-siblings
'((default . nil
) (isearch t
))
704 "Non-nil means show all sibling heading when revealing a location.
705 Org-mode often shows locations in an org-mode file which might have
706 been invisible before. When this is set, the sibling of the current entry
707 heading are all made visible. If `org-show-hierarchy-above' is t,
708 the same happens on each level of the hierarchy above the current entry.
710 By default this is on for the isearch context, off for all other contexts.
711 Turning this off for example for sparse trees makes them very compact,
712 but makes it harder to edit the location of the match. In such a case,
713 use the command \\[org-reveal] to show more context.
714 Instead of t, this can also be an alist specifying this option for different
715 contexts. See `org-show-hierarchy-above' for valid contexts."
716 :group
'org-reveal-location
717 :type org-context-choice
)
719 (defcustom org-show-entry-below
'((default . nil
))
720 "Non-nil means show the entry below a headline when revealing a location.
721 Org-mode often shows locations in an org-mode file which might have
722 been invisible before. When this is set, the text below the headline that is
723 exposed is also shown.
725 By default this is off for all contexts.
726 Instead of t, this can also be an alist specifying this option for different
727 contexts. See `org-show-hierarchy-above' for valid contexts."
728 :group
'org-reveal-location
729 :type org-context-choice
)
731 (defcustom org-indirect-buffer-display
'other-window
732 "How should indirect tree buffers be displayed?
733 This applies to indirect buffers created with the commands
734 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
736 current-window Display in the current window
737 other-window Just display in another window.
738 dedicated-frame Create one new frame, and re-use it each time.
739 new-frame Make a new frame each time. Note that in this case
740 previously-made indirect buffers are kept, and you need to
741 kill these buffers yourself."
742 :group
'org-structure
743 :group
'org-agenda-windows
745 (const :tag
"In current window" current-window
)
746 (const :tag
"In current frame, other window" other-window
)
747 (const :tag
"Each time a new frame" new-frame
)
748 (const :tag
"One dedicated frame" dedicated-frame
)))
750 (defcustom org-use-speed-commands nil
751 "Non-nil means activate single letter commands at beginning of a headline.
752 This may also be a function to test for appropriate locations where speed
753 commands should be active."
754 :group
'org-structure
756 (const :tag
"Never" nil
)
757 (const :tag
"At beginning of headline stars" t
)
760 (defcustom org-speed-commands-user nil
761 "Alist of additional speed commands.
762 This list will be checked before `org-speed-commands-default'
763 when the variable `org-use-speed-commands' is non-nil
764 and when the cursor is at the beginning of a headline.
765 The car if each entry is a string with a single letter, which must
766 be assigned to `self-insert-command' in the global map.
767 The cdr is either a command to be called interactively, a function
768 to be called, or a form to be evaluated.
769 An entry that is just a list with a single string will be interpreted
770 as a descriptive headline that will be added when listing the speed
771 commands in the Help buffer using the `?' speed command."
772 :group
'org-structure
773 :type
'(repeat :value
("k" . ignore
)
774 (choice :value
("k" . ignore
)
775 (list :tag
"Descriptive Headline" (string :tag
"Headline"))
776 (cons :tag
"Letter and Command"
777 (string :tag
"Command letter")
782 (defgroup org-cycle nil
783 "Options concerning visibility cycling in Org-mode."
785 :group
'org-structure
)
787 (defcustom org-cycle-skip-children-state-if-no-children t
788 "Non-nil means skip CHILDREN state in entries that don't have any."
792 (defcustom org-cycle-max-level nil
793 "Maximum level which should still be subject to visibility cycling.
794 Levels higher than this will, for cycling, be treated as text, not a headline.
795 When `org-odd-levels-only' is set, a value of N in this variable actually
796 means 2N-1 stars as the limiting headline.
797 When nil, cycle all levels.
798 Note that the limiting level of cycling is also influenced by
799 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
800 `org-inlinetask-min-level' is, cycling will be limited to levels one less
804 (const :tag
"No limit" nil
)
805 (integer :tag
"Maximum level")))
807 (defcustom org-drawers
'("PROPERTIES" "CLOCK" "LOGBOOK")
808 "Names of drawers. Drawers are not opened by cycling on the headline above.
809 Drawers only open with a TAB on the drawer line itself. A drawer looks like
814 The drawer \"PROPERTIES\" is special for capturing properties through
817 Drawers can be defined on the per-file basis with a line like:
819 #+DRAWERS: HIDDEN STATE PROPERTIES"
820 :group
'org-structure
822 :type
'(repeat (string :tag
"Drawer Name")))
824 (defcustom org-hide-block-startup nil
825 "Non-nil means entering Org-mode will fold all blocks.
826 This can also be set in on a per-file basis with
828 #+STARTUP: hideblocks
829 #+STARTUP: showblocks"
834 (defcustom org-cycle-global-at-bob nil
835 "Cycle globally if cursor is at beginning of buffer and not at a headline.
836 This makes it possible to do global cycling without having to use S-TAB or
837 \\[universal-argument] TAB. For this special case to work, the first line \
839 must not be a headline - it may be empty or some other text. When used in
840 this way, `org-cycle-hook' is disables temporarily, to make sure the
841 cursor stays at the beginning of the buffer.
842 When this option is nil, don't do anything special at the beginning
847 (defcustom org-cycle-level-after-item
/entry-creation t
848 "Non-nil means cycle entry level or item indentation in new empty entries.
850 When the cursor is at the end of an empty headline, i.e with only stars
851 and maybe a TODO keyword, TAB will then switch the entry to become a child,
852 and then all possible ancestor states, before returning to the original state.
853 This makes data entry extremely fast: M-RET to create a new headline,
854 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
856 When the cursor is at the end of an empty plain list item, one TAB will
857 make it a subitem, two or more tabs will back up to make this an item
858 higher up in the item hierarchy."
862 (defcustom org-cycle-emulate-tab t
863 "Where should `org-cycle' emulate TAB.
865 white Only in completely white lines
866 whitestart Only at the beginning of lines, before the first non-white char
867 t Everywhere except in headlines
868 exc-hl-bol Everywhere except at the start of a headline
869 If TAB is used in a place where it does not emulate TAB, the current subtree
870 visibility is cycled."
872 :type
'(choice (const :tag
"Never" nil
)
873 (const :tag
"Only in completely white lines" white
)
874 (const :tag
"Before first char in a line" whitestart
)
875 (const :tag
"Everywhere except in headlines" t
)
876 (const :tag
"Everywhere except at bol in headlines" exc-hl-bol
)
879 (defcustom org-cycle-separator-lines
2
880 "Number of empty lines needed to keep an empty line between collapsed trees.
881 If you leave an empty line between the end of a subtree and the following
882 headline, this empty line is hidden when the subtree is folded.
883 Org-mode will leave (exactly) one empty line visible if the number of
884 empty lines is equal or larger to the number given in this variable.
885 So the default 2 means at least 2 empty lines after the end of a subtree
886 are needed to produce free space between a collapsed subtree and the
889 If the number is negative, and the number of empty lines is at least -N,
890 all empty lines are shown.
892 Special case: when 0, never leave empty lines in collapsed view."
895 (put 'org-cycle-separator-lines
'safe-local-variable
'integerp
)
897 (defcustom org-pre-cycle-hook nil
898 "Hook that is run before visibility cycling is happening.
899 The function(s) in this hook must accept a single argument which indicates
900 the new state that will be set right after running this hook. The
901 argument is a symbol. Before a global state change, it can have the values
902 `overview', `content', or `all'. Before a local state change, it can have
903 the values `folded', `children', or `subtree'."
907 (defcustom org-cycle-hook
'(org-cycle-hide-archived-subtrees
908 org-cycle-hide-drawers
909 org-cycle-show-empty-lines
910 org-optimize-window-after-visibility-change
)
911 "Hook that is run after `org-cycle' has changed the buffer visibility.
912 The function(s) in this hook must accept a single argument which indicates
913 the new state that was set by the most recent `org-cycle' command. The
914 argument is a symbol. After a global state change, it can have the values
915 `overview', `content', or `all'. After a local state change, it can have
916 the values `folded', `children', or `subtree'."
920 (defgroup org-edit-structure nil
921 "Options concerning structure editing in Org-mode."
922 :tag
"Org Edit Structure"
923 :group
'org-structure
)
925 (defcustom org-odd-levels-only nil
926 "Non-nil means skip even levels and only use odd levels for the outline.
927 This has the effect that two stars are being added/taken away in
928 promotion/demotion commands. It also influences how levels are
929 handled by the exporters.
930 Changing it requires restart of `font-lock-mode' to become effective
931 for fontification also in regions already fontified.
932 You may also set this on a per-file basis by adding one of the following
937 :group
'org-edit-structure
938 :group
'org-appearance
941 (defcustom org-adapt-indentation t
942 "Non-nil means adapt indentation to outline node level.
944 When this variable is set, Org assumes that you write outlines by
945 indenting text in each node to align with the headline (after the stars).
946 The following issues are influenced by this variable:
948 - When this is set and the *entire* text in an entry is indented, the
949 indentation is increased by one space in a demotion command, and
950 decreased by one in a promotion command. If any line in the entry
951 body starts with text at column 0, indentation is not changed at all.
953 - Property drawers and planning information is inserted indented when
954 this variable s set. When nil, they will not be indented.
956 - TAB indents a line relative to context. The lines below a headline
957 will be indented when this variable is set.
959 Note that this is all about true indentation, by adding and removing
960 space characters. See also `org-indent.el' which does level-dependent
961 indentation in a virtual way, i.e. at display time in Emacs."
962 :group
'org-edit-structure
965 (defcustom org-special-ctrl-a
/e nil
966 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
968 When t, `C-a' will bring back the cursor to the beginning of the
969 headline text, i.e. after the stars and after a possible TODO keyword.
970 In an item, this will be the position after the bullet.
971 When the cursor is already at that position, another `C-a' will bring
972 it to the beginning of the line.
974 `C-e' will jump to the end of the headline, ignoring the presence of tags
975 in the headline. A second `C-e' will then jump to the true end of the
976 line, after any tags. This also means that, when this variable is
977 non-nil, `C-e' also will never jump beyond the end of the heading of a
978 folded section, i.e. not after the ellipses.
980 When set to the symbol `reversed', the first `C-a' or `C-e' works normally,
981 going to the true line boundary first. Only a directly following, identical
982 keypress will bring the cursor to the special positions.
984 This may also be a cons cell where the behavior for `C-a' and `C-e' is
986 :group
'org-edit-structure
988 (const :tag
"off" nil
)
989 (const :tag
"on: after stars/bullet and before tags first" t
)
990 (const :tag
"reversed: true line boundary first" reversed
)
991 (cons :tag
"Set C-a and C-e separately"
992 (choice :tag
"Special C-a"
993 (const :tag
"off" nil
)
994 (const :tag
"on: after stars/bullet first" t
)
995 (const :tag
"reversed: before stars/bullet first" reversed
))
996 (choice :tag
"Special C-e"
997 (const :tag
"off" nil
)
998 (const :tag
"on: before tags first" t
)
999 (const :tag
"reversed: after tags first" reversed
)))))
1000 (if (fboundp 'defvaralias
)
1001 (defvaralias 'org-special-ctrl-a
'org-special-ctrl-a
/e
))
1003 (defcustom org-special-ctrl-k nil
1004 "Non-nil means `C-k' will behave specially in headlines.
1005 When nil, `C-k' will call the default `kill-line' command.
1006 When t, the following will happen while the cursor is in the headline:
1008 - When the cursor is at the beginning of a headline, kill the entire
1009 line and possible the folded subtree below the line.
1010 - When in the middle of the headline text, kill the headline up to the tags.
1011 - When after the headline text, kill the tags."
1012 :group
'org-edit-structure
1015 (defcustom org-ctrl-k-protect-subtree nil
1016 "Non-nil means, do not delete a hidden subtree with C-k.
1017 When set to the symbol `error', simply throw an error when C-k is
1018 used to kill (part-of) a headline that has hidden text behind it.
1019 Any other non-nil value will result in a query to the user, if it is
1020 OK to kill that hidden subtree. When nil, kill without remorse."
1021 :group
'org-edit-structure
1023 (const :tag
"Do not protect hidden subtrees" nil
)
1024 (const :tag
"Protect hidden subtrees with a security query" t
)
1025 (const :tag
"Never kill a hidden subtree with C-k" error
)))
1027 (defcustom org-yank-folded-subtrees t
1028 "Non-nil means when yanking subtrees, fold them.
1029 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1030 it starts with a heading and all other headings in it are either children
1031 or siblings, then fold all the subtrees. However, do this only if no
1032 text after the yank would be swallowed into a folded tree by this action."
1033 :group
'org-edit-structure
1036 (defcustom org-yank-adjusted-subtrees nil
1037 "Non-nil means when yanking subtrees, adjust the level.
1038 With this setting, `org-paste-subtree' is used to insert the subtree, see
1039 this function for details."
1040 :group
'org-edit-structure
1043 (defcustom org-M-RET-may-split-line
'((default . t
))
1044 "Non-nil means M-RET will split the line at the cursor position.
1045 When nil, it will go to the end of the line before making a
1047 You may also set this option in a different way for different
1048 contexts. Valid contexts are:
1050 headline when creating a new headline
1051 item when creating a new item
1052 table in a table field
1053 default the value to be used for all contexts not explicitly
1055 :group
'org-structure
1058 (const :tag
"Always" t
)
1059 (const :tag
"Never" nil
)
1060 (repeat :greedy t
:tag
"Individual contexts"
1062 (choice :tag
"Context"
1070 (defcustom org-insert-heading-respect-content nil
1071 "Non-nil means insert new headings after the current subtree.
1072 When nil, the new heading is created directly after the current line.
1073 The commands \\[org-insert-heading-respect-content] and
1074 \\[org-insert-todo-heading-respect-content] turn this variable on
1075 for the duration of the command."
1076 :group
'org-structure
1079 (defcustom org-blank-before-new-entry
'((heading . auto
)
1080 (plain-list-item . auto
))
1081 "Should `org-insert-heading' leave a blank line before new heading/item?
1082 The value is an alist, with `heading' and `plain-list-item' as car,
1083 and a boolean flag as cdr. The cdr may also be the symbol `auto', and then
1084 Org will look at the surrounding headings/items and try to make an
1085 intelligent decision whether to insert a blank line or not.
1087 For plain lists, if the variable `org-empty-line-terminates-plain-lists' is
1088 set, the setting here is ignored and no empty line is inserted, to avoid
1089 breaking the list structure."
1090 :group
'org-edit-structure
1092 (cons (const heading
)
1093 (choice (const :tag
"Never" nil
)
1094 (const :tag
"Always" t
)
1095 (const :tag
"Auto" auto
)))
1096 (cons (const plain-list-item
)
1097 (choice (const :tag
"Never" nil
)
1098 (const :tag
"Always" t
)
1099 (const :tag
"Auto" auto
)))))
1101 (defcustom org-insert-heading-hook nil
1102 "Hook being run after inserting a new heading."
1103 :group
'org-edit-structure
1106 (defcustom org-enable-fixed-width-editor t
1107 "Non-nil means lines starting with \":\" are treated as fixed-width.
1108 This currently only means they are never auto-wrapped.
1109 When nil, such lines will be treated like ordinary lines.
1110 See also the QUOTE keyword."
1111 :group
'org-edit-structure
1114 (defcustom org-goto-auto-isearch t
1115 "Non-nil means typing characters in `org-goto' starts incremental search."
1116 :group
'org-edit-structure
1119 (defgroup org-sparse-trees nil
1120 "Options concerning sparse trees in Org-mode."
1121 :tag
"Org Sparse Trees"
1122 :group
'org-structure
)
1124 (defcustom org-highlight-sparse-tree-matches t
1125 "Non-nil means highlight all matches that define a sparse tree.
1126 The highlights will automatically disappear the next time the buffer is
1127 changed by an edit command."
1128 :group
'org-sparse-trees
1131 (defcustom org-remove-highlights-with-change t
1132 "Non-nil means any change to the buffer will remove temporary highlights.
1133 Such highlights are created by `org-occur' and `org-clock-display'.
1134 When nil, `C-c C-c needs to be used to get rid of the highlights.
1135 The highlights created by `org-preview-latex-fragment' always need
1136 `C-c C-c' to be removed."
1137 :group
'org-sparse-trees
1142 (defcustom org-occur-hook
'(org-first-headline-recenter)
1143 "Hook that is run after `org-occur' has constructed a sparse tree.
1144 This can be used to recenter the window to show as much of the structure
1146 :group
'org-sparse-trees
1149 (defgroup org-imenu-and-speedbar nil
1150 "Options concerning imenu and speedbar in Org-mode."
1151 :tag
"Org Imenu and Speedbar"
1152 :group
'org-structure
)
1154 (defcustom org-imenu-depth
2
1155 "The maximum level for Imenu access to Org-mode headlines.
1156 This also applied for speedbar access."
1157 :group
'org-imenu-and-speedbar
1160 (defgroup org-table nil
1161 "Options concerning tables in Org-mode."
1165 (defcustom org-enable-table-editor
'optimized
1166 "Non-nil means lines starting with \"|\" are handled by the table editor.
1167 When nil, such lines will be treated like ordinary lines.
1169 When equal to the symbol `optimized', the table editor will be optimized to
1171 - Automatic overwrite mode in front of whitespace in table fields.
1172 This makes the structure of the table stay in tact as long as the edited
1173 field does not exceed the column width.
1174 - Minimize the number of realigns. Normally, the table is aligned each time
1175 TAB or RET are pressed to move to another field. With optimization this
1176 happens only if changes to a field might have changed the column width.
1177 Optimization requires replacing the functions `self-insert-command',
1178 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1179 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1180 very good at guessing when a re-align will be necessary, but you can always
1181 force one with \\[org-ctrl-c-ctrl-c].
1183 If you would like to use the optimized version in Org-mode, but the
1184 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1186 This variable can be used to turn on and off the table editor during a session,
1187 but in order to toggle optimization, a restart is required.
1189 See also the variable `org-table-auto-blank-field'."
1192 (const :tag
"off" nil
)
1194 (const :tag
"on, optimized" optimized
)))
1196 (defcustom org-self-insert-cluster-for-undo t
1197 "Non-nil means cluster self-insert commands for undo when possible.
1198 If this is set, then, like in the Emacs command loop, 20 consecutive
1199 characters will be undone together.
1200 This is configurable, because there is some impact on typing performance."
1204 (defcustom org-table-tab-recognizes-table.el t
1205 "Non-nil means TAB will automatically notice a table.el table.
1206 When it sees such a table, it moves point into it and - if necessary -
1207 calls `table-recognize-table'."
1208 :group
'org-table-editing
1211 (defgroup org-link nil
1212 "Options concerning links in Org-mode."
1216 (defvar org-link-abbrev-alist-local nil
1217 "Buffer-local version of `org-link-abbrev-alist', which see.
1218 The value of this is taken from the #+LINK lines.")
1219 (make-variable-buffer-local 'org-link-abbrev-alist-local
)
1221 (defcustom org-link-abbrev-alist nil
1222 "Alist of link abbreviations.
1223 The car of each element is a string, to be replaced at the start of a link.
1224 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1225 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1227 [[linkkey:tag][description]]
1229 The 'linkkey' must be a word word, starting with a letter, followed
1230 by letters, numbers, '-' or '_'.
1232 If REPLACE is a string, the tag will simply be appended to create the link.
1233 If the string contains \"%s\", the tag will be inserted there. Alternatively,
1234 the placeholder \"%h\" will cause a url-encoded version of the tag to
1235 be inserted at that point (see the function `url-hexify-string').
1237 REPLACE may also be a function that will be called with the tag as the
1238 only argument to create the link, which should be returned as a string.
1240 See the manual for examples."
1244 (string :tag
"Protocol")
1246 (string :tag
"Format")
1249 (defcustom org-descriptive-links t
1250 "Non-nil means hide link part and only show description of bracket links.
1251 Bracket links are like [[link][description]]. This variable sets the initial
1252 state in new org-mode buffers. The setting can then be toggled on a
1253 per-buffer basis from the Org->Hyperlinks menu."
1257 (defcustom org-link-file-path-type
'adaptive
1258 "How the path name in file links should be stored.
1261 relative Relative to the current directory, i.e. the directory of the file
1262 into which the link is being inserted.
1263 absolute Absolute path, if possible with ~ for home directory.
1264 noabbrev Absolute path, no abbreviation of home directory.
1265 adaptive Use relative path for files in the current directory and sub-
1266 directories of it. For other files, use an absolute path."
1274 (defcustom org-activate-links
'(bracket angle plain radio tag date footnote
)
1275 "Types of links that should be activated in Org-mode files.
1276 This is a list of symbols, each leading to the activation of a certain link
1277 type. In principle, it does not hurt to turn on most link types - there may
1278 be a small gain when turning off unused link types. The types are:
1280 bracket The recommended [[link][description]] or [[link]] links with hiding.
1281 angle Links in angular brackets that may contain whitespace like
1282 <bbdb:Carsten Dominik>.
1283 plain Plain links in normal text, no whitespace, like http://google.com.
1284 radio Text that is matched by a radio target, see manual for details.
1285 tag Tag settings in a headline (link to tag search).
1286 date Time stamps (link to calendar).
1287 footnote Footnote labels.
1289 Changing this variable requires a restart of Emacs to become effective."
1291 :type
'(set :greedy t
1292 (const :tag
"Double bracket links" bracket
)
1293 (const :tag
"Angular bracket links" angle
)
1294 (const :tag
"Plain text links" plain
)
1295 (const :tag
"Radio target matches" radio
)
1296 (const :tag
"Tags" tag
)
1297 (const :tag
"Timestamps" date
)
1298 (const :tag
"Footnotes" footnote
)))
1300 (defcustom org-make-link-description-function nil
1301 "Function to use to generate link descriptions from links.
1302 If nil the link location will be used. This function must take
1303 two parameters; the first is the link and the second the
1304 description `org-insert-link' has generated, and should return the
1305 description to use."
1309 (defgroup org-link-store nil
1310 "Options concerning storing links in Org-mode."
1311 :tag
"Org Store Link"
1314 (defcustom org-email-link-description-format
"Email %c: %.30s"
1315 "Format of the description part of a link to an email or usenet message.
1316 The following %-escapes will be replaced by corresponding information:
1318 %F full \"From\" field
1319 %f name, taken from \"From\" field, address if no name
1320 %T full \"To\" field
1321 %t first name in \"To\" field, address if no name
1322 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1323 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1328 You may use normal field width specification between the % and the letter.
1329 This is for example useful to limit the length of the subject.
1331 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1332 :group
'org-link-store
1335 (defcustom org-from-is-user-regexp
1337 (when (and user-mail-address
(not (string= user-mail-address
"")))
1338 (setq r1
(concat "\\<" (regexp-quote user-mail-address
) "\\>")))
1339 (when (and user-full-name
(not (string= user-full-name
"")))
1340 (setq r2
(concat "\\<" (regexp-quote user-full-name
) "\\>")))
1341 (if (and r1 r2
) (concat r1
"\\|" r2
) (or r1 r2
)))
1342 "Regexp matched against the \"From:\" header of an email or usenet message.
1343 It should match if the message is from the user him/herself."
1344 :group
'org-link-store
1347 (defcustom org-link-to-org-use-id
'create-if-interactive-and-no-custom-id
1348 "Non-nil means storing a link to an Org file will use entry IDs.
1350 Note that before this variable is even considered, org-id must be loaded,
1351 so please customize `org-modules' and turn it on.
1353 The variable can have the following values:
1355 t Create an ID if needed to make a link to the current entry.
1357 create-if-interactive
1358 If `org-store-link' is called directly (interactively, as a user
1359 command), do create an ID to support the link. But when doing the
1360 job for remember, only use the ID if it already exists. The
1361 purpose of this setting is to avoid proliferation of unwanted
1362 IDs, just because you happen to be in an Org file when you
1363 call `org-remember' that automatically and preemptively
1364 creates a link. If you do want to get an ID link in a remember
1365 template to an entry not having an ID, create it first by
1366 explicitly creating a link to it, using `C-c C-l' first.
1368 create-if-interactive-and-no-custom-id
1369 Like create-if-interactive, but do not create an ID if there is
1370 a CUSTOM_ID property defined in the entry. This is the default.
1373 Use existing ID, do not create one.
1375 nil Never use an ID to make a link, instead link using a text search for
1377 :group
'org-link-store
1379 (const :tag
"Create ID to make link" t
)
1380 (const :tag
"Create if storing link interactively"
1381 create-if-interactive
)
1382 (const :tag
"Create if storing link interactively and no CUSTOM_ID is present"
1383 create-if-interactive-and-no-custom-id
)
1384 (const :tag
"Only use existing" use-existing
)
1385 (const :tag
"Do not use ID to create link" nil
)))
1387 (defcustom org-context-in-file-links t
1388 "Non-nil means file links from `org-store-link' contain context.
1389 A search string will be added to the file name with :: as separator and
1390 used to find the context when the link is activated by the command
1391 `org-open-at-point'. When this option is t, the entire active region
1392 will be placed in the search string of the file link. If set to a
1393 positive integer, only the first n lines of context will be stored.
1395 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1396 negates this setting for the duration of the command."
1397 :group
'org-link-store
1398 :type
'(choice boolean integer
))
1400 (defcustom org-keep-stored-link-after-insertion nil
1401 "Non-nil means keep link in list for entire session.
1403 The command `org-store-link' adds a link pointing to the current
1404 location to an internal list. These links accumulate during a session.
1405 The command `org-insert-link' can be used to insert links into any
1406 Org-mode file (offering completion for all stored links). When this
1407 option is nil, every link which has been inserted once using \\[org-insert-link]
1408 will be removed from the list, to make completing the unused links
1410 :group
'org-link-store
1413 (defgroup org-link-follow nil
1414 "Options concerning following links in Org-mode."
1415 :tag
"Org Follow Link"
1418 (defcustom org-link-translation-function nil
1419 "Function to translate links with different syntax to Org syntax.
1420 This can be used to translate links created for example by the Planner
1421 or emacs-wiki packages to Org syntax.
1422 The function must accept two parameters, a TYPE containing the link
1423 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1424 which is everything after the link protocol. It should return a cons
1425 with possibly modified values of type and path.
1426 Org contains a function for this, so if you set this variable to
1427 `org-translate-link-from-planner', you should be able follow many
1428 links created by planner."
1429 :group
'org-link-follow
1432 (defcustom org-follow-link-hook nil
1433 "Hook that is run after a link has been followed."
1434 :group
'org-link-follow
1437 (defcustom org-tab-follows-link nil
1438 "Non-nil means on links TAB will follow the link.
1439 Needs to be set before org.el is loaded.
1440 This really should not be used, it does not make sense, and the
1441 implementation is bad."
1442 :group
'org-link-follow
1445 (defcustom org-return-follows-link nil
1446 "Non-nil means on links RET will follow the link."
1447 :group
'org-link-follow
1450 (defcustom org-mouse-1-follows-link
1451 (if (boundp 'mouse-1-click-follows-link
) mouse-1-click-follows-link t
)
1452 "Non-nil means mouse-1 on a link will follow the link.
1453 A longer mouse click will still set point. Does not work on XEmacs.
1454 Needs to be set before org.el is loaded."
1455 :group
'org-link-follow
1458 (defcustom org-mark-ring-length
4
1459 "Number of different positions to be recorded in the ring.
1460 Changing this requires a restart of Emacs to work correctly."
1461 :group
'org-link-follow
1464 (defcustom org-link-search-must-match-exact-headline
'query-to-create
1465 "Non-nil means internal links in Org files must exactly match a headline.
1466 When nil, the link search tries to match a phrase will all words
1467 in the search text."
1468 :group
'org-link-follow
1470 (const :tag
"Use fuzy text search" nil
)
1471 (const :tag
"Match only exact headline" t
)
1472 (const :tag
"Match extact headline or query to create it"
1475 (defcustom org-link-frame-setup
1476 '((vm . vm-visit-folder-other-frame
)
1477 (gnus . org-gnus-no-new-news
)
1478 (file . find-file-other-window
)
1479 (wl . wl-other-frame
))
1480 "Setup the frame configuration for following links.
1481 When following a link with Emacs, it may often be useful to display
1482 this link in another window or frame. This variable can be used to
1483 set this up for the different types of links.
1486 `vm-visit-folder-other-window'
1487 `vm-visit-folder-other-frame'
1488 For Gnus, use any of
1491 `org-gnus-no-new-news'
1492 For FILE, use any of
1494 `find-file-other-window'
1495 `find-file-other-frame'
1496 For Wanderlust use any of
1499 For the calendar, use the variable `calendar-setup'.
1500 For BBDB, it is currently only possible to display the matches in
1502 :group
'org-link-follow
1506 (const vm-visit-folder
)
1507 (const vm-visit-folder-other-window
)
1508 (const vm-visit-folder-other-frame
)))
1512 (const gnus-other-frame
)
1513 (const org-gnus-no-new-news
)))
1517 (const find-file-other-window
)
1518 (const find-file-other-frame
)))
1522 (const wl-other-frame
)))))
1524 (defcustom org-display-internal-link-with-indirect-buffer nil
1525 "Non-nil means use indirect buffer to display infile links.
1526 Activating internal links (from one location in a file to another location
1527 in the same file) normally just jumps to the location. When the link is
1528 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
1530 another window. When this option is set, the other window actually displays
1531 an indirect buffer clone of the current buffer, to avoid any visibility
1532 changes to the current buffer."
1533 :group
'org-link-follow
1536 (defcustom org-open-non-existing-files nil
1537 "Non-nil means `org-open-file' will open non-existing files.
1538 When nil, an error will be generated.
1539 This variable applies only to external applications because they
1540 might choke on non-existing files. If the link is to a file that
1541 will be opened in Emacs, the variable is ignored."
1542 :group
'org-link-follow
1545 (defcustom org-open-directory-means-index-dot-org nil
1546 "Non-nil means a link to a directory really means to index.org.
1547 When nil, following a directory link will run dired or open a finder/explorer
1548 window on that directory."
1549 :group
'org-link-follow
1552 (defcustom org-link-mailto-program
'(browse-url "mailto:%a?subject=%s")
1553 "Function and arguments to call for following mailto links.
1554 This is a list with the first element being a Lisp function, and the
1555 remaining elements being arguments to the function. In string arguments,
1556 %a will be replaced by the address, and %s will be replaced by the subject
1557 if one was given like in <mailto:arthur@galaxy.org::this subject>."
1558 :group
'org-link-follow
1560 (const :tag
"browse-url" (browse-url-mail "mailto:%a?subject=%s"))
1561 (const :tag
"compose-mail" (compose-mail "%a" "%s"))
1562 (const :tag
"message-mail" (message-mail "%a" "%s"))
1563 (cons :tag
"other" (function) (repeat :tag
"argument" sexp
))))
1565 (defcustom org-confirm-shell-link-function
'yes-or-no-p
1566 "Non-nil means ask for confirmation before executing shell links.
1567 Shell links can be dangerous: just think about a link
1569 [[shell:rm -rf ~/*][Google Search]]
1571 This link would show up in your Org-mode document as \"Google Search\",
1572 but really it would remove your entire home directory.
1573 Therefore we advise against setting this variable to nil.
1574 Just change it to `y-or-n-p' if you want to confirm with a
1575 single keystroke rather than having to type \"yes\"."
1576 :group
'org-link-follow
1578 (const :tag
"with yes-or-no (safer)" yes-or-no-p
)
1579 (const :tag
"with y-or-n (faster)" y-or-n-p
)
1580 (const :tag
"no confirmation (dangerous)" nil
)))
1581 (put 'org-confirm-shell-link-function
1582 'safe-local-variable
1583 '(lambda (x) (member x
'(yes-or-no-p y-or-n-p
))))
1585 (defcustom org-confirm-elisp-link-function
'yes-or-no-p
1586 "Non-nil means ask for confirmation before executing Emacs Lisp links.
1587 Elisp links can be dangerous: just think about a link
1589 [[elisp:(shell-command \"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
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 (defconst org-file-apps-defaults-gnu
1609 "Default file applications on a UNIX or GNU/Linux system.
1610 See `org-file-apps'.")
1612 (defconst org-file-apps-defaults-macosx
1615 (system .
"open %s")
1617 ("eps.gz" .
"gv %s")
1619 ("fig" .
"xfig %s"))
1620 "Default file applications on a MacOS X system.
1621 The system \"open\" is known as a default, but we use X11 applications
1622 for some files for which the OS does not have a good default.
1623 See `org-file-apps'.")
1625 (defconst org-file-apps-defaults-windowsnt
1629 (list (if (featurep 'xemacs
)
1630 'mswindows-shell-execute
1634 (list (if (featurep 'xemacs
)
1635 'mswindows-shell-execute
1638 "Default file applications on a Windows NT system.
1639 The system \"open\" is used for most files.
1640 See `org-file-apps'.")
1642 (defcustom org-file-apps
1645 ("\\.mm\\'" . default
)
1646 ("\\.x?html?\\'" . default
)
1647 ("\\.pdf\\'" . default
)
1649 "External applications for opening `file:path' items in a document.
1650 Org-mode uses system defaults for different file types, but
1651 you can use this variable to set the application for a given file
1652 extension. The entries in this list are cons cells where the car identifies
1653 files and the cdr the corresponding command. Possible values for the
1655 \"string\" A string as a file identifier can be interpreted in different
1656 ways, depending on its contents:
1658 - Alphanumeric characters only:
1659 Match links with this file extension.
1660 Example: (\"pdf\" . \"evince %s\")
1661 to open PDFs with evince.
1663 - Regular expression: Match links where the
1664 filename matches the regexp. If you want to
1665 use groups here, use shy groups.
1667 Example: (\"\\.x?html\\'\" . \"firefox %s\")
1668 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
1669 to open *.html and *.xhtml with firefox.
1671 - Regular expression which contains (non-shy) groups:
1672 Match links where the whole link, including \"::\", and
1673 anything after that, matches the regexp.
1674 In a custom command string, %1, %2, etc. are replaced with
1675 the parts of the link that were matched by the groups.
1676 For backwards compatibility, if a command string is given
1677 that does not use any of the group matches, this case is
1678 handled identically to the second one (i.e. match against
1680 In a custom lisp form, you can access the group matches with
1681 (match-string n link).
1683 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
1684 to open [[file:document.pdf::5]] with evince at page 5.
1686 `directory' Matches a directory
1687 `remote' Matches a remote file, accessible through tramp or efs.
1688 Remote files most likely should be visited through Emacs
1689 because external applications cannot handle such paths.
1690 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
1691 so all files Emacs knows how to handle. Using this with
1692 command `emacs' will open most files in Emacs. Beware that this
1693 will also open html files inside Emacs, unless you add
1694 (\"html\" . default) to the list as well.
1695 t Default for files not matched by any of the other options.
1696 `system' The system command to open files, like `open' on Windows
1697 and Mac OS X, and mailcap under GNU/Linux. This is the command
1698 that will be selected if you call `C-c C-o' with a double
1699 \\[universal-argument] \\[universal-argument] prefix.
1701 Possible values for the command are:
1702 `emacs' The file will be visited by the current Emacs process.
1703 `default' Use the default application for this file type, which is the
1704 association for t in the list, most likely in the system-specific
1706 This can be used to overrule an unwanted setting in the
1707 system-specific variable.
1708 `system' Use the system command for opening files, like \"open\".
1709 This command is specified by the entry whose car is `system'.
1710 Most likely, the system-specific version of this variable
1711 does define this command, but you can overrule/replace it
1713 string A command to be executed by a shell; %s will be replaced
1714 by the path to the file.
1715 sexp A Lisp form which will be evaluated. The file path will
1716 be available in the Lisp variable `file'.
1717 For more examples, see the system specific constants
1718 `org-file-apps-defaults-macosx'
1719 `org-file-apps-defaults-windowsnt'
1720 `org-file-apps-defaults-gnu'."
1721 :group
'org-link-follow
1723 (cons (choice :value
""
1724 (string :tag
"Extension")
1725 (const :tag
"System command to open files" system
)
1726 (const :tag
"Default for unrecognized files" t
)
1727 (const :tag
"Remote file" remote
)
1728 (const :tag
"Links to a directory" directory
)
1729 (const :tag
"Any files that have Emacs modes"
1732 (const :tag
"Visit with Emacs" emacs
)
1733 (const :tag
"Use default" default
)
1734 (const :tag
"Use the system command" system
)
1735 (string :tag
"Command")
1736 (sexp :tag
"Lisp form")))))
1740 (defgroup org-refile nil
1741 "Options concerning refiling entries in Org-mode."
1745 (defcustom org-directory
"~/org"
1746 "Directory with org files.
1747 This is just a default location to look for Org files. There is no need
1748 at all to put your files into this directory. It is only used in the
1749 following situations:
1751 1. When a remember template specifies a target file that is not an
1752 absolute path. The path will then be interpreted relative to
1754 2. When a remember note is filed away in an interactive way (when exiting the
1755 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
1756 with `org-directory' as the default path."
1758 :group
'org-remember
1761 (defcustom org-default-notes-file
(convert-standard-filename "~/.notes")
1762 "Default target for storing notes.
1763 Used as a fall back file for org-remember.el and org-capture.el, for
1764 templates that do not specify a target file."
1766 :group
'org-remember
1768 (const :tag
"Default from remember-data-file" nil
)
1771 (defcustom org-goto-interface
'outline
1772 "The default interface to be used for `org-goto'.
1774 outline The interface shows an outline of the relevant file
1775 and the correct heading is found by moving through
1776 the outline or by searching with incremental search.
1777 outline-path-completion Headlines in the current buffer are offered via
1778 completion. This is the interface also used by
1779 the refile command."
1782 (const :tag
"Outline" outline
)
1783 (const :tag
"Outline-path-completion" outline-path-completion
)))
1785 (defcustom org-goto-max-level
5
1786 "Maximum target level when running `org-goto' with refile interface."
1790 (defcustom org-reverse-note-order nil
1791 "Non-nil means store new notes at the beginning of a file or entry.
1792 When nil, new notes will be filed to the end of a file or entry.
1793 This can also be a list with cons cells of regular expressions that
1794 are matched against file names, and values."
1795 :group
'org-remember
1798 (const :tag
"Reverse always" t
)
1799 (const :tag
"Reverse never" nil
)
1800 (repeat :tag
"By file name regexp"
1801 (cons regexp boolean
))))
1803 (defcustom org-log-refile nil
1804 "Information to record when a task is refiled.
1806 Possible values are:
1808 nil Don't add anything
1809 time Add a time stamp to the task
1810 note Prompt for a note and add it with template `org-log-note-headings'
1812 This option can also be set with on a per-file-basis with
1814 #+STARTUP: nologrefile
1815 #+STARTUP: logrefile
1816 #+STARTUP: lognoterefile
1818 You can have local logging settings for a subtree by setting the LOGGING
1819 property to one or more of these keywords.
1821 When bulk-refiling from the agenda, the value `note' is forbidden and
1822 will temporarily be changed to `time'."
1824 :group
'org-progress
1826 (const :tag
"No logging" nil
)
1827 (const :tag
"Record timestamp" time
)
1828 (const :tag
"Record timestamp with note." note
)))
1830 (defcustom org-refile-targets nil
1831 "Targets for refiling entries with \\[org-refile].
1832 This is list of cons cells. Each cell contains:
1833 - a specification of the files to be considered, either a list of files,
1834 or a symbol whose function or variable value will be used to retrieve
1835 a file name or a list of file names. If you use `org-agenda-files' for
1836 that, all agenda files will be scanned for targets. Nil means consider
1837 headings in the current buffer.
1838 - A specification of how to find candidate refile targets. This may be
1840 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
1841 This tag has to be present in all target headlines, inheritance will
1843 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
1845 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
1846 headlines that are refiling targets.
1847 - a cons cell (:level . N). Any headline of level N is considered a target.
1848 Note that, when `org-odd-levels-only' is set, level corresponds to
1849 order in hierarchy, not to the number of stars.
1850 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
1851 Note that, when `org-odd-levels-only' is set, level corresponds to
1852 order in hierarchy, not to the number of stars.
1854 You can set the variable `org-refile-target-verify-function' to a function
1855 to verify each headline found by the simple criteria above.
1857 When this variable is nil, all top-level headlines in the current buffer
1858 are used, equivalent to the value `((nil . (:level . 1))'."
1862 (choice :value org-agenda-files
1863 (const :tag
"All agenda files" org-agenda-files
)
1864 (const :tag
"Current buffer" nil
)
1865 (function) (variable) (file))
1866 (choice :tag
"Identify target headline by"
1867 (cons :tag
"Specific tag" (const :value
:tag
) (string))
1868 (cons :tag
"TODO keyword" (const :value
:todo
) (string))
1869 (cons :tag
"Regular expression" (const :value
:regexp
) (regexp))
1870 (cons :tag
"Level number" (const :value
:level
) (integer))
1871 (cons :tag
"Max Level number" (const :value
:maxlevel
) (integer))))))
1873 (defcustom org-refile-target-verify-function nil
1874 "Function to verify if the headline at point should be a refile target.
1875 The function will be called without arguments, with point at the
1876 beginning of the headline. It should return t and leave point
1877 where it is if the headline is a valid target for refiling.
1879 If the target should not be selected, the function must return nil.
1880 In addition to this, it may move point to a place from where the search
1881 should be continued. For example, the function may decide that the entire
1882 subtree of the current entry should be excluded and move point to the end
1887 (defcustom org-refile-use-cache nil
1888 "Non-nil means cache refile targets to speed up the process.
1889 The cache for a particular file will be updated automatically when
1890 the buffer has been killed, or when any of the marker used for flagging
1891 refile targets no longer points at a live buffer.
1892 If you have added new entries to a buffer that might themselves be targets,
1893 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
1894 find that easier, `C-u C-u C-u C-c C-w'."
1898 (defcustom org-refile-use-outline-path nil
1899 "Non-nil means provide refile targets as paths.
1900 So a level 3 headline will be available as level1/level2/level3.
1902 When the value is `file', also include the file name (without directory)
1903 into the path. In this case, you can also stop the completion after
1904 the file name, to get entries inserted as top level in the file.
1906 When `full-file-path', include the full file path."
1909 (const :tag
"Not" nil
)
1910 (const :tag
"Yes" t
)
1911 (const :tag
"Start with file name" file
)
1912 (const :tag
"Start with full file path" full-file-path
)))
1914 (defcustom org-outline-path-complete-in-steps t
1915 "Non-nil means complete the outline path in hierarchical steps.
1916 When Org-mode uses the refile interface to select an outline path
1917 \(see variable `org-refile-use-outline-path'), the completion of
1918 the path can be done is a single go, or if can be done in steps down
1919 the headline hierarchy. Going in steps is probably the best if you
1920 do not use a special completion package like `ido' or `icicles'.
1921 However, when using these packages, going in one step can be very
1922 fast, while still showing the whole path to the entry."
1926 (defcustom org-refile-allow-creating-parent-nodes nil
1927 "Non-nil means allow to create new nodes as refile targets.
1928 New nodes are then created by adding \"/new node name\" to the completion
1929 of an existing node. When the value of this variable is `confirm',
1930 new node creation must be confirmed by the user (recommended)
1931 When nil, the completion must match an existing entry.
1933 Note that, if the new heading is not seen by the criteria
1934 listed in `org-refile-targets', multiple instances of the same
1935 heading would be created by trying again to file under the new
1939 (const :tag
"Never" nil
)
1940 (const :tag
"Always" t
)
1941 (const :tag
"Prompt for confirmation" confirm
)))
1943 (defgroup org-todo nil
1944 "Options concerning TODO items in Org-mode."
1948 (defgroup org-progress nil
1949 "Options concerning Progress logging in Org-mode."
1953 (defvar org-todo-interpretation-widgets
1955 (:tag
"Sequence (cycling hits every state)" sequence
)
1956 (:tag
"Type (cycling directly to DONE)" type
))
1957 "The available interpretation symbols for customizing `org-todo-keywords'.
1958 Interested libraries should add to this list.")
1960 (defcustom org-todo-keywords
'((sequence "TODO" "DONE"))
1961 "List of TODO entry keyword sequences and their interpretation.
1962 \\<org-mode-map>This is a list of sequences.
1964 Each sequence starts with a symbol, either `sequence' or `type',
1965 indicating if the keywords should be interpreted as a sequence of
1966 action steps, or as different types of TODO items. The first
1967 keywords are states requiring action - these states will select a headline
1968 for inclusion into the global TODO list Org-mode produces. If one of
1969 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
1970 signify that no further action is necessary. If \"|\" is not found,
1971 the last keyword is treated as the only DONE state of the sequence.
1973 The command \\[org-todo] cycles an entry through these states, and one
1974 additional state where no keyword is present. For details about this
1975 cycling, see the manual.
1977 TODO keywords and interpretation can also be set on a per-file basis with
1978 the special #+SEQ_TODO and #+TYP_TODO lines.
1980 Each keyword can optionally specify a character for fast state selection
1981 \(in combination with the variable `org-use-fast-todo-selection')
1982 and specifiers for state change logging, using the same syntax
1983 that is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says
1984 that the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
1985 indicates to record a time stamp each time this state is selected.
1987 Each keyword may also specify if a timestamp or a note should be
1988 recorded when entering or leaving the state, by adding additional
1989 characters in the parenthesis after the keyword. This looks like this:
1990 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
1991 record only the time of the state change. With X and Y being either
1992 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
1993 Y when leaving the state if and only if the *target* state does not
1994 define X. You may omit any of the fast-selection key or X or /Y,
1995 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
1997 For backward compatibility, this variable may also be just a list
1998 of keywords - in this case the interpretation (sequence or type) will be
1999 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2001 :group
'org-keywords
2003 (repeat :tag
"Old syntax, just keywords"
2004 (string :tag
"Keyword"))
2005 (repeat :tag
"New syntax"
2008 :tag
"Interpretation"
2009 ;;Quick and dirty way to see
2010 ;;`org-todo-interpretations'. This takes the
2011 ;;place of item arguments
2019 org-todo-interpretation-widgets
))
2022 (string :tag
"Keyword"))))))
2024 (defvar org-todo-keywords-1 nil
2025 "All TODO and DONE keywords active in a buffer.")
2026 (make-variable-buffer-local 'org-todo-keywords-1
)
2027 (defvar org-todo-keywords-for-agenda nil
)
2028 (defvar org-done-keywords-for-agenda nil
)
2029 (defvar org-drawers-for-agenda nil
)
2030 (defvar org-todo-keyword-alist-for-agenda nil
)
2031 (defvar org-tag-alist-for-agenda nil
)
2032 (defvar org-agenda-contributing-files nil
)
2033 (defvar org-not-done-keywords nil
)
2034 (make-variable-buffer-local 'org-not-done-keywords
)
2035 (defvar org-done-keywords nil
)
2036 (make-variable-buffer-local 'org-done-keywords
)
2037 (defvar org-todo-heads nil
)
2038 (make-variable-buffer-local 'org-todo-heads
)
2039 (defvar org-todo-sets nil
)
2040 (make-variable-buffer-local 'org-todo-sets
)
2041 (defvar org-todo-log-states nil
)
2042 (make-variable-buffer-local 'org-todo-log-states
)
2043 (defvar org-todo-kwd-alist nil
)
2044 (make-variable-buffer-local 'org-todo-kwd-alist
)
2045 (defvar org-todo-key-alist nil
)
2046 (make-variable-buffer-local 'org-todo-key-alist
)
2047 (defvar org-todo-key-trigger nil
)
2048 (make-variable-buffer-local 'org-todo-key-trigger
)
2050 (defcustom org-todo-interpretation
'sequence
2051 "Controls how TODO keywords are interpreted.
2052 This variable is in principle obsolete and is only used for
2053 backward compatibility, if the interpretation of todo keywords is
2054 not given already in `org-todo-keywords'. See that variable for
2057 :group
'org-keywords
2058 :type
'(choice (const sequence
)
2061 (defcustom org-use-fast-todo-selection t
2062 "Non-nil means use the fast todo selection scheme with C-c C-t.
2063 This variable describes if and under what circumstances the cycling
2064 mechanism for TODO keywords will be replaced by a single-key, direct
2067 When nil, fast selection is never used.
2069 When the symbol `prefix', it will be used when `org-todo' is called with
2070 a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and `C-u t'
2071 in an agenda buffer.
2073 When t, fast selection is used by default. In this case, the prefix
2074 argument forces cycling instead.
2076 In all cases, the special interface is only used if access keys have actually
2077 been assigned by the user, i.e. if keywords in the configuration are followed
2078 by a letter in parenthesis, like TODO(t)."
2081 (const :tag
"Never" nil
)
2082 (const :tag
"By default" t
)
2083 (const :tag
"Only with C-u C-c C-t" prefix
)))
2085 (defcustom org-provide-todo-statistics t
2086 "Non-nil means update todo statistics after insert and toggle.
2087 ALL-HEADLINES means update todo statistics by including headlines
2088 with no TODO keyword as well, counting them as not done.
2089 A list of TODO keywords means the same, but skip keywords that are
2092 When this is set, todo statistics is updated in the parent of the
2093 current entry each time a todo state is changed."
2096 (const :tag
"Yes, only for TODO entries" t
)
2097 (const :tag
"Yes, including all entries" 'all-headlines
)
2098 (repeat :tag
"Yes, for TODOs in this list"
2099 (string :tag
"TODO keyword"))
2100 (other :tag
"No TODO statistics" nil
)))
2102 (defcustom org-hierarchical-todo-statistics t
2103 "Non-nil means TODO statistics covers just direct children.
2104 When nil, all entries in the subtree are considered.
2105 This has only an effect if `org-provide-todo-statistics' is set.
2106 To set this to nil for only a single subtree, use a COOKIE_DATA
2107 property and include the word \"recursive\" into the value."
2111 (defcustom org-after-todo-state-change-hook nil
2112 "Hook which is run after the state of a TODO item was changed.
2113 The new state (a string with a TODO keyword, or nil) is available in the
2114 Lisp variable `state'."
2118 (defvar org-blocker-hook nil
2119 "Hook for functions that are allowed to block a state change.
2121 Each function gets as its single argument a property list, see
2122 `org-trigger-hook' for more information about this list.
2124 If any of the functions in this hook returns nil, the state change
2127 (defvar org-trigger-hook nil
2128 "Hook for functions that are triggered by a state change.
2130 Each function gets as its single argument a property list with at least
2131 the following elements:
2133 (:type type-of-change :position pos-at-entry-start
2134 :from old-state :to new-state)
2136 Depending on the type, more properties may be present.
2138 This mechanism is currently implemented for:
2142 :type todo-state-change
2143 :from previous state (keyword as a string), or nil, or a symbol
2144 'todo' or 'done', to indicate the general type of state.
2145 :to new state, like in :from")
2147 (defcustom org-enforce-todo-dependencies nil
2148 "Non-nil means undone TODO entries will block switching the parent to DONE.
2149 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2150 be blocked if any prior sibling is not yet done.
2151 Finally, if the parent is blocked because of ordered siblings of its own,
2152 the child will also be blocked.
2153 This variable needs to be set before org.el is loaded, and you need to
2154 restart Emacs after a change to make the change effective. The only way
2155 to change is while Emacs is running is through the customize interface."
2156 :set
(lambda (var val
)
2159 (add-hook 'org-blocker-hook
2160 'org-block-todo-from-children-or-siblings-or-parent
)
2161 (remove-hook 'org-blocker-hook
2162 'org-block-todo-from-children-or-siblings-or-parent
)))
2166 (defcustom org-enforce-todo-checkbox-dependencies nil
2167 "Non-nil means unchecked boxes will block switching the parent to DONE.
2168 When this is nil, checkboxes have no influence on switching TODO states.
2169 When non-nil, you first need to check off all check boxes before the TODO
2170 entry can be switched to DONE.
2171 This variable needs to be set before org.el is loaded, and you need to
2172 restart Emacs after a change to make the change effective. The only way
2173 to change is while Emacs is running is through the customize interface."
2174 :set
(lambda (var val
)
2177 (add-hook 'org-blocker-hook
2178 'org-block-todo-from-checkboxes
)
2179 (remove-hook 'org-blocker-hook
2180 'org-block-todo-from-checkboxes
)))
2184 (defcustom org-treat-insert-todo-heading-as-state-change nil
2185 "Non-nil means inserting a TODO heading is treated as state change.
2186 So when the command \\[org-insert-todo-heading] is used, state change
2187 logging will apply if appropriate. When nil, the new TODO item will
2188 be inserted directly, and no logging will take place."
2192 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2193 "Non-nil means switching TODO states with S-cursor counts as state change.
2194 This is the default behavior. However, setting this to nil allows a
2195 convenient way to select a TODO state and bypass any logging associated
2200 (defcustom org-todo-state-tags-triggers nil
2201 "Tag changes that should be triggered by TODO state changes.
2202 This is a list. Each entry is
2204 (state-change (tag . flag) .......)
2206 State-change can be a string with a state, and empty string to indicate the
2207 state that has no TODO keyword, or it can be one of the symbols `todo'
2208 or `done', meaning any not-done or done state, respectively."
2212 (cons (choice :tag
"When changing to"
2213 (const :tag
"Not-done state" todo
)
2214 (const :tag
"Done state" done
)
2215 (string :tag
"State"))
2217 (cons :tag
"Tag action"
2219 (choice (const :tag
"Add" t
) (const :tag
"Remove" nil
)))))))
2221 (defcustom org-log-done nil
2222 "Information to record when a task moves to the DONE state.
2224 Possible values are:
2226 nil Don't add anything, just change the keyword
2227 time Add a time stamp to the task
2228 note Prompt for a note and add it with template `org-log-note-headings'
2230 This option can also be set with on a per-file-basis with
2232 #+STARTUP: nologdone
2234 #+STARTUP: lognotedone
2236 You can have local logging settings for a subtree by setting the LOGGING
2237 property to one or more of these keywords."
2239 :group
'org-progress
2241 (const :tag
"No logging" nil
)
2242 (const :tag
"Record CLOSED timestamp" time
)
2243 (const :tag
"Record CLOSED timestamp with note." note
)))
2245 ;; Normalize old uses of org-log-done.
2247 ((eq org-log-done t
) (setq org-log-done
'time
))
2248 ((and (listp org-log-done
) (memq 'done org-log-done
))
2249 (setq org-log-done
'note
)))
2251 (defcustom org-log-reschedule nil
2252 "Information to record when the scheduling date of a tasks is modified.
2254 Possible values are:
2256 nil Don't add anything, just change the date
2257 time Add a time stamp to the task
2258 note Prompt for a note and add it with template `org-log-note-headings'
2260 This option can also be set with on a per-file-basis with
2262 #+STARTUP: nologreschedule
2263 #+STARTUP: logreschedule
2264 #+STARTUP: lognotereschedule"
2266 :group
'org-progress
2268 (const :tag
"No logging" nil
)
2269 (const :tag
"Record timestamp" time
)
2270 (const :tag
"Record timestamp with note." note
)))
2272 (defcustom org-log-redeadline nil
2273 "Information to record when the deadline date of a tasks is modified.
2275 Possible values are:
2277 nil Don't add anything, just change the date
2278 time Add a time stamp to the task
2279 note Prompt for a note and add it with template `org-log-note-headings'
2281 This option can also be set with on a per-file-basis with
2283 #+STARTUP: nologredeadline
2284 #+STARTUP: logredeadline
2285 #+STARTUP: lognoteredeadline
2287 You can have local logging settings for a subtree by setting the LOGGING
2288 property to one or more of these keywords."
2290 :group
'org-progress
2292 (const :tag
"No logging" nil
)
2293 (const :tag
"Record timestamp" time
)
2294 (const :tag
"Record timestamp with note." note
)))
2296 (defcustom org-log-note-clock-out nil
2297 "Non-nil means record a note when clocking out of an item.
2298 This can also be configured on a per-file basis by adding one of
2299 the following lines anywhere in the buffer:
2301 #+STARTUP: lognoteclock-out
2302 #+STARTUP: nolognoteclock-out"
2304 :group
'org-progress
2307 (defcustom org-log-done-with-time t
2308 "Non-nil means the CLOSED time stamp will contain date and time.
2309 When nil, only the date will be recorded."
2310 :group
'org-progress
2313 (defcustom org-log-note-headings
2314 '((done .
"CLOSING NOTE %t")
2315 (state .
"State %-12s from %-12S %t")
2316 (note .
"Note taken on %t")
2317 (reschedule .
"Rescheduled from %S on %t")
2318 (delschedule .
"Not scheduled, was %S on %t")
2319 (redeadline .
"New deadline from %S on %t")
2320 (deldeadline .
"Removed deadline, was %S on %t")
2321 (refile .
"Refiled on %t")
2323 "Headings for notes added to entries.
2324 The value is an alist, with the car being a symbol indicating the note
2325 context, and the cdr is the heading to be used. The heading may also be the
2327 %t in the heading will be replaced by a time stamp.
2328 %T will be an active time stamp instead the default inactive one
2329 %s will be replaced by the new TODO state, in double quotes.
2330 %S will be replaced by the old TODO state, in double quotes.
2331 %u will be replaced by the user name.
2332 %U will be replaced by the full user name.
2334 In fact, it is not a good idea to change the `state' entry, because
2335 agenda log mode depends on the format of these entries."
2337 :group
'org-progress
2338 :type
'(list :greedy t
2339 (cons (const :tag
"Heading when closing an item" done
) string
)
2341 "Heading when changing todo state (todo sequence only)"
2343 (cons (const :tag
"Heading when just taking a note" note
) string
)
2344 (cons (const :tag
"Heading when clocking out" clock-out
) string
)
2345 (cons (const :tag
"Heading when an item is no longer scheduled" delschedule
) string
)
2346 (cons (const :tag
"Heading when rescheduling" reschedule
) string
)
2347 (cons (const :tag
"Heading when changing deadline" redeadline
) string
)
2348 (cons (const :tag
"Heading when deleting a deadline" deldeadline
) string
)
2349 (cons (const :tag
"Heading when refiling" refile
) string
)))
2351 (unless (assq 'note org-log-note-headings
)
2352 (push '(note .
"%t") org-log-note-headings
))
2354 (defcustom org-log-into-drawer nil
2355 "Non-nil means insert state change notes and time stamps into a drawer.
2356 When nil, state changes notes will be inserted after the headline and
2357 any scheduling and clock lines, but not inside a drawer.
2359 The value of this variable should be the name of the drawer to use.
2360 LOGBOOK is proposed at the default drawer for this purpose, you can
2361 also set this to a string to define the drawer of your choice.
2363 A value of t is also allowed, representing \"LOGBOOK\".
2365 If this variable is set, `org-log-state-notes-insert-after-drawers'
2368 You can set the property LOG_INTO_DRAWER to overrule this setting for
2371 :group
'org-progress
2373 (const :tag
"Not into a drawer" nil
)
2374 (const :tag
"LOGBOOK" t
)
2375 (string :tag
"Other")))
2377 (if (fboundp 'defvaralias
)
2378 (defvaralias 'org-log-state-notes-into-drawer
'org-log-into-drawer
))
2380 (defun org-log-into-drawer ()
2381 "Return the value of `org-log-into-drawer', but let properties overrule.
2382 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2383 used instead of the default value."
2384 (let ((p (ignore-errors (org-entry-get nil
"LOG_INTO_DRAWER" 'inherit
))))
2386 ((or (not p
) (equal p
"nil")) org-log-into-drawer
)
2387 ((equal p
"t") "LOGBOOK")
2390 (defcustom org-log-state-notes-insert-after-drawers nil
2391 "Non-nil means insert state change notes after any drawers in entry.
2392 Only the drawers that *immediately* follow the headline and the
2393 deadline/scheduled line are skipped.
2394 When nil, insert notes right after the heading and perhaps the line
2395 with deadline/scheduling if present.
2397 This variable will have no effect if `org-log-into-drawer' is
2400 :group
'org-progress
2403 (defcustom org-log-states-order-reversed t
2404 "Non-nil means the latest state note will be directly after heading.
2405 When nil, the state change notes will be ordered according to time."
2407 :group
'org-progress
2410 (defcustom org-todo-repeat-to-state nil
2411 "The TODO state to which a repeater should return the repeating task.
2412 By default this is the first task in a TODO sequence, or the previous state
2413 in a TODO_TYP set. But you can specify another task here.
2414 alternatively, set the :REPEAT_TO_STATE: property of the entry."
2416 :type
'(choice (const :tag
"Head of sequence" nil
)
2417 (string :tag
"Specific state")))
2419 (defcustom org-log-repeat
'time
2420 "Non-nil means record moving through the DONE state when triggering repeat.
2421 An auto-repeating task is immediately switched back to TODO when
2422 marked DONE. If you are not logging state changes (by adding \"@\"
2423 or \"!\" to the TODO keyword definition), or set `org-log-done' to
2424 record a closing note, there will be no record of the task moving
2425 through DONE. This variable forces taking a note anyway.
2427 nil Don't force a record
2428 time Record a time stamp
2431 This option can also be set with on a per-file-basis with
2433 #+STARTUP: logrepeat
2434 #+STARTUP: lognoterepeat
2435 #+STARTUP: nologrepeat
2437 You can have local logging settings for a subtree by setting the LOGGING
2438 property to one or more of these keywords."
2440 :group
'org-progress
2442 (const :tag
"Don't force a record" nil
)
2443 (const :tag
"Force recording the DONE state" time
)
2444 (const :tag
"Force recording a note with the DONE state" note
)))
2447 (defgroup org-priorities nil
2448 "Priorities in Org-mode."
2449 :tag
"Org Priorities"
2452 (defcustom org-enable-priority-commands t
2453 "Non-nil means priority commands are active.
2454 When nil, these commands will be disabled, so that you never accidentally
2456 :group
'org-priorities
2459 (defcustom org-highest-priority ?A
2460 "The highest priority of TODO items. A character like ?A, ?B etc.
2461 Must have a smaller ASCII number than `org-lowest-priority'."
2462 :group
'org-priorities
2465 (defcustom org-lowest-priority ?C
2466 "The lowest priority of TODO items. A character like ?A, ?B etc.
2467 Must have a larger ASCII number than `org-highest-priority'."
2468 :group
'org-priorities
2471 (defcustom org-default-priority ?B
2472 "The default priority of TODO items.
2473 This is the priority an item get if no explicit priority is given."
2474 :group
'org-priorities
2477 (defcustom org-priority-start-cycle-with-default t
2478 "Non-nil means start with default priority when starting to cycle.
2479 When this is nil, the first step in the cycle will be (depending on the
2480 command used) one higher or lower that the default priority."
2481 :group
'org-priorities
2484 (defcustom org-get-priority-function nil
2485 "Function to extract the priority from a string.
2486 The string is normally the headline. If this is nil Org computes the
2487 priority from the priority cookie like [#A] in the headline. It returns
2488 an integer, increasing by 1000 for each priority level.
2489 The user can set a different function here, which should take a string
2490 as an argument and return the numeric priority."
2491 :group
'org-priorities
2494 (defgroup org-time nil
2495 "Options concerning time stamps and deadlines in Org-mode."
2499 (defcustom org-insert-labeled-timestamps-at-point nil
2500 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
2501 When nil, these labeled time stamps are forces into the second line of an
2502 entry, just after the headline. When scheduling from the global TODO list,
2503 the time stamp will always be forced into the second line."
2507 (defconst org-time-stamp-formats
'("<%Y-%m-%d %a>" .
"<%Y-%m-%d %a %H:%M>")
2508 "Formats for `format-time-string' which are used for time stamps.
2509 It is not recommended to change this constant.")
2511 (defcustom org-time-stamp-rounding-minutes
'(0 5)
2512 "Number of minutes to round time stamps to.
2513 These are two values, the first applies when first creating a time stamp.
2514 The second applies when changing it with the commands `S-up' and `S-down'.
2515 When changing the time stamp, this means that it will change in steps
2516 of N minutes, as given by the second value.
2518 When a setting is 0 or 1, insert the time unmodified. Useful rounding
2519 numbers should be factors of 60, so for example 5, 10, 15.
2521 When this is larger than 1, you can still force an exact time stamp by using
2522 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
2523 and by using a prefix arg to `S-up/down' to specify the exact number
2524 of minutes to shift."
2526 :get
'(lambda (var) ; Make sure both elements are there
2527 (if (integerp (default-value var
))
2528 (list (default-value var
) 5)
2529 (default-value var
)))
2531 (integer :tag
"when inserting times")
2532 (integer :tag
"when modifying times")))
2534 ;; Normalize old customizations of this variable.
2535 (when (integerp org-time-stamp-rounding-minutes
)
2536 (setq org-time-stamp-rounding-minutes
2537 (list org-time-stamp-rounding-minutes
2538 org-time-stamp-rounding-minutes
)))
2540 (defcustom org-display-custom-times nil
2541 "Non-nil means overlay custom formats over all time stamps.
2542 The formats are defined through the variable `org-time-stamp-custom-formats'.
2543 To turn this on on a per-file basis, insert anywhere in the file:
2544 #+STARTUP: customtime"
2548 (make-variable-buffer-local 'org-display-custom-times
)
2550 (defcustom org-time-stamp-custom-formats
2551 '("<%m/%d/%y %a>" .
"<%m/%d/%y %a %H:%M>") ; american
2552 "Custom formats for time stamps. See `format-time-string' for the syntax.
2553 These are overlayed over the default ISO format if the variable
2554 `org-display-custom-times' is set. Time like %H:%M should be at the
2555 end of the second format. The custom formats are also honored by export
2556 commands, if custom time display is turned on at the time of export."
2560 (defun org-time-stamp-format (&optional long inactive
)
2561 "Get the right format for a time string."
2562 (let ((f (if long
(cdr org-time-stamp-formats
)
2563 (car org-time-stamp-formats
))))
2565 (concat "[" (substring f
1 -
1) "]")
2568 (defcustom org-time-clocksum-format
"%d:%02d"
2569 "The format string used when creating CLOCKSUM lines.
2570 This is also used when org-mode generates a time duration."
2574 (defcustom org-time-clocksum-use-fractional nil
2575 "If non-nil, \\[org-clock-display] uses fractional times.
2576 org-mode generates a time duration."
2580 (defcustom org-time-clocksum-fractional-format
"%.2f"
2581 "The format string used when creating CLOCKSUM lines, or when
2582 org-mode generates a time duration."
2586 (defcustom org-deadline-warning-days
14
2587 "No. of days before expiration during which a deadline becomes active.
2588 This variable governs the display in sparse trees and in the agenda.
2589 When 0 or negative, it means use this number (the absolute value of it)
2590 even if a deadline has a different individual lead time specified.
2592 Custom commands can set this variable in the options section."
2594 :group
'org-agenda-daily
/weekly
2597 (defcustom org-read-date-prefer-future t
2598 "Non-nil means assume future for incomplete date input from user.
2599 This affects the following situations:
2600 1. The user gives a month but not a year.
2601 For example, if it is April and you enter \"feb 2\", this will be read
2602 as Feb 2, *next* year. \"May 5\", however, will be this year.
2603 2. The user gives a day, but no month.
2604 For example, if today is the 15th, and you enter \"3\", Org-mode will
2605 read this as the third of *next* month. However, if you enter \"17\",
2606 it will be considered as *this* month.
2608 If you set this variable to the symbol `time', then also the following
2611 3. If the user gives a time, but no day. If the time is before now,
2612 to will be interpreted as tomorrow.
2614 Currently none of this works for ISO week specifications.
2616 When this option is nil, the current day, month and year will always be
2619 See also `org-agenda-jump-prefer-future'."
2622 (const :tag
"Never" nil
)
2623 (const :tag
"Check month and day" t
)
2624 (const :tag
"Check month, day, and time" time
)))
2626 (defcustom org-agenda-jump-prefer-future
'org-read-date-prefer-future
2627 "Should the agenda jump command prefer the future for incomplete dates?
2628 The default is to do the same as configured in `org-read-date-prefer-future'.
2629 But you can also set a deviating value here.
2630 This may t or nil, or the symbol `org-read-date-prefer-future'."
2634 (const :tag
"Use org-read-date-prefer-future"
2635 org-read-date-prefer-future
)
2636 (const :tag
"Never" nil
)
2637 (const :tag
"Always" t
)))
2639 (defcustom org-read-date-display-live t
2640 "Non-nil means display current interpretation of date prompt live.
2641 This display will be in an overlay, in the minibuffer."
2645 (defcustom org-read-date-popup-calendar t
2646 "Non-nil means pop up a calendar when prompting for a date.
2647 In the calendar, the date can be selected with mouse-1. However, the
2648 minibuffer will also be active, and you can simply enter the date as well.
2649 When nil, only the minibuffer will be available."
2652 (if (fboundp 'defvaralias
)
2653 (defvaralias 'org-popup-calendar-for-date-prompt
2654 'org-read-date-popup-calendar
))
2656 (defcustom org-read-date-minibuffer-setup-hook nil
2657 "Hook to be used to set up keys for the date/time interface.
2658 Add key definitions to `minibuffer-local-map', which will be a temporary
2663 (defcustom org-extend-today-until
0
2664 "The hour when your day really ends. Must be an integer.
2665 This has influence for the following applications:
2666 - When switching the agenda to \"today\". It it is still earlier than
2667 the time given here, the day recognized as TODAY is actually yesterday.
2668 - When a date is read from the user and it is still before the time given
2669 here, the current date and time will be assumed to be yesterday, 23:59.
2670 Also, timestamps inserted in remember templates follow this rule.
2672 IMPORTANT: This is a feature whose implementation is and likely will
2673 remain incomplete. Really, it is only here because past midnight seems to
2674 be the favorite working time of John Wiegley :-)"
2678 (defcustom org-edit-timestamp-down-means-later nil
2679 "Non-nil means S-down will increase the time in a time stamp.
2680 When nil, S-up will increase."
2684 (defcustom org-calendar-follow-timestamp-change t
2685 "Non-nil means make the calendar window follow timestamp changes.
2686 When a timestamp is modified and the calendar window is visible, it will be
2687 moved to the new date."
2691 (defgroup org-tags nil
2692 "Options concerning tags in Org-mode."
2696 (defcustom org-tag-alist nil
2697 "List of tags allowed in Org-mode files.
2698 When this list is nil, Org-mode will base TAG input on what is already in the
2700 The value of this variable is an alist, the car of each entry must be a
2701 keyword as a string, the cdr may be a character that is used to select
2702 that tag through the fast-tag-selection interface.
2703 See the manual for details."
2707 (cons (string :tag
"Tag name")
2708 (character :tag
"Access char"))
2709 (list :tag
"Start radio group"
2711 (option (string :tag
"Group description")))
2712 (list :tag
"End radio group"
2714 (option (string :tag
"Group description")))
2715 (const :tag
"New line" (:newline
)))))
2717 (defcustom org-tag-persistent-alist nil
2718 "List of tags that will always appear in all Org-mode files.
2719 This is in addition to any in buffer settings or customizations
2721 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
2722 The value of this variable is an alist, the car of each entry must be a
2723 keyword as a string, the cdr may be a character that is used to select
2724 that tag through the fast-tag-selection interface.
2725 See the manual for details.
2726 To disable these tags on a per-file basis, insert anywhere in the file:
2731 (cons (string :tag
"Tag name")
2732 (character :tag
"Access char"))
2733 (const :tag
"Start radio group" (:startgroup
))
2734 (const :tag
"End radio group" (:endgroup
))
2735 (const :tag
"New line" (:newline
)))))
2737 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
2738 "If non-nil, always offer completion for all tags of all agenda files.
2739 Instead of customizing this variable directly, you might want to
2740 set it locally for capture buffers, because there no list of
2741 tags in that file can be created dynamically (there are none).
2743 (add-hook 'org-capture-mode-hook
2745 (set (make-local-variable
2746 'org-complete-tags-always-offer-all-agenda-tags)
2751 (defvar org-file-tags nil
2752 "List of tags that can be inherited by all entries in the file.
2753 The tags will be inherited if the variable `org-use-tag-inheritance'
2754 says they should be.
2755 This variable is populated from #+FILETAGS lines.")
2757 (defcustom org-use-fast-tag-selection
'auto
2758 "Non-nil means use fast tag selection scheme.
2759 This is a special interface to select and deselect tags with single keys.
2760 When nil, fast selection is never used.
2761 When the symbol `auto', fast selection is used if and only if selection
2762 characters for tags have been configured, either through the variable
2763 `org-tag-alist' or through a #+TAGS line in the buffer.
2764 When t, fast selection is always used and selection keys are assigned
2765 automatically if necessary."
2768 (const :tag
"Always" t
)
2769 (const :tag
"Never" nil
)
2770 (const :tag
"When selection characters are configured" 'auto
)))
2772 (defcustom org-fast-tag-selection-single-key nil
2773 "Non-nil means fast tag selection exits after first change.
2774 When nil, you have to press RET to exit it.
2775 During fast tag selection, you can toggle this flag with `C-c'.
2776 This variable can also have the value `expert'. In this case, the window
2777 displaying the tags menu is not even shown, until you press C-c again."
2780 (const :tag
"No" nil
)
2781 (const :tag
"Yes" t
)
2782 (const :tag
"Expert" expert
)))
2784 (defvar org-fast-tag-selection-include-todo nil
2785 "Non-nil means fast tags selection interface will also offer TODO states.
2786 This is an undocumented feature, you should not rely on it.")
2788 (defcustom org-tags-column
(if (featurep 'xemacs
) -
76 -
77)
2789 "The column to which tags should be indented in a headline.
2790 If this number is positive, it specifies the column. If it is negative,
2791 it means that the tags should be flushright to that column. For example,
2792 -80 works well for a normal 80 character screen."
2796 (defcustom org-auto-align-tags t
2797 "Non-nil means realign tags after pro/demotion of TODO state change.
2798 These operations change the length of a headline and therefore shift
2799 the tags around. With this options turned on, after each such operation
2800 the tags are again aligned to `org-tags-column'."
2804 (defcustom org-use-tag-inheritance t
2805 "Non-nil means tags in levels apply also for sublevels.
2806 When nil, only the tags directly given in a specific line apply there.
2807 This may also be a list of tags that should be inherited, or a regexp that
2808 matches tags that should be inherited. Additional control is possible
2809 with the variable `org-tags-exclude-from-inheritance' which gives an
2810 explicit list of tags to be excluded from inheritance., even if the value of
2811 `org-use-tag-inheritance' would select it for inheritance.
2813 If this option is t, a match early-on in a tree can lead to a large
2814 number of matches in the subtree when constructing the agenda or creating
2815 a sparse tree. If you only want to see the first match in a tree during
2816 a search, check out the variable `org-tags-match-list-sublevels'."
2819 (const :tag
"Not" nil
)
2820 (const :tag
"Always" t
)
2821 (repeat :tag
"Specific tags" (string :tag
"Tag"))
2822 (regexp :tag
"Tags matched by regexp")))
2824 (defcustom org-tags-exclude-from-inheritance nil
2825 "List of tags that should never be inherited.
2826 This is a way to exclude a few tags from inheritance. For way to do
2827 the opposite, to actively allow inheritance for selected tags,
2828 see the variable `org-use-tag-inheritance'."
2830 :type
'(repeat (string :tag
"Tag")))
2832 (defun org-tag-inherit-p (tag)
2833 "Check if TAG is one that should be inherited."
2835 ((member tag org-tags-exclude-from-inheritance
) nil
)
2836 ((eq org-use-tag-inheritance t
) t
)
2837 ((not org-use-tag-inheritance
) nil
)
2838 ((stringp org-use-tag-inheritance
)
2839 (string-match org-use-tag-inheritance tag
))
2840 ((listp org-use-tag-inheritance
)
2841 (member tag org-use-tag-inheritance
))
2842 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
2844 (defcustom org-tags-match-list-sublevels t
2845 "Non-nil means list also sublevels of headlines matching a search.
2846 This variable applies to tags/property searches, and also to stuck
2847 projects because this search is based on a tags match as well.
2849 When set to the symbol `indented', sublevels are indented with
2852 Because of tag inheritance (see variable `org-use-tag-inheritance'),
2853 the sublevels of a headline matching a tag search often also match
2854 the same search. Listing all of them can create very long lists.
2855 Setting this variable to nil causes subtrees of a match to be skipped.
2857 This variable is semi-obsolete and probably should always be true. It
2858 is better to limit inheritance to certain tags using the variables
2859 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
2862 (const :tag
"No, don't list them" nil
)
2863 (const :tag
"Yes, do list them" t
)
2864 (const :tag
"List them, indented with leading dots" indented
)))
2866 (defcustom org-tags-sort-function nil
2867 "When set, tags are sorted using this function as a comparator."
2870 (const :tag
"No sorting" nil
)
2871 (const :tag
"Alphabetical" string
<)
2872 (const :tag
"Reverse alphabetical" string
>)
2873 (function :tag
"Custom function" nil
)))
2875 (defvar org-tags-history nil
2876 "History of minibuffer reads for tags.")
2877 (defvar org-last-tags-completion-table nil
2878 "The last used completion table for tags.")
2879 (defvar org-after-tags-change-hook nil
2880 "Hook that is run after the tags in a line have changed.")
2882 (defgroup org-properties nil
2883 "Options concerning properties in Org-mode."
2884 :tag
"Org Properties"
2887 (defcustom org-property-format
"%-10s %s"
2888 "How property key/value pairs should be formatted by `indent-line'.
2889 When `indent-line' hits a property definition, it will format the line
2890 according to this format, mainly to make sure that the values are
2891 lined-up with respect to each other."
2892 :group
'org-properties
2895 (defcustom org-use-property-inheritance nil
2896 "Non-nil means properties apply also for sublevels.
2898 This setting is chiefly used during property searches. Turning it on can
2899 cause significant overhead when doing a search, which is why it is not
2902 When nil, only the properties directly given in the current entry count.
2903 When t, every property is inherited. The value may also be a list of
2904 properties that should have inheritance, or a regular expression matching
2905 properties that should be inherited.
2907 However, note that some special properties use inheritance under special
2908 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
2909 and the properties ending in \"_ALL\" when they are used as descriptor
2910 for valid values of a property.
2912 Note for programmers:
2913 When querying an entry with `org-entry-get', you can control if inheritance
2914 should be used. By default, `org-entry-get' looks only at the local
2915 properties. You can request inheritance by setting the inherit argument
2916 to t (to force inheritance) or to `selective' (to respect the setting
2918 :group
'org-properties
2920 (const :tag
"Not" nil
)
2921 (const :tag
"Always" t
)
2922 (repeat :tag
"Specific properties" (string :tag
"Property"))
2923 (regexp :tag
"Properties matched by regexp")))
2925 (defun org-property-inherit-p (property)
2926 "Check if PROPERTY is one that should be inherited."
2928 ((eq org-use-property-inheritance t
) t
)
2929 ((not org-use-property-inheritance
) nil
)
2930 ((stringp org-use-property-inheritance
)
2931 (string-match org-use-property-inheritance property
))
2932 ((listp org-use-property-inheritance
)
2933 (member property org-use-property-inheritance
))
2934 (t (error "Invalid setting of `org-use-property-inheritance'"))))
2936 (defcustom org-columns-default-format
"%25ITEM %TODO %3PRIORITY %TAGS"
2937 "The default column format, if no other format has been defined.
2938 This variable can be set on the per-file basis by inserting a line
2940 #+COLUMNS: %25ITEM ....."
2941 :group
'org-properties
2944 (defcustom org-columns-ellipses
".."
2945 "The ellipses to be used when a field in column view is truncated.
2946 When this is the empty string, as many characters as possible are shown,
2947 but then there will be no visual indication that the field has been truncated.
2948 When this is a string of length N, the last N characters of a truncated
2949 field are replaced by this string. If the column is narrower than the
2950 ellipses string, only part of the ellipses string will be shown."
2951 :group
'org-properties
2954 (defcustom org-columns-modify-value-for-display-function nil
2955 "Function that modifies values for display in column view.
2956 For example, it can be used to cut out a certain part from a time stamp.
2957 The function must take 2 arguments:
2959 column-title The title of the column (*not* the property name)
2960 value The value that should be modified.
2962 The function should return the value that should be displayed,
2963 or nil if the normal value should be used."
2964 :group
'org-properties
2967 (defcustom org-effort-property
"Effort"
2968 "The property that is being used to keep track of effort estimates.
2969 Effort estimates given in this property need to have the format H:MM."
2970 :group
'org-properties
2971 :group
'org-progress
2972 :type
'(string :tag
"Property"))
2974 (defconst org-global-properties-fixed
2975 '(("VISIBILITY_ALL" .
"folded children content all")
2976 ("CLOCK_MODELINE_TOTAL_ALL" .
"current today repeat all auto"))
2977 "List of property/value pairs that can be inherited by any entry.
2979 These are fixed values, for the preset properties. The user variable
2980 that can be used to add to this list is `org-global-properties'.
2982 The entries in this list are cons cells where the car is a property
2983 name and cdr is a string with the value. If the value represents
2984 multiple items like an \"_ALL\" property, separate the items by
2987 (defcustom org-global-properties nil
2988 "List of property/value pairs that can be inherited by any entry.
2990 This list will be combined with the constant `org-global-properties-fixed'.
2992 The entries in this list are cons cells where the car is a property
2993 name and cdr is a string with the value.
2995 You can set buffer-local values for the same purpose in the variable
2996 `org-file-properties' this by adding lines like
2998 #+PROPERTY: NAME VALUE"
2999 :group
'org-properties
3001 (cons (string :tag
"Property")
3002 (string :tag
"Value"))))
3004 (defvar org-file-properties nil
3005 "List of property/value pairs that can be inherited by any entry.
3006 Valid for the current buffer.
3007 This variable is populated from #+PROPERTY lines.")
3008 (make-variable-buffer-local 'org-file-properties
)
3010 (defgroup org-agenda nil
3011 "Options concerning agenda views in Org-mode."
3015 (defvar org-category nil
3016 "Variable used by org files to set a category for agenda display.
3017 Such files should use a file variable to set it, for example
3019 # -*- mode: org; org-category: \"ELisp\"
3021 or contain a special line
3025 If the file does not specify a category, then file's base name
3027 (make-variable-buffer-local 'org-category
)
3028 (put 'org-category
'safe-local-variable
'(lambda (x) (or (symbolp x
) (stringp x
))))
3030 (defcustom org-agenda-files nil
3031 "The files to be used for agenda display.
3032 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3033 \\[org-remove-file]. You can also use customize to edit the list.
3035 If an entry is a directory, all files in that directory that are matched by
3036 `org-agenda-file-regexp' will be part of the file list.
3038 If the value of the variable is not a list but a single file name, then
3039 the list of agenda files is actually stored and maintained in that file, one
3040 agenda file per line. In this file paths can be given relative to
3041 `org-directory'. Tilde expansion and environment variable substitution
3045 (repeat :tag
"List of files and directories" file
)
3046 (file :tag
"Store list in a file\n" :value
"~/.agenda_files")))
3048 (defcustom org-agenda-file-regexp
"\\`[^.].*\\.org\\'"
3049 "Regular expression to match files for `org-agenda-files'.
3050 If any element in the list in that variable contains a directory instead
3051 of a normal file, all files in that directory that are matched by this
3052 regular expression will be included."
3056 (defcustom org-agenda-text-search-extra-files nil
3057 "List of extra files to be searched by text search commands.
3058 These files will be search in addition to the agenda files by the
3059 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3060 Note that these files will only be searched for text search commands,
3061 not for the other agenda views like todo lists, tag searches or the weekly
3062 agenda. This variable is intended to list notes and possibly archive files
3063 that should also be searched by these two commands.
3064 In fact, if the first element in the list is the symbol `agenda-archives',
3065 than all archive files of all agenda files will be added to the search
3068 :type
'(set :greedy t
3069 (const :tag
"Agenda Archives" agenda-archives
)
3070 (repeat :inline t
(file))))
3072 (if (fboundp 'defvaralias
)
3073 (defvaralias 'org-agenda-multi-occur-extra-files
3074 'org-agenda-text-search-extra-files
))
3076 (defcustom org-agenda-skip-unavailable-files nil
3077 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3078 A nil value means to remove them, after a query, from the list."
3082 (defcustom org-calendar-to-agenda-key
[?c
]
3083 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3084 The command `org-calendar-goto-agenda' will be bound to this key. The
3085 default is the character `c' because then `c' can be used to switch back and
3086 forth between agenda and calendar."
3090 (defcustom org-calendar-agenda-action-key
[?k
]
3091 "The key to be installed in `calendar-mode-map' for agenda-action.
3092 The command `org-agenda-action' will be bound to this key. The
3093 default is the character `k' because we use the same key in the agenda."
3097 (defcustom org-calendar-insert-diary-entry-key
[?i
]
3098 "The key to be installed in `calendar-mode-map' for adding diary entries.
3099 This option is irrelevant until `org-agenda-diary-file' has been configured
3100 to point to an Org-mode file. When that is the case, the command
3101 `org-agenda-diary-entry' will be bound to the key given here, by default
3102 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3103 if you want to continue doing this, you need to change this to a different
3108 (defcustom org-agenda-diary-file
'diary-file
3109 "File to which to add new entries with the `i' key in agenda and calendar.
3110 When this is the symbol `diary-file', the functionality in the Emacs
3111 calendar will be used to add entries to the `diary-file'. But when this
3112 points to a file, `org-agenda-diary-entry' will be used instead."
3115 (const :tag
"The standard Emacs diary file" diary-file
)
3116 (file :tag
"Special Org file diary entries")))
3118 (eval-after-load "calendar"
3120 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3121 'org-calendar-goto-agenda
)
3122 (org-defkey calendar-mode-map org-calendar-agenda-action-key
3124 (add-hook 'calendar-mode-hook
3126 (unless (eq org-agenda-diary-file
'diary-file
)
3127 (define-key calendar-mode-map
3128 org-calendar-insert-diary-entry-key
3129 'org-agenda-diary-entry
))))))
3131 (defgroup org-latex nil
3132 "Options for embedding LaTeX code into Org-mode."
3136 (defcustom org-format-latex-options
3137 '(:foreground default
:background default
:scale
1.0
3138 :html-foreground
"Black" :html-background
"Transparent"
3139 :html-scale
1.0 :matchers
("begin" "$1" "$" "$$" "\\(" "\\["))
3140 "Options for creating images from LaTeX fragments.
3141 This is a property list with the following properties:
3142 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3143 `default' means use the foreground of the default face.
3144 :background the background color, or \"Transparent\".
3145 `default' means use the background of the default face.
3146 :scale a scaling factor for the size of the images, to get more pixels
3147 :html-foreground, :html-background, :html-scale
3148 the same numbers for HTML export.
3149 :matchers a list indicating which matchers should be used to
3150 find LaTeX fragments. Valid members of this list are:
3151 \"begin\" find environments
3152 \"$1\" find single characters surrounded by $.$
3153 \"$\" find math expressions surrounded by $...$
3154 \"$$\" find math expressions surrounded by $$....$$
3155 \"\\(\" find math expressions surrounded by \\(...\\)
3156 \"\\ [\" find math expressions surrounded by \\ [...\\]"
3160 (defcustom org-format-latex-signal-error t
3161 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3162 When nil, just push out a message."
3166 (defcustom org-format-latex-header
"\\documentclass{article}
3167 \\usepackage[usenames]{color}
3168 \\usepackage{amsmath}
3169 \\usepackage[mathscr]{eucal}
3170 \\pagestyle{empty} % do not remove
3173 % The settings below are copied from fullpage.sty
3174 \\setlength{\\textwidth}{\\paperwidth}
3175 \\addtolength{\\textwidth}{-3cm}
3176 \\setlength{\\oddsidemargin}{1.5cm}
3177 \\addtolength{\\oddsidemargin}{-2.54cm}
3178 \\setlength{\\evensidemargin}{\\oddsidemargin}
3179 \\setlength{\\textheight}{\\paperheight}
3180 \\addtolength{\\textheight}{-\\headheight}
3181 \\addtolength{\\textheight}{-\\headsep}
3182 \\addtolength{\\textheight}{-\\footskip}
3183 \\addtolength{\\textheight}{-3cm}
3184 \\setlength{\\topmargin}{1.5cm}
3185 \\addtolength{\\topmargin}{-2.54cm}"
3186 "The document header used for processing LaTeX fragments.
3187 It is imperative that this header make sure that no page number
3188 appears on the page. The package defined in the variables
3189 `org-export-latex-default-packages-alist' and `org-export-latex-packages-alist'
3190 will either replace the placeholder \"[PACKAGES]\" in this header, or they
3195 (defvar org-format-latex-header-extra nil
)
3197 (defun org-set-packages-alist (var val
)
3198 "Set the packages alist and make sure it has 3 elements per entry."
3199 (set var
(mapcar (lambda (x)
3200 (if (and (consp x
) (= (length x
) 2))
3201 (list (car x
) (nth 1 x
) t
)
3205 (defun org-get-packages-alist (var)
3207 "Get the packages alist and make sure it has 3 elements per entry."
3209 (if (and (consp x
) (= (length x
) 2))
3210 (list (car x
) (nth 1 x
) t
)
3212 (default-value var
)))
3214 ;; The following variables are defined here because is it also used
3215 ;; when formatting latex fragments. Originally it was part of the
3216 ;; LaTeX exporter, which is why the name includes "export".
3217 (defcustom org-export-latex-default-packages-alist
3218 '(("AUTO" "inputenc" t
)
3222 ("" "longtable" nil
)
3234 "Alist of default packages to be inserted in the header.
3235 Change this only if one of the packages here causes an incompatibility
3236 with another package you are using.
3237 The packages in this list are needed by one part or another of Org-mode
3238 to function properly.
3240 - inputenc, fontenc: for basic font and character selection
3241 - textcomp, marvosymb, wasysym, latexsym, amssym: for various symbols used
3242 for interpreting the entities in `org-entities'. You can skip some of these
3243 packages if you don't use any of the symbols in it.
3244 - graphicx: for including images
3245 - float, wrapfig: for figure placement
3246 - longtable: for long tables
3247 - hyperref: for cross references
3249 Therefore you should not modify this variable unless you know what you
3250 are doing. The one reason to change it anyway is that you might be loading
3251 some other package that conflicts with one of the default packages.
3252 Each cell is of the format \( \"options\" \"package\" snippet-flag\).
3253 If SNIPPET-FLAG is t, the package also needs to be included when
3254 compiling LaTeX snippets into images for inclusion into HTML."
3255 :group
'org-export-latex
3256 :set
'org-set-packages-alist
3257 :get
'org-get-packages-alist
3260 (list :tag
"options/package pair"
3261 (string :tag
"options")
3262 (string :tag
"package")
3263 (boolean :tag
"Snippet"))
3264 (string :tag
"A line of LaTeX"))))
3266 (defcustom org-export-latex-packages-alist nil
3267 "Alist of packages to be inserted in every LaTeX header.
3268 These will be inserted after `org-export-latex-default-packages-alist'.
3269 Each cell is of the format \( \"options\" \"package\" snippet-flag \).
3270 SNIPPET-FLAG, when t, indicates that this package is also needed when
3271 turning LaTeX snippets into images for inclusion into HTML.
3272 Make sure that you only list packages here which:
3273 - you want in every file
3274 - do not conflict with the default packages in
3275 `org-export-latex-default-packages-alist'
3276 - do not conflict with the setup in `org-format-latex-header'."
3277 :group
'org-export-latex
3278 :set
'org-set-packages-alist
3279 :get
'org-get-packages-alist
3282 (list :tag
"options/package pair"
3283 (string :tag
"options")
3284 (string :tag
"package")
3285 (boolean :tag
"Snippet"))
3286 (string :tag
"A line of LaTeX"))))
3289 (defgroup org-appearance nil
3290 "Settings for Org-mode appearance."
3291 :tag
"Org Appearance"
3294 (defcustom org-level-color-stars-only nil
3295 "Non-nil means fontify only the stars in each headline.
3296 When nil, the entire headline is fontified.
3297 Changing it requires restart of `font-lock-mode' to become effective
3298 also in regions already fontified."
3299 :group
'org-appearance
3302 (defcustom org-hide-leading-stars nil
3303 "Non-nil means hide the first N-1 stars in a headline.
3304 This works by using the face `org-hide' for these stars. This
3305 face is white for a light background, and black for a dark
3306 background. You may have to customize the face `org-hide' to
3308 Changing it requires restart of `font-lock-mode' to become effective
3309 also in regions already fontified.
3310 You may also set this on a per-file basis by adding one of the following
3311 lines to the buffer:
3313 #+STARTUP: hidestars
3314 #+STARTUP: showstars"
3315 :group
'org-appearance
3318 (defcustom org-hidden-keywords nil
3319 "List of symbols corresponding to keywords to be hidden the org buffer.
3320 For example, a value '(title) for this list will make the document's title
3321 appear in the buffer without the initial #+TITLE: keyword."
3322 :group
'org-appearance
3323 :type
'(set (const :tag
"#+AUTHOR" author
)
3324 (const :tag
"#+DATE" date
)
3325 (const :tag
"#+EMAIL" email
)
3326 (const :tag
"#+TITLE" title
)))
3328 (defcustom org-fontify-done-headline nil
3329 "Non-nil means change the face of a headline if it is marked DONE.
3330 Normally, only the TODO/DONE keyword indicates the state of a headline.
3331 When this is non-nil, the headline after the keyword is set to the
3332 `org-headline-done' as an additional indication."
3333 :group
'org-appearance
3336 (defcustom org-fontify-emphasized-text t
3337 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
3338 Changing this variable requires a restart of Emacs to take effect."
3339 :group
'org-appearance
3342 (defcustom org-fontify-whole-heading-line nil
3343 "Non-nil means fontify the whole line for headings.
3344 This is useful when setting a background color for the
3346 :group
'org-appearance
3349 (defcustom org-highlight-latex-fragments-and-specials nil
3350 "Non-nil means fontify what is treated specially by the exporters."
3351 :group
'org-appearance
3354 (defcustom org-hide-emphasis-markers nil
3355 "Non-nil mean font-lock should hide the emphasis marker characters."
3356 :group
'org-appearance
3359 (defcustom org-pretty-entities nil
3360 "Non-nil means show entities as UTF8 characters.
3361 When nil, the \\name form remains in the buffer."
3362 :group
'org-appearance
3365 (defcustom org-pretty-entities-include-sub-superscripts t
3366 "Non-nil means, pretty entity display includes formatting sub/superscripts."
3367 :group
'org-appearance
3370 (defvar org-emph-re nil
3371 "Regular expression for matching emphasis.
3372 After a match, the match groups contain these elements:
3373 0 The match of the full regular expression, including the characters
3374 before and after the proper match
3375 1 The character before the proper match, or empty at beginning of line
3376 2 The proper match, including the leading and trailing markers
3377 3 The leading marker like * or /, indicating the type of highlighting
3378 4 The text between the emphasis markers, not including the markers
3379 5 The character after the match, empty at the end of a line")
3380 (defvar org-verbatim-re nil
3381 "Regular expression for matching verbatim text.")
3382 (defvar org-emphasis-regexp-components
) ; defined just below
3383 (defvar org-emphasis-alist
) ; defined just below
3384 (defun org-set-emph-re (var val
)
3385 "Set variable and compute the emphasis regular expression."
3387 (when (and (boundp 'org-emphasis-alist
)
3388 (boundp 'org-emphasis-regexp-components
)
3389 org-emphasis-alist org-emphasis-regexp-components
)
3390 (let* ((e org-emphasis-regexp-components
)
3396 (body1 (concat body
"*?"))
3397 (markers (mapconcat 'car org-emphasis-alist
""))
3398 (vmarkers (mapconcat
3399 (lambda (x) (if (eq (nth 4 x
) 'verbatim
) (car x
) ""))
3400 org-emphasis-alist
"")))
3401 ;; make sure special characters appear at the right position in the class
3402 (if (string-match "\\^" markers
)
3403 (setq markers
(concat (replace-match "" t t markers
) "^")))
3404 (if (string-match "-" markers
)
3405 (setq markers
(concat (replace-match "" t t markers
) "-")))
3406 (if (string-match "\\^" vmarkers
)
3407 (setq vmarkers
(concat (replace-match "" t t vmarkers
) "^")))
3408 (if (string-match "-" vmarkers
)
3409 (setq vmarkers
(concat (replace-match "" t t vmarkers
) "-")))
3411 (setq body1
(concat body1
"\\(?:\n" body
"*?\\)\\{0,"
3412 (int-to-string nl
) "\\}")))
3415 (concat "\\([" pre
"]\\|^\\)"
3417 "\\([" markers
"]\\)"
3425 "\\([" post
"]\\|$\\)"))
3426 (setq org-verbatim-re
3427 (concat "\\([" pre
"]\\|^\\)"
3429 "\\([" vmarkers
"]\\)"
3437 "\\([" post
"]\\|$\\)")))))
3439 (defcustom org-emphasis-regexp-components
3440 '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r\n,\"'" "." 1)
3441 "Components used to build the regular expression for emphasis.
3442 This is a list with five entries. Terminology: In an emphasis string
3443 like \" *strong word* \", we call the initial space PREMATCH, the final
3444 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
3445 and \"trong wor\" is the body. The different components in this variable
3446 specify what is allowed/forbidden in each part:
3448 pre Chars allowed as prematch. Beginning of line will be allowed too.
3449 post Chars allowed as postmatch. End of line will be allowed too.
3450 border The chars *forbidden* as border characters.
3451 body-regexp A regexp like \".\" to match a body character. Don't use
3452 non-shy groups here, and don't allow newline here.
3453 newline The maximum number of newlines allowed in an emphasis exp.
3455 Use customize to modify this, or restart Emacs after changing it."
3456 :group
'org-appearance
3457 :set
'org-set-emph-re
3459 (sexp :tag
"Allowed chars in pre ")
3460 (sexp :tag
"Allowed chars in post ")
3461 (sexp :tag
"Forbidden chars in border ")
3462 (sexp :tag
"Regexp for body ")
3463 (integer :tag
"number of newlines allowed")
3464 (option (boolean :tag
"Please ignore this button"))))
3466 (defcustom org-emphasis-alist
3467 `(("*" bold
"<b>" "</b>")
3468 ("/" italic
"<i>" "</i>")
3469 ("_" underline
"<span style=\"text-decoration:underline;\">" "</span>")
3470 ("=" org-code
"<code>" "</code>" verbatim
)
3471 ("~" org-verbatim
"<code>" "</code>" verbatim
)
3472 ("+" ,(if (featurep 'xemacs
) 'org-table
'(:strike-through t
))
3475 "Special syntax for emphasized text.
3476 Text starting and ending with a special character will be emphasized, for
3477 example *bold*, _underlined_ and /italic/. This variable sets the marker
3478 characters, the face to be used by font-lock for highlighting in Org-mode
3479 Emacs buffers, and the HTML tags to be used for this.
3480 For LaTeX export, see the variable `org-export-latex-emphasis-alist'.
3481 For DocBook export, see the variable `org-export-docbook-emphasis-alist'.
3482 Use customize to modify this, or restart Emacs after changing it."
3483 :group
'org-appearance
3484 :set
'org-set-emph-re
3487 (string :tag
"Marker character")
3489 (face :tag
"Font-lock-face")
3490 (plist :tag
"Face property list"))
3491 (string :tag
"HTML start tag")
3492 (string :tag
"HTML end tag")
3493 (option (const verbatim
)))))
3495 (defvar org-protecting-blocks
3496 '("src" "example" "latex" "ascii" "html" "docbook" "ditaa" "dot" "r" "R")
3497 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
3498 This is needed for font-lock setup.")
3500 ;;; Miscellaneous options
3502 (defgroup org-completion nil
3503 "Completion in Org-mode."
3504 :tag
"Org Completion"
3507 (defcustom org-completion-use-ido nil
3508 "Non-nil means use ido completion wherever possible.
3509 Note that `ido-mode' must be active for this variable to be relevant.
3510 If you decide to turn this variable on, you might well want to turn off
3511 `org-outline-path-complete-in-steps'.
3512 See also `org-completion-use-iswitchb'."
3513 :group
'org-completion
3516 (defcustom org-completion-use-iswitchb nil
3517 "Non-nil means use iswitchb completion wherever possible.
3518 Note that `iswitchb-mode' must be active for this variable to be relevant.
3519 If you decide to turn this variable on, you might well want to turn off
3520 `org-outline-path-complete-in-steps'.
3521 Note that this variable has only an effect if `org-completion-use-ido' is nil."
3522 :group
'org-completion
3525 (defcustom org-completion-fallback-command
'hippie-expand
3526 "The expansion command called by \\[pcomplete] in normal context.
3527 Normal means, no org-mode-specific context."
3528 :group
'org-completion
3531 ;;; Functions and variables from their packages
3532 ;; Declared here to avoid compiler warnings
3535 (defvar outline-mode-menu-heading
)
3536 (defvar outline-mode-menu-show
)
3537 (defvar outline-mode-menu-hide
)
3538 (defvar zmacs-regions
) ; XEmacs regions
3541 (defvar mark-active
)
3544 (declare-function calendar-absolute-from-iso
"cal-iso" (date))
3545 (declare-function calendar-forward-day
"cal-move" (arg))
3546 (declare-function calendar-goto-date
"cal-move" (date))
3547 (declare-function calendar-goto-today
"cal-move" ())
3548 (declare-function calendar-iso-from-absolute
"cal-iso" (date))
3549 (defvar calc-embedded-close-formula
)
3550 (defvar calc-embedded-open-formula
)
3551 (declare-function cdlatex-tab
"ext:cdlatex" ())
3552 (declare-function dired-get-filename
"dired" (&optional localp no-error-if-not-filep
))
3553 (defvar font-lock-unfontify-region-function
)
3554 (declare-function iswitchb-read-buffer
"iswitchb"
3555 (prompt &optional default require-match start matches-set
))
3556 (defvar iswitchb-temp-buflist
)
3557 (declare-function org-gnus-follow-link
"org-gnus" (&optional group article
))
3558 (defvar org-agenda-tags-todo-honor-ignore-options
)
3559 (declare-function org-agenda-skip
"org-agenda" ())
3561 org-format-agenda-item
"org-agenda"
3562 (extra txt
&optional category tags dotime noprefix remove-re habitp
))
3563 (declare-function org-agenda-new-marker
"org-agenda" (&optional pos
))
3564 (declare-function org-agenda-change-all-lines
"org-agenda"
3565 (newhead hdmarker
&optional fixface just-this
))
3566 (declare-function org-agenda-set-restriction-lock
"org-agenda" (&optional type
))
3567 (declare-function org-agenda-maybe-redo
"org-agenda" ())
3568 (declare-function org-agenda-save-markers-for-cut-and-paste
"org-agenda"
3570 (declare-function org-agenda-copy-local-variable
"org-agenda" (var))
3571 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
3572 "org-agenda" (&optional end
))
3573 (declare-function org-inlinetask-remove-END-maybe
"org-inlinetask" ())
3574 (declare-function org-inlinetask-in-task-p
"org-inlinetask" ())
3575 (declare-function org-inlinetask-goto-beginning
"org-inlinetask" ())
3576 (declare-function org-inlinetask-goto-end
"org-inlinetask" ())
3577 (declare-function org-indent-mode
"org-indent" (&optional arg
))
3578 (declare-function parse-time-string
"parse-time" (string))
3579 (declare-function org-attach-reveal
"org-attach" (&optional if-exists
))
3580 (declare-function org-export-latex-fix-inputenc
"org-latex" ())
3581 (declare-function orgtbl-send-table
"org-table" (&optional maybe
))
3582 (defvar remember-data-file
)
3583 (defvar texmathp-why
)
3584 (declare-function speedbar-line-directory
"speedbar" (&optional depth
))
3585 (declare-function table--at-cell-p
"table" (position &optional object at-column
))
3587 (defvar w3m-current-url
)
3588 (defvar w3m-current-title
)
3590 (defvar org-latex-regexps
)
3592 ;;; Autoload and prepare some org modules
3594 ;; Some table stuff that needs to be defined here, because it is used
3595 ;; by the functions setting up org-mode or checking for table context.
3597 (defconst org-table-any-line-regexp
"^[ \t]*\\(|\\|\\+-[-+]\\)"
3598 "Detect an org-type or table-type table.")
3599 (defconst org-table-line-regexp
"^[ \t]*|"
3600 "Detect an org-type table line.")
3601 (defconst org-table-dataline-regexp
"^[ \t]*|[^-]"
3602 "Detect an org-type table line.")
3603 (defconst org-table-hline-regexp
"^[ \t]*|-"
3604 "Detect an org-type table hline.")
3605 (defconst org-table1-hline-regexp
"^[ \t]*\\+-[-+]"
3606 "Detect a table-type table hline.")
3607 (defconst org-table-any-border-regexp
"^[ \t]*[^|+ \t]"
3608 "Detect the first line outside a table when searching from within it.
3609 This works for both table types.")
3611 ;; Autoload the functions in org-table.el that are needed by functions here.
3614 (org-autoload "org-table"
3615 '(org-table-align org-table-begin org-table-blank-field
3616 org-table-convert org-table-convert-region org-table-copy-down
3617 org-table-copy-region org-table-create
3618 org-table-create-or-convert-from-region
3619 org-table-create-with-table.el org-table-current-dline
3620 org-table-cut-region org-table-delete-column org-table-edit-field
3621 org-table-edit-formulas org-table-end org-table-eval-formula
3622 org-table-export org-table-field-info
3623 org-table-get-stored-formulas org-table-goto-column
3624 org-table-hline-and-move org-table-import org-table-insert-column
3625 org-table-insert-hline org-table-insert-row org-table-iterate
3626 org-table-justify-field-maybe org-table-kill-row
3627 org-table-maybe-eval-formula org-table-maybe-recalculate-line
3628 org-table-move-column org-table-move-column-left
3629 org-table-move-column-right org-table-move-row
3630 org-table-move-row-down org-table-move-row-up
3631 org-table-next-field org-table-next-row org-table-paste-rectangle
3632 org-table-previous-field org-table-recalculate
3633 org-table-rotate-recalc-marks org-table-sort-lines org-table-sum
3634 org-table-toggle-coordinate-overlays
3635 org-table-toggle-formula-debugger org-table-wrap-region
3636 orgtbl-mode turn-on-orgtbl org-table-to-lisp
3637 orgtbl-to-generic orgtbl-to-tsv orgtbl-to-csv orgtbl-to-latex
3638 orgtbl-to-orgtbl orgtbl-to-html orgtbl-to-texinfo
)))
3640 (defun org-at-table-p (&optional table-type
)
3641 "Return t if the cursor is inside an org-type table.
3642 If TABLE-TYPE is non-nil, also check for table.el-type tables."
3643 (if org-enable-table-editor
3645 (beginning-of-line 1)
3646 (looking-at (if table-type org-table-any-line-regexp
3647 org-table-line-regexp
)))
3649 (defsubst org-table-p
() (org-at-table-p))
3651 (defun org-at-table.el-p
()
3652 "Return t if and only if we are at a table.el table."
3653 (and (org-at-table-p 'any
)
3655 (goto-char (org-table-begin 'any
))
3656 (looking-at org-table1-hline-regexp
))))
3657 (defun org-table-recognize-table.el
()
3658 "If there is a table.el table nearby, recognize it and move into it."
3659 (if org-table-tab-recognizes-table.el
3660 (if (org-at-table.el-p
)
3662 (beginning-of-line 1)
3663 (if (looking-at org-table-dataline-regexp
)
3665 (if (looking-at org-table1-hline-regexp
)
3667 (beginning-of-line 2)
3668 (if (looking-at org-table-any-border-regexp
)
3669 (beginning-of-line -
1)))))
3670 (if (re-search-forward "|" (org-table-end t
) t
)
3673 (if (table--at-cell-p (point))
3675 (message "recognizing table.el table...")
3676 (table-recognize-table)
3677 (message "recognizing table.el table...done")))
3678 (error "This should not happen"))
3683 (defun org-at-table-hline-p ()
3684 "Return t if the cursor is inside a hline in a table."
3685 (if org-enable-table-editor
3687 (beginning-of-line 1)
3688 (looking-at org-table-hline-regexp
))
3691 (defvar org-table-clean-did-remove-column nil
)
3693 (defun org-table-map-tables (function &optional quietly
)
3694 "Apply FUNCTION to the start of all tables in the buffer."
3698 (goto-char (point-min))
3699 (while (re-search-forward org-table-any-line-regexp nil t
)
3701 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
3702 (beginning-of-line 1)
3703 (when (looking-at org-table-line-regexp
)
3704 (save-excursion (funcall function
))
3705 (or (looking-at org-table-line-regexp
)
3707 (re-search-forward org-table-any-border-regexp nil
1))))
3708 (unless quietly
(message "Mapping tables: done")))
3710 ;; Declare and autoload functions from org-exp.el & Co
3712 (declare-function org-default-export-plist
"org-exp")
3713 (declare-function org-infile-export-plist
"org-exp")
3714 (declare-function org-get-current-options
"org-exp")
3716 (org-autoload "org-exp"
3717 '(org-export org-export-visible
3718 org-insert-export-options-template
3719 org-table-clean-before-export
))
3720 (org-autoload "org-ascii"
3721 '(org-export-as-ascii org-export-ascii-preprocess
3722 org-export-as-ascii-to-buffer org-replace-region-by-ascii
3723 org-export-region-as-ascii
))
3724 (org-autoload "org-latex"
3725 '(org-export-as-latex-batch org-export-as-latex-to-buffer
3726 org-replace-region-by-latex org-export-region-as-latex
3727 org-export-as-latex org-export-as-pdf
3728 org-export-as-pdf-and-open
))
3729 (org-autoload "org-html"
3730 '(org-export-as-html-and-open
3731 org-export-as-html-batch org-export-as-html-to-buffer
3732 org-replace-region-by-html org-export-region-as-html
3733 org-export-as-html
))
3734 (org-autoload "org-docbook"
3735 '(org-export-as-docbook-batch org-export-as-docbook-to-buffer
3736 org-replace-region-by-docbook org-export-region-as-docbook
3737 org-export-as-docbook-pdf org-export-as-docbook-pdf-and-open
3738 org-export-as-docbook
))
3739 (org-autoload "org-icalendar"
3740 '(org-export-icalendar-this-file
3741 org-export-icalendar-all-agenda-files
3742 org-export-icalendar-combine-agenda-files
))
3743 (org-autoload "org-xoxo" '(org-export-as-xoxo))
3744 (org-autoload "org-beamer" '(org-beamer-mode org-beamer-sectioning
)))
3746 ;; Declare and autoload functions from org-agenda.el
3749 (org-autoload "org-agenda"
3750 '(org-agenda org-agenda-list org-search-view
3751 org-todo-list org-tags-view org-agenda-list-stuck-projects
3752 org-diary org-agenda-to-appt
3753 org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
)))
3755 ;; Autoload org-remember
3758 (org-autoload "org-remember"
3759 '(org-remember-insinuate org-remember-annotation
3760 org-remember-apply-template org-remember org-remember-handler
)))
3763 (org-autoload "org-capture"
3764 '(org-capture org-capture-insert-template-here
3765 org-capture-import-remember-templates
)))
3767 ;; Autoload org-clock.el
3769 (declare-function org-clock-save-markers-for-cut-and-paste
"org-clock"
3771 (declare-function org-clock-update-mode-line
"org-clock" ())
3772 (declare-function org-resolve-clocks
"org-clock"
3773 (&optional also-non-dangling-p prompt last-valid
))
3774 (defvar org-clock-start-time
)
3775 (defvar org-clock-marker
(make-marker)
3776 "Marker recording the last clock-in.")
3777 (defvar org-clock-hd-marker
(make-marker)
3778 "Marker recording the last clock-in, but the headline position.")
3779 (defvar org-clock-heading
""
3780 "The heading of the current clock entry.")
3781 (defun org-clock-is-active ()
3782 "Return non-nil if clock is currently running.
3783 The return value is actually the clock marker."
3784 (marker-buffer org-clock-marker
))
3789 '(org-clock-in org-clock-out org-clock-cancel
3790 org-clock-goto org-clock-sum org-clock-display
3791 org-clock-remove-overlays org-clock-report
3792 org-clocktable-shift org-dblock-write
:clocktable
3793 org-get-clocktable org-resolve-clocks
)))
3795 (defun org-clock-update-time-maybe ()
3796 "If this is a CLOCK line, update it and return t.
3797 Otherwise, return nil."
3800 (beginning-of-line 1)
3801 (skip-chars-forward " \t")
3802 (when (looking-at org-clock-string
)
3803 (let ((re (concat "[ \t]*" org-clock-string
3804 " *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
3805 "\\([ \t]*=>.*\\)?\\)?"))
3808 ((not (looking-at re
))
3810 ((not (match-end 2))
3811 (when (and (equal (marker-buffer org-clock-marker
) (current-buffer))
3812 (> org-clock-marker
(point))
3813 (<= org-clock-marker
(point-at-eol)))
3814 ;; The clock is running here
3815 (setq org-clock-start-time
3817 (org-parse-time-string (match-string 1))))
3818 (org-clock-update-mode-line)))
3820 (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
3822 (setq ts
(match-string 1)
3823 te
(match-string 3))
3824 (setq s
(- (org-float-time
3825 (apply 'encode-time
(org-parse-time-string te
)))
3827 (apply 'encode-time
(org-parse-time-string ts
))))
3830 h
(floor (/ s
3600))
3834 (insert " => " (format (if neg
"-%d:%02d" "%2d:%02d") h m
))
3837 (defun org-check-running-clock ()
3838 "Check if the current buffer contains the running clock.
3839 If yes, offer to stop it and to save the buffer with the changes."
3840 (when (and (equal (marker-buffer org-clock-marker
) (current-buffer))
3841 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
3844 (when (y-or-n-p "Save changed buffer?")
3847 (defun org-clocktable-try-shift (dir n
)
3848 "Check if this line starts a clock table, if yes, shift the time block."
3849 (when (org-match-line "#\\+BEGIN: clocktable\\>")
3850 (org-clocktable-shift dir n
)))
3852 ;; Autoload org-timer.el
3857 '(org-timer-start org-timer org-timer-item
3858 org-timer-change-times-in-region
3860 org-timer-reset-timers
3861 org-timer-show-remaining-time
)))
3863 ;; Autoload org-feed.el
3868 '(org-feed-update org-feed-update-all org-feed-goto-inbox
)))
3871 ;; Autoload org-indent.el
3873 ;; Define the variable already here, to make sure we have it.
3874 (defvar org-indent-mode nil
3875 "Non-nil if Org-Indent mode is enabled.
3876 Use the command `org-indent-mode' to change this variable.")
3881 '(org-indent-mode)))
3883 ;; Autoload org-mobile.el
3888 '(org-mobile-push org-mobile-pull org-mobile-create-sumo-agenda
)))
3890 ;; Autoload archiving code
3891 ;; The stuff that is needed for cycling and tags has to be defined here.
3893 (defgroup org-archive nil
3894 "Options concerning archiving in Org-mode."
3896 :group
'org-structure
)
3898 (defcustom org-archive-location
"%s_archive::"
3899 "The location where subtrees should be archived.
3901 The value of this variable is a string, consisting of two parts,
3902 separated by a double-colon. The first part is a filename and
3903 the second part is a headline.
3905 When the filename is omitted, archiving happens in the same file.
3906 %s in the filename will be replaced by the current file
3907 name (without the directory part). Archiving to a different file
3908 is useful to keep archived entries from contributing to the
3911 The archived entries will be filed as subtrees of the specified
3912 headline. When the headline is omitted, the subtrees are simply
3913 filed away at the end of the file, as top-level entries. Also in
3914 the heading you can use %s to represent the file name, this can be
3915 useful when using the same archive for a number of different files.
3917 Here are a few examples:
3919 If the current file is Projects.org, archive in file
3920 Projects.org_archive, as top-level trees. This is the default.
3922 \"::* Archived Tasks\"
3923 Archive in the current file, under the top-level headline
3924 \"* Archived Tasks\".
3926 \"~/org/archive.org::\"
3927 Archive in file ~/org/archive.org (absolute path), as top-level trees.
3929 \"~/org/archive.org::From %s\"
3930 Archive in file ~/org/archive.org (absolute path), under headlines
3931 \"From FILENAME\" where file name is the current file name.
3933 \"basement::** Finished Tasks\"
3934 Archive in file ./basement (relative path), as level 3 trees
3935 below the level 2 heading \"** Finished Tasks\".
3937 You may set this option on a per-file basis by adding to the buffer a
3940 #+ARCHIVE: basement::** Finished Tasks
3942 You may also define it locally for a subtree by setting an ARCHIVE property
3943 in the entry. If such a property is found in an entry, or anywhere up
3944 the hierarchy, it will be used."
3948 (defcustom org-archive-tag
"ARCHIVE"
3949 "The tag that marks a subtree as archived.
3950 An archived subtree does not open during visibility cycling, and does
3951 not contribute to the agenda listings.
3952 After changing this, font-lock must be restarted in the relevant buffers to
3953 get the proper fontification."
3955 :group
'org-keywords
3958 (defcustom org-agenda-skip-archived-trees t
3959 "Non-nil means the agenda will skip any items located in archived trees.
3960 An archived tree is a tree marked with the tag ARCHIVE. The use of this
3961 variable is no longer recommended, you should leave it at the value t.
3962 Instead, use the key `v' to cycle the archives-mode in the agenda."
3964 :group
'org-agenda-skip
3967 (defcustom org-columns-skip-archived-trees t
3968 "Non-nil means ignore archived trees when creating column view."
3970 :group
'org-properties
3973 (defcustom org-cycle-open-archived-trees nil
3974 "Non-nil means `org-cycle' will open archived trees.
3975 An archived tree is a tree marked with the tag ARCHIVE.
3976 When nil, archived trees will stay folded. You can still open them with
3977 normal outline commands like `show-all', but not with the cycling commands."
3982 (defcustom org-sparse-tree-open-archived-trees nil
3983 "Non-nil means sparse tree construction shows matches in archived trees.
3984 When nil, matches in these trees are highlighted, but the trees are kept in
3987 :group
'org-sparse-trees
3990 (defun org-cycle-hide-archived-subtrees (state)
3991 "Re-hide all archived subtrees after a visibility state change."
3992 (when (and (not org-cycle-open-archived-trees
)
3993 (not (memq state
'(overview folded
))))
3995 (let* ((globalp (memq state
'(contents all
)))
3996 (beg (if globalp
(point-min) (point)))
3997 (end (if globalp
(point-max) (org-end-of-subtree t
))))
3998 (org-hide-archived-subtrees beg end
)
4000 (if (looking-at (concat ".*:" org-archive-tag
":"))
4001 (message "%s" (substitute-command-keys
4002 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4004 (defun org-force-cycle-archived ()
4005 "Cycle subtree even if it is archived."
4007 (setq this-command
'org-cycle
)
4008 (let ((org-cycle-open-archived-trees t
))
4009 (call-interactively 'org-cycle
)))
4011 (defun org-hide-archived-subtrees (beg end
)
4012 "Re-hide all archived subtrees after a visibility state change."
4014 (let* ((re (concat ":" org-archive-tag
":")))
4016 (while (re-search-forward re end t
)
4017 (when (org-on-heading-p)
4018 (org-flag-subtree t
)
4019 (org-end-of-subtree t
))))))
4021 (defun org-flag-subtree (flag)
4023 (org-back-to-heading t
)
4024 (outline-end-of-heading)
4025 (outline-flag-region (point)
4026 (progn (org-end-of-subtree t
) (point))
4029 (defalias 'org-advertized-archive-subtree
'org-archive-subtree
)
4032 (org-autoload "org-archive"
4033 '(org-add-archive-files org-archive-subtree
4034 org-archive-to-archive-sibling org-toggle-archive-tag
4035 org-archive-subtree-default
4036 org-archive-subtree-default-with-confirmation
)))
4038 ;; Autoload Column View Code
4040 (declare-function org-columns-number-to-string
"org-colview")
4041 (declare-function org-columns-get-format-and-top-level
"org-colview")
4042 (declare-function org-columns-compute
"org-colview")
4044 (org-autoload (if (featurep 'xemacs
) "org-colview-xemacs" "org-colview")
4045 '(org-columns-number-to-string org-columns-get-format-and-top-level
4046 org-columns-compute org-agenda-columns org-columns-remove-overlays
4047 org-columns org-insert-columns-dblock org-dblock-write
:columnview
))
4051 (declare-function org-id-store-link
"org-id")
4052 (declare-function org-id-locations-load
"org-id")
4053 (declare-function org-id-locations-save
"org-id")
4054 (defvar org-id-track-globally
)
4055 (org-autoload "org-id"
4056 '(org-id-get-create org-id-new org-id-copy org-id-get
4057 org-id-get-with-outline-path-completion
4058 org-id-get-with-outline-drilling org-id-store-link
4059 org-id-goto org-id-find org-id-store-link
))
4061 ;; Autoload Plotting Code
4063 (org-autoload "org-plot"
4064 '(org-plot/gnuplot
))
4066 ;;; Variables for pre-computed regular expressions, all buffer local
4068 (defvar org-drawer-regexp nil
4069 "Matches first line of a hidden block.")
4070 (make-variable-buffer-local 'org-drawer-regexp
)
4071 (defvar org-todo-regexp nil
4072 "Matches any of the TODO state keywords.")
4073 (make-variable-buffer-local 'org-todo-regexp
)
4074 (defvar org-not-done-regexp nil
4075 "Matches any of the TODO state keywords except the last one.")
4076 (make-variable-buffer-local 'org-not-done-regexp
)
4077 (defvar org-not-done-heading-regexp nil
4078 "Matches a TODO headline that is not done.")
4079 (make-variable-buffer-local 'org-not-done-regexp
)
4080 (defvar org-todo-line-regexp nil
4081 "Matches a headline and puts TODO state into group 2 if present.")
4082 (make-variable-buffer-local 'org-todo-line-regexp
)
4083 (defvar org-complex-heading-regexp nil
4084 "Matches a headline and puts everything into groups:
4086 group 2: The todo keyword, maybe
4087 group 3: Priority cookie
4088 group 4: True headline
4090 (make-variable-buffer-local 'org-complex-heading-regexp
)
4091 (defvar org-complex-heading-regexp-format nil
4092 "Printf format to make regexp to match an exact headline.
4093 This regexp will match the headline of any node which hase the exact
4094 headline text that is put into the format, but may have any TODO state,
4095 priority and tags.")
4096 (make-variable-buffer-local 'org-complex-heading-regexp-format
)
4097 (defvar org-todo-line-tags-regexp nil
4098 "Matches a headline and puts TODO state into group 2 if present.
4099 Also put tags into group 4 if tags are present.")
4100 (make-variable-buffer-local 'org-todo-line-tags-regexp
)
4101 (defvar org-nl-done-regexp nil
4102 "Matches newline followed by a headline with the DONE keyword.")
4103 (make-variable-buffer-local 'org-nl-done-regexp
)
4104 (defvar org-looking-at-done-regexp nil
4105 "Matches the DONE keyword a point.")
4106 (make-variable-buffer-local 'org-looking-at-done-regexp
)
4107 (defvar org-ds-keyword-length
12
4108 "Maximum length of the Deadline and SCHEDULED keywords.")
4109 (make-variable-buffer-local 'org-ds-keyword-length
)
4110 (defvar org-deadline-regexp nil
4111 "Matches the DEADLINE keyword.")
4112 (make-variable-buffer-local 'org-deadline-regexp
)
4113 (defvar org-deadline-time-regexp nil
4114 "Matches the DEADLINE keyword together with a time stamp.")
4115 (make-variable-buffer-local 'org-deadline-time-regexp
)
4116 (defvar org-deadline-line-regexp nil
4117 "Matches the DEADLINE keyword and the rest of the line.")
4118 (make-variable-buffer-local 'org-deadline-line-regexp
)
4119 (defvar org-scheduled-regexp nil
4120 "Matches the SCHEDULED keyword.")
4121 (make-variable-buffer-local 'org-scheduled-regexp
)
4122 (defvar org-scheduled-time-regexp nil
4123 "Matches the SCHEDULED keyword together with a time stamp.")
4124 (make-variable-buffer-local 'org-scheduled-time-regexp
)
4125 (defvar org-closed-time-regexp nil
4126 "Matches the CLOSED keyword together with a time stamp.")
4127 (make-variable-buffer-local 'org-closed-time-regexp
)
4129 (defvar org-keyword-time-regexp nil
4130 "Matches any of the 4 keywords, together with the time stamp.")
4131 (make-variable-buffer-local 'org-keyword-time-regexp
)
4132 (defvar org-keyword-time-not-clock-regexp nil
4133 "Matches any of the 3 keywords, together with the time stamp.")
4134 (make-variable-buffer-local 'org-keyword-time-not-clock-regexp
)
4135 (defvar org-maybe-keyword-time-regexp nil
4136 "Matches a timestamp, possibly preceded by a keyword.")
4137 (make-variable-buffer-local 'org-maybe-keyword-time-regexp
)
4138 (defvar org-planning-or-clock-line-re nil
4139 "Matches a line with planning or clock info.")
4140 (make-variable-buffer-local 'org-planning-or-clock-line-re
)
4141 (defvar org-all-time-keywords nil
4142 "List of time keywords.")
4143 (make-variable-buffer-local 'org-all-time-keywords
)
4145 (defconst org-plain-time-of-day-regexp
4148 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4151 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4153 "Regular expression to match a plain time or time range.
4154 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4155 groups carry important information:
4157 1 the first time, range or not
4158 8 the second time, if it is a range.")
4160 (defconst org-plain-time-extension-regexp
4163 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4164 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4165 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4166 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4167 groups carry important information:
4170 9 minutes of duration")
4172 (defconst org-stamp-time-of-day-regexp
4174 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4175 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4177 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4178 "Regular expression to match a timestamp time or time range.
4179 After a match, the following groups carry important information:
4181 1 date plus weekday, for back referencing to make sure both times are on the same day
4182 2 the first time, range or not
4183 4 the second time, if it is a range.")
4185 (defconst org-startup-options
4186 '(("fold" org-startup-folded t
)
4187 ("overview" org-startup-folded t
)
4188 ("nofold" org-startup-folded nil
)
4189 ("showall" org-startup-folded nil
)
4190 ("showeverything" org-startup-folded showeverything
)
4191 ("content" org-startup-folded content
)
4192 ("indent" org-startup-indented t
)
4193 ("noindent" org-startup-indented nil
)
4194 ("hidestars" org-hide-leading-stars t
)
4195 ("showstars" org-hide-leading-stars nil
)
4196 ("odd" org-odd-levels-only t
)
4197 ("oddeven" org-odd-levels-only nil
)
4198 ("align" org-startup-align-all-tables t
)
4199 ("noalign" org-startup-align-all-tables nil
)
4200 ("inlineimages" org-startup-with-inline-images t
)
4201 ("noinlineimages" org-startup-with-inline-images nil
)
4202 ("customtime" org-display-custom-times t
)
4203 ("logdone" org-log-done time
)
4204 ("lognotedone" org-log-done note
)
4205 ("nologdone" org-log-done nil
)
4206 ("lognoteclock-out" org-log-note-clock-out t
)
4207 ("nolognoteclock-out" org-log-note-clock-out nil
)
4208 ("logrepeat" org-log-repeat state
)
4209 ("lognoterepeat" org-log-repeat note
)
4210 ("nologrepeat" org-log-repeat nil
)
4211 ("logreschedule" org-log-reschedule time
)
4212 ("lognotereschedule" org-log-reschedule note
)
4213 ("nologreschedule" org-log-reschedule nil
)
4214 ("logredeadline" org-log-redeadline time
)
4215 ("lognoteredeadline" org-log-redeadline note
)
4216 ("nologredeadline" org-log-redeadline nil
)
4217 ("logrefile" org-log-refile time
)
4218 ("lognoterefile" org-log-refile note
)
4219 ("nologrefile" org-log-refile nil
)
4220 ("fninline" org-footnote-define-inline t
)
4221 ("nofninline" org-footnote-define-inline nil
)
4222 ("fnlocal" org-footnote-section nil
)
4223 ("fnauto" org-footnote-auto-label t
)
4224 ("fnprompt" org-footnote-auto-label nil
)
4225 ("fnconfirm" org-footnote-auto-label confirm
)
4226 ("fnplain" org-footnote-auto-label plain
)
4227 ("fnadjust" org-footnote-auto-adjust t
)
4228 ("nofnadjust" org-footnote-auto-adjust nil
)
4229 ("constcgs" constants-unit-system cgs
)
4230 ("constSI" constants-unit-system SI
)
4231 ("noptag" org-tag-persistent-alist nil
)
4232 ("hideblocks" org-hide-block-startup t
)
4233 ("nohideblocks" org-hide-block-startup nil
)
4234 ("beamer" org-startup-with-beamer-mode t
)
4235 ("entitiespretty" org-pretty-entities t
)
4236 ("entitiesplain" org-pretty-entities nil
))
4237 "Variable associated with STARTUP options for org-mode.
4238 Each element is a list of three items: The startup options as written
4239 in the #+STARTUP line, the corresponding variable, and the value to
4240 set this variable to if the option is found. An optional forth element PUSH
4241 means to push this value onto the list in the variable.")
4243 (defun org-set-regexps-and-options ()
4244 "Precompute regular expressions for current buffer."
4246 (org-set-local 'org-todo-kwd-alist nil
)
4247 (org-set-local 'org-todo-key-alist nil
)
4248 (org-set-local 'org-todo-key-trigger nil
)
4249 (org-set-local 'org-todo-keywords-1 nil
)
4250 (org-set-local 'org-done-keywords nil
)
4251 (org-set-local 'org-todo-heads nil
)
4252 (org-set-local 'org-todo-sets nil
)
4253 (org-set-local 'org-todo-log-states nil
)
4254 (org-set-local 'org-file-properties nil
)
4255 (org-set-local 'org-file-tags nil
)
4256 (let ((re (org-make-options-regexp
4257 '("CATEGORY" "TODO" "COLUMNS"
4258 "STARTUP" "ARCHIVE" "FILETAGS" "TAGS" "LINK" "PRIORITIES"
4259 "CONSTANTS" "PROPERTY" "DRAWERS" "SETUPFILE" "LATEX_CLASS"
4261 "\\(?:[a-zA-Z][0-9a-zA-Z_]*_TODO\\)"))
4263 (scripts org-use-sub-superscripts
)
4264 kwds kws0 kwsa key log value cat arch tags const links hw dws
4265 tail sep kws1 prio props ftags drawers beamer-p
4266 ext-setup-or-nil setup-contents
(start 0))
4270 (goto-char (point-min))
4271 (while (or (and ext-setup-or-nil
4272 (string-match re ext-setup-or-nil start
)
4273 (setq start
(match-end 0)))
4274 (and (setq ext-setup-or-nil nil start
0)
4275 (re-search-forward re nil t
)))
4276 (setq key
(upcase (match-string 1 ext-setup-or-nil
))
4277 value
(org-match-string-no-properties 2 ext-setup-or-nil
))
4278 (if (stringp value
) (setq value
(org-trim value
)))
4280 ((equal key
"CATEGORY")
4282 ((member key
'("SEQ_TODO" "TODO"))
4283 (push (cons 'sequence
(org-split-string value splitre
)) kwds
))
4284 ((equal key
"TYP_TODO")
4285 (push (cons 'type
(org-split-string value splitre
)) kwds
))
4286 ((string-match "\\`\\([a-zA-Z][0-9a-zA-Z_]*\\)_TODO\\'" key
)
4287 ;; general TODO-like setup
4288 (push (cons (intern (downcase (match-string 1 key
)))
4289 (org-split-string value splitre
)) kwds
))
4291 (setq tags
(append tags
(if tags
'("\\n") nil
)
4292 (org-split-string value splitre
))))
4293 ((equal key
"COLUMNS")
4294 (org-set-local 'org-columns-default-format value
))
4296 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value
)
4297 (push (cons (match-string 1 value
)
4298 (org-trim (match-string 2 value
)))
4300 ((equal key
"PRIORITIES")
4301 (setq prio
(org-split-string value
" +")))
4302 ((equal key
"PROPERTY")
4303 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value
)
4304 (push (cons (match-string 1 value
) (match-string 2 value
))
4306 ((equal key
"FILETAGS")
4307 (when (string-match "\\S-" value
)
4312 (mapcar (lambda (x) (org-split-string x
":"))
4313 (org-split-string value
)))))))
4314 ((equal key
"DRAWERS")
4315 (setq drawers
(org-split-string value splitre
)))
4316 ((equal key
"CONSTANTS")
4317 (setq const
(append const
(org-split-string value splitre
))))
4318 ((equal key
"STARTUP")
4319 (let ((opts (org-split-string value splitre
))
4321 (while (setq l
(pop opts
))
4322 (when (setq l
(assoc l org-startup-options
))
4323 (setq var
(nth 1 l
) val
(nth 2 l
))
4325 (set (make-local-variable var
) val
)
4326 (if (not (listp (symbol-value var
)))
4327 (set (make-local-variable var
) nil
))
4328 (set (make-local-variable var
) (symbol-value var
))
4329 (add-to-list var val
))))))
4330 ((equal key
"ARCHIVE")
4332 (remove-text-properties 0 (length arch
)
4333 '(face t fontified t
) arch
))
4334 ((equal key
"LATEX_CLASS")
4335 (setq beamer-p
(equal value
"beamer")))
4336 ((equal key
"OPTIONS")
4337 (if (string-match "\\([ \t]\\|\\`\\)\\^:\\(t\\|nil\\|{}\\)" value
)
4338 (setq scripts
(read (match-string 2 value
)))))
4339 ((equal key
"SETUPFILE")
4340 (setq setup-contents
(org-file-contents
4342 (org-remove-double-quotes value
))
4344 (if (not ext-setup-or-nil
)
4345 (setq ext-setup-or-nil setup-contents start
0)
4346 (setq ext-setup-or-nil
4347 (concat (substring ext-setup-or-nil
0 start
)
4348 "\n" setup-contents
"\n"
4349 (substring ext-setup-or-nil start
)))))
4351 (org-set-local 'org-use-sub-superscripts scripts
)
4353 (org-set-local 'org-category
(intern cat
))
4354 (push (cons "CATEGORY" cat
) props
))
4356 (if (< (length prio
) 3) (setq prio
'("A" "C" "B")))
4357 (setq prio
(mapcar 'string-to-char prio
))
4358 (org-set-local 'org-highest-priority
(nth 0 prio
))
4359 (org-set-local 'org-lowest-priority
(nth 1 prio
))
4360 (org-set-local 'org-default-priority
(nth 2 prio
)))
4361 (and props
(org-set-local 'org-file-properties
(nreverse props
)))
4362 (and ftags
(org-set-local 'org-file-tags
4363 (mapcar 'org-add-prop-inherited ftags
)))
4364 (and drawers
(org-set-local 'org-drawers drawers
))
4365 (and arch
(org-set-local 'org-archive-location arch
))
4366 (and links
(setq org-link-abbrev-alist-local
(nreverse links
)))
4367 ;; Process the TODO keywords
4369 ;; Use the global values as if they had been given locally.
4370 (setq kwds
(default-value 'org-todo-keywords
))
4371 (if (stringp (car kwds
))
4372 (setq kwds
(list (cons org-todo-interpretation
4373 (default-value 'org-todo-keywords
)))))
4374 (setq kwds
(reverse kwds
)))
4375 (setq kwds
(nreverse kwds
))
4377 (while (setq kws
(pop kwds
))
4379 (run-hook-with-args-until-success
4380 'org-todo-setup-filter-hook kws
)
4382 (setq inter
(pop kws
) sep
(member "|" kws
)
4383 kws0
(delete "|" (copy-sequence kws
))
4388 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x
)
4390 (setq kw
(match-string 1 x
)
4391 key
(and (match-end 2) (match-string 2 x
))
4392 log
(org-extract-log-state-settings x
))
4393 (push (cons kw
(and key
(string-to-char key
))) kwsa
)
4394 (and log
(push log org-todo-log-states
))
4396 (error "Invalid TODO keyword %s" x
)))
4398 kwsa
(if kwsa
(append '((:startgroup
))
4402 dws
(if sep
(org-remove-keyword-keys (cdr sep
)) (last kws1
))
4403 tail
(list inter hw
(car dws
) (org-last dws
))))
4404 (add-to-list 'org-todo-heads hw
'append
)
4405 (push kws1 org-todo-sets
)
4406 (setq org-done-keywords
(append org-done-keywords dws nil
))
4407 (setq org-todo-key-alist
(append org-todo-key-alist kwsa
))
4408 (mapc (lambda (x) (push (cons x tail
) org-todo-kwd-alist
)) kws1
)
4409 (setq org-todo-keywords-1
(append org-todo-keywords-1 kws1 nil
)))
4410 (setq org-todo-sets
(nreverse org-todo-sets
)
4411 org-todo-kwd-alist
(nreverse org-todo-kwd-alist
)
4412 org-todo-key-trigger
(delq nil
(mapcar 'cdr org-todo-key-alist
))
4413 org-todo-key-alist
(org-assign-fast-keys org-todo-key-alist
)))
4414 ;; Process the constants
4417 (while (setq e
(pop const
))
4418 (if (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)" e
)
4419 (push (cons (match-string 1 e
) (match-string 2 e
)) cst
)))
4420 (setq org-table-formula-constants-local cst
)))
4422 ;; Process the tags.
4425 (while (setq e
(pop tags
))
4427 ((equal e
"{") (push '(:startgroup
) tgs
))
4428 ((equal e
"}") (push '(:endgroup
) tgs
))
4429 ((equal e
"\\n") (push '(:newline
) tgs
))
4430 ((string-match (org-re "^\\([[:alnum:]_@#%]+\\)(\\(.\\))$") e
)
4431 (push (cons (match-string 1 e
)
4432 (string-to-char (match-string 2 e
)))
4434 (t (push (list e
) tgs
))))
4435 (org-set-local 'org-tag-alist nil
)
4436 (while (setq e
(pop tgs
))
4437 (or (and (stringp (car e
))
4438 (assoc (car e
) org-tag-alist
))
4439 (push e org-tag-alist
)))))
4441 ;; Compute the regular expressions and other local variables
4442 (if (not org-done-keywords
)
4443 (setq org-done-keywords
(and org-todo-keywords-1
4444 (list (org-last org-todo-keywords-1
)))))
4445 (setq org-ds-keyword-length
(+ 2 (max (length org-deadline-string
)
4446 (length org-scheduled-string
)
4447 (length org-clock-string
)
4448 (length org-closed-string
)))
4450 (concat "^[ \t]*:\\("
4451 (mapconcat 'regexp-quote org-drawers
"\\|")
4453 org-not-done-keywords
4454 (org-delete-all org-done-keywords
(copy-sequence org-todo-keywords-1
))
4456 (concat "\\<\\(" (mapconcat 'regexp-quote org-todo-keywords-1
4460 (mapconcat 'regexp-quote org-not-done-keywords
"\\|")
4462 org-not-done-heading-regexp
4463 (concat "^\\(\\*+\\)[ \t]+\\("
4464 (mapconcat 'regexp-quote org-not-done-keywords
"\\|")
4466 org-todo-line-regexp
4467 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4468 (mapconcat 'regexp-quote org-todo-keywords-1
"\\|")
4469 "\\)\\>\\)?[ \t]*\\(.*\\)")
4470 org-complex-heading-regexp
4471 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4472 (mapconcat 'regexp-quote org-todo-keywords-1
"\\|")
4473 "\\)\\>\\)?\\(?:[ \t]*\\(\\[#.\\]\\)\\)?[ \t]*\\(.*?\\)"
4474 "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?[ \t]*$")
4475 org-complex-heading-regexp-format
4476 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4477 (mapconcat 'regexp-quote org-todo-keywords-1
"\\|")
4479 "\\(?:[ \t]*\\(\\[#.\\]\\)\\)?"
4480 "\\(?:[ \t]*\\(?:\\[[0-9%%/]+\\]\\)\\)?" ;; stats cookie
4482 "\\(?:[ \t]*\\(?:\\[[0-9%%/]+\\]\\)\\)?" ;; stats cookie
4483 "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?[ \t]*$")
4485 (concat "\n\\*+[ \t]+"
4486 "\\(?:" (mapconcat 'regexp-quote org-done-keywords
"\\|")
4488 org-todo-line-tags-regexp
4489 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4490 (mapconcat 'regexp-quote org-todo-keywords-1
"\\|")
4492 "\\)\\>\\)? *\\(.*?\\([ \t]:[[:alnum:]:_@#%]+:[ \t]*\\)?$\\)"))
4493 org-looking-at-done-regexp
4495 (mapconcat 'regexp-quote org-done-keywords
"\\|") "\\)"
4497 org-deadline-regexp
(concat "\\<" org-deadline-string
)
4498 org-deadline-time-regexp
4499 (concat "\\<" org-deadline-string
" *<\\([^>]+\\)>")
4500 org-deadline-line-regexp
4501 (concat "\\<\\(" org-deadline-string
"\\).*")
4502 org-scheduled-regexp
4503 (concat "\\<" org-scheduled-string
)
4504 org-scheduled-time-regexp
4505 (concat "\\<" org-scheduled-string
" *<\\([^>]+\\)>")
4506 org-closed-time-regexp
4507 (concat "\\<" org-closed-string
" *\\[\\([^]]+\\)\\]")
4508 org-keyword-time-regexp
4509 (concat "\\<\\(" org-scheduled-string
4510 "\\|" org-deadline-string
4511 "\\|" org-closed-string
4512 "\\|" org-clock-string
"\\)"
4513 " *[[<]\\([^]>]+\\)[]>]")
4514 org-keyword-time-not-clock-regexp
4515 (concat "\\<\\(" org-scheduled-string
4516 "\\|" org-deadline-string
4517 "\\|" org-closed-string
4519 " *[[<]\\([^]>]+\\)[]>]")
4520 org-maybe-keyword-time-regexp
4521 (concat "\\(\\<\\(" org-scheduled-string
4522 "\\|" org-deadline-string
4523 "\\|" org-closed-string
4524 "\\|" org-clock-string
"\\)\\)?"
4525 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^]\r\n>]*?[]>]\\|<%%([^\r\n>]*>\\)")
4526 org-planning-or-clock-line-re
4527 (concat "\\(?:^[ \t]*\\(" org-scheduled-string
4528 "\\|" org-deadline-string
4529 "\\|" org-closed-string
"\\|" org-clock-string
4531 org-all-time-keywords
4532 (mapcar (lambda (w) (substring w
0 -
1))
4533 (list org-scheduled-string org-deadline-string
4534 org-clock-string org-closed-string
))
4536 (org-compute-latex-and-specials-regexp)
4537 (org-set-font-lock-defaults))))
4539 (defun org-file-contents (file &optional noerror
)
4540 "Return the contents of FILE, as a string."
4542 (not (file-readable-p file
)))
4545 (message "Cannot read file \"%s\"" file
)
4548 (error "Cannot read file \"%s\"" file
))
4550 (insert-file-contents file
)
4553 (defun org-extract-log-state-settings (x)
4554 "Extract the log state setting from a TODO keyword string.
4555 This will extract info from a string like \"WAIT(w@/!)\"."
4556 (let (kw key log1 log2
)
4557 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x
)
4558 (setq kw
(match-string 1 x
)
4559 key
(and (match-end 2) (match-string 2 x
))
4560 log1
(and (match-end 3) (match-string 3 x
))
4561 log2
(and (match-end 4) (match-string 4 x
)))
4564 (and log1
(if (equal log1
"!") 'time
'note
))
4565 (and log2
(if (equal log2
"!") 'time
'note
)))))))
4567 (defun org-remove-keyword-keys (list)
4568 "Remove a pair of parenthesis at the end of each string in LIST."
4570 (if (string-match "(.*)$" x
)
4571 (substring x
0 (match-beginning 0))
4575 (defun org-assign-fast-keys (alist)
4576 "Assign fast keys to a keyword-key alist.
4577 Respect keys that are already there."
4578 (let (new e
(alt ?
0))
4579 (while (setq e
(pop alist
))
4580 (if (or (memq (car e
) '(:newline
:endgroup
:startgroup
))
4581 (cdr e
)) ;; Key already assigned.
4583 (let ((clist (string-to-list (downcase (car e
))))
4584 (used (append new alist
)))
4585 (when (= (car clist
) ?
@)
4587 (while (and clist
(rassoc (car clist
) used
))
4590 (while (rassoc alt used
)
4592 (push (cons (car e
) (or (car clist
) alt
)) new
))))
4595 ;;; Some variables used in various places
4597 (defvar org-window-configuration nil
4598 "Used in various places to store a window configuration.")
4599 (defvar org-selected-window nil
4600 "Used in various places to store a window configuration.")
4601 (defvar org-finish-function nil
4602 "Function to be called when `C-c C-c' is used.
4603 This is for getting out of special buffers like remember.")
4606 ;; FIXME: Occasionally check by commenting these, to make sure
4607 ;; no other functions uses these, forgetting to let-bind them.
4612 ;; Defined somewhere in this file, but used before definition.
4613 (defvar org-entities
) ;; defined in org-entities.el
4614 (defvar org-struct-menu
)
4615 (defvar org-org-menu
)
4616 (defvar org-tbl-menu
)
4618 ;;;; Define the Org-mode
4620 (if (and (not (keymapp outline-mode-map
)) (featurep 'allout
))
4621 (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"))
4624 ;; We use a before-change function to check if a table might need
4626 (defvar org-table-may-need-update t
4627 "Indicates that a table might need an update.
4628 This variable is set by `org-before-change-function'.
4629 `org-table-align' sets it back to nil.")
4630 (defun org-before-change-function (beg end
)
4631 "Every change indicates that a table might need an update."
4632 (setq org-table-may-need-update t
))
4633 (defvar org-mode-map
)
4634 (defvar org-inhibit-startup nil
) ; Dynamically-scoped param.
4635 (defvar org-inhibit-startup-visibility-stuff nil
) ; Dynamically-scoped param.
4636 (defvar org-agenda-keep-modes nil
) ; Dynamically-scoped param.
4637 (defvar org-inhibit-logging nil
) ; Dynamically-scoped param.
4638 (defvar org-inhibit-blocking nil
) ; Dynamically-scoped param.
4639 (defvar org-table-buffer-is-an nil
)
4640 (defconst org-outline-regexp
"\\*+ ")
4643 (define-derived-mode org-mode outline-mode
"Org"
4644 "Outline-based notes management and organizer, alias
4645 \"Carsten's outline-mode for keeping track of everything.\"
4647 Org-mode develops organizational tasks around a NOTES file which
4648 contains information about projects as plain text. Org-mode is
4649 implemented on top of outline-mode, which is ideal to keep the content
4650 of large files well structured. It supports ToDo items, deadlines and
4651 time stamps, which magically appear in the diary listing of the Emacs
4652 calendar. Tables are easily created with a built-in table editor.
4653 Plain text URL-like links connect to websites, emails (VM), Usenet
4654 messages (Gnus), BBDB entries, and any files related to the project.
4655 For printing and sharing of notes, an Org-mode file (or a part of it)
4656 can be exported as a structured ASCII or HTML file.
4658 The following commands are available:
4662 ;; Get rid of Outline menus, they are not needed
4663 ;; Need to do this here because define-derived-mode sets up
4664 ;; the keymap so late. Still, it is a waste to call this each time
4665 ;; we switch another buffer into org-mode.
4666 (if (featurep 'xemacs
)
4667 (when (boundp 'outline-mode-menu-heading
)
4668 ;; Assume this is Greg's port, it uses easymenu
4669 (easy-menu-remove outline-mode-menu-heading
)
4670 (easy-menu-remove outline-mode-menu-show
)
4671 (easy-menu-remove outline-mode-menu-hide
))
4672 (define-key org-mode-map
[menu-bar headings
] 'undefined
)
4673 (define-key org-mode-map
[menu-bar hide
] 'undefined
)
4674 (define-key org-mode-map
[menu-bar show
] 'undefined
))
4676 (org-load-modules-maybe)
4677 (easy-menu-add org-org-menu
)
4678 (easy-menu-add org-tbl-menu
)
4679 (org-install-agenda-files-menu)
4680 (if org-descriptive-links
(add-to-invisibility-spec '(org-link)))
4681 (add-to-invisibility-spec '(org-cwidth))
4682 (add-to-invisibility-spec '(org-hide-block . t
))
4683 (when (featurep 'xemacs
)
4684 (org-set-local 'line-move-ignore-invisible t
))
4685 (org-set-local 'outline-regexp org-outline-regexp
)
4686 (org-set-local 'outline-level
'org-outline-level
)
4687 (when (and org-ellipsis
4688 (fboundp 'set-display-table-slot
) (boundp 'buffer-display-table
)
4689 (fboundp 'make-glyph-code
))
4690 (unless org-display-table
4691 (setq org-display-table
(make-display-table)))
4692 (set-display-table-slot
4695 (lambda (c) (make-glyph-code c
(and (not (stringp org-ellipsis
))
4697 (if (stringp org-ellipsis
) org-ellipsis
"..."))))
4698 (setq buffer-display-table org-display-table
))
4699 (org-set-regexps-and-options)
4700 (when (and org-tag-faces
(not org-tags-special-faces-re
))
4701 ;; tag faces set outside customize.... force initialization.
4702 (org-set-tag-faces 'org-tag-faces org-tag-faces
))
4704 (org-set-local 'calc-embedded-open-mode
"# ")
4705 (modify-syntax-entry ?
@ "w")
4706 (if org-startup-truncated
(setq truncate-lines t
))
4707 (org-set-local 'font-lock-unfontify-region-function
4708 'org-unfontify-region
)
4709 ;; Activate before-change-function
4710 (org-set-local 'org-table-may-need-update t
)
4711 (org-add-hook 'before-change-functions
'org-before-change-function nil
4713 ;; Check for running clock before killing a buffer
4714 (org-add-hook 'kill-buffer-hook
'org-check-running-clock nil
'local
)
4715 ;; Paragraphs and auto-filling
4716 (org-set-autofill-regexps)
4717 (setq indent-line-function
'org-indent-line-function
)
4718 (org-update-radio-target-regexp)
4719 ;; Beginning/end of defun
4720 (org-set-local 'beginning-of-defun-function
'org-beginning-of-defun
)
4721 (org-set-local 'end-of-defun-function
'org-end-of-defun
)
4722 ;; Next error for sparse trees
4723 (org-set-local 'next-error-function
'org-occur-next-match
)
4724 ;; Make sure dependence stuff works reliably, even for users who set it
4726 (if org-enforce-todo-dependencies
4727 (add-hook 'org-blocker-hook
4728 'org-block-todo-from-children-or-siblings-or-parent
)
4729 (remove-hook 'org-blocker-hook
4730 'org-block-todo-from-children-or-siblings-or-parent
))
4731 (if org-enforce-todo-checkbox-dependencies
4732 (add-hook 'org-blocker-hook
4733 'org-block-todo-from-checkboxes
)
4734 (remove-hook 'org-blocker-hook
4735 'org-block-todo-from-checkboxes
))
4737 ;; Comment characters
4738 (org-set-local 'comment-start
"#")
4739 (org-set-local 'comment-padding
" ")
4741 ;; Align options lines
4743 'align-mode-rules-list
4744 '((org-in-buffer-settings
4745 (regexp .
"^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
4746 (modes .
'(org-mode)))))
4749 (org-set-local 'imenu-create-index-function
4750 'org-imenu-get-tree
)
4752 ;; Make isearch reveal context
4753 (if (or (featurep 'xemacs
)
4754 (not (boundp 'outline-isearch-open-invisible-function
)))
4755 ;; Emacs 21 and XEmacs make use of the hook
4756 (org-add-hook 'isearch-mode-end-hook
'org-isearch-end
'append
'local
)
4757 ;; Emacs 22 deals with this through a special variable
4758 (org-set-local 'outline-isearch-open-invisible-function
4759 (lambda (&rest ignore
) (org-show-context 'isearch
))))
4761 ;; Turn on org-beamer-mode?
4762 (and org-startup-with-beamer-mode
(org-beamer-mode 1))
4764 ;; Setup the pcomplete hooks
4765 (set (make-local-variable 'pcomplete-command-completion-function
)
4766 'org-pcomplete-initial
)
4767 (set (make-local-variable 'pcomplete-command-name-function
)
4768 'org-command-at-point
)
4769 (set (make-local-variable 'pcomplete-default-completion-function
)
4771 (set (make-local-variable 'pcomplete-parse-arguments-function
)
4772 'org-parse-arguments
)
4773 (set (make-local-variable 'pcomplete-termination-string
) "")
4775 ;; If empty file that did not turn on org-mode automatically, make it to.
4776 (if (and org-insert-mode-line-in-empty-file
4778 (= (point-min) (point-max)))
4779 (insert "# -*- mode: org -*-\n\n"))
4780 (unless org-inhibit-startup
4781 (when org-startup-align-all-tables
4782 (let ((bmp (buffer-modified-p)))
4783 (org-table-map-tables 'org-table-align
'quietly
)
4784 (set-buffer-modified-p bmp
)))
4785 (when org-startup-with-inline-images
4786 (org-display-inline-images))
4787 (when org-startup-indented
4788 (require 'org-indent
)
4789 (org-indent-mode 1))
4790 (unless org-inhibit-startup-visibility-stuff
4791 (org-set-startup-visibility))))
4793 (when (fboundp 'abbrev-table-put
)
4794 (abbrev-table-put org-mode-abbrev-table
4795 :parents
(list text-mode-abbrev-table
)))
4797 (put 'org-mode
'flyspell-mode-predicate
'org-mode-flyspell-verify
)
4799 (defun org-current-time ()
4800 "Current time, possibly rounded to `org-time-stamp-rounding-minutes'."
4801 (if (> (car org-time-stamp-rounding-minutes
) 1)
4802 (let ((r (car org-time-stamp-rounding-minutes
))
4803 (time (decode-time)))
4805 (append (list 0 (* r
(floor (+ .5 (/ (float (nth 1 time
)) r
)))))
4810 "Return today date, considering `org-extend-today-until'."
4812 (time-subtract (current-time)
4813 (list 0 (* 3600 org-extend-today-until
) 0))))
4815 ;;;; Font-Lock stuff, including the activators
4817 (defvar org-mouse-map
(make-sparse-keymap))
4818 (org-defkey org-mouse-map
[mouse-2
] 'org-open-at-mouse
)
4819 (org-defkey org-mouse-map
[mouse-3
] 'org-find-file-at-mouse
)
4820 (when org-mouse-1-follows-link
4821 (org-defkey org-mouse-map
[follow-link
] 'mouse-face
))
4822 (when org-tab-follows-link
4823 (org-defkey org-mouse-map
[(tab)] 'org-open-at-point
)
4824 (org-defkey org-mouse-map
"\C-i" 'org-open-at-point
))
4826 (require 'font-lock
)
4828 (defconst org-non-link-chars
"]\t\n\r<>")
4829 (defvar org-link-types
'("http" "https" "ftp" "mailto" "file" "news"
4830 "shell" "elisp" "doi" "message"))
4831 (defvar org-link-types-re nil
4832 "Matches a link that has a url-like prefix like \"http:\"")
4833 (defvar org-link-re-with-space nil
4834 "Matches a link with spaces, optional angular brackets around it.")
4835 (defvar org-link-re-with-space2 nil
4836 "Matches a link with spaces, optional angular brackets around it.")
4837 (defvar org-link-re-with-space3 nil
4838 "Matches a link with spaces, only for internal part in bracket links.")
4839 (defvar org-angle-link-re nil
4840 "Matches link with angular brackets, spaces are allowed.")
4841 (defvar org-plain-link-re nil
4842 "Matches plain link, without spaces.")
4843 (defvar org-bracket-link-regexp nil
4844 "Matches a link in double brackets.")
4845 (defvar org-bracket-link-analytic-regexp nil
4846 "Regular expression used to analyze links.
4847 Here is what the match groups contain after a match:
4853 (defvar org-bracket-link-analytic-regexp
++ nil
4854 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
4855 (defvar org-any-link-re nil
4856 "Regular expression matching any link.")
4858 (defcustom org-match-sexp-depth
3
4859 "Number of stacked braces for sub/superscript matching.
4860 This has to be set before loading org.el to be effective."
4861 :group
'org-export-translation
; ??????????????????????????/
4864 (defun org-create-multibrace-regexp (left right n
)
4865 "Create a regular expression which will match a balanced sexp.
4866 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
4867 as single character strings.
4868 The regexp returned will match the entire expression including the
4869 delimiters. It will also define a single group which contains the
4870 match except for the outermost delimiters. The maximum depth of
4871 stacked delimiters is N. Escaping delimiters is not possible."
4872 (let* ((nothing (concat "[^" left right
"]*?"))
4875 (next (concat "\\(?:" nothing left nothing right
"\\)+" nothing
)))
4878 re
(concat re or next
)
4879 next
(concat "\\(?:" nothing left next right
"\\)+" nothing
)))
4880 (concat left
"\\(" re
"\\)" right
)))
4882 (defvar org-match-substring-regexp
4884 "\\([^\\]\\)\\([_^]\\)\\("
4885 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth
) "\\)"
4887 "\\(" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth
) "\\)"
4889 "\\(\\(?:\\*\\|[-+]?[^-+*!@#$%^_ \t\r\n,:\"?<>~;./{}=()]+\\)\\)\\)")
4890 "The regular expression matching a sub- or superscript.")
4892 (defvar org-match-substring-with-braces-regexp
4894 "\\([^\\]\\)\\([_^]\\)\\("
4895 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth
) "\\)"
4897 "The regular expression matching a sub- or superscript, forcing braces.")
4899 (defun org-make-link-regexps ()
4900 "Update the link regular expressions.
4901 This should be called after the variable `org-link-types' has changed."
4902 (setq org-link-types-re
4904 "\\`\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):")
4905 org-link-re-with-space
4907 "<?\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):"
4908 "\\([^" org-non-link-chars
" ]"
4909 "[^" org-non-link-chars
"]*"
4910 "[^" org-non-link-chars
" ]\\)>?")
4911 org-link-re-with-space2
4913 "<?\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):"
4914 "\\([^" org-non-link-chars
" ]"
4916 "[^" org-non-link-chars
" ]\\)>?")
4917 org-link-re-with-space3
4919 "<?\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):"
4920 "\\([^" org-non-link-chars
" ]"
4924 "<\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):"
4925 "\\([^" org-non-link-chars
" ]"
4926 "[^" org-non-link-chars
"]*"
4930 "\\<\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):"
4931 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
4932 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
4933 org-bracket-link-regexp
4934 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
4935 org-bracket-link-analytic-regexp
4938 "\\(\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):\\)?"
4941 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
4943 org-bracket-link-analytic-regexp
++
4946 "\\(\\(" (mapconcat 'regexp-quote
(cons "coderef" org-link-types
) "\\|") "\\):\\)?"
4949 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
4952 (concat "\\(" org-bracket-link-regexp
"\\)\\|\\("
4953 org-angle-link-re
"\\)\\|\\("
4954 org-plain-link-re
"\\)")))
4956 (org-make-link-regexps)
4958 (defconst org-ts-regexp
"<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^\r\n>]*?\\)>"
4959 "Regular expression for fast time stamp matching.")
4960 (defconst org-ts-regexp-both
"[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^\r\n>]*?\\)[]>]"
4961 "Regular expression for fast time stamp matching.")
4962 (defconst org-ts-regexp0
"\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]-+0-9>\r\n ]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
4963 "Regular expression matching time strings for analysis.
4964 This one does not require the space after the date, so it can be used
4965 on a string that terminates immediately after the date.")
4966 (defconst org-ts-regexp1
"\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) +\\([^]-+0-9>\r\n ]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
4967 "Regular expression matching time strings for analysis.")
4968 (defconst org-ts-regexp2
(concat "<" org-ts-regexp1
"[^>\n]\\{0,16\\}>")
4969 "Regular expression matching time stamps, with groups.")
4970 (defconst org-ts-regexp3
(concat "[[<]" org-ts-regexp1
"[^]>\n]\\{0,16\\}[]>]")
4971 "Regular expression matching time stamps (also [..]), with groups.")
4972 (defconst org-tr-regexp
(concat org-ts-regexp
"--?-?" org-ts-regexp
)
4973 "Regular expression matching a time stamp range.")
4974 (defconst org-tr-regexp-both
4975 (concat org-ts-regexp-both
"--?-?" org-ts-regexp-both
)
4976 "Regular expression matching a time stamp range.")
4977 (defconst org-tsr-regexp
(concat org-ts-regexp
"\\(--?-?"
4978 org-ts-regexp
"\\)?")
4979 "Regular expression matching a time stamp or time stamp range.")
4980 (defconst org-tsr-regexp-both
(concat org-ts-regexp-both
"\\(--?-?"
4981 org-ts-regexp-both
"\\)?")
4982 "Regular expression matching a time stamp or time stamp range.
4983 The time stamps may be either active or inactive.")
4985 (defvar org-emph-face nil
)
4987 (defun org-do-emphasis-faces (limit)
4988 "Run through the buffer and add overlays to links."
4990 (while (and (not rtn
) (re-search-forward org-emph-re limit t
))
4991 (if (not (= (char-after (match-beginning 3))
4992 (char-after (match-beginning 4))))
4995 (setq a
(assoc (match-string 3) org-emphasis-alist
))
4996 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5000 (org-remove-flyspell-overlays-in
5001 (match-beginning 0) (match-end 0)))
5002 (add-text-properties (match-beginning 2) (match-end 2)
5003 '(font-lock-multiline t org-emphasis t
))
5004 (when org-hide-emphasis-markers
5005 (add-text-properties (match-end 4) (match-beginning 5)
5006 '(invisible org-link
))
5007 (add-text-properties (match-beginning 3) (match-end 3)
5008 '(invisible org-link
)))))
5012 (defun org-emphasize (&optional char
)
5013 "Insert or change an emphasis, i.e. a font like bold or italic.
5014 If there is an active region, change that region to a new emphasis.
5015 If there is no region, just insert the marker characters and position
5016 the cursor between them.
5017 CHAR should be either the marker character, or the first character of the
5018 HTML tag associated with that emphasis. If CHAR is a space, the means
5019 to remove the emphasis of the selected region.
5020 If char is not given (for example in an interactive call) it
5021 will be prompted for."
5023 (let ((eal org-emphasis-alist
) e det
5024 (erc org-emphasis-regexp-components
)
5026 (string "") beg end move tag c s
)
5027 (if (org-region-active-p)
5028 (setq beg
(region-beginning) end
(region-end)
5029 string
(buffer-substring beg end
))
5032 (while (setq e
(pop eal
))
5033 (setq tag
(car (org-split-string (nth 2 e
) "[ <>/]+"))
5035 (push (cons c
(string-to-char (car e
))) det
)
5036 (setq prompt
(concat prompt
(format " [%s%c]%s" (car e
) c
5037 (substring tag
1)))))
5038 (setq det
(nreverse det
))
5040 (message "%s" (concat "Emphasis marker or tag:" prompt
))
5041 (setq char
(read-char-exclusive)))
5042 (setq char
(or (cdr (assoc char det
)) char
))
5043 (if (equal char ?\
)
5044 (setq s
"" move nil
)
5045 (unless (assoc (char-to-string char
) org-emphasis-alist
)
5046 (error "No such emphasis marker: \"%c\"" char
))
5047 (setq s
(char-to-string char
)))
5048 (while (and (> (length string
) 1)
5049 (equal (substring string
0 1) (substring string -
1))
5050 (assoc (substring string
0 1) org-emphasis-alist
))
5051 (setq string
(substring string
1 -
1)))
5052 (setq string
(concat s string s
))
5053 (if beg
(delete-region beg end
))
5055 (string-match (concat "[" (nth 0 erc
) "\n]")
5056 (char-to-string (char-before (point)))))
5059 (string-match (concat "[" (nth 1 erc
) "\n]")
5060 (char-to-string (char-after (point)))))
5061 (insert " ") (backward-char 1))
5063 (and move
(backward-char 1))))
5065 (defconst org-nonsticky-props
5066 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text
))
5068 (defsubst org-rear-nonsticky-at
(pos)
5069 (add-text-properties (1- pos
) pos
(list 'rear-nonsticky org-nonsticky-props
)))
5071 (defun org-activate-plain-links (limit)
5072 "Run through the buffer and add overlays to links."
5075 (if (re-search-forward org-plain-link-re limit t
)
5077 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5078 (setq f
(get-text-property (match-beginning 0) 'face
))
5079 (if (or (eq f
'org-tag
)
5080 (and (listp f
) (memq 'org-tag f
)))
5082 (add-text-properties (match-beginning 0) (match-end 0)
5083 (list 'mouse-face
'highlight
5085 'keymap org-mouse-map
))
5086 (org-rear-nonsticky-at (match-end 0)))
5089 (defun org-activate-code (limit)
5090 (if (re-search-forward "^[ \t]*\\(: .*\n?\\)" limit t
)
5092 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5093 (remove-text-properties (match-beginning 0) (match-end 0)
5094 '(display t invisible t intangible t
))
5097 (defcustom org-src-fontify-natively nil
5098 "When non-nil, fontify code in code blocks."
5100 :group
'org-appearance
5103 (defun org-fontify-meta-lines-and-blocks (limit)
5104 "Fontify #+ lines and blocks, in the correct ways."
5105 (let ((case-fold-search t
))
5106 (if (re-search-forward
5107 "^\\([ \t]*#\\+\\(\\([a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5109 (let ((beg (match-beginning 0))
5110 (block-start (match-end 0))
5112 (lang (match-string 7))
5113 (beg1 (line-beginning-position 2))
5114 (dc1 (downcase (match-string 2)))
5115 (dc3 (downcase (match-string 3)))
5116 end end1 quoting block-type
)
5118 ((member dc1
'("html:" "ascii:" "latex:" "docbook:"))
5119 ;; a single line of backend-specific content
5120 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5121 (remove-text-properties (match-beginning 0) (match-end 0)
5122 '(display t invisible t intangible t
))
5123 (add-text-properties (match-beginning 1) (match-end 3)
5124 '(font-lock-fontified t face org-meta-line
))
5125 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5126 '(font-lock-fontified t face org-block
))
5127 ; for backend-specific code
5129 ((and (match-end 4) (equal dc3
"begin"))
5131 (setq block-type
(downcase (match-string 5))
5132 quoting
(member block-type org-protecting-blocks
))
5133 (when (re-search-forward
5134 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5135 nil t
) ;; on purpose, we look further than LIMIT
5136 (setq end
(match-end 0) end1
(1- (match-beginning 0)))
5137 (setq block-end
(match-beginning 0))
5139 (remove-text-properties beg end
5140 '(display t invisible t intangible t
)))
5141 (add-text-properties
5143 '(font-lock-fontified t font-lock-multiline t
))
5144 (add-text-properties beg beg1
'(face org-meta-line
))
5145 (add-text-properties end1
(+ end
1) '(face org-meta-line
))
5148 ((and lang org-src-fontify-natively
)
5149 (org-src-font-lock-fontify-block lang block-start block-end
))
5151 (add-text-properties beg1
(+ end1
1) '(face
5153 ; end of source block
5154 ((not org-fontify-quote-and-verse-blocks
))
5155 ((string= block-type
"quote")
5156 (add-text-properties beg1 end1
'(face org-quote
)))
5157 ((string= block-type
"verse")
5158 (add-text-properties beg1 end1
'(face org-verse
))))
5160 ((member dc1
'("title:" "author:" "email:" "date:"))
5161 (add-text-properties
5163 (if (member (intern (substring dc1
0 -
1)) org-hidden-keywords
)
5164 '(font-lock-fontified t invisible t
)
5165 '(font-lock-fontified t face org-document-info-keyword
)))
5166 (add-text-properties
5167 (match-beginning 6) (match-end 6)
5168 (if (string-equal dc1
"title:")
5169 '(font-lock-fontified t face org-document-title
)
5170 '(font-lock-fontified t face org-document-info
))))
5171 ((not (member (char-after beg
) '(?\ ?
\t)))
5172 ;; just any other in-buffer setting, but not indented
5173 (add-text-properties
5175 '(font-lock-fontified t face org-meta-line
))
5177 ((or (member dc1
'("begin:" "end:" "caption:" "label:"
5178 "orgtbl:" "tblfm:" "tblname:" "result:"
5179 "results:" "source:" "srcname:" "call:"))
5180 (and (match-end 4) (equal dc3
"attr")))
5181 (add-text-properties
5183 '(font-lock-fontified t face org-meta-line
))
5185 ((member dc3
'(" " ""))
5186 (add-text-properties
5188 '(font-lock-fontified t face font-lock-comment-face
)))
5191 (defun org-activate-angle-links (limit)
5192 "Run through the buffer and add overlays to links."
5193 (if (re-search-forward org-angle-link-re limit t
)
5195 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5196 (add-text-properties (match-beginning 0) (match-end 0)
5197 (list 'mouse-face
'highlight
5198 'keymap org-mouse-map
))
5199 (org-rear-nonsticky-at (match-end 0))
5202 (defun org-activate-footnote-links (limit)
5203 "Run through the buffer and add overlays to links."
5204 (if (re-search-forward "\\(^\\|[^][]\\)\\(\\[\\([0-9]+\\]\\|fn:[^ \t\r\n:]+?[]:]\\)\\)"
5207 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5208 (add-text-properties (match-beginning 2) (match-end 2)
5209 (list 'mouse-face
'highlight
5210 'keymap org-mouse-map
5212 (if (= (point-at-bol) (match-beginning 2))
5213 "Footnote definition"
5214 "Footnote reference")
5216 (org-rear-nonsticky-at (match-end 2))
5219 (defun org-activate-bracket-links (limit)
5220 "Run through the buffer and add overlays to bracketed links."
5221 (if (re-search-forward org-bracket-link-regexp limit t
)
5222 (let* ((help (concat "LINK: "
5223 (org-match-string-no-properties 1)))
5224 ;; FIXME: above we should remove the escapes.
5225 ;; but that requires another match, protecting match data,
5226 ;; a lot of overhead for font-lock.
5227 (ip (org-maybe-intangible
5228 (list 'invisible
'org-link
5229 'keymap org-mouse-map
'mouse-face
'highlight
5230 'font-lock-multiline t
'help-echo help
)))
5231 (vp (list 'keymap org-mouse-map
'mouse-face
'highlight
5232 'font-lock-multiline t
'help-echo help
)))
5233 ;; We need to remove the invisible property here. Table narrowing
5234 ;; may have made some of this invisible.
5235 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5236 (remove-text-properties (match-beginning 0) (match-end 0)
5240 (add-text-properties (match-beginning 0) (match-beginning 3) ip
)
5241 (org-rear-nonsticky-at (match-beginning 3))
5242 (add-text-properties (match-beginning 3) (match-end 3) vp
)
5243 (org-rear-nonsticky-at (match-end 3))
5244 (add-text-properties (match-end 3) (match-end 0) ip
)
5245 (org-rear-nonsticky-at (match-end 0)))
5246 (add-text-properties (match-beginning 0) (match-beginning 1) ip
)
5247 (org-rear-nonsticky-at (match-beginning 1))
5248 (add-text-properties (match-beginning 1) (match-end 1) vp
)
5249 (org-rear-nonsticky-at (match-end 1))
5250 (add-text-properties (match-end 1) (match-end 0) ip
)
5251 (org-rear-nonsticky-at (match-end 0)))
5254 (defun org-activate-dates (limit)
5255 "Run through the buffer and add overlays to dates."
5256 (if (re-search-forward org-tsr-regexp-both limit t
)
5258 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5259 (add-text-properties (match-beginning 0) (match-end 0)
5260 (list 'mouse-face
'highlight
5261 'keymap org-mouse-map
))
5262 (org-rear-nonsticky-at (match-end 0))
5263 (when org-display-custom-times
5265 (org-display-custom-time (match-beginning 3) (match-end 3)))
5266 (org-display-custom-time (match-beginning 1) (match-end 1)))
5269 (defvar org-target-link-regexp nil
5270 "Regular expression matching radio targets in plain text.")
5271 (make-variable-buffer-local 'org-target-link-regexp
)
5272 (defvar org-target-regexp
"<<\\([^<>\n\r]+\\)>>"
5273 "Regular expression matching a link target.")
5274 (defvar org-radio-target-regexp
"<<<\\([^<>\n\r]+\\)>>>"
5275 "Regular expression matching a radio target.")
5276 (defvar org-any-target-regexp
"<<<?\\([^<>\n\r]+\\)>>>?" ; FIXME, not exact, would match <<<aaa>> as a radio target.
5277 "Regular expression matching any target.")
5279 (defun org-activate-target-links (limit)
5280 "Run through the buffer and add overlays to target matches."
5281 (when org-target-link-regexp
5282 (let ((case-fold-search t
))
5283 (if (re-search-forward org-target-link-regexp limit t
)
5285 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5286 (add-text-properties (match-beginning 0) (match-end 0)
5287 (list 'mouse-face
'highlight
5288 'keymap org-mouse-map
5289 'help-echo
"Radio target link"
5290 'org-linked-text t
))
5291 (org-rear-nonsticky-at (match-end 0))
5294 (defun org-update-radio-target-regexp ()
5295 "Find all radio targets in this file and update the regular expression."
5297 (when (memq 'radio org-activate-links
)
5298 (setq org-target-link-regexp
5299 (org-make-target-link-regexp (org-all-targets 'radio
)))
5300 (org-restart-font-lock)))
5302 (defun org-hide-wide-columns (limit)
5304 (setq s
(text-property-any (point) (or limit
(point-max))
5307 (setq e
(next-single-property-change s
'org-cwidth
))
5308 (add-text-properties s e
(org-maybe-intangible '(invisible org-cwidth
)))
5312 (defvar org-latex-and-specials-regexp nil
5313 "Regular expression for highlighting export special stuff.")
5314 (defvar org-match-substring-regexp
)
5315 (defvar org-match-substring-with-braces-regexp
)
5317 ;; This should be with the exporter code, but we also use if for font-locking
5318 (defconst org-export-html-special-string-regexps
5319 '(("\\\\-" .
"­")
5320 ("---\\([^-]\\)" .
"—\\1")
5321 ("--\\([^-]\\)" .
"–\\1")
5322 ("\\.\\.\\." .
"…"))
5323 "Regular expressions for special string conversion.")
5326 (defun org-compute-latex-and-specials-regexp ()
5327 "Compute regular expression for stuff treated specially by exporters."
5328 (if (not org-highlight-latex-fragments-and-specials
)
5329 (org-set-local 'org-latex-and-specials-regexp nil
)
5332 ((matchers (plist-get org-format-latex-options
:matchers
))
5333 (latexs (delq nil
(mapcar (lambda (x) (if (member (car x
) matchers
) x
))
5334 org-latex-regexps
)))
5335 (org-export-allow-BIND nil
)
5336 (options (org-combine-plists (org-default-export-plist)
5337 (org-infile-export-plist)))
5338 (org-export-with-sub-superscripts (plist-get options
:sub-superscript
))
5339 (org-export-with-LaTeX-fragments (plist-get options
:LaTeX-fragments
))
5340 (org-export-with-TeX-macros (plist-get options
:TeX-macros
))
5341 (org-export-html-expand (plist-get options
:expand-quoted-html
))
5342 (org-export-with-special-strings (plist-get options
:special-strings
))
5345 ((equal org-export-with-sub-superscripts
'{})
5346 (list org-match-substring-with-braces-regexp
))
5347 (org-export-with-sub-superscripts
5348 (list org-match-substring-regexp
))
5351 (if org-export-with-LaTeX-fragments
5352 (mapcar (lambda (x) (nth 1 x
)) latexs
)))
5354 (if org-export-with-TeX-macros
5355 (list (concat "\\\\"
5361 (append org-entities-user
5363 (if (boundp 'org-latex-entities
)
5365 (or (car-safe x
) x
))
5370 ;; (list "\\\\\\(?:[a-zA-Z]+\\)")))
5371 (re-special (if org-export-with-special-strings
5372 (mapcar (lambda (x) (car x
))
5373 org-export-html-special-string-regexps
)))
5377 (if org-export-html-expand
"@<[^>\n]+>")
5380 'org-latex-and-specials-regexp
5381 (mapconcat 'identity
(append re-latex re-sub re-macros re-special
5384 (defun org-do-latex-and-special-faces (limit)
5385 "Run through the buffer and add overlays to links."
5386 (when org-latex-and-specials-regexp
5388 (while (and (not rtn
) (re-search-forward org-latex-and-specials-regexp
5390 (if (not (memq (car-safe (get-text-property (1+ (match-beginning 0))
5392 '(org-code org-verbatim underline
)))
5395 d
(cond ((member (char-after (1+ (match-beginning 0)))
5398 (font-lock-prepend-text-property
5399 (+ d
(match-beginning 0)) (match-end 0)
5400 'face
'org-latex-and-export-specials
)
5401 (add-text-properties (+ d
(match-beginning 0)) (match-end 0)
5402 '(font-lock-multiline t
)))))
5405 (defun org-restart-font-lock ()
5406 "Restart `font-lock-mode', to force refontification."
5407 (when (and (boundp 'font-lock-mode
) font-lock-mode
)
5409 (font-lock-mode 1)))
5411 (defun org-all-targets (&optional radio
)
5412 "Return a list of all targets in this file.
5413 With optional argument RADIO, only find radio targets."
5414 (let ((re (if radio org-radio-target-regexp org-target-regexp
))
5417 (goto-char (point-min))
5418 (while (re-search-forward re nil t
)
5419 (add-to-list 'rtn
(downcase (org-match-string-no-properties 1))))
5422 (defun org-make-target-link-regexp (targets)
5423 "Make regular expression matching all strings in TARGETS.
5424 The regular expression finds the targets also if there is a line break
5431 (setq x
(regexp-quote x
))
5432 (while (string-match " +" x
)
5433 (setq x
(replace-match "\\s-+" t t x
)))
5439 (defun org-activate-tags (limit)
5440 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t
)
5442 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
5443 (add-text-properties (match-beginning 1) (match-end 1)
5444 (list 'mouse-face
'highlight
5445 'keymap org-mouse-map
))
5446 (org-rear-nonsticky-at (match-end 1))
5449 (defun org-outline-level ()
5450 "Compute the outline level of the heading at point.
5451 This function assumes that the cursor is at the beginning of a line matched
5452 by `outline-regexp'. Otherwise it returns garbage.
5453 If this is called at a normal headline, the level is the number of stars.
5454 Use `org-reduced-level' to remove the effect of `org-odd-levels'.
5455 For plain list items, if they are matched by `outline-regexp', this returns
5456 1000 plus the line indentation."
5458 (looking-at outline-regexp
)
5459 (if (match-beginning 1)
5460 (+ (org-get-string-indentation (match-string 1)) 1000)
5461 (1- (- (match-end 0) (match-beginning 0))))))
5463 (defvar org-font-lock-keywords nil
)
5465 (defconst org-property-re
(org-re "^[ \t]*\\(:\\([-[:alnum:]_]+\\):\\)[ \t]*\\([^ \t\r\n].*\\)")
5466 "Regular expression matching a property line.")
5468 (defvar org-font-lock-hook nil
5469 "Functions to be called for special font lock stuff.")
5471 (defvar org-font-lock-set-keywords-hook nil
5472 "Functions that can manipulate `org-font-lock-extra-keywords'.
5473 This is calles after `org-font-lock-extra-keywords' is defined, but before
5474 it is installed to be used by font lock. This can be useful if something
5475 needs to be inserted at a specific position in the font-lock sequence.")
5477 (defun org-font-lock-hook (limit)
5478 (run-hook-with-args 'org-font-lock-hook limit
))
5480 (defun org-set-font-lock-defaults ()
5481 (let* ((em org-fontify-emphasized-text
)
5482 (lk org-activate-links
)
5483 (org-font-lock-extra-keywords
5486 '(org-font-lock-hook)
5488 `(,(if org-fontify-whole-heading-line
5489 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
5490 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
5491 (1 (org-get-level-face 1))
5492 (2 (org-get-level-face 2))
5493 (3 (org-get-level-face 3)))
5495 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
5498 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t
))
5499 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t
))
5500 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t
))
5501 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t
))
5503 (list org-drawer-regexp
'(0 'org-special-keyword t
))
5504 (list "^[ \t]*:END:" '(0 'org-special-keyword t
))
5506 (list org-property-re
5507 '(1 'org-special-keyword t
)
5508 '(3 'org-property-value t
))
5510 (if (memq 'tag lk
) '(org-activate-tags (1 'org-tag prepend
)))
5511 (if (memq 'angle lk
) '(org-activate-angle-links (0 'org-link t
)))
5512 (if (memq 'plain lk
) '(org-activate-plain-links))
5513 (if (memq 'bracket lk
) '(org-activate-bracket-links (0 'org-link t
)))
5514 (if (memq 'radio lk
) '(org-activate-target-links (0 'org-link t
)))
5515 (if (memq 'date lk
) '(org-activate-dates (0 'org-date t
)))
5516 (if (memq 'footnote lk
) '(org-activate-footnote-links
5517 (2 'org-footnote t
)))
5518 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t
))
5519 '(org-hide-wide-columns (0 nil append
))
5521 (list (concat "^\\*+[ \t]+" org-todo-regexp
"\\([ \t]\\|$\\)")
5522 '(1 (org-get-todo-face 1) t
))
5524 (if org-fontify-done-headline
5525 (list (concat "^[*]+ +\\<\\("
5526 (mapconcat 'regexp-quote org-done-keywords
"\\|")
5528 '(2 'org-headline-done t
))
5531 '(org-font-lock-add-priority-faces)
5533 '(org-font-lock-add-tag-faces)
5535 (list (concat "\\<" org-deadline-string
) '(0 'org-special-keyword t
))
5536 (list (concat "\\<" org-scheduled-string
) '(0 'org-special-keyword t
))
5537 (list (concat "\\<" org-closed-string
) '(0 'org-special-keyword t
))
5538 (list (concat "\\<" org-clock-string
) '(0 'org-special-keyword t
))
5541 (if (featurep 'xemacs
)
5542 '(org-do-emphasis-faces (0 nil append
))
5543 '(org-do-emphasis-faces)))
5545 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
5546 1 'org-checkbox prepend
)
5547 (if (cdr (assq 'checkbox org-list-automatic-rules
))
5548 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
5549 (0 (org-get-checkbox-statistics-face) t
)))
5550 ;; Description list items
5551 '("^[ \t]*\\([-+*]\\|[0-9]+[.)]\\)[ \t]+\\(.*? ::\\)"
5553 ;; ARCHIVEd headings
5554 (list (concat "^\\*+ \\(.*:" org-archive-tag
":.*\\)")
5555 '(1 'org-archived prepend
))
5557 '(org-do-latex-and-special-faces)
5558 '(org-fontify-entities)
5559 '(org-raise-scripts)
5561 '(org-activate-code (1 'org-code t
))
5563 (list (concat "^\\*+[ \t]+\\<\\(" org-comment-string
5564 "\\|" org-quote-string
"\\)\\>")
5565 '(1 'org-special-keyword t
))
5566 '("^#.*" (0 'font-lock-comment-face t
))
5567 ;; Blocks and meta lines
5568 '(org-fontify-meta-lines-and-blocks)
5570 (setq org-font-lock-extra-keywords
(delq nil org-font-lock-extra-keywords
))
5571 (run-hooks 'org-font-lock-set-keywords-hook
)
5572 ;; Now set the full font-lock-keywords
5573 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords
)
5574 (org-set-local 'font-lock-defaults
5575 '(org-font-lock-keywords t nil nil backward-paragraph
))
5576 (kill-local-variable 'font-lock-keywords
) nil
))
5578 (defun org-toggle-pretty-entities ()
5579 "Toggle the composition display of entities as UTF8 characters."
5581 (org-set-local 'org-pretty-entities
(not org-pretty-entities
))
5582 (org-restart-font-lock)
5583 (if org-pretty-entities
5584 (message "Entities are displayed as UTF8 characers")
5587 (org-decompose-region (point-min) (point-max))
5588 (message "Entities are displayed plain"))))
5590 (defun org-fontify-entities (limit)
5591 "Find an entity to fontify."
5593 (when org-pretty-entities
5595 (while (re-search-forward
5596 "\\\\\\([a-zA-Z][a-zA-Z0-9]*\\)\\($\\|[^[:alnum:]\n]\\)"
5598 (if (and (not (org-in-indented-comment-line))
5599 (setq ee
(org-entity-get (match-string 1)))
5600 (= (length (nth 6 ee
)) 1))
5602 (add-text-properties
5603 (match-beginning 0) (match-end 1)
5604 (list 'font-lock-fontified t
))
5605 (compose-region (match-beginning 0) (match-end 1)
5611 (defun org-fontify-like-in-org-mode (s &optional odd-levels
)
5612 "Fontify string S like in Org-mode."
5615 (let ((org-odd-levels-only odd-levels
))
5617 (font-lock-fontify-buffer)
5623 (defun org-get-level-face (n)
5624 "Get the right face for match N in font-lock matching of headlines."
5625 (setq org-l
(- (match-end 2) (match-beginning 1) 1))
5626 (if org-odd-levels-only
(setq org-l
(1+ (/ org-l
2))))
5627 (if org-cycle-level-faces
5628 (setq org-f
(nth (%
(1- org-l
) org-n-level-faces
) org-level-faces
))
5629 (setq org-f
(nth (1- (min org-l org-n-level-faces
)) org-level-faces
)))
5631 ((eq n
1) (if org-hide-leading-stars
'org-hide org-f
))
5633 (t (if org-level-color-stars-only nil org-f
))))
5636 (defun org-get-todo-face (kwd)
5637 "Get the right face for a TODO keyword KWD.
5638 If KWD is a number, get the corresponding match group."
5639 (if (numberp kwd
) (setq kwd
(match-string kwd
)))
5640 (or (org-face-from-face-or-color
5641 'todo
'org-todo
(cdr (assoc kwd org-todo-keyword-faces
)))
5642 (and (member kwd org-done-keywords
) 'org-done
)
5645 (defun org-face-from-face-or-color (context inherit face-or-color
)
5646 "Create a face list that inherits INHERIT, but sets the foreground color.
5647 When FACE-OR-COLOR is not a string, just return it."
5648 (if (stringp face-or-color
)
5649 (list :inherit inherit
5650 (cdr (assoc context org-faces-easy-properties
))
5654 (defun org-font-lock-add-tag-faces (limit)
5655 "Add the special tag faces."
5656 (when (and org-tag-faces org-tags-special-faces-re
)
5657 (while (re-search-forward org-tags-special-faces-re limit t
)
5658 (add-text-properties (match-beginning 1) (match-end 1)
5659 (list 'face
(org-get-tag-face 1)
5660 'font-lock-fontified t
))
5661 (backward-char 1))))
5663 (defun org-font-lock-add-priority-faces (limit)
5664 "Add the special priority faces."
5665 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t
)
5666 (add-text-properties
5667 (match-beginning 0) (match-end 0)
5668 (list 'face
(or (org-face-from-face-or-color
5669 'priority
'org-special-keyword
5670 (cdr (assoc (char-after (match-beginning 1))
5671 org-priority-faces
)))
5672 'org-special-keyword
)
5673 'font-lock-fontified t
))))
5675 (defun org-get-tag-face (kwd)
5676 "Get the right face for a TODO keyword KWD.
5677 If KWD is a number, get the corresponding match group."
5678 (if (numberp kwd
) (setq kwd
(match-string kwd
)))
5679 (or (org-face-from-face-or-color
5680 'tag
'org-tag
(cdr (assoc kwd org-tag-faces
)))
5683 (defun org-unfontify-region (beg end
&optional maybe_loudly
)
5684 "Remove fontification and activation overlays from links."
5685 (font-lock-default-unfontify-region beg end
)
5686 (let* ((buffer-undo-list t
)
5687 (inhibit-read-only t
) (inhibit-point-motion-hooks t
)
5688 (inhibit-modification-hooks t
)
5689 deactivate-mark buffer-file-name buffer-file-truename
)
5690 (org-decompose-region beg end
)
5691 (remove-text-properties
5694 ;; also remove line-prefix and wrap-prefix properties
5695 '(mouse-face t keymap t org-linked-text t
5696 invisible t intangible t
5697 line-prefix t wrap-prefix t
5698 org-no-flyspell t org-emphasis t
)
5699 '(mouse-face t keymap t org-linked-text t
5700 invisible t intangible t
5701 org-no-flyspell t org-emphasis t
)))
5702 (org-remove-font-lock-display-properties beg end
)))
5704 (defconst org-script-display
'(((raise -
0.3) (height 0.7))
5705 ((raise 0.3) (height 0.7))
5708 "Display properties for showing superscripts and subscripts.")
5710 (defun org-remove-font-lock-display-properties (beg end
)
5711 "Remove specific display properties that have been added by font lock.
5712 The will remove the raise properties that are used to show superscripts
5716 (setq next
(next-single-property-change beg
'display nil end
)
5717 prop
(get-text-property beg
'display
))
5718 (if (member prop org-script-display
)
5719 (put-text-property beg next
'display nil
))
5722 (defun org-raise-scripts (limit)
5723 "Add raise properties to sub/superscripts."
5724 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts
)
5725 (if (re-search-forward
5726 (if (eq org-use-sub-superscripts t
)
5727 org-match-substring-regexp
5728 org-match-substring-with-braces-regexp
)
5730 (let* ((pos (point)) table-p comment-p
5731 (mpos (match-beginning 3))
5732 (emph-p (get-text-property mpos
'org-emphasis
))
5733 (link-p (get-text-property mpos
'mouse-face
))
5734 (keyw-p (eq 'org-special-keyword
(get-text-property mpos
'face
))))
5735 (goto-char (point-at-bol))
5736 (setq table-p
(org-looking-at-p org-table-dataline-regexp
)
5737 comment-p
(org-looking-at-p "[ \t]*#"))
5739 ;; FIXME: Should we go back one character here, for a_b^c
5740 ;; (goto-char (1- pos)) ;????????????????????
5741 (if (or comment-p emph-p link-p keyw-p
)
5743 (put-text-property (match-beginning 3) (match-end 0)
5745 (if (equal (char-after (match-beginning 2)) ?^
)
5746 (nth (if table-p
3 1) org-script-display
)
5747 (nth (if table-p
2 0) org-script-display
)))
5748 (add-text-properties (match-beginning 2) (match-end 2)
5750 'org-dwidth t
'org-dwidth-n
1))
5751 (if (and (eq (char-after (match-beginning 3)) ?
{)
5752 (eq (char-before (match-end 3)) ?
}))
5754 (add-text-properties
5755 (match-beginning 3) (1+ (match-beginning 3))
5756 (list 'invisible t
'org-dwidth t
'org-dwidth-n
1))
5757 (add-text-properties
5758 (1- (match-end 3)) (match-end 3)
5759 (list 'invisible t
'org-dwidth t
'org-dwidth-n
1))))
5762 ;;;; Visibility cycling, including org-goto and indirect buffer
5766 (defvar org-cycle-global-status nil
)
5767 (make-variable-buffer-local 'org-cycle-global-status
)
5768 (defvar org-cycle-subtree-status nil
)
5769 (make-variable-buffer-local 'org-cycle-subtree-status
)
5773 (defvar org-inlinetask-min-level
)
5775 (defun org-cycle (&optional arg
)
5776 "TAB-action and visibility cycling for Org-mode.
5778 This is the command invoked in Org-mode by the TAB key. Its main purpose
5779 is outline visibility cycling, but it also invokes other actions
5780 in special contexts.
5782 - When this function is called with a prefix argument, rotate the entire
5783 buffer through 3 states (global cycling)
5784 1. OVERVIEW: Show only top-level headlines.
5785 2. CONTENTS: Show all headlines of all levels, but no body text.
5786 3. SHOW ALL: Show everything.
5787 When called with two `C-u C-u' prefixes, switch to the startup visibility,
5788 determined by the variable `org-startup-folded', and by any VISIBILITY
5789 properties in the buffer.
5790 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
5791 including any drawers.
5793 - When inside a table, re-align the table and move to the next field.
5795 - When point is at the beginning of a headline, rotate the subtree started
5796 by this line through 3 different states (local cycling)
5797 1. FOLDED: Only the main headline is shown.
5798 2. CHILDREN: The main headline and the direct children are shown.
5799 From this state, you can move to one of the children
5800 and zoom in further.
5801 3. SUBTREE: Show the entire subtree, including body text.
5802 If there is no subtree, switch directly from CHILDREN to FOLDED.
5804 - When point is at the beginning of an empty headline and the variable
5805 `org-cycle-level-after-item/entry-creation' is set, cycle the level
5806 of the headline by demoting and promoting it to likely levels. This
5807 speeds up creation document structure by pressing TAB once or several
5808 times right after creating a new headline.
5810 - When there is a numeric prefix, go up to a heading with level ARG, do
5811 a `show-subtree' and return to the previous cursor position. If ARG
5812 is negative, go up that many levels.
5814 - When point is not at the beginning of a headline, execute the global
5815 binding for TAB, which is re-indenting the line. See the option
5816 `org-cycle-emulate-tab' for details.
5818 - Special case: if point is at the beginning of the buffer and there is
5819 no headline in line 1, this function will act as if called with prefix arg
5820 (C-u TAB, same as S-TAB) also when called without prefix arg.
5821 But only if also the variable `org-cycle-global-at-bob' is t."
5823 (org-load-modules-maybe)
5824 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook
)
5825 (and org-cycle-level-after-item
/entry-creation
5826 (or (org-cycle-level)
5827 (org-cycle-item-indentation))))
5829 (or org-cycle-max-level
5830 (and (boundp 'org-inlinetask-min-level
)
5831 org-inlinetask-min-level
5832 (1- org-inlinetask-min-level
))))
5833 (nstars (and limit-level
5834 (if org-odd-levels-only
5835 (and limit-level
(1- (* limit-level
2)))
5839 ((not (org-mode-p)) outline-regexp
)
5840 ((or (eq org-cycle-include-plain-lists
'integrate
)
5841 (and org-cycle-include-plain-lists
(org-at-item-p)))
5843 (if nstars
(format "\\{1,%d\\}" nstars
) "+")
5844 " \\|\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) \\)"))
5845 (t (concat "\\*" (if nstars
(format "\\{1,%d\\} " nstars
) "+ ")))))
5846 (bob-special (and org-cycle-global-at-bob
(not arg
) (bobp)
5847 (not (looking-at outline-regexp
))))
5850 (delq 'org-optimize-window-after-visibility-change
5851 (copy-sequence org-cycle-hook
))
5855 (if (or bob-special
(equal arg
'(4)))
5856 ;; special case: use global cycling
5862 (setq last-command
'dummy
)
5863 (org-set-startup-visibility)
5864 (message "Startup visibility, plus VISIBILITY properties"))
5868 (message "Entire buffer visible, including drawers"))
5870 ((org-at-table-p 'any
)
5871 ;; Enter the table or move to the next field in the table
5872 (if (org-at-table.el-p
)
5873 (message "Use C-c ' to edit table.el tables")
5874 (if arg
(org-table-edit-field t
)
5875 (org-table-justify-field-maybe)
5876 (call-interactively 'org-table-next-field
))))
5878 ((run-hook-with-args-until-success
5879 'org-tab-after-check-for-table-hook
))
5881 ((eq arg t
) ;; Global cycling
5882 (org-cycle-internal-global))
5884 ((and org-drawers org-drawer-regexp
5886 (beginning-of-line 1)
5887 (looking-at org-drawer-regexp
)))
5888 ;; Toggle block visibility
5890 (not (get-char-property (match-end 0) 'invisible
))))
5893 ;; Show-subtree, ARG levels up from here.
5895 (org-back-to-heading)
5896 (outline-up-heading (if (< arg
0) (- arg
)
5897 (- (funcall outline-level
) arg
)))
5898 (org-show-subtree)))
5900 ((and (save-excursion (beginning-of-line 1) (looking-at outline-regexp
))
5901 (or (bolp) (not (eq org-cycle-emulate-tab
'exc-hl-bol
))))
5903 (org-cycle-internal-local))
5905 ;; TAB emulation and template completion
5906 (buffer-read-only (org-back-to-heading))
5908 ((run-hook-with-args-until-success
5909 'org-tab-after-check-for-cycling-hook
))
5911 ((org-try-structure-completion))
5913 ((org-try-cdlatex-tab))
5915 ((run-hook-with-args-until-success
5916 'org-tab-before-tab-emulation-hook
))
5918 ((and (eq org-cycle-emulate-tab
'exc-hl-bol
)
5920 (not (looking-at outline-regexp
))))
5921 (call-interactively (global-key-binding "\t")))
5923 ((if (and (memq org-cycle-emulate-tab
'(white whitestart
))
5924 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
5925 (or (and (eq org-cycle-emulate-tab
'white
)
5926 (= (match-end 0) (point-at-eol)))
5927 (and (eq org-cycle-emulate-tab
'whitestart
)
5928 (>= (match-end 0) pos
))))
5930 (eq org-cycle-emulate-tab t
))
5931 (call-interactively (global-key-binding "\t")))
5934 (org-back-to-heading)
5937 (defun org-cycle-internal-global ()
5938 "Do the global cycling action."
5940 ((and (eq last-command this-command
)
5941 (eq org-cycle-global-status
'overview
))
5942 ;; We just created the overview - now do table of contents
5943 ;; This can be slow in very large buffers, so indicate action
5944 (run-hook-with-args 'org-pre-cycle-hook
'contents
)
5945 (message "CONTENTS...")
5947 (message "CONTENTS...done")
5948 (setq org-cycle-global-status
'contents
)
5949 (run-hook-with-args 'org-cycle-hook
'contents
))
5951 ((and (eq last-command this-command
)
5952 (eq org-cycle-global-status
'contents
))
5953 ;; We just showed the table of contents - now show everything
5954 (run-hook-with-args 'org-pre-cycle-hook
'all
)
5956 (message "SHOW ALL")
5957 (setq org-cycle-global-status
'all
)
5958 (run-hook-with-args 'org-cycle-hook
'all
))
5961 ;; Default action: go to overview
5962 (run-hook-with-args 'org-pre-cycle-hook
'overview
)
5964 (message "OVERVIEW")
5965 (setq org-cycle-global-status
'overview
)
5966 (run-hook-with-args 'org-cycle-hook
'overview
))))
5968 (defun org-cycle-internal-local ()
5969 "Do the local cycling action."
5970 (let ((goal-column 0) eoh eol eos level has-children children-skipped
)
5971 ;; First, some boundaries
5973 (org-back-to-heading)
5974 (setq level
(funcall outline-level
))
5976 (beginning-of-line 2)
5977 (if (or (featurep 'xemacs
) (<= emacs-major-version
21))
5978 ; XEmacs does not have `next-single-char-property-change'
5979 ; I'm not sure about Emacs 21.
5980 (while (and (not (eobp)) ;; this is like `next-line'
5981 (get-char-property (1- (point)) 'invisible
))
5982 (beginning-of-line 2))
5983 (while (and (not (eobp)) ;; this is like `next-line'
5984 (get-char-property (1- (point)) 'invisible
))
5985 (goto-char (next-single-char-property-change (point) 'invisible
))
5986 (and (eolp) (beginning-of-line 2))))
5988 (outline-end-of-heading) (setq eoh
(point))
5990 (outline-next-heading)
5991 (setq has-children
(and (org-at-heading-p t
)
5992 (> (funcall outline-level
) level
))))
5993 ;; if we're in a list, org-end-of-subtree is in fact org-end-of-item.
5995 (setq eos
(if (and (org-end-of-item) (bolp))
5998 (org-end-of-subtree t
)
6000 (skip-chars-forward " \t\n"))
6001 (setq eos
(if (eobp) (point) (1- (point))))))
6002 ;; Find out what to do next and set `this-command'
6005 ;; Nothing is hidden behind this heading
6006 (run-hook-with-args 'org-pre-cycle-hook
'empty
)
6007 (message "EMPTY ENTRY")
6008 (setq org-cycle-subtree-status nil
)
6011 (outline-next-heading)
6012 (if (outline-invisible-p) (org-flag-heading nil
))))
6013 ((and (or (>= eol eos
)
6014 (not (string-match "\\S-" (buffer-substring eol eos
))))
6016 (not (setq children-skipped
6017 org-cycle-skip-children-state-if-no-children
))))
6018 ;; Entire subtree is hidden in one line: children view
6019 (run-hook-with-args 'org-pre-cycle-hook
'children
)
6022 (message "CHILDREN")
6025 (outline-next-heading)
6026 (if (outline-invisible-p) (org-flag-heading nil
)))
6027 (setq org-cycle-subtree-status
'children
)
6028 (run-hook-with-args 'org-cycle-hook
'children
))
6029 ((or children-skipped
6030 (and (eq last-command this-command
)
6031 (eq org-cycle-subtree-status
'children
)))
6032 ;; We just showed the children, or no children are there,
6033 ;; now show everything.
6034 (run-hook-with-args 'org-pre-cycle-hook
'subtree
)
6035 (outline-flag-region eoh eos nil
)
6036 (message (if children-skipped
"SUBTREE (NO CHILDREN)" "SUBTREE"))
6037 (setq org-cycle-subtree-status
'subtree
)
6038 (run-hook-with-args 'org-cycle-hook
'subtree
))
6040 ;; Default action: hide the subtree.
6041 (run-hook-with-args 'org-pre-cycle-hook
'folded
)
6042 (outline-flag-region eoh eos t
)
6044 (setq org-cycle-subtree-status
'folded
)
6045 (run-hook-with-args 'org-cycle-hook
'folded
)))))
6048 (defun org-global-cycle (&optional arg
)
6049 "Cycle the global visibility. For details see `org-cycle'.
6050 With \\[universal-argument] prefix arg, switch to startup visibility.
6051 With a numeric prefix, show all headlines up to that level."
6053 (let ((org-cycle-include-plain-lists
6054 (if (org-mode-p) org-cycle-include-plain-lists nil
)))
6058 (hide-sublevels arg
)
6059 (setq org-cycle-global-status
'contents
))
6061 (org-set-startup-visibility)
6062 (message "Startup visibility, plus VISIBILITY properties."))
6064 (org-cycle '(4))))))
6066 (defun org-set-startup-visibility ()
6067 "Set the visibility required by startup options and properties."
6069 ((eq org-startup-folded t
)
6071 ((eq org-startup-folded
'content
)
6072 (let ((this-command 'org-cycle
) (last-command 'org-cycle
))
6073 (org-cycle '(4)) (org-cycle '(4)))))
6074 (unless (eq org-startup-folded
'showeverything
)
6075 (if org-hide-block-startup
(org-hide-block-all))
6076 (org-set-visibility-according-to-property 'no-cleanup
)
6077 (org-cycle-hide-archived-subtrees 'all
)
6078 (org-cycle-hide-drawers 'all
)
6079 (org-cycle-show-empty-lines t
)))
6081 (defun org-set-visibility-according-to-property (&optional no-cleanup
)
6082 "Switch subtree visibilities according to :VISIBILITY: property."
6084 (let (org-show-entry-below state
)
6086 (goto-char (point-min))
6087 (while (re-search-forward
6088 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6090 (setq state
(match-string 1))
6092 (org-back-to-heading t
)
6096 ((equal state
'("fold" "folded"))
6098 ((equal state
"children")
6099 (org-show-hidden-entry)
6101 ((equal state
"content")
6104 (org-narrow-to-subtree)
6106 ((member state
'("all" "showall"))
6109 (org-cycle-hide-archived-subtrees 'all
)
6110 (org-cycle-hide-drawers 'all
)
6111 (org-cycle-show-empty-lines 'all
)))))
6113 (defun org-overview ()
6114 "Switch to overview mode, showing only top-level headlines.
6115 Really, this shows all headlines with level equal or greater than the level
6116 of the first headline in the buffer. This is important, because if the
6117 first headline is not level one, then (hide-sublevels 1) gives confusing
6120 (let ((level (save-excursion
6121 (goto-char (point-min))
6122 (if (re-search-forward (concat "^" outline-regexp
) nil t
)
6124 (goto-char (match-beginning 0))
6125 (funcall outline-level
))))))
6126 (and level
(hide-sublevels level
))))
6128 (defun org-content (&optional arg
)
6129 "Show all headlines in the buffer, like a table of contents.
6130 With numerical argument N, show content up to level N."
6133 ;; Visit all headings and show their offspring
6134 (and (integerp arg
) (org-overview))
6135 (goto-char (point-max))
6137 (while (and (progn (condition-case nil
6138 (outline-previous-visible-heading 1)
6139 (error (goto-char (point-min))))
6141 (looking-at outline-regexp
))
6143 (show-children (1- arg
))
6145 (if (bobp) (throw 'exit nil
))))))
6148 (defun org-optimize-window-after-visibility-change (state)
6149 "Adjust the window after a change in outline visibility.
6150 This function is the default value of the hook `org-cycle-hook'."
6151 (when (get-buffer-window (current-buffer))
6153 ((eq state
'content
) nil
)
6154 ((eq state
'all
) nil
)
6155 ((eq state
'folded
) nil
)
6156 ((eq state
'children
) (or (org-subtree-end-visible-p) (recenter 1)))
6157 ((eq state
'subtree
) (or (org-subtree-end-visible-p) (recenter 1))))))
6159 (defun org-remove-empty-overlays-at (pos)
6160 "Remove outline overlays that do not contain non-white stuff."
6163 (and (eq 'outline
(overlay-get o
'invisible
))
6164 (not (string-match "\\S-" (buffer-substring (overlay-start o
)
6166 (delete-overlay o
)))
6169 (defun org-clean-visibility-after-subtree-move ()
6170 "Fix visibility issues after moving a subtree."
6171 ;; First, find a reasonable region to look at:
6172 ;; Start two siblings above, end three below
6173 (let* ((beg (save-excursion
6174 (and (org-get-last-sibling)
6175 (org-get-last-sibling))
6177 (end (save-excursion
6178 (and (org-get-next-sibling)
6179 (org-get-next-sibling)
6180 (org-get-next-sibling))
6181 (if (org-at-heading-p)
6184 (level (looking-at "\\*+"))
6185 (re (if level
(concat "^" (regexp-quote (match-string 0)) " "))))
6188 (narrow-to-region beg end
)
6190 ;; Properly fold already folded siblings
6191 (goto-char (point-min))
6192 (while (re-search-forward re nil t
)
6193 (if (and (not (outline-invisible-p))
6195 (goto-char (point-at-eol)) (outline-invisible-p)))
6197 (org-cycle-show-empty-lines 'overview
)
6198 (org-cycle-hide-drawers 'overview
)))))
6200 (defun org-cycle-show-empty-lines (state)
6201 "Show empty lines above all visible headlines.
6202 The region to be covered depends on STATE when called through
6203 `org-cycle-hook'. Lisp program can use t for STATE to get the
6204 entire buffer covered. Note that an empty line is only shown if there
6205 are at least `org-cycle-separator-lines' empty lines before the headline."
6206 (when (not (= org-cycle-separator-lines
0))
6208 (let* ((n (abs org-cycle-separator-lines
))
6210 ((= n
1) "\\(\n[ \t]*\n\\*+\\) ")
6211 ((= n
2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
6212 (t (let ((ns (number-to-string (- n
2))))
6213 (concat "^\\(?:[ \t]*\n\\)\\{" ns
"," ns
"\\}"
6214 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
6217 ((memq state
'(overview contents t
))
6218 (setq beg
(point-min) end
(point-max)))
6219 ((memq state
'(children folded
))
6220 (setq beg
(point) end
(progn (org-end-of-subtree t t
)
6221 (beginning-of-line 2)
6225 (while (re-search-forward re end t
)
6226 (unless (get-char-property (match-end 1) 'invisible
)
6227 (setq e
(match-end 1))
6228 (if (< org-cycle-separator-lines
0)
6229 (setq b
(save-excursion
6230 (goto-char (match-beginning 0))
6231 (org-back-over-empty-lines)
6233 (goto-char (max (point-min) (1- (point))))
6237 (setq b
(match-beginning 1)))
6238 (outline-flag-region b e nil
)))))))
6239 ;; Never hide empty lines at the end of the file.
6241 (goto-char (point-max))
6242 (outline-previous-heading)
6243 (outline-end-of-heading)
6244 (if (and (looking-at "[ \t\n]+")
6245 (= (match-end 0) (point-max)))
6246 (outline-flag-region (point) (match-end 0) nil
))))
6248 (defun org-show-empty-lines-in-parent ()
6249 "Move to the parent and re-show empty lines before visible headlines."
6251 (let ((context (if (org-up-heading-safe) 'children
'overview
)))
6252 (org-cycle-show-empty-lines context
))))
6254 (defun org-files-list ()
6255 "Return `org-agenda-files' list, plus all open org-mode files.
6256 This is useful for operations that need to scan all of a user's
6257 open and agenda-wise Org files."
6258 (let ((files (mapcar 'expand-file-name
(org-agenda-files))))
6259 (dolist (buf (buffer-list))
6260 (with-current-buffer buf
6261 (if (and (eq major-mode
'org-mode
) (buffer-file-name))
6262 (let ((file (expand-file-name (buffer-file-name))))
6263 (unless (member file files
)
6264 (push file files
))))))
6267 (defsubst org-entry-beginning-position
()
6268 "Return the beginning position of the current entry."
6269 (save-excursion (outline-back-to-heading t
) (point)))
6271 (defsubst org-entry-end-position
()
6272 "Return the end position of the current entry."
6273 (save-excursion (outline-next-heading) (point)))
6275 (defun org-cycle-hide-drawers (state)
6276 "Re-hide all drawers after a visibility state change."
6277 (when (and (org-mode-p)
6278 (not (memq state
'(overview folded contents
))))
6280 (let* ((globalp (memq state
'(contents all
)))
6281 (beg (if globalp
(point-min) (point)))
6282 (end (if globalp
(point-max)
6283 (if (eq state
'children
)
6284 (save-excursion (outline-next-heading) (point))
6285 (org-end-of-subtree t
)))))
6287 (while (re-search-forward org-drawer-regexp end t
)
6288 (org-flag-drawer t
))))))
6290 (defun org-flag-drawer (flag)
6292 (beginning-of-line 1)
6293 (when (looking-at "^[ \t]*:[a-zA-Z][a-zA-Z0-9]*:")
6294 (let ((b (match-end 0))
6295 (outline-regexp org-outline-regexp
))
6296 (if (re-search-forward
6298 (save-excursion (outline-next-heading) (point)) t
)
6299 (outline-flag-region b
(point-at-eol) flag
)
6300 (error ":END: line missing at position %s" b
))))))
6302 (defun org-subtree-end-visible-p ()
6303 "Is the end of the current subtree visible?"
6304 (pos-visible-in-window-p
6305 (save-excursion (org-end-of-subtree t
) (point))))
6307 (defun org-first-headline-recenter (&optional N
)
6308 "Move cursor to the first headline and recenter the headline.
6309 Optional argument N means put the headline into the Nth line of the window."
6310 (goto-char (point-min))
6311 (when (re-search-forward (concat "^\\(" outline-regexp
"\\)") nil t
)
6313 (recenter (prefix-numeric-value N
))))
6315 ;;; Saving and restoring visibility
6317 (defun org-outline-overlay-data (&optional use-markers
)
6318 "Return a list of the locations of all outline overlays.
6319 These are overlays with the `invisible' property value `outline'.
6320 The return value is a list of cons cells, with start and stop
6321 positions for each overlay.
6322 If USE-MARKERS is set, return the positions as markers."
6329 (when (eq (overlay-get o
'invisible
) 'outline
)
6330 (setq beg
(overlay-start o
)
6331 end
(overlay-end o
))
6332 (and beg end
(> end beg
)
6334 (cons (move-marker (make-marker) beg
)
6335 (move-marker (make-marker) end
))
6337 (overlays-in (point-min) (point-max))))))))
6339 (defun org-set-outline-overlay-data (data)
6340 "Create visibility overlays for all positions in DATA.
6341 DATA should have been made by `org-outline-overlay-data'."
6348 (setq o
(make-overlay (car c
) (cdr c
)))
6349 (overlay-put o
'invisible
'outline
))
6352 ;;; Folding of blocks
6354 (defconst org-block-regexp
6355 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
6356 "Regular expression for hiding blocks.")
6358 (defvar org-hide-block-overlays nil
6359 "Overlays hiding blocks.")
6360 (make-variable-buffer-local 'org-hide-block-overlays
)
6362 (defun org-block-map (function &optional start end
)
6363 "Call FUNCTION at the head of all source blocks in the current buffer.
6364 Optional arguments START and END can be used to limit the range."
6365 (let ((start (or start
(point-min)))
6366 (end (or end
(point-max))))
6369 (while (and (< (point) end
) (re-search-forward org-block-regexp end t
))
6372 (goto-char (match-beginning 0))
6373 (funcall function
)))))))
6375 (defun org-hide-block-toggle-all ()
6376 "Toggle the visibility of all blocks in the current buffer."
6377 (org-block-map #'org-hide-block-toggle
))
6379 (defun org-hide-block-all ()
6380 "Fold all blocks in the current buffer."
6382 (org-show-block-all)
6383 (org-block-map #'org-hide-block-toggle-maybe
))
6385 (defun org-show-block-all ()
6386 "Unfold all blocks in the current buffer."
6388 (mapc 'delete-overlay org-hide-block-overlays
)
6389 (setq org-hide-block-overlays nil
))
6391 (defun org-hide-block-toggle-maybe ()
6392 "Toggle visibility of block at point."
6394 (let ((case-fold-search t
))
6396 (beginning-of-line 1)
6397 (looking-at org-block-regexp
))
6398 (progn (org-hide-block-toggle)
6399 t
) ;; to signal that we took action
6400 nil
))) ;; to signal that we did not
6402 (defun org-hide-block-toggle (&optional force
)
6403 "Toggle the visibility of the current block."
6407 (if (re-search-forward org-block-regexp nil t
)
6408 (let ((start (- (match-beginning 4) 1)) ;; beginning of body
6409 (end (match-end 0)) ;; end of entire body
6411 (if (memq t
(mapcar (lambda (overlay)
6412 (eq (overlay-get overlay
'invisible
)
6414 (overlays-at start
)))
6415 (if (or (not force
) (eq force
'off
))
6417 (when (member ov org-hide-block-overlays
)
6418 (setq org-hide-block-overlays
6419 (delq ov org-hide-block-overlays
)))
6420 (when (eq (overlay-get ov
'invisible
)
6422 (delete-overlay ov
)))
6423 (overlays-at start
)))
6424 (setq ov
(make-overlay start end
))
6425 (overlay-put ov
'invisible
'org-hide-block
)
6426 ;; make the block accessible to isearch
6428 ov
'isearch-open-invisible
6430 (when (member ov org-hide-block-overlays
)
6431 (setq org-hide-block-overlays
6432 (delq ov org-hide-block-overlays
)))
6433 (when (eq (overlay-get ov
'invisible
)
6435 (delete-overlay ov
))))
6436 (push ov org-hide-block-overlays
)))
6437 (error "Not looking at a source block"))))
6439 ;; org-tab-after-check-for-cycling-hook
6440 (add-hook 'org-tab-first-hook
'org-hide-block-toggle-maybe
)
6441 ;; Remove overlays when changing major mode
6442 (add-hook 'org-mode-hook
6443 (lambda () (org-add-hook 'change-major-mode-hook
6444 'org-show-block-all
'append
'local
)))
6448 (defvar org-goto-window-configuration nil
)
6449 (defvar org-goto-marker nil
)
6450 (defvar org-goto-map
6451 (let ((map (make-sparse-keymap)))
6452 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command mouse-drag-region universal-argument org-occur
)) cmd
)
6453 (while (setq cmd
(pop cmds
))
6454 (substitute-key-definition cmd cmd map global-map
)))
6455 (suppress-keymap map
)
6456 (org-defkey map
"\C-m" 'org-goto-ret
)
6457 (org-defkey map
[(return)] 'org-goto-ret
)
6458 (org-defkey map
[(left)] 'org-goto-left
)
6459 (org-defkey map
[(right)] 'org-goto-right
)
6460 (org-defkey map
[(control ?g
)] 'org-goto-quit
)
6461 (org-defkey map
"\C-i" 'org-cycle
)
6462 (org-defkey map
[(tab)] 'org-cycle
)
6463 (org-defkey map
[(down)] 'outline-next-visible-heading
)
6464 (org-defkey map
[(up)] 'outline-previous-visible-heading
)
6465 (if org-goto-auto-isearch
6466 (if (fboundp 'define-key-after
)
6467 (define-key-after map
[t] 'org-goto-local-auto-isearch)
6469 (org-defkey map "q" 'org-goto-quit)
6470 (org-defkey map "n" 'outline-next-visible-heading)
6471 (org-defkey map "p" 'outline-previous-visible-heading)
6472 (org-defkey map "f" 'outline-forward-same-level)
6473 (org-defkey map "b" 'outline-backward-same-level)
6474 (org-defkey map "u" 'outline-up-heading))
6475 (org-defkey map "/" 'org-occur)
6476 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
6477 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
6478 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
6479 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
6480 (org-defkey map "\C-c\C-u" 'outline-up-heading)
6483 (defconst org-goto-help
6484 "Browse buffer copy, to find location or copy text. Just type for auto-isearch.
6485 RET=jump to location [Q]uit and return to previous location
6486 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
6488 (defvar org-goto-start-pos) ; dynamically scoped parameter
6490 ;; FIXME: Docstring does not mention both interfaces
6491 (defun org-goto (&optional alternative-interface)
6492 "Look up a different location in the current file, keeping current visibility.
6494 When you want look-up or go to a different location in a document, the
6495 fastest way is often to fold the entire buffer and then dive into the tree.
6496 This method has the disadvantage, that the previous location will be folded,
6497 which may not be what you want.
6499 This command works around this by showing a copy of the current buffer
6500 in an indirect buffer, in overview mode. You can dive into the tree in
6501 that copy, use org-occur and incremental search to find a location.
6502 When pressing RET or `Q', the command returns to the original buffer in
6503 which the visibility is still unchanged. After RET is will also jump to
6504 the location selected in the indirect buffer and expose the
6505 the headline hierarchy above."
6507 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
6508 (org-refile-use-outline-path t)
6509 (org-refile-target-verify-function nil)
6511 (if (not alternative-interface)
6513 (if (eq org-goto-interface 'outline)
6514 'outline-path-completion
6516 (org-goto-start-pos (point))
6518 (if (eq interface 'outline)
6519 (car (org-get-location (current-buffer) org-goto-help))
6520 (let ((pa (org-refile-get-location "Goto: ")))
6521 (org-refile-check-position pa)
6525 (org-mark-ring-push org-goto-start-pos)
6526 (goto-char selected-point)
6527 (if (or (outline-invisible-p) (org-invisible-p2))
6528 (org-show-context 'org-goto)))
6531 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
6532 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
6533 (defvar org-goto-local-auto-isearch-map) ; defined below
6535 (defun org-get-location (buf help)
6536 "Let the user select a location in the Org-mode buffer BUF.
6537 This function uses a recursive edit. It returns the selected position
6539 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
6540 (isearch-hide-immediately nil)
6541 (isearch-search-fun-function
6542 (lambda () 'org-goto-local-search-headings))
6543 (org-goto-selected-point org-goto-exit-command)
6545 (special-display-buffer-names nil)
6546 (special-display-regexps nil)
6547 (special-display-function nil))
6549 (save-window-excursion
6550 (delete-other-windows)
6551 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
6554 (make-indirect-buffer (current-buffer) "*org-goto*")
6555 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
6556 (with-output-to-temp-buffer "*Help*"
6558 (org-fit-window-to-buffer (get-buffer-window "*Help*"))
6559 (setq buffer-read-only nil)
6560 (let ((org-startup-truncated t)
6561 (org-startup-folded nil)
6562 (org-startup-align-all-tables nil))
6565 (setq buffer-read-only t)
6566 (if (and (boundp 'org-goto-start-pos)
6567 (integer-or-marker-p org-goto-start-pos))
6568 (let ((org-show-hierarchy-above t)
6569 (org-show-siblings t)
6570 (org-show-following-heading t))
6571 (goto-char org-goto-start-pos)
6572 (and (outline-invisible-p) (org-show-context)))
6573 (goto-char (point-min)))
6574 (let (org-special-ctrl-a/e) (org-beginning-of-line))
6575 (message "Select location and press RET")
6576 (use-local-map org-goto-map)
6579 (kill-buffer "*org-goto*")
6580 (cons org-goto-selected-point org-goto-exit-command)))
6582 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
6583 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
6584 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
6585 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char)
6587 (defun org-goto-local-search-headings (string bound noerror)
6588 "Search and make sure that any matches are in headlines."
6590 (while (if isearch-forward
6591 (search-forward string bound noerror)
6592 (search-backward string bound noerror))
6593 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
6594 (and (member :headline context)
6595 (not (member :tags context))))
6596 (throw 'return (point))))))
6598 (defun org-goto-local-auto-isearch ()
6601 (goto-char (point-min))
6602 (let ((keys (this-command-keys)))
6603 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
6605 (isearch-process-search-char (string-to-char keys)))))
6607 (defun org-goto-ret (&optional arg)
6608 "Finish `org-goto' by going to the new location."
6610 (setq org-goto-selected-point (point)
6611 org-goto-exit-command 'return)
6614 (defun org-goto-left ()
6615 "Finish `org-goto' by going to the new location."
6617 (if (org-on-heading-p)
6619 (beginning-of-line 1)
6620 (setq org-goto-selected-point (point)
6621 org-goto-exit-command 'left)
6623 (error "Not on a heading")))
6625 (defun org-goto-right ()
6626 "Finish `org-goto' by going to the new location."
6628 (if (org-on-heading-p)
6630 (setq org-goto-selected-point (point)
6631 org-goto-exit-command 'right)
6633 (error "Not on a heading")))
6635 (defun org-goto-quit ()
6636 "Finish `org-goto' without cursor motion."
6638 (setq org-goto-selected-point nil)
6639 (setq org-goto-exit-command 'quit)
6642 ;;; Indirect buffer display of subtrees
6644 (defvar org-indirect-dedicated-frame nil
6645 "This is the frame being used for indirect tree display.")
6646 (defvar org-last-indirect-buffer nil)
6648 (defun org-tree-to-indirect-buffer (&optional arg)
6649 "Create indirect buffer and narrow it to current subtree.
6650 With numerical prefix ARG, go up to this level and then take that tree.
6651 If ARG is negative, go up that many levels.
6652 If `org-indirect-buffer-display' is not `new-frame', the command removes the
6653 indirect buffer previously made with this command, to avoid proliferation of
6654 indirect buffers. However, when you call the command with a \
6655 \\[universal-argument] prefix, or
6656 when `org-indirect-buffer-display' is `new-frame', the last buffer
6657 is kept so that you can work with several indirect buffers at the same time.
6658 If `org-indirect-buffer-display' is `dedicated-frame', the \
6659 \\[universal-argument] prefix also
6660 requests that a new frame be made for the new buffer, so that the dedicated
6661 frame is not changed."
6663 (let ((cbuf (current-buffer))
6664 (cwin (selected-window))
6666 beg end level heading ibuf)
6668 (org-back-to-heading t)
6670 (setq level (org-outline-level))
6671 (if (< arg 0) (setq arg (+ level arg)))
6672 (while (> (setq level (org-outline-level)) arg)
6673 (outline-up-heading 1 t)))
6675 heading (org-get-heading))
6676 (org-end-of-subtree t t)
6677 (if (org-on-heading-p) (backward-char 1))
6679 (if (and (buffer-live-p org-last-indirect-buffer)
6680 (not (eq org-indirect-buffer-display 'new-frame))
6682 (kill-buffer org-last-indirect-buffer))
6683 (setq ibuf (org-get-indirect-buffer cbuf)
6684 org-last-indirect-buffer ibuf)
6686 ((or (eq org-indirect-buffer-display 'new-frame)
6687 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
6688 (select-frame (make-frame))
6689 (delete-other-windows)
6690 (switch-to-buffer ibuf)
6691 (org-set-frame-title heading))
6692 ((eq org-indirect-buffer-display 'dedicated-frame)
6694 (select-frame (or (and org-indirect-dedicated-frame
6695 (frame-live-p org-indirect-dedicated-frame)
6696 org-indirect-dedicated-frame)
6697 (setq org-indirect-dedicated-frame (make-frame)))))
6698 (delete-other-windows)
6699 (switch-to-buffer ibuf)
6700 (org-set-frame-title (concat "Indirect: " heading)))
6701 ((eq org-indirect-buffer-display 'current-window)
6702 (switch-to-buffer ibuf))
6703 ((eq org-indirect-buffer-display 'other-window)
6704 (pop-to-buffer ibuf))
6705 (t (error "Invalid value")))
6706 (if (featurep 'xemacs)
6707 (save-excursion (org-mode) (turn-on-font-lock)))
6708 (narrow-to-region beg end)
6711 (and (window-live-p cwin) (select-window cwin))))
6713 (defun org-get-indirect-buffer (&optional buffer)
6714 (setq buffer (or buffer (current-buffer)))
6715 (let ((n 1) (base (buffer-name buffer)) bname)
6716 (while (buffer-live-p
6717 (get-buffer (setq bname (concat base "-" (number-to-string n)))))
6720 (make-indirect-buffer buffer bname 'clone)
6721 (error (make-indirect-buffer buffer bname)))))
6723 (defun org-set-frame-title (title)
6724 "Set the title of the current frame to the string TITLE."
6725 ;; FIXME: how to name a single frame in XEmacs???
6726 (unless (featurep 'xemacs)
6727 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
6729 ;;;; Structure editing
6731 ;;; Inserting headlines
6733 (defun org-previous-line-empty-p ()
6736 (or (beginning-of-line 0) t)
6738 (looking-at "[ \t]*$")))))
6740 (defun org-insert-heading (&optional force-heading invisible-ok)
6741 "Insert a new heading or item with same depth at point.
6742 If point is in a plain list and FORCE-HEADING is nil, create a new list item.
6743 If point is at the beginning of a headline, insert a sibling before the
6744 current headline. If point is not at the beginning, split the line,
6745 create the new headline with the text in the current line after point
6746 \(but see also the variable `org-M-RET-may-split-line').
6748 When INVISIBLE-OK is set, stop at invisible headlines when going back.
6749 This is important for non-interactive uses of the command."
6751 (if (or (= (buffer-size) 0)
6752 (and (not (save-excursion
6753 (and (ignore-errors (org-back-to-heading invisible-ok))
6754 (org-on-heading-p))))
6755 (not (org-in-item-p))))
6758 (run-hooks 'org-insert-heading-hook))
6759 (when (or force-heading (not (org-insert-item)))
6760 (let* ((empty-line-p nil)
6762 (on-heading (org-on-heading-p))
6763 (head (save-excursion
6766 (org-back-to-heading invisible-ok)
6767 (when (and (not on-heading)
6768 (featurep 'org-inlinetask)
6769 (integerp org-inlinetask-min-level)
6770 (>= (length (match-string 0))
6771 org-inlinetask-min-level))
6772 ;; Find a heading level before the inline task
6773 (while (and (setq level (org-up-heading-safe))
6774 (>= level org-inlinetask-min-level)))
6775 (if (org-on-heading-p)
6776 (org-back-to-heading invisible-ok)
6777 (error "This should not happen")))
6778 (setq empty-line-p (org-previous-line-empty-p))
6781 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
6782 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
6783 pos hide-previous previous-pos)
6785 ((and (org-on-heading-p) (bolp)
6787 (save-excursion (backward-char 1) (not (outline-invisible-p)))))
6788 ;; insert before the current line
6789 (open-line (if blank 2 1)))
6791 (not org-insert-heading-respect-content)
6794 (backward-char 1) (not (outline-invisible-p)))))
6795 ;; insert right here
6798 ;; somewhere in the line
6800 (setq previous-pos (point-at-bol))
6802 (setq hide-previous (outline-invisible-p)))
6803 (and org-insert-heading-respect-content (org-show-subtree))
6805 (and (org-get-alist-option org-M-RET-may-split-line 'headline)
6808 (goto-char (point-at-bol))
6809 (and (looking-at org-complex-heading-regexp)
6810 (> p (match-beginning 4)))))))
6813 (org-insert-heading-respect-content
6814 (org-end-of-subtree nil t)
6815 (when (featurep 'org-inlinetask)
6816 (while (and (not (eobp))
6817 (looking-at "\\(\\*+\\)[ \t]+")
6818 (>= (length (match-string 1))
6819 org-inlinetask-min-level))
6820 (org-end-of-subtree nil t)))
6821 (or (bolp) (newline))
6822 (or (org-previous-line-empty-p)
6823 (and blank (newline)))
6829 (looking-at ".*?\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?[ \t]*$")
6830 (setq tags (and (match-end 2) (match-string 2)))
6832 (delete-region (match-beginning 1) (match-end 1)))
6833 (setq pos (point-at-bol))
6834 (or split (end-of-line 1))
6835 (delete-horizontal-space)
6836 (if (string-match "\\`\\*+\\'"
6837 (buffer-substring (point-at-bol) (point)))
6839 (newline (if blank 2 1))
6845 (org-set-tags nil 'align))))
6847 (or split (end-of-line 1))
6848 (newline (if blank 2 1)))))))
6849 (insert head) (just-one-space)
6852 (unless (= (point) pos) (just-one-space) (backward-delete-char 1))
6853 (when (and org-insert-heading-respect-content hide-previous)
6855 (goto-char previous-pos)
6857 (run-hooks 'org-insert-heading-hook)))))
6859 (defun org-get-heading (&optional no-tags)
6860 "Return the heading of the current entry, without the stars."
6862 (org-back-to-heading t)
6865 (org-re "\\*+[ \t]+\\([^\n\r]*?\\)\\([ \t]+:[[:alnum:]:_@#%]+:[ \t]*\\)?$")
6866 "\\*+[ \t]+\\([^\r\n]*\\)"))
6867 (match-string 1) "")))
6869 (defun org-heading-components ()
6870 "Return the components of the current heading.
6871 This is a list with the following elements:
6872 - the level as an integer
6873 - the reduced level, different if `org-odd-levels-only' is set.
6874 - the TODO keyword, or nil
6875 - the priority character, like ?A, or nil if no priority is given
6876 - the headline text itself, or the tags string if no headline text
6877 - the tags string, or nil."
6879 (org-back-to-heading t)
6880 (if (let (case-fold-search) (looking-at org-complex-heading-regexp))
6881 (list (length (match-string 1))
6882 (org-reduced-level (length (match-string 1)))
6883 (org-match-string-no-properties 2)
6884 (and (match-end 3) (aref (match-string 3) 2))
6885 (org-match-string-no-properties 4)
6886 (org-match-string-no-properties 5)))))
6888 (defun org-get-entry ()
6889 "Get the entry text, after heading, entire subtree."
6891 (org-back-to-heading t)
6892 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
6894 (defun org-insert-heading-after-current ()
6895 "Insert a new heading with same level as current, after current subtree."
6897 (org-back-to-heading)
6898 (org-insert-heading)
6899 (org-move-subtree-down)
6902 (defun org-insert-heading-respect-content ()
6904 (let ((org-insert-heading-respect-content t))
6905 (org-insert-heading t)))
6907 (defun org-insert-todo-heading-respect-content (&optional force-state)
6909 (let ((org-insert-heading-respect-content t))
6910 (org-insert-todo-heading force-state t)))
6912 (defun org-insert-todo-heading (arg &optional force-heading)
6913 "Insert a new heading with the same level and TODO state as current heading.
6914 If the heading has no TODO state, or if the state is DONE, use the first
6915 state (TODO by default). Also with prefix arg, force first state."
6917 (when (or force-heading (not (org-insert-item 'checkbox)))
6918 (org-insert-heading force-heading)
6920 (org-back-to-heading)
6921 (outline-previous-heading)
6922 (looking-at org-todo-line-regexp))
6926 (not (match-beginning 2))
6927 (member (match-string 2) org-done-keywords))
6928 (car org-todo-keywords-1)
6932 (run-hook-with-args-until-success
6933 'org-todo-get-default-hook new-mark-x nil)
6935 (beginning-of-line 1)
6936 (and (looking-at "\\*+ ") (goto-char (match-end 0))
6937 (if org-treat-insert-todo-heading-as-state-change
6939 (insert new-mark " "))))
6940 (when org-provide-todo-statistics
6941 (org-update-parent-todo-statistics))))
6943 (defun org-insert-subheading (arg)
6944 "Insert a new subheading and demote it.
6945 Works for outline headings and for plain lists alike."
6947 (org-insert-heading arg)
6949 ((org-on-heading-p) (org-do-demote))
6950 ((org-at-item-p) (org-indent-item))))
6952 (defun org-insert-todo-subheading (arg)
6953 "Insert a new subheading with TODO keyword or checkbox and demote it.
6954 Works for outline headings and for plain lists alike."
6956 (org-insert-todo-heading arg)
6958 ((org-on-heading-p) (org-do-demote))
6959 ((org-at-item-p) (org-indent-item))))
6961 ;;; Promotion and Demotion
6963 (defvar org-after-demote-entry-hook nil
6964 "Hook run after an entry has been demoted.
6965 The cursor will be at the beginning of the entry.
6966 When a subtree is being demoted, the hook will be called for each node.")
6968 (defvar org-after-promote-entry-hook nil
6969 "Hook run after an entry has been promoted.
6970 The cursor will be at the beginning of the entry.
6971 When a subtree is being promoted, the hook will be called for each node.")
6973 (defun org-promote-subtree ()
6974 "Promote the entire subtree.
6975 See also `org-promote'."
6978 (org-map-tree 'org-promote))
6979 (org-fix-position-after-promote))
6981 (defun org-demote-subtree ()
6982 "Demote the entire subtree. See `org-demote'.
6983 See also `org-promote'."
6986 (org-map-tree 'org-demote))
6987 (org-fix-position-after-promote))
6990 (defun org-do-promote ()
6991 "Promote the current heading higher up the tree.
6992 If the region is active in `transient-mark-mode', promote all headings
6996 (if (org-region-active-p)
6997 (org-map-region 'org-promote (region-beginning) (region-end))
6999 (org-fix-position-after-promote))
7001 (defun org-do-demote ()
7002 "Demote the current heading lower down the tree.
7003 If the region is active in `transient-mark-mode', demote all headings
7007 (if (org-region-active-p)
7008 (org-map-region 'org-demote (region-beginning) (region-end))
7010 (org-fix-position-after-promote))
7012 (defun org-fix-position-after-promote ()
7013 "Make sure that after pro/demotion cursor position is right."
7014 (let ((pos (point)))
7015 (when (save-excursion
7016 (beginning-of-line 1)
7017 (looking-at org-todo-line-regexp)
7018 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
7019 (cond ((eobp) (insert " "))
7020 ((eolp) (insert " "))
7021 ((equal (char-after) ?\ ) (forward-char 1))))))
7023 (defun org-current-level ()
7024 "Return the level of the current entry, or nil if before the first headline.
7025 The level is the number of stars at the beginning of the headline."
7027 (org-with-limited-levels
7029 (org-back-to-heading t)
7030 (funcall outline-level)))))
7032 (defun org-get-previous-line-level ()
7033 "Return the outline depth of the last headline before the current line.
7034 Returns 0 for the first headline in the buffer, and nil if before the
7036 (let ((current-level (org-current-level))
7037 (prev-level (when (> (line-number-at-pos) 1)
7039 (beginning-of-line 0)
7040 (org-current-level)))))
7041 (cond ((null current-level) nil) ; Before first headline
7042 ((null prev-level) 0) ; At first headline
7045 (defun org-reduced-level (l)
7046 "Compute the effective level of a heading.
7047 This takes into account the setting of `org-odd-levels-only'."
7048 (if org-odd-levels-only (1+ (floor (/ l 2))) l))
7050 (defun org-level-increment ()
7051 "Return the number of stars that will be added or removed at a
7052 time to headlines when structure editing, based on the value of
7053 `org-odd-levels-only'."
7054 (if org-odd-levels-only 2 1))
7056 (defun org-get-valid-level (level &optional change)
7057 "Rectify a level change under the influence of `org-odd-levels-only'
7058 LEVEL is a current level, CHANGE is by how much the level should be
7059 modified. Even if CHANGE is nil, LEVEL may be returned modified because
7060 even level numbers will become the next higher odd number."
7061 (if org-odd-levels-only
7062 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
7063 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
7064 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
7065 (max 1 (+ level (or change 0)))))
7067 (if (boundp 'define-obsolete-function-alias)
7068 (if (or (featurep 'xemacs) (< emacs-major-version 23))
7069 (define-obsolete-function-alias 'org-get-legal-level
7070 'org-get-valid-level)
7071 (define-obsolete-function-alias 'org-get-legal-level
7072 'org-get-valid-level "23.1")))
7074 (defun org-promote ()
7075 "Promote the current heading higher up the tree.
7076 If the region is active in `transient-mark-mode', promote all headings
7078 (org-back-to-heading t)
7079 (let* ((level (save-match-data (funcall outline-level)))
7080 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
7081 (diff (abs (- level (length up-head) -1))))
7082 (if (= level 1) (error "Cannot promote to level 0. UNDO to recover if necessary"))
7083 (replace-match up-head nil t)
7084 ;; Fixup tag positioning
7085 (and org-auto-align-tags (org-set-tags nil t))
7086 (if org-adapt-indentation (org-fixup-indentation (- diff)))
7087 (run-hooks 'org-after-promote-entry-hook)))
7089 (defun org-demote ()
7090 "Demote the current heading lower down the tree.
7091 If the region is active in `transient-mark-mode', demote all headings
7093 (org-back-to-heading t)
7094 (let* ((level (save-match-data (funcall outline-level)))
7095 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
7096 (diff (abs (- level (length down-head) -1))))
7097 (replace-match down-head nil t)
7098 ;; Fixup tag positioning
7099 (and org-auto-align-tags (org-set-tags nil t))
7100 (if org-adapt-indentation (org-fixup-indentation diff))
7101 (run-hooks 'org-after-demote-entry-hook)))
7103 (defun org-cycle-level ()
7104 "Cycle the level of an empty headline through possible states.
7105 This goes first to child, then to parent, level, then up the hierarchy.
7106 After top level, it switches back to sibling level."
7108 (let ((org-adapt-indentation nil))
7109 (when (org-point-at-end-of-empty-headline)
7110 (setq this-command 'org-cycle-level) ; Only needed for caching
7111 (let ((cur-level (org-current-level))
7112 (prev-level (org-get-previous-line-level)))
7114 ;; If first headline in file, promote to top-level.
7116 (loop repeat (/ (- cur-level 1) (org-level-increment))
7117 do (org-do-promote)))
7118 ;; If same level as prev, demote one.
7119 ((= prev-level cur-level)
7121 ;; If parent is top-level, promote to top level if not already.
7123 (loop repeat (/ (- cur-level 1) (org-level-increment))
7124 do (org-do-promote)))
7125 ;; If top-level, return to prev-level.
7127 (loop repeat (/ (- prev-level 1) (org-level-increment))
7128 do (org-do-demote)))
7129 ;; If less than prev-level, promote one.
7130 ((< cur-level prev-level)
7132 ;; If deeper than prev-level, promote until higher than
7134 ((> cur-level prev-level)
7135 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
7136 do (org-do-promote))))
7139 (defun org-map-tree (fun)
7140 "Call FUN for every heading underneath the current one."
7141 (org-back-to-heading)
7142 (let ((level (funcall outline-level)))
7146 (outline-next-heading)
7147 (> (funcall outline-level) level))
7151 (defun org-map-region (fun beg end)
7152 "Call FUN for every heading between BEG and END."
7153 (let ((org-ignore-region t))
7155 (setq end (copy-marker end))
7157 (if (and (re-search-forward (concat "^" outline-regexp) nil t)
7161 (outline-next-heading)
7166 (defun org-fixup-indentation (diff)
7167 "Change the indentation in the current entry by DIFF.
7168 However, if any line in the current entry has no indentation, or if it
7169 would end up with no indentation after the change, nothing at all is done."
7171 (let ((end (save-excursion (outline-next-heading)
7173 (prohibit (if (> diff 0)
7175 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
7177 (unless (save-excursion (end-of-line 1)
7178 (re-search-forward prohibit end t))
7179 (while (and (< (point) end)
7180 (re-search-forward "^[ \t]+" end t))
7181 (goto-char (match-end 0))
7182 (setq col (current-column))
7183 (if (< diff 0) (replace-match ""))
7184 (org-indent-to-column (+ diff col))))
7185 (move-marker end nil))))
7187 (defun org-convert-to-odd-levels ()
7188 "Convert an org-mode file with all levels allowed to one with odd levels.
7189 This will leave level 1 alone, convert level 2 to level 3, level 3 to
7192 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
7193 (let ((outline-regexp org-outline-regexp)
7194 (outline-level 'org-outline-level)
7195 (org-odd-levels-only nil) n)
7197 (goto-char (point-min))
7198 (while (re-search-forward "^\\*\\*+ " nil t)
7199 (setq n (- (length (match-string 0)) 2))
7200 (while (>= (setq n (1- n)) 0)
7202 (end-of-line 1))))))
7204 (defun org-convert-to-oddeven-levels ()
7205 "Convert an org-mode file with only odd levels to one with odd/even levels.
7206 This promotes level 3 to level 2, level 5 to level 3 etc. If the
7207 file contains a section with an even level, conversion would
7208 destroy the structure of the file. An error is signaled in this
7211 (goto-char (point-min))
7212 ;; First check if there are no even levels
7213 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
7214 (org-show-context t)
7215 (error "Not all levels are odd in this file. Conversion not possible"))
7216 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
7217 (let ((outline-regexp org-outline-regexp)
7218 (outline-level 'org-outline-level)
7219 (org-odd-levels-only nil) n)
7221 (goto-char (point-min))
7222 (while (re-search-forward "^\\*\\*+ " nil t)
7223 (setq n (/ (1- (length (match-string 0))) 2))
7224 (while (>= (setq n (1- n)) 0)
7226 (end-of-line 1))))))
7228 (defun org-tr-level (n)
7229 "Make N odd if required."
7230 (if org-odd-levels-only (1+ (/ n 2)) n))
7232 ;;; Vertical tree motion, cutting and pasting of subtrees
7234 (defun org-move-subtree-up (&optional arg)
7235 "Move the current subtree up past ARG headlines of the same level."
7237 (org-move-subtree-down (- (prefix-numeric-value arg))))
7239 (defun org-move-subtree-down (&optional arg)
7240 "Move the current subtree down past ARG headlines of the same level."
7242 (setq arg (prefix-numeric-value arg))
7243 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
7244 'org-get-last-sibling))
7245 (ins-point (make-marker))
7247 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
7249 (org-back-to-heading)
7252 (setq ne-beg (org-back-over-empty-lines))
7255 (save-excursion (outline-end-of-heading)
7256 (setq folded (outline-invisible-p)))
7257 (outline-end-of-subtree))
7258 (outline-next-heading)
7259 (setq ne-end (org-back-over-empty-lines))
7262 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
7263 ;; include less whitespace
7266 (forward-line (- ne-beg ne-end))
7267 (setq beg (point))))
7268 ;; Find insertion point, with error handling
7270 (or (and (funcall movfunc) (looking-at outline-regexp))
7271 (progn (goto-char beg0)
7272 (error "Cannot move past superior level or buffer limit")))
7273 (setq cnt (1- cnt)))
7275 ;; Moving forward - still need to move over subtree
7276 (progn (org-end-of-subtree t t)
7278 (org-back-over-empty-lines)
7279 (or (bolp) (newline)))))
7280 (setq ne-ins (org-back-over-empty-lines))
7281 (move-marker ins-point (point))
7282 (setq txt (buffer-substring beg end))
7283 (org-save-markers-in-region beg end)
7284 (delete-region beg end)
7285 (org-remove-empty-overlays-at beg)
7286 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
7287 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
7288 (and (not (bolp)) (looking-at "\n") (forward-char 1))
7289 (let ((bbb (point)))
7290 (insert-before-markers txt)
7291 (org-reinstall-markers-in-region bbb)
7292 (move-marker ins-point bbb))
7293 (or (bolp) (insert "\n"))
7294 (setq ins-end (point))
7295 (goto-char ins-point)
7296 (org-skip-whitespace)
7297 (when (and (< arg 0)
7298 (org-first-sibling-p)
7300 ;; Move whitespace back to beginning
7303 (let ((kill-whole-line t))
7304 (kill-line (- ne-ins ne-beg)) (point)))
7305 (insert (make-string (- ne-ins ne-beg) ?\n)))
7306 (move-marker ins-point nil)
7311 (org-cycle-hide-drawers 'children))
7312 (org-clean-visibility-after-subtree-move)))
7314 (defvar org-subtree-clip ""
7315 "Clipboard for cut and paste of subtrees.
7316 This is actually only a copy of the kill, because we use the normal kill
7317 ring. We need it to check if the kill was created by `org-copy-subtree'.")
7319 (defvar org-subtree-clip-folded nil
7320 "Was the last copied subtree folded?
7321 This is used to fold the tree back after pasting.")
7323 (defun org-cut-subtree (&optional n)
7324 "Cut the current subtree into the clipboard.
7325 With prefix arg N, cut this many sequential subtrees.
7326 This is a short-hand for marking the subtree and then cutting it."
7328 (org-copy-subtree n 'cut))
7330 (defun org-copy-subtree (&optional n cut force-store-markers)
7331 "Cut the current subtree into the clipboard.
7332 With prefix arg N, cut this many sequential subtrees.
7333 This is a short-hand for marking the subtree and then copying it.
7334 If CUT is non-nil, actually cut the subtree.
7335 If FORCE-STORE-MARKERS is non-nil, store the relative locations
7336 of some markers in the region, even if CUT is non-nil. This is
7337 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
7339 (let (beg end folded (beg0 (point)))
7341 (org-back-to-heading nil) ; take what looks like a subtree
7342 (org-back-to-heading t)) ; take what is really there
7343 (org-back-over-empty-lines)
7345 (skip-chars-forward " \t\r\n")
7347 (save-excursion (outline-end-of-heading)
7348 (setq folded (outline-invisible-p)))
7350 (org-forward-same-level (1- n) t)
7352 (org-end-of-subtree t t))
7353 (org-back-over-empty-lines)
7357 (setq org-subtree-clip-folded folded)
7358 (when (or cut force-store-markers)
7359 (org-save-markers-in-region beg end))
7360 (if cut (kill-region beg end) (copy-region-as-kill beg end))
7361 (setq org-subtree-clip (current-kill 0))
7362 (message "%s: Subtree(s) with %d characters"
7363 (if cut "Cut" "Copied")
7364 (length org-subtree-clip)))))
7366 (defun org-paste-subtree (&optional level tree for-yank)
7367 "Paste the clipboard as a subtree, with modification of headline level.
7368 The entire subtree is promoted or demoted in order to match a new headline
7371 If the cursor is at the beginning of a headline, the same level as
7372 that headline is used to paste the tree
7374 If not, the new level is derived from the *visible* headings
7375 before and after the insertion point, and taken to be the inferior headline
7376 level of the two. So if the previous visible heading is level 3 and the
7377 next is level 4 (or vice versa), level 4 will be used for insertion.
7378 This makes sure that the subtree remains an independent subtree and does
7379 not swallow low level entries.
7381 You can also force a different level, either by using a numeric prefix
7382 argument, or by inserting the heading marker by hand. For example, if the
7383 cursor is after \"*****\", then the tree will be shifted to level 5.
7385 If optional TREE is given, use this text instead of the kill ring.
7387 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
7388 move back over whitespace before inserting, and move point to the end of
7389 the inserted text when done."
7391 (setq tree (or tree (and kill-ring (current-kill 0))))
7392 (unless (org-kill-is-subtree-p tree)
7394 (substitute-command-keys
7395 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
7396 (let* ((visp (not (outline-invisible-p)))
7398 (^re (concat "^\\(" outline-regexp "\\)"))
7399 (re (concat "\\(" outline-regexp "\\)"))
7400 (^re_ (concat "\\(\\*+\\)[ \t]*"))
7402 (old-level (if (string-match ^re txt)
7403 (- (match-end 0) (match-beginning 0) 1)
7405 (force-level (cond (level (prefix-numeric-value level))
7406 ((and (looking-at "[ \t]*$")
7408 ^re_ (buffer-substring
7409 (point-at-bol) (point))))
7410 (- (match-end 1) (match-beginning 1)))
7412 (looking-at org-outline-regexp))
7413 (- (match-end 0) (point) 1))
7415 (previous-level (save-excursion
7418 (outline-previous-visible-heading 1)
7420 (- (match-end 0) (match-beginning 0) 1)
7423 (next-level (save-excursion
7426 (or (looking-at outline-regexp)
7427 (outline-next-visible-heading 1))
7429 (- (match-end 0) (match-beginning 0) 1)
7432 (new-level (or force-level (max previous-level next-level)))
7433 (shift (if (or (= old-level -1)
7435 (= old-level new-level))
7437 (- new-level old-level)))
7438 (delta (if (> shift 0) -1 1))
7439 (func (if (> shift 0) 'org-demote 'org-promote))
7440 (org-odd-levels-only nil)
7442 ;; Remove the forced level indicator
7444 (delete-region (point-at-bol) (point)))
7446 (beginning-of-line 1)
7447 (unless for-yank (org-back-over-empty-lines))
7449 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
7450 (insert-before-markers txt)
7451 (unless (string-match "\n\\'" txt) (insert "\n"))
7452 (setq newend (point))
7453 (org-reinstall-markers-in-region beg)
7456 (skip-chars-forward " \t\n\r")
7458 (if (and (outline-invisible-p) visp)
7459 (save-excursion (outline-show-heading)))
7460 ;; Shift if necessary
7463 (narrow-to-region beg end)
7464 (while (not (= shift 0))
7465 (org-map-region func (point-min) (point-max))
7466 (setq shift (+ delta shift)))
7467 (goto-char (point-min))
7468 (setq newend (point-max))))
7469 (when (or (interactive-p) for-yank)
7470 (message "Clipboard pasted as level %d subtree" new-level))
7471 (if (and (not for-yank) ; in this case, org-yank will decide about folding
7473 (eq org-subtree-clip (current-kill 0))
7474 org-subtree-clip-folded)
7475 ;; The tree was folded before it was killed/copied
7477 (and for-yank (goto-char newend))))
7479 (defun org-kill-is-subtree-p (&optional txt)
7480 "Check if the current kill is an outline subtree, or a set of trees.
7481 Returns nil if kill does not start with a headline, or if the first
7482 headline level is not the largest headline level in the tree.
7483 So this will actually accept several entries of equal levels as well,
7484 which is OK for `org-paste-subtree'.
7485 If optional TXT is given, check this string instead of the current kill."
7486 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
7487 (start-level (and kill
7488 (string-match (concat "\\`\\([ \t\n\r]*?\n\\)?\\("
7489 org-outline-regexp "\\)")
7491 (- (match-end 2) (match-beginning 2) 1)))
7492 (re (concat "^" org-outline-regexp))
7493 (start (1+ (or (match-beginning 2) -1))))
7494 (if (not start-level)
7496 nil) ;; does not even start with a heading
7498 (while (setq start (string-match re kill (1+ start)))
7499 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
7503 (defvar org-markers-to-move nil
7504 "Markers that should be moved with a cut-and-paste operation.
7505 Those markers are stored together with their positions relative to
7506 the start of the region.")
7508 (defun org-save-markers-in-region (beg end)
7509 "Check markers in region.
7510 If these markers are between BEG and END, record their position relative
7511 to BEG, so that after moving the block of text, we can put the markers back
7513 This function gets called just before an entry or tree gets cut from the
7514 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
7515 called immediately, to move the markers with the entries."
7516 (setq org-markers-to-move nil)
7517 (when (featurep 'org-clock)
7518 (org-clock-save-markers-for-cut-and-paste beg end))
7519 (when (featurep 'org-agenda)
7520 (org-agenda-save-markers-for-cut-and-paste beg end)))
7522 (defun org-check-and-save-marker (marker beg end)
7523 "Check if MARKER is between BEG and END.
7524 If yes, remember the marker and the distance to BEG."
7525 (when (and (marker-buffer marker)
7526 (equal (marker-buffer marker) (current-buffer)))
7527 (if (and (>= marker beg) (< marker end))
7528 (push (cons marker (- marker beg)) org-markers-to-move))))
7530 (defun org-reinstall-markers-in-region (beg)
7531 "Move all remembered markers to their position relative to BEG."
7533 (move-marker (car x) (+ beg (cdr x))))
7534 org-markers-to-move)
7535 (setq org-markers-to-move nil))
7537 (defun org-narrow-to-subtree ()
7538 "Narrow buffer to the current subtree."
7543 (progn (org-back-to-heading t) (point))
7544 (progn (org-end-of-subtree t t)
7545 (if (and (org-on-heading-p) (not (eobp))) (backward-char 1))
7548 (defun org-narrow-to-block ()
7549 "Narrow buffer to the current block."
7551 (let ((bstart "^[ \t]*#\\+begin")
7552 (bend "[ \t]*#\\+end")
7553 (case-fold-search t) ;; allow #+BEGIN
7555 (if (org-in-regexps-block-p bstart bend)
7557 (save-excursion (re-search-backward bstart nil t)
7558 (setq b_start (match-beginning 0)))
7559 (save-excursion (re-search-forward bend nil t)
7560 (setq b_end (match-end 0)))
7561 (narrow-to-region b_start b_end))
7562 (error "Not in a block"))))
7565 (defvar org-property-drawer-re))
7567 (defvar org-property-start-re) ;; defined below
7568 (defun org-clone-subtree-with-time-shift (n &optional shift)
7569 "Clone the task (subtree) at point N times.
7570 The clones will be inserted as siblings.
7572 In interactive use, the user will be prompted for the number of
7573 clones to be produced, and for a time SHIFT, which may be a
7574 repeater as used in time stamps, for example `+3d'.
7576 When a valid repeater is given and the entry contains any time
7577 stamps, the clones will become a sequence in time, with time
7578 stamps in the subtree shifted for each clone produced. If SHIFT
7579 is nil or the empty string, time stamps will be left alone. The
7580 ID property of the original subtree is removed.
7582 If the original subtree did contain time stamps with a repeater,
7583 the following will happen:
7584 - the repeater will be removed in each clone
7585 - an additional clone will be produced, with the current, unshifted
7586 date(s) in the entry.
7587 - the original entry will be placed *after* all the clones, with
7589 - the start days in the repeater in the original entry will be shifted
7590 to past the last clone.
7591 I this way you can spell out a number of instances of a repeating task,
7592 and still retain the repeater to cover future instances of the task."
7593 (interactive "nNumber of clones to produce: \nsDate shift per clone (e.g. +1w, empty to copy unchanged): ")
7594 (let (beg end template task idprop
7595 shift-n shift-what doshift nmin nmax (n-no-remove -1))
7596 (if (not (and (integerp n) (> n 0)))
7597 (error "Invalid number of replications %s" n))
7598 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
7599 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([dwmy]\\)[ \t]*\\'"
7601 (error "Invalid shift specification %s" shift))
7603 (setq shift-n (string-to-number (match-string 1 shift))
7604 shift-what (cdr (assoc (match-string 2 shift)
7605 '(("d" . day) ("w" . week)
7606 ("m" . month) ("y" . year))))))
7607 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
7608 (setq nmin 1 nmax n)
7609 (org-back-to-heading t)
7611 (setq idprop (org-entry-get nil "ID"))
7612 (org-end-of-subtree t t)
7613 (or (bolp) (insert "\n"))
7615 (setq template (buffer-substring beg end))
7617 (string-match "<[^<>\n]+ \\+[0-9]+[dwmy][^<>\n]*>" template))
7618 (delete-region beg end)
7620 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
7622 (loop for n from nmin to nmax do
7627 (goto-char (point-min))
7628 (and idprop (if org-clone-delete-id
7629 (org-entry-delete nil "ID")
7630 (org-id-get-create t)))
7631 (while (re-search-forward org-property-start-re nil t)
7632 (org-remove-empty-drawer-at "PROPERTIES" (point)))
7633 (goto-char (point-min))
7635 (while (re-search-forward org-ts-regexp-both nil t)
7636 (org-timestamp-change (* n shift-n) shift-what))
7637 (unless (= n n-no-remove)
7638 (goto-char (point-min))
7639 (while (re-search-forward org-ts-regexp nil t)
7641 (goto-char (match-beginning 0))
7642 (if (looking-at "<[^<>\n]+\\( +\\+[0-9]+[dwmy]\\)")
7643 (delete-region (match-beginning 1) (match-end 1)))))))
7644 (setq task (buffer-string)))
7650 (defun org-sort (with-case)
7651 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
7652 Optional argument WITH-CASE means sort case-sensitively.
7653 With a double prefix argument, also remove duplicate entries."
7656 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
7657 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
7659 (org-call-with-arg 'org-sort-entries with-case))))
7661 (defun org-sort-remove-invisible (s)
7662 (remove-text-properties 0 (length s) org-rm-props s)
7663 (while (string-match org-bracket-link-regexp s)
7664 (setq s (replace-match (if (match-end 2)
7666 (match-string 1 s)) t t s)))
7669 (defvar org-priority-regexp) ; defined later in the file
7671 (defvar org-after-sorting-entries-or-items-hook nil
7672 "Hook that is run after a bunch of entries or items have been sorted.
7673 When children are sorted, the cursor is in the parent line when this
7674 hook gets called. When a region or a plain list is sorted, the cursor
7675 will be in the first entry of the sorted region/list.")
7677 (defun org-sort-entries
7678 (&optional with-case sorting-type getkey-func compare-func property)
7679 "Sort entries on a certain level of an outline tree.
7680 If there is an active region, the entries in the region are sorted.
7681 Else, if the cursor is before the first entry, sort the top-level items.
7682 Else, the children of the entry at point are sorted.
7684 Sorting can be alphabetically, numerically, by date/time as given by
7685 a time stamp, by a property or by priority.
7687 The command prompts for the sorting type unless it has been given to the
7688 function through the SORTING-TYPE argument, which needs to be a character,
7689 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?r ?R ?f ?F). Here is the
7690 precise meaning of each character:
7692 n Numerically, by converting the beginning of the entry/item to a number.
7693 a Alphabetically, ignoring the TODO keyword and the priority, if any.
7694 t By date/time, either the first active time stamp in the entry, or, if
7695 none exist, by the first inactive one.
7696 s By the scheduled date/time.
7697 d By deadline date/time.
7698 c By creation time, which is assumed to be the first inactive time stamp
7699 at the beginning of a line.
7700 p By priority according to the cookie.
7701 r By the value of a property.
7703 Capital letters will reverse the sort order.
7705 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
7706 called with point at the beginning of the record. It must return either
7707 a string or a number that should serve as the sorting key for that record.
7709 Comparing entries ignores case by default. However, with an optional argument
7710 WITH-CASE, the sorting considers case as well."
7712 (let ((case-func (if with-case 'identity 'downcase))
7713 start beg end stars re re2
7715 ;; Find beginning and end of region to sort
7717 ((org-region-active-p)
7718 ;; we will sort the region
7719 (setq end (region-end)
7721 (goto-char (region-beginning))
7722 (if (not (org-on-heading-p)) (outline-next-heading))
7723 (setq start (point)))
7724 ((or (org-on-heading-p)
7725 (condition-case nil (progn (org-back-to-heading) t) (error nil)))
7726 ;; we will sort the children of the current headline
7727 (org-back-to-heading)
7729 end (progn (org-end-of-subtree t t)
7730 (or (bolp) (insert "\n"))
7731 (org-back-over-empty-lines)
7736 (outline-next-heading))
7738 ;; we will sort the top-level entries in this file
7739 (goto-char (point-min))
7740 (or (org-on-heading-p) (outline-next-heading))
7741 (setq start (point))
7742 (goto-char (point-max))
7743 (beginning-of-line 1)
7744 (when (looking-at ".*?\\S-")
7745 ;; File ends in a non-white line
7748 (setq end (point-max))
7749 (setq what "top-level")
7754 (if (>= beg end) (error "Nothing to sort"))
7756 (looking-at "\\(\\*+\\)")
7757 (setq stars (match-string 1)
7758 re (concat "^" (regexp-quote stars) " +")
7759 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
7760 txt (buffer-substring beg end))
7761 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
7762 (if (and (not (equal stars "*")) (string-match re2 txt))
7763 (error "Region to sort contains a level above the first entry"))
7765 (unless sorting-type
7767 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
7768 [t]ime
[s]cheduled [d]eadline [c]reated
7769 A/N/T/S/D/C/P/O/F means reversed:"
7771 (setq sorting-type (read-char-exclusive))
7773 (and (= (downcase sorting-type) ?f)
7775 (org-icompleting-read "Sort using function: "
7776 obarray 'fboundp t nil nil))
7777 (setq getkey-func (intern getkey-func)))
7779 (and (= (downcase sorting-type) ?r)
7781 (org-icompleting-read "Property: "
7782 (mapcar 'list (org-buffer-property-keys t))
7785 (message "Sorting entries...")
7788 (narrow-to-region start end)
7789 (let ((dcst (downcase sorting-type))
7790 (case-fold-search nil)
7791 (now (current-time)))
7793 (/= dcst sorting-type)
7794 ;; This function moves to the beginning character of the "record" to
7797 (if (re-search-forward re nil t)
7798 (goto-char (match-beginning 0))
7799 (goto-char (point-max))))
7800 ;; This function moves to the last character of the "record" being
7805 (outline-forward-same-level 1)
7807 (goto-char (point-max))))))
7808 ;; This function returns the value that gets sorted against.
7812 (if (looking-at org-complex-heading-regexp)
7813 (string-to-number (match-string 4))
7816 (if (looking-at org-complex-heading-regexp)
7817 (funcall case-func (match-string 4))
7820 (let ((end (save-excursion (outline-next-heading) (point))))
7821 (if (or (re-search-forward org-ts-regexp end t)
7822 (re-search-forward org-ts-regexp-both end t))
7823 (org-time-string-to-seconds (match-string 0))
7824 (org-float-time now))))
7826 (let ((end (save-excursion (outline-next-heading) (point))))
7827 (if (re-search-forward
7828 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
7830 (org-time-string-to-seconds (match-string 0))
7831 (org-float-time now))))
7833 (let ((end (save-excursion (outline-next-heading) (point))))
7834 (if (re-search-forward org-scheduled-time-regexp end t)
7835 (org-time-string-to-seconds (match-string 1))
7836 (org-float-time now))))
7838 (let ((end (save-excursion (outline-next-heading) (point))))
7839 (if (re-search-forward org-deadline-time-regexp end t)
7840 (org-time-string-to-seconds (match-string 1))
7841 (org-float-time now))))
7843 (if (re-search-forward org-priority-regexp (point-at-eol) t)
7844 (string-to-char (match-string 2))
7845 org-default-priority))
7847 (or (org-entry-get nil property) ""))
7849 (if (looking-at org-complex-heading-regexp)
7850 (- 9999 (length (member (match-string 2)
7851 org-todo-keywords-1)))))
7855 (setq tmp (funcall getkey-func))
7856 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
7858 (error "Invalid key function `%s'" getkey-func)))
7859 (t (error "Invalid sorting type `%c'" sorting-type))))
7862 ((= dcst ?a) 'string<)
7863 ((= dcst ?f) compare-func)
7864 ((member dcst '(?p ?t ?s ?d ?c)) '<)
7866 (run-hooks 'org-after-sorting-entries-or-items-hook)
7867 (message "Sorting entries...done")))
7869 (defun org-do-sort (table what &optional with-case sorting-type)
7870 "Sort TABLE of WHAT according to SORTING-TYPE.
7871 The user will be prompted for the SORTING-TYPE if the call to this
7872 function does not specify it. WHAT is only for the prompt, to indicate
7873 what is being sorted. The sorting key will be extracted from
7874 the car of the elements of the table.
7875 If WITH-CASE is non-nil, the sorting will be case-sensitive."
7876 (unless sorting-type
7878 "Sort %s: [a]lphabetic. [n]umeric. [t]ime. A/N/T means reversed:"
7880 (setq sorting-type (read-char-exclusive)))
7881 (let ((dcst (downcase sorting-type))
7882 extractfun comparefun)
7883 ;; Define the appropriate functions
7886 (setq extractfun 'string-to-number
7887 comparefun (if (= dcst sorting-type) '< '>)))
7889 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
7890 (lambda(x) (downcase (org-sort-remove-invisible x))))
7891 comparefun (if (= dcst sorting-type)
7893 (lambda (a b) (and (not (string< a b))
7894 (not (string= a b)))))))
7898 (if (or (string-match org-ts-regexp x)
7899 (string-match org-ts-regexp-both x))
7901 (org-time-string-to-time (match-string 0 x)))
7903 comparefun (if (= dcst sorting-type) '< '>)))
7904 (t (error "Invalid sorting type `%c'" sorting-type)))
7906 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
7908 (lambda (a b) (funcall comparefun (car a) (car b))))))
7911 ;;; The orgstruct minor mode
7913 ;; Define a minor mode which can be used in other modes in order to
7914 ;; integrate the org-mode structure editing commands.
7916 ;; This is really a hack, because the org-mode structure commands use
7917 ;; keys which normally belong to the major mode. Here is how it
7918 ;; works: The minor mode defines all the keys necessary to operate the
7919 ;; structure commands, but wraps the commands into a function which
7920 ;; tests if the cursor is currently at a headline or a plain list
7921 ;; item. If that is the case, the structure command is used,
7922 ;; temporarily setting many Org-mode variables like regular
7923 ;; expressions for filling etc. However, when any of those keys is
7924 ;; used at a different location, function uses `key-binding' to look
7925 ;; up if the key has an associated command in another currently active
7926 ;; keymap (minor modes, major mode, global), and executes that
7927 ;; command. There might be problems if any of the keys is otherwise
7928 ;; used as a prefix key.
7930 ;; Another challenge is that the key binding for TAB can be tab or \C-i,
7931 ;; likewise the binding for RET can be return or \C-m. Orgtbl-mode
7932 ;; addresses this by checking explicitly for both bindings.
7934 (defvar orgstruct-mode-map (make-sparse-keymap)
7935 "Keymap for the minor `orgstruct-mode'.")
7937 (defvar org-local-vars nil
7938 "List of local variables, for use by `orgstruct-mode'.")
7941 (define-minor-mode orgstruct-mode
7942 "Toggle the minor mode `orgstruct-mode'.
7943 This mode is for using Org-mode structure commands in other
7944 modes. The following keys behave as if Org-mode were active, if
7945 the cursor is on a headline, or on a plain list item (both as
7946 defined by Org-mode).
7948 M-up Move entry/item up
7949 M-down Move entry/item down
7952 M-S-up Move entry/item up
7953 M-S-down Move entry/item down
7954 M-S-left Promote subtree
7955 M-S-right Demote subtree
7956 M-q Fill paragraph and items like in Org-mode
7958 C-c - Cycle list bullet
7959 TAB Cycle item visibility
7960 M-RET Insert new heading/item
7961 S-M-RET Insert new TODO heading / Checkbox item
7962 C-c C-c Set tags / toggle checkbox"
7963 nil " OrgStruct" nil
7964 (org-load-modules-maybe)
7965 (and (orgstruct-setup) (defun orgstruct-setup () nil)))
7968 (defun turn-on-orgstruct ()
7969 "Unconditionally turn on `orgstruct-mode'."
7972 (defun orgstruct++-mode (&optional arg)
7973 "Toggle `orgstruct-mode', the enhanced version of it.
7974 In addition to setting orgstruct-mode, this also exports all indentation
7975 and autofilling variables from org-mode into the buffer. It will also
7976 recognize item context in multiline items.
7977 Note that turning off orgstruct-mode will *not* remove the
7978 indentation/paragraph settings. This can only be done by refreshing the
7979 major mode, for example with \\[normal-mode]."
7981 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
7989 "^\\(paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
7990 (symbol-name (car x)))
7991 (setq var (car x) val (nth 1 x))
7992 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
7994 (org-set-local 'orgstruct-is-++ t))))
7996 (defvar orgstruct-is-++ nil
7997 "Is `orgstruct-mode' in ++ version in the current-buffer?")
7998 (make-variable-buffer-local 'orgstruct-is-++)
8001 (defun turn-on-orgstruct++ ()
8002 "Unconditionally turn on `orgstruct++-mode'."
8003 (orgstruct++-mode 1))
8005 (defun orgstruct-error ()
8006 "Error when there is no default binding for a structure key."
8008 (error "This key has no function outside structure elements"))
8010 (defun orgstruct-setup ()
8011 "Setup orgstruct keymaps."
8015 '([(meta up)] org-metaup)
8016 '([(meta down)] org-metadown)
8017 '([(meta left)] org-metaleft)
8018 '([(meta right)] org-metaright)
8019 '([(meta shift up)] org-shiftmetaup)
8020 '([(meta shift down)] org-shiftmetadown)
8021 '([(meta shift left)] org-shiftmetaleft)
8022 '([(meta shift right)] org-shiftmetaright)
8023 '([?\e (up)] org-metaup)
8024 '([?\e (down)] org-metadown)
8025 '([?\e (left)] org-metaleft)
8026 '([?\e (right)] org-metaright)
8027 '([?\e (shift up)] org-shiftmetaup)
8028 '([?\e (shift down)] org-shiftmetadown)
8029 '([?\e (shift left)] org-shiftmetaleft)
8030 '([?\e (shift right)] org-shiftmetaright)
8031 '([(shift up)] org-shiftup)
8032 '([(shift down)] org-shiftdown)
8033 '([(shift left)] org-shiftleft)
8034 '([(shift right)] org-shiftright)
8035 '("\C-c\C-c" org-ctrl-c-ctrl-c)
8036 '("\M-q" fill-paragraph)
8038 '("\C-c-" org-cycle-list-bullet)))
8040 (while (setq elt (pop bindings))
8041 (setq nfunc (1+ nfunc))
8042 (setq key (org-key (car elt))
8044 cmd (orgstruct-make-binding fun nfunc key))
8045 (org-defkey orgstruct-mode-map key cmd))
8047 ;; Special treatment needed for TAB and RET
8048 (org-defkey orgstruct-mode-map [(tab)]
8049 (orgstruct-make-binding 'org-cycle 102 [(tab)] "\C-i"))
8050 (org-defkey orgstruct-mode-map "\C-i"
8051 (orgstruct-make-binding 'org-cycle 103 "\C-i" [(tab)]))
8053 (org-defkey orgstruct-mode-map "\M-\C-m"
8054 (orgstruct-make-binding 'org-insert-heading 105
8055 "\M-\C-m" [(meta return)]))
8056 (org-defkey orgstruct-mode-map [(meta return)]
8057 (orgstruct-make-binding 'org-insert-heading 106
8058 [(meta return)] "\M-\C-m"))
8060 (org-defkey orgstruct-mode-map [(shift meta return)]
8061 (orgstruct-make-binding 'org-insert-todo-heading 107
8062 [(meta return)] "\M-\C-m"))
8064 (org-defkey orgstruct-mode-map "\e\C-m"
8065 (orgstruct-make-binding 'org-insert-heading 108
8066 "\e\C-m" [?\e (return)]))
8067 (org-defkey orgstruct-mode-map [?\e (return)]
8068 (orgstruct-make-binding 'org-insert-heading 109
8069 [?\e (return)] "\e\C-m"))
8070 (org-defkey orgstruct-mode-map [?\e (shift return)]
8071 (orgstruct-make-binding 'org-insert-todo-heading 110
8072 [?\e (return)] "\e\C-m"))
8074 (unless org-local-vars
8075 (setq org-local-vars (org-get-local-variables)))
8079 (defun orgstruct-make-binding (fun n &rest keys)
8080 "Create a function for binding in the structure minor mode.
8081 FUN is the command to call inside a table. N is used to create a unique
8082 command name. KEYS are keys that should be checked in for a command
8083 to execute outside of tables."
8086 (intern (concat "orgstruct-hijacker-command-" (int-to-string n)))
8088 (concat "In Structure, run `" (symbol-name fun) "'.\n"
8089 "Outside of structure, run the binding of `"
8090 (mapconcat (lambda (x) (format "%s" x)) keys "' or `")
8094 `(org-context-p 'headline 'item
8095 (and orgstruct-is-++
8096 ,(and (memq fun '(org-insert-heading org-insert-todo-heading)) t)
8098 (list 'org-run-like-in-org-mode (list 'quote fun))
8099 (list 'let '(orgstruct-mode)
8100 (list 'call-interactively
8103 (list 'key-binding k))
8105 '('orgstruct-error))))))))
8107 (defun org-context-p (&rest contexts)
8108 "Check if local context is any of CONTEXTS.
8109 Possible values in the list of contexts are `table', `headline', and `item'."
8110 (let ((pos (point)))
8111 (goto-char (point-at-bol))
8112 (prog1 (or (and (memq 'table contexts)
8113 (looking-at "[ \t]*|"))
8114 (and (memq 'headline contexts)
8115 ;;????????? (looking-at "\\*+"))
8116 (looking-at outline-regexp))
8117 (and (memq 'item contexts)
8118 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
8119 (and (memq 'item-body contexts)
8123 (defun org-get-local-variables ()
8124 "Return a list of all local variables in an org-mode buffer."
8126 (with-current-buffer (get-buffer-create "*Org tmp*")
8129 (setq varlist (buffer-local-variables)))
8130 (kill-buffer "*Org tmp*")
8137 (list (car x) (list 'quote (cdr x)))))
8139 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
8140 (symbol-name (car x)))
8145 (defun org-run-like-in-org-mode (cmd)
8146 "Run a command, pretending that the current buffer is in Org-mode.
8147 This will temporarily bind local variables that are typically bound in
8148 Org-mode to the values they have in Org-mode, and then interactively
8150 (org-load-modules-maybe)
8151 (unless org-local-vars
8152 (setq org-local-vars (org-get-local-variables)))
8153 (eval (list 'let org-local-vars
8154 (list 'call-interactively (list 'quote cmd)))))
8158 (defun org-get-category (&optional pos force-refresh)
8159 "Get the category applying to position POS."
8160 (if force-refresh (org-refresh-category-properties))
8161 (let ((pos (or pos (point))))
8162 (or (get-text-property pos 'org-category)
8163 (progn (org-refresh-category-properties)
8164 (get-text-property pos 'org-category)))))
8166 (defun org-refresh-category-properties ()
8167 "Refresh category text properties in the buffer."
8168 (let ((def-cat (cond
8169 ((null org-category)
8170 (if buffer-file-name
8171 (file-name-sans-extension
8172 (file-name-nondirectory buffer-file-name))
8174 ((symbolp org-category) (symbol-name org-category))
8176 beg end cat pos optionp)
8181 (goto-char (point-min))
8182 (put-text-property (point) (point-max) 'org-category def-cat)
8183 (while (re-search-forward
8184 "^\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
8185 (setq pos (match-end 0)
8186 optionp (equal (char-after (match-beginning 0)) ?#)
8187 cat (org-trim (match-string 2)))
8189 (setq beg (point-at-bol) end (point-max))
8190 (org-back-to-heading t)
8191 (setq beg (point) end (org-end-of-subtree t t)))
8192 (put-text-property beg end 'org-category cat)
8193 (goto-char pos)))))))
8198 ;;; Link abbreviations
8200 (defun org-link-expand-abbrev (link)
8201 "Apply replacements as defined in `org-link-abbrev-alist."
8202 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
8203 (let* ((key (match-string 1 link))
8204 (as (or (assoc key org-link-abbrev-alist-local)
8205 (assoc key org-link-abbrev-alist)))
8206 (tag (and (match-end 2) (match-string 3 link)))
8212 ((symbolp rpl) (funcall rpl tag))
8213 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
8214 ((string-match "%h" rpl)
8215 (replace-match (url-hexify-string (or tag "")) t t rpl))
8216 (t (concat rpl tag)))))
8219 ;;; Storing and inserting links
8221 (defvar org-insert-link-history nil
8222 "Minibuffer history for links inserted with `org-insert-link'.")
8224 (defvar org-stored-links nil
8225 "Contains the links stored with `org-store-link'.")
8227 (defvar org-store-link-plist nil
8228 "Plist with info about the most recently link created with `org-store-link'.")
8230 (defvar org-link-protocols nil
8231 "Link protocols added to Org-mode using `org-add-link-type'.")
8233 (defvar org-store-link-functions nil
8234 "List of functions that are called to create and store a link.
8235 Each function will be called in turn until one returns a non-nil
8236 value. Each function should check if it is responsible for creating
8237 this link (for example by looking at the major mode).
8238 If not, it must exit and return nil.
8239 If yes, it should return a non-nil value after a calling
8240 `org-store-link-props' with a list of properties and values.
8241 Special properties are:
8243 :type The link prefix, like \"http\". This must be given.
8244 :link The link, like \"http://www.astro.uva.nl/~dominik\".
8245 This is obligatory as well.
8246 :description Optional default description for the second pair
8247 of brackets in an Org-mode link. The user can still change
8248 this when inserting this link into an Org-mode buffer.
8250 In addition to these, any additional properties can be specified
8251 and then used in remember templates.")
8253 (defun org-add-link-type (type &optional follow export)
8254 "Add TYPE to the list of `org-link-types'.
8255 Re-compute all regular expressions depending on `org-link-types'
8257 FOLLOW and EXPORT are two functions.
8259 FOLLOW should take the link path as the single argument and do whatever
8260 is necessary to follow the link, for example find a file or display
8263 EXPORT should format the link path for export to one of the export formats.
8264 It should be a function accepting three arguments:
8266 path the path of the link, the text after the prefix (like \"http:\")
8267 desc the description of the link, if any, nil if there was no description
8268 format the export format, a symbol like `html' or `latex' or `ascii'..
8270 The function may use the FORMAT information to return different values
8271 depending on the format. The return value will be put literally into
8272 the exported file. If the return value is nil, this means Org should
8273 do what it normally does with links which do not have EXPORT defined.
8275 Org-mode has a built-in default for exporting links. If you are happy with
8276 this default, there is no need to define an export function for the link
8277 type. For a simple example of an export function, see `org-bbdb.el'."
8278 (add-to-list 'org-link-types type t)
8279 (org-make-link-regexps)
8280 (if (assoc type org-link-protocols)
8281 (setcdr (assoc type org-link-protocols) (list follow export))
8282 (push (list type follow export) org-link-protocols)))
8284 (defvar org-agenda-buffer-name)
8287 (defun org-store-link (arg)
8288 "\\<org-mode-map>Store an org-link to the current location.
8289 This link is added to `org-stored-links' and can later be inserted
8290 into an org-buffer with \\[org-insert-link].
8292 For some link types, a prefix arg is interpreted:
8293 For links to usenet articles, arg negates `org-gnus-prefer-web-links'.
8294 For file links, arg negates `org-context-in-file-links'."
8296 (org-load-modules-maybe)
8297 (setq org-store-link-plist nil) ; reset
8298 (org-with-limited-levels
8299 (let (link cpltxt desc description search txt custom-id agenda-link)
8302 ((run-hook-with-args-until-success 'org-store-link-functions)
8303 (setq link (plist-get org-store-link-plist :link)
8304 desc (or (plist-get org-store-link-plist :description) link)))
8306 ((equal (buffer-name) "*Org Edit Src Example*")
8308 (while (or (not label)
8312 (goto-char (point-min))
8314 (regexp-quote (format org-coderef-label-format label))
8316 (when label (message "Label exists already") (sit-for 2))
8317 (setq label (read-string "Code line label: " label)))
8319 (setq link (format org-coderef-label-format label))
8320 (setq gc (- 79 (length link)))
8321 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
8323 (setq link (concat "(" label ")") desc nil)))
8325 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
8326 ;; We are in the agenda, link to referenced location
8327 (let ((m (or (get-text-property (point) 'org-hd-marker)
8328 (get-text-property (point) 'org-marker))))
8330 (org-with-point-at m
8333 (call-interactively 'org-store-link)
8334 (org-store-link nil)))))))
8336 ((eq major-mode 'calendar-mode)
8337 (let ((cd (calendar-cursor-to-date)))
8340 (car org-time-stamp-formats)
8342 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
8344 (org-store-link-props :type "calendar" :date cd)))
8346 ((eq major-mode 'w3-mode)
8347 (setq cpltxt (if (and (buffer-name)
8348 (not (string-match "Untitled" (buffer-name))))
8351 link (org-make-link (url-view-url t)))
8352 (org-store-link-props :type "w3" :url (url-view-url t)))
8354 ((eq major-mode 'w3m-mode)
8355 (setq cpltxt (or w3m-current-title w3m-current-url)
8356 link (org-make-link w3m-current-url))
8357 (org-store-link-props :type "w3m" :url (url-view-url t)))
8359 ((setq search (run-hook-with-args-until-success
8360 'org-create-file-search-functions))
8361 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
8363 (setq cpltxt (or description link)))
8365 ((eq major-mode 'image-mode)
8366 (setq cpltxt (concat "file:"
8367 (abbreviate-file-name buffer-file-name))
8368 link (org-make-link cpltxt))
8369 (org-store-link-props :type "image" :file buffer-file-name))
8371 ((eq major-mode 'dired-mode)
8372 ;; link to the file in the current line
8373 (let ((file (dired-get-filename nil t)))
8375 (abbreviate-file-name
8376 (expand-file-name (dired-get-filename nil t)))
8377 ;; otherwise, no file so use current directory.
8379 (setq cpltxt (concat "file:" file)
8380 link (org-make-link cpltxt))))
8382 ((and (buffer-file-name (buffer-base-buffer)) (org-mode-p))
8383 (setq custom-id (ignore-errors (org-entry-get nil "CUSTOM_ID")))
8385 ((org-in-regexp "<<\\(.*?\\)>>")
8388 (abbreviate-file-name
8389 (buffer-file-name (buffer-base-buffer)))
8390 "::" (match-string 1))
8391 link (org-make-link cpltxt)))
8392 ((and (featurep 'org-id)
8393 (or (eq org-link-to-org-use-id t)
8394 (and (eq org-link-to-org-use-id 'create-if-interactive)
8396 (and (eq org-link-to-org-use-id 'create-if-interactive-and-no-custom-id)
8399 (and org-link-to-org-use-id
8401 (org-entry-get nil "ID")
8403 ;; We can make a link using the ID.
8404 (setq link (condition-case nil
8405 (prog1 (org-id-store-link)
8406 (setq desc (plist-get org-store-link-plist
8409 ;; probably before first headline, link to file only
8411 (abbreviate-file-name
8412 (buffer-file-name (buffer-base-buffer))))))))
8414 ;; Just link to current headline
8415 (setq cpltxt (concat "file:"
8416 (abbreviate-file-name
8417 (buffer-file-name (buffer-base-buffer)))))
8418 ;; Add a context search string
8419 (when (org-xor org-context-in-file-links arg)
8421 ((org-on-heading-p) nil)
8422 ((org-region-active-p)
8423 (buffer-substring (region-beginning) (region-end)))
8425 (when (or (null txt) (string-match "\\S-" txt))
8429 (org-make-org-heading-search-string txt)
8431 desc (or (nth 4 (ignore-errors
8432 (org-heading-components))) "NONE"))))
8433 (if (string-match "::\\'" cpltxt)
8434 (setq cpltxt (substring cpltxt 0 -2)))
8435 (setq link (org-make-link cpltxt)))))
8437 ((buffer-file-name (buffer-base-buffer))
8438 ;; Just link to this file here.
8439 (setq cpltxt (concat "file:"
8440 (abbreviate-file-name
8441 (buffer-file-name (buffer-base-buffer)))))
8442 ;; Add a context string
8443 (when (org-xor org-context-in-file-links arg)
8444 (setq txt (if (org-region-active-p)
8445 (buffer-substring (region-beginning) (region-end))
8446 (buffer-substring (point-at-bol) (point-at-eol))))
8447 ;; Only use search option if there is some text.
8448 (when (string-match "\\S-" txt)
8450 (concat cpltxt "::" (org-make-org-heading-search-string txt))
8452 (setq link (org-make-link cpltxt)))
8455 (error "Cannot link to a buffer which is not visiting a file"))
8457 (t (setq link nil)))
8459 (if (consp link) (setq cpltxt (car link) link (cdr link)))
8460 (setq link (or link cpltxt)
8461 desc (or desc cpltxt))
8462 (if (equal desc "NONE") (setq desc nil))
8464 (if (and (or (interactive-p) executing-kbd-macro) link)
8466 (setq org-stored-links
8467 (cons (list link desc) org-stored-links))
8468 (message "Stored: %s" (or desc link))
8470 (setq link (concat "file:" (abbreviate-file-name (buffer-file-name))
8472 (setq org-stored-links
8473 (cons (list link desc) org-stored-links))))
8474 (or agenda-link (and link (org-make-link-string link desc)))))))
8476 (defun org-store-link-props (&rest plist)
8477 "Store link properties, extract names and addresses."
8479 (when (setq x (plist-get plist :from))
8480 (setq adr (mail-extract-address-components x))
8481 (setq plist (plist-put plist :fromname (car adr)))
8482 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
8483 (when (setq x (plist-get plist :to))
8484 (setq adr (mail-extract-address-components x))
8485 (setq plist (plist-put plist :toname (car adr)))
8486 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
8487 (let ((from (plist-get plist :from))
8488 (to (plist-get plist :to)))
8489 (when (and from to org-from-is-user-regexp)
8491 (plist-put plist :fromto
8492 (if (string-match org-from-is-user-regexp from)
8494 (concat "from %f"))))))
8495 (setq org-store-link-plist plist))
8497 (defun org-add-link-props (&rest plist)
8498 "Add these properties to the link property list."
8501 (setq key (pop plist) value (pop plist))
8502 (setq org-store-link-plist
8503 (plist-put org-store-link-plist key value)))))
8505 (defun org-email-link-description (&optional fmt)
8506 "Return the description part of an email link.
8507 This takes information from `org-store-link-plist' and formats it
8508 according to FMT (default from `org-email-link-description-format')."
8509 (setq fmt (or fmt org-email-link-description-format))
8510 (let* ((p org-store-link-plist)
8511 (to (plist-get p :toaddress))
8512 (from (plist-get p :fromaddress))
8515 (cons "%c" (plist-get p :fromto))
8516 (cons "%F" (plist-get p :from))
8517 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
8518 (cons "%T" (plist-get p :to))
8519 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
8520 (cons "%s" (plist-get p :subject))
8521 (cons "%d" (plist-get p :date))
8522 (cons "%m" (plist-get p :message-id)))))
8523 (when (string-match "%c" fmt)
8524 ;; Check if the user wrote this message
8525 (if (and org-from-is-user-regexp from to
8526 (save-match-data (string-match org-from-is-user-regexp from)))
8527 (setq fmt (replace-match "to %t" t t fmt))
8528 (setq fmt (replace-match "from %f" t t fmt))))
8529 (org-replace-escapes fmt table)))
8531 (defun org-make-org-heading-search-string (&optional string heading)
8532 "Make search string for STRING or current headline."
8534 (let ((s (or string (org-get-heading)))
8535 (lines org-context-in-file-links))
8536 (unless (and string (not heading))
8537 ;; We are using a headline, clean up garbage in there.
8538 (if (string-match org-todo-regexp s)
8539 (setq s (replace-match "" t t s)))
8540 (if (string-match (org-re ":[[:alnum:]_@#%:]+:[ \t]*$") s)
8541 (setq s (replace-match "" t t s)))
8542 (setq s (org-trim s))
8543 (if (string-match (concat "^\\(" org-quote-string "\\|"
8544 org-comment-string "\\)") s)
8545 (setq s (replace-match "" t t s)))
8546 (while (string-match org-ts-regexp s)
8547 (setq s (replace-match "" t t s))))
8548 (or string (setq s (concat "*" s))) ; Add * for headlines
8549 (when (and string (integerp lines) (> lines 0))
8550 (let ((slines (org-split-string s "\n")))
8551 (when (< lines (length slines))
8554 (reverse (nthcdr (- (length slines) lines)
8555 (reverse slines))) "\n")))))
8556 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
8558 (defun org-make-link (&rest strings)
8559 "Concatenate STRINGS."
8560 (apply 'concat strings))
8562 (defun org-make-link-string (link &optional description)
8563 "Make a link with brackets, consisting of LINK and DESCRIPTION."
8564 (unless (string-match "\\S-" link)
8565 (error "Empty link"))
8566 (when (and description
8567 (stringp description)
8568 (not (string-match "\\S-" description)))
8569 (setq description nil))
8570 (when (stringp description)
8571 ;; Remove brackets from the description, they are fatal.
8572 (while (string-match "\\[" description)
8573 (setq description (replace-match "{" t t description)))
8574 (while (string-match "\\]" description)
8575 (setq description (replace-match "}" t t description))))
8576 (when (equal (org-link-escape link) description)
8577 ;; No description needed, it is identical
8578 (setq description nil))
8579 (when (and (not description)
8580 (not (equal link (org-link-escape link))))
8581 (setq description (org-extract-attributes link)))
8582 (setq link (if (string-match org-link-types-re link)
8583 (concat (match-string 1 link)
8584 (org-link-escape (substring link (match-end 1))))
8585 (org-link-escape link)))
8586 (concat "[[" link "]"
8587 (if description (concat "[" description "]") "")
8590 (defconst org-link-escape-chars
8594 (?\340 . "%E0") ; `a
8595 (?\342 . "%E2") ; ^a
8596 (?\347 . "%E7") ; ,c
8597 (?\350 . "%E8") ; `e
8598 (?\351 . "%E9") ; 'e
8599 (?\352 . "%EA") ; ^e
8600 (?\356 . "%EE") ; ^i
8601 (?\364 . "%F4") ; ^o
8602 (?\371 . "%F9") ; `u
8603 (?\373 . "%FB") ; ^u
8609 "Association list of escapes for some characters problematic in links.
8610 This is the list that is used for internal purposes.")
8612 (defvar org-url-encoding-use-url-hexify nil)
8614 (defconst org-link-escape-chars-browser
8615 '((?\ . "%20")) ; 32 for the SPC char
8616 "Association list of escapes for some characters problematic in links.
8617 This is the list that is used before handing over to the browser.")
8619 (defun org-link-escape (text &optional table)
8620 "Escape characters in TEXT that are problematic for links."
8621 (if (and org-url-encoding-use-url-hexify (not table))
8622 (url-hexify-string text)
8623 (setq table (or table org-link-escape-chars))
8625 (let ((re (mapconcat (lambda (x) (regexp-quote
8626 (char-to-string (car x))))
8628 (while (string-match re text)
8631 (cdr (assoc (string-to-char (match-string 0 text))
8636 (defun org-link-unescape (text &optional table)
8637 "Reverse the action of `org-link-escape'."
8638 (if (and org-url-encoding-use-url-hexify (not table))
8639 (url-unhex-string text)
8640 (setq table (or table org-link-escape-chars))
8642 (let ((case-fold-search t)
8643 (re (mapconcat (lambda (x) (regexp-quote (downcase (cdr x))))
8645 (while (string-match re text)
8648 (char-to-string (car (rassoc (upcase (match-string 0 text))
8653 (defun org-xor (a b)
8657 (defun org-fixup-message-id-for-http (s)
8658 "Replace special characters in a message id, so it can be used in an http query."
8659 (when (string-match "%" s)
8660 (setq s (mapconcat (lambda (c)
8663 (char-to-string c)))
8665 (while (string-match "<" s)
8666 (setq s (replace-match "%3C" t t s)))
8667 (while (string-match ">" s)
8668 (setq s (replace-match "%3E" t t s)))
8669 (while (string-match "@" s)
8670 (setq s (replace-match "%40" t t s)))
8674 (defun org-insert-link-global ()
8675 "Insert a link like Org-mode does.
8676 This command can be called in any mode to insert a link in Org-mode syntax."
8678 (org-load-modules-maybe)
8679 (org-run-like-in-org-mode 'org-insert-link))
8681 (defun org-insert-link (&optional complete-file link-location)
8682 "Insert a link. At the prompt, enter the link.
8684 Completion can be used to insert any of the link protocol prefixes like
8687 The history can be used to select a link previously stored with
8688 `org-store-link'. When the empty string is entered (i.e. if you just
8689 press RET at the prompt), the link defaults to the most recently
8690 stored link. As SPC triggers completion in the minibuffer, you need to
8691 use M-SPC or C-q SPC to force the insertion of a space character.
8693 You will also be prompted for a description, and if one is given, it will
8694 be displayed in the buffer instead of the link.
8696 If there is already a link at point, this command will allow you to edit link
8697 and description parts.
8699 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
8700 be selected using completion. The path to the file will be relative to the
8701 current directory if the file is in the current directory or a subdirectory.
8702 Otherwise, the link will be the absolute path as completed in the minibuffer
8703 \(i.e. normally ~/path/to/file). You can configure this behavior using the
8704 option `org-link-file-path-type'.
8706 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
8707 the current directory or below.
8709 With three \\[universal-argument] prefixes, negate the meaning of
8710 `org-keep-stored-link-after-insertion'.
8712 If `org-make-link-description-function' is non-nil, this function will be
8713 called with the link target, and the result will be the default
8716 If the LINK-LOCATION parameter is non-nil, this value will be
8717 used as the link location instead of reading one interactively."
8719 (let* ((wcf (current-window-configuration))
8720 (region (if (org-region-active-p)
8721 (buffer-substring (region-beginning) (region-end))))
8722 (remove (and region (list (region-beginning) (region-end))))
8724 tmphist ; byte-compile incorrectly complains about this
8725 (link link-location)
8726 entry file all-prefixes)
8728 (link-location) ; specified by arg, just use it.
8729 ((org-in-regexp org-bracket-link-regexp 1)
8730 ;; We do have a link at point, and we are going to edit it.
8731 (setq remove (list (match-beginning 0) (match-end 0)))
8732 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
8733 (setq link (read-string "Link: "
8735 (org-match-string-no-properties 1)))))
8736 ((or (org-in-regexp org-angle-link-re)
8737 (org-in-regexp org-plain-link-re))
8738 ;; Convert to bracket link
8739 (setq remove (list (match-beginning 0) (match-end 0))
8740 link (read-string "Link: "
8741 (org-remove-angle-brackets (match-string 0)))))
8742 ((member complete-file '((4) (16)))
8743 ;; Completing read for file names.
8744 (setq link (org-file-complete-link complete-file)))
8746 ;; Read link, with completion for stored links.
8747 (with-output-to-temp-buffer "*Org Links*"
8748 (princ "Insert a link.
8749 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
8750 (when org-stored-links
8751 (princ "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
8754 (if (nth 1 x) (concat (car x) " (" (nth 1 x) ")") (car x)))
8755 (reverse org-stored-links) "\n"))))
8756 (let ((cw (selected-window)))
8757 (select-window (get-buffer-window "*Org Links*" 'visible))
8758 (setq truncate-lines t)
8759 (unless (pos-visible-in-window-p (point-max))
8760 (org-fit-window-to-buffer))
8761 (and (window-live-p cw) (select-window cw)))
8762 ;; Fake a link history, containing the stored links.
8763 (setq tmphist (append (mapcar 'car org-stored-links)
8764 org-insert-link-history))
8765 (setq all-prefixes (append (mapcar 'car org-link-abbrev-alist-local)
8766 (mapcar 'car org-link-abbrev-alist)
8771 (let ((org-completion-use-ido nil)
8772 (org-completion-use-iswitchb nil))
8773 (org-completing-read
8776 (mapcar (lambda (x) (list (concat x ":")))
8778 (mapcar 'car org-stored-links))
8781 (car (car org-stored-links)))))
8782 (if (not (string-match "\\S-" link))
8783 (error "No link selected"))
8784 (if (or (member link all-prefixes)
8785 (and (equal ":" (substring link -1))
8786 (member (substring link 0 -1) all-prefixes)
8787 (setq link (substring link 0 -1))))
8788 (setq link (org-link-try-special-completion link))))
8789 (set-window-configuration wcf)
8790 (kill-buffer "*Org Links*"))
8791 (setq entry (assoc link org-stored-links))
8792 (or entry (push link org-insert-link-history))
8793 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
8794 (not org-keep-stored-link-after-insertion))
8795 (setq org-stored-links (delq (assoc link org-stored-links)
8797 (setq desc (or desc (nth 1 entry)))))
8799 (if (string-match org-plain-link-re link)
8800 ;; URL-like link, normalize the use of angular brackets.
8801 (setq link (org-make-link (org-remove-angle-brackets link))))
8803 ;; Check if we are linking to the current file with a search option
8804 ;; If yes, simplify the link by using only the search option.
8805 (when (and buffer-file-name
8806 (string-match "^file:\\(.+?\\)::\\([^>]+\\)" link))
8807 (let* ((path (match-string 1 link))
8808 (case-fold-search nil)
8809 (search (match-string 2 link)))
8811 (if (equal (file-truename buffer-file-name) (file-truename path))
8812 ;; We are linking to this same file, with a search option
8813 (setq link search)))))
8815 ;; Check if we can/should use a relative path. If yes, simplify the link
8816 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
8817 (let* ((type (match-string 1 link))
8818 (path (match-string 2 link))
8820 (case-fold-search nil))
8822 ((or (eq org-link-file-path-type 'absolute)
8823 (equal complete-file '(16)))
8824 (setq path (abbreviate-file-name (expand-file-name path))))
8825 ((eq org-link-file-path-type 'noabbrev)
8826 (setq path (expand-file-name path)))
8827 ((eq org-link-file-path-type 'relative)
8828 (setq path (file-relative-name path)))
8831 (if (string-match (concat "^" (regexp-quote
8833 (file-name-as-directory
8834 default-directory))))
8835 (expand-file-name path))
8836 ;; We are linking a file with relative path name.
8837 (setq path (substring (expand-file-name path)
8839 (setq path (abbreviate-file-name (expand-file-name path)))))))
8840 (setq link (concat type path))
8841 (if (equal desc origpath)
8844 (if org-make-link-description-function
8845 (setq desc (funcall org-make-link-description-function link desc)))
8847 (setq desc (read-string "Description: " desc))
8848 (unless (string-match "\\S-" desc) (setq desc nil))
8849 (if remove (apply 'delete-region remove))
8850 (insert (org-make-link-string link desc))))
8852 (defun org-link-try-special-completion (type)
8853 "If there is completion support for link type TYPE, offer it."
8854 (let ((fun (intern (concat "org-" type "-complete-link"))))
8857 (read-string "Link (no completion support): " (concat type ":")))))
8859 (defun org-file-complete-link (&optional arg)
8860 "Create a file link using completion."
8862 (setq file (read-file-name "File: "))
8863 (let ((pwd (file-name-as-directory (expand-file-name ".")))
8864 (pwd1 (file-name-as-directory (abbreviate-file-name
8865 (expand-file-name ".")))))
8868 (setq link (org-make-link
8870 (abbreviate-file-name (expand-file-name file)))))
8871 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
8872 (setq link (org-make-link "file:" (match-string 1 file))))
8873 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
8874 (expand-file-name file))
8875 (setq link (org-make-link
8876 "file:" (match-string 1 (expand-file-name file)))))
8877 (t (setq link (org-make-link "file:" file)))))
8880 (defun org-completing-read (&rest args)
8881 "Completing-read with SPACE being a normal character."
8882 (let ((minibuffer-local-completion-map
8883 (copy-keymap minibuffer-local-completion-map)))
8884 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
8885 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
8886 (apply 'org-icompleting-read args)))
8888 (defun org-completing-read-no-i (&rest args)
8889 (let (org-completion-use-ido org-completion-use-iswitchb)
8890 (apply 'org-completing-read args)))
8892 (defun org-iswitchb-completing-read (prompt choices &rest args)
8893 "Use iswitch as a completing-read replacement to choose from choices.
8894 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
8896 (let* ((iswitchb-use-virtual-buffers nil)
8897 (iswitchb-make-buflist-hook
8899 (setq iswitchb-temp-buflist choices))))
8900 (iswitchb-read-buffer prompt)))
8902 (defun org-icompleting-read (&rest args)
8903 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
8904 (org-without-partial-completion
8905 (if (and org-completion-use-ido
8906 (fboundp 'ido-completing-read)
8907 (boundp 'ido-mode) ido-mode
8908 (listp (second args)))
8909 (let ((ido-enter-matching-directory nil))
8910 (apply 'ido-completing-read (concat (car args))
8911 (if (consp (car (nth 1 args)))
8912 (mapcar (lambda (x) (car x)) (nth 1 args))
8915 (if (and org-completion-use-iswitchb
8916 (boundp 'iswitchb-mode) iswitchb-mode
8917 (listp (second args)))
8918 (apply 'org-iswitchb-completing-read (concat (car args))
8919 (if (consp (car (nth 1 args)))
8920 (mapcar (lambda (x) (car x)) (nth 1 args))
8923 (apply 'completing-read args)))))
8925 (defun org-extract-attributes (s)
8926 "Extract the attributes cookie from a string and set as text property."
8927 (let (a attr (start 0) key value)
8929 (when (string-match "{{\\([^}]+\\)}}$" s)
8930 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
8931 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
8932 (setq key (match-string 1 a) value (match-string 2 a)
8934 attr (plist-put attr (intern key) value))))
8935 (org-add-props s nil 'org-attr attr))
8938 (defun org-extract-attributes-from-string (tag)
8939 (let (key value attr)
8940 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"\\s-?" tag)
8941 (setq key (match-string 1 tag) value (match-string 2 tag)
8942 tag (replace-match "" t t tag)
8943 attr (plist-put attr (intern key) value)))
8946 (defun org-attributes-to-string (plist)
8947 "Format a property list into an HTML attribute list."
8948 (let ((s "") key value)
8950 (setq key (pop plist) value (pop plist))
8952 (setq s (concat s " " (symbol-name key) "=\"" value "\""))))
8955 ;;; Opening/following a link
8957 (defvar org-link-search-failed nil)
8959 (defvar org-open-link-functions nil
8960 "Hook for functions finding a plain text link.
8961 These functions must take a single argument, the link content.
8962 They will be called for links that look like [[link text][description]]
8963 when LINK TEXT does not have a protocol like \"http:\" and does not look
8964 like a filename (e.g. \"./blue.png\").
8966 These functions will be called *before* Org attempts to resolve the
8967 link by doing text searches in the current buffer - so if you want a
8968 link \"[[target]]\" to still find \"<<target>>\", your function should
8969 handle this as a special case.
8971 When the function does handle the link, it must return a non-nil value.
8972 If it decides that it is not responsible for this link, it must return
8973 nil to indicate that that Org-mode can continue with other options
8974 like exact and fuzzy text search.")
8976 (defun org-next-link ()
8977 "Move forward to the next link.
8978 If the link is in hidden text, expose it."
8980 (when (and org-link-search-failed (eq this-command last-command))
8981 (goto-char (point-min))
8982 (message "Link search wrapped back to beginning of buffer"))
8983 (setq org-link-search-failed nil)
8984 (let* ((pos (point))
8986 (a (assoc :link ct)))
8987 (if a (goto-char (nth 2 a)))
8988 (if (re-search-forward org-any-link-re nil t)
8990 (goto-char (match-beginning 0))
8991 (if (outline-invisible-p) (org-show-context)))
8993 (setq org-link-search-failed t)
8994 (error "No further link found"))))
8996 (defun org-previous-link ()
8997 "Move backward to the previous link.
8998 If the link is in hidden text, expose it."
9000 (when (and org-link-search-failed (eq this-command last-command))
9001 (goto-char (point-max))
9002 (message "Link search wrapped back to end of buffer"))
9003 (setq org-link-search-failed nil)
9004 (let* ((pos (point))
9006 (a (assoc :link ct)))
9007 (if a (goto-char (nth 1 a)))
9008 (if (re-search-backward org-any-link-re nil t)
9010 (goto-char (match-beginning 0))
9011 (if (outline-invisible-p) (org-show-context)))
9013 (setq org-link-search-failed t)
9014 (error "No further link found"))))
9016 (defun org-translate-link (s)
9017 "Translate a link string if a translation function has been defined."
9018 (if (and org-link-translation-function
9019 (fboundp org-link-translation-function)
9020 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
9022 (setq s (funcall org-link-translation-function
9023 (match-string 1) (match-string 2)))
9024 (concat (car s) ":" (cdr s)))
9027 (defun org-translate-link-from-planner (type path)
9028 "Translate a link from Emacs Planner syntax so that Org can follow it.
9029 This is still an experimental function, your mileage may vary."
9031 ((member type '("http" "https" "news" "ftp"))
9032 ;; standard Internet links are the same.
9034 ((and (equal type "irc") (string-match "^//" path))
9035 ;; Planner has two / at the beginning of an irc link, we have 1.
9036 ;; We should have zero, actually....
9037 (setq path (substring path 1)))
9038 ((and (equal type "lisp") (string-match "^/" path))
9039 ;; Planner has a slash, we do not.
9040 (setq type "elisp" path (substring path 1)))
9041 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
9042 ;; A typical message link. Planner has the id after the final slash,
9043 ;; we separate it with a hash mark
9044 (setq path (concat (match-string 1 path) "#"
9045 (org-remove-angle-brackets (match-string 2 path)))))
9049 (defun org-find-file-at-mouse (ev)
9050 "Open file link or URL at mouse."
9052 (mouse-set-point ev)
9053 (org-open-at-point 'in-emacs))
9055 (defun org-open-at-mouse (ev)
9056 "Open file link or URL at mouse."
9058 (mouse-set-point ev)
9059 (if (eq major-mode 'org-agenda-mode)
9060 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
9061 (org-open-at-point))
9063 (defvar org-window-config-before-follow-link nil
9064 "The window configuration before following a link.
9065 This is saved in case the need arises to restore it.")
9067 (defvar org-open-link-marker (make-marker)
9068 "Marker pointing to the location where `org-open-at-point; was called.")
9071 (defun org-open-at-point-global ()
9072 "Follow a link like Org-mode does.
9073 This command can be called in any mode to follow a link that has
9076 (org-run-like-in-org-mode 'org-open-at-point))
9079 (defun org-open-link-from-string (s &optional arg reference-buffer)
9080 "Open a link in the string S, as if it was in Org-mode."
9081 (interactive "sLink: \nP")
9082 (let ((reference-buffer (or reference-buffer (current-buffer))))
9084 (let ((org-inhibit-startup t))
9087 (goto-char (point-min))
9088 (when reference-buffer
9089 (setq org-link-abbrev-alist-local
9090 (with-current-buffer reference-buffer
9091 org-link-abbrev-alist-local)))
9092 (org-open-at-point arg reference-buffer)))))
9094 (defvar org-open-at-point-functions nil
9095 "Hook that is run when following a link at point.
9097 Functions in this hook must return t if they identify and follow
9098 a link at point. If they don't find anything interesting at point,
9099 they must return nil.")
9101 (defun org-open-at-point (&optional in-emacs reference-buffer)
9102 "Open link at or after point.
9103 If there is no link at point, this function will search forward up to
9104 the end of the current line.
9105 Normally, files will be opened by an appropriate application. If the
9106 optional argument IN-EMACS is non-nil, Emacs will visit the file.
9107 With a double prefix argument, try to open outside of Emacs, in the
9108 application the system uses for this file type."
9110 ;; if in a code block, then open the block's results
9111 (unless (call-interactively #'org-babel-open-src-block-result)
9112 (org-load-modules-maybe)
9113 (move-marker org-open-link-marker (point))
9114 (setq org-window-config-before-follow-link (current-window-configuration))
9115 (org-remove-occur-highlights nil nil t)
9117 ((and (org-on-heading-p)
9119 (concat org-plain-link-re "\\|"
9120 org-bracket-link-regexp "\\|"
9121 org-angle-link-re "\\|"
9122 "[ \t]:[^ \t\n]+:[ \t]*$")))
9123 (not (get-text-property (point) 'org-linked-text)))
9124 (or (org-offer-links-in-entry in-emacs)
9125 (progn (require 'org-attach) (org-attach-reveal 'if-exists))))
9126 ((run-hook-with-args-until-success 'org-open-at-point-functions))
9127 ((org-at-timestamp-p t) (org-follow-timestamp-link))
9128 ((and (or (org-footnote-at-reference-p) (org-footnote-at-definition-p))
9129 (not (org-in-regexp org-bracket-link-regexp)))
9130 (org-footnote-action))
9132 (let (type path link line search (pos (point)))
9135 (skip-chars-forward "^]\n\r")
9136 (when (org-in-regexp org-bracket-link-regexp 1)
9137 (setq link (org-extract-attributes
9138 (org-link-unescape (org-match-string-no-properties 1))))
9139 (while (string-match " *\n *" link)
9140 (setq link (replace-match " " t t link)))
9141 (setq link (org-link-expand-abbrev link))
9143 ((or (file-name-absolute-p link)
9144 (string-match "^\\.\\.?/" link))
9145 (setq type "file" path link))
9146 ((string-match org-link-re-with-space3 link)
9147 (setq type (match-string 1 link) path (match-string 2 link)))
9148 (t (setq type "thisfile" path link)))
9151 (when (get-text-property (point) 'org-linked-text)
9152 (setq type "thisfile"
9153 pos (if (get-text-property (1+ (point)) 'org-linked-text)
9154 (1+ (point)) (point))
9155 path (buffer-substring
9156 (previous-single-property-change pos 'org-linked-text)
9157 (next-single-property-change pos 'org-linked-text)))
9161 (when (or (org-in-regexp org-angle-link-re)
9162 (org-in-regexp org-plain-link-re))
9163 (setq type (match-string 1) path (match-string 2))
9166 (when (org-in-regexp (org-re "\\(:[[:alnum:]_@#%:]+\\):[ \t]*$"))
9168 path (match-string 1))
9169 (while (string-match ":" path)
9170 (setq path (replace-match "+" t t path)))
9172 (when (org-in-regexp "<\\([^><\n]+\\)>")
9173 (setq type "tree-match"
9174 path (match-string 1))
9177 (error "No link found"))
9179 ;; switch back to reference buffer
9180 ;; needed when if called in a temporary buffer through
9181 ;; org-open-link-from-string
9182 (with-current-buffer (or reference-buffer (current-buffer))
9184 ;; Remove any trailing spaces in path
9185 (if (string-match " +\\'" path)
9186 (setq path (replace-match "" t t path)))
9187 (if (and org-link-translation-function
9188 (fboundp org-link-translation-function))
9189 ;; Check if we need to translate the link
9190 (let ((tmp (funcall org-link-translation-function type path)))
9191 (setq type (car tmp) path (cdr tmp))))
9195 ((assoc type org-link-protocols)
9196 (funcall (nth 1 (assoc type org-link-protocols)) path))
9198 ((equal type "mailto")
9199 (let ((cmd (car org-link-mailto-program))
9200 (args (cdr org-link-mailto-program)) args1
9201 (address path) (subject "") a)
9202 (if (string-match "\\(.*\\)::\\(.*\\)" path)
9203 (setq address (match-string 1 path)
9204 subject (org-link-escape (match-string 2 path))))
9207 ((not (stringp (car args))) (push (pop args) args1))
9208 (t (setq a (pop args))
9209 (if (string-match "%a" a)
9210 (setq a (replace-match address t t a)))
9211 (if (string-match "%s" a)
9212 (setq a (replace-match subject t t a)))
9214 (apply cmd (nreverse args1))))
9216 ((member type '("http" "https" "ftp" "news"))
9217 (browse-url (concat type ":" (org-link-escape
9218 path org-link-escape-chars-browser))))
9220 ((string= type "doi")
9221 (browse-url (concat "http://dx.doi.org/"
9223 path org-link-escape-chars-browser))))
9225 ((member type '("message"))
9226 (browse-url (concat type ":" path)))
9228 ((string= type "tags")
9229 (org-tags-view in-emacs path))
9231 ((string= type "tree-match")
9232 (org-occur (concat "\\[" (regexp-quote path) "\\]")))
9234 ((string= type "file")
9235 (if (string-match "::\\([0-9]+\\)\\'" path)
9236 (setq line (string-to-number (match-string 1 path))
9237 path (substring path 0 (match-beginning 0)))
9238 (if (string-match "::\\(.+\\)\\'" path)
9239 (setq search (match-string 1 path)
9240 path (substring path 0 (match-beginning 0)))))
9241 (if (string-match "[*?{]" (file-name-nondirectory path))
9243 (org-open-file path in-emacs line search)))
9245 ((string= type "shell")
9247 (if (or (not org-confirm-shell-link-function)
9248 (funcall org-confirm-shell-link-function
9249 (format "Execute \"%s\" in shell? "
9250 (org-add-props cmd nil
9251 'face 'org-warning))))
9253 (message "Executing %s" cmd)
9254 (shell-command cmd))
9257 ((string= type "elisp")
9259 (if (or (not org-confirm-elisp-link-function)
9260 (funcall org-confirm-elisp-link-function
9261 (format "Execute \"%s\" as elisp? "
9262 (org-add-props cmd nil
9263 'face 'org-warning))))
9264 (message "%s => %s" cmd
9265 (if (equal (string-to-char cmd) ?\()
9267 (call-interactively (read cmd))))
9270 ((and (string= type "thisfile")
9271 (run-hook-with-args-until-success
9272 'org-open-link-functions path)))
9274 ((string= type "thisfile")
9276 (switch-to-buffer-other-window
9277 (org-get-buffer-for-internal-link (current-buffer)))
9278 (org-mark-ring-push))
9279 (let ((cmd `(org-link-search
9281 ,(cond ((equal in-emacs '(4)) 'occur)
9282 ((equal in-emacs '(16)) 'org-occur)
9285 (condition-case nil (eval cmd)
9286 (error (progn (widen) (eval cmd))))))
9289 (browse-url-at-point)))))))
9290 (move-marker org-open-link-marker nil)
9291 (run-hook-with-args 'org-follow-link-hook)))
9293 (defun org-offer-links-in-entry (&optional nth zero)
9294 "Offer links in the current entry and follow the selected link.
9295 If there is only one link, follow it immediately as well.
9296 If NTH is an integer, immediately pick the NTH link found.
9297 If ZERO is a string, check also this string for a link, and if
9298 there is one, offer it as link number zero."
9299 (let ((re (concat "\\(" org-bracket-link-regexp "\\)\\|"
9300 "\\(" org-angle-link-re "\\)\\|"
9301 "\\(" org-plain-link-re "\\)"))
9303 (in-emacs (if (integerp nth) nil nth))
9304 have-zero end links link c)
9305 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
9306 (push (match-string 0 zero) links)
9307 (setq cnt (1- cnt) have-zero t))
9309 (org-back-to-heading t)
9310 (setq end (save-excursion (outline-next-heading) (point)))
9311 (while (re-search-forward re end t)
9312 (push (match-string 0) links))
9313 (setq links (org-uniquify (reverse links))))
9317 (message "No links"))
9318 ((equal (length links) 1)
9319 (setq link (list (car links))))
9320 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
9321 (setq link (nth (if have-zero nth (1- nth)) links)))
9322 (t ; we have to select a link
9324 (save-window-excursion
9325 (delete-other-windows)
9326 (with-output-to-temp-buffer "*Select Link*"
9328 (if (not (string-match org-bracket-link-regexp l))
9329 (princ (format "[%c] %s\n" (incf cnt)
9330 (org-remove-angle-brackets l)))
9332 (princ (format "[%c] %s (%s)\n" (incf cnt)
9333 (match-string 3 l) (match-string 1 l)))
9334 (princ (format "[%c] %s\n" (incf cnt)
9335 (match-string 1 l))))))
9337 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
9338 (message "Select link to open, RET to open all:")
9339 (setq c (read-char-exclusive))
9340 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
9341 (when (equal c ?q) (error "Abort"))
9345 (if have-zero (setq nth (1+ nth)))
9346 (unless (and (integerp nth) (>= (length links) nth))
9347 (error "Invalid link selection"))
9348 (setq link (list (nth (1- nth) links))))))
9350 (let ((buf (current-buffer)))
9352 (org-open-link-from-string l in-emacs buf))
9356 ;; Add special file links that specify the way of opening
9358 (org-add-link-type "file+sys" 'org-open-file-with-system)
9359 (org-add-link-type "file+emacs" 'org-open-file-with-emacs)
9360 (defun org-open-file-with-system (path)
9361 "Open file at PATH using the system way of opening it."
9362 (org-open-file path 'system))
9363 (defun org-open-file-with-emacs (path)
9364 "Open file at PATH in Emacs."
9365 (org-open-file path 'emacs))
9366 (defun org-remove-file-link-modifiers ()
9367 "Remove the file link modifiers in `file+sys:' and `file+emacs:' links."
9368 (goto-char (point-min))
9369 (while (re-search-forward "\\<file\\+\\(sys\\|emacs\\):" nil t)
9371 (replace-match "file:" t t))))
9372 (eval-after-load "org-exp"
9373 '(add-hook 'org-export-preprocess-before-normalizing-links-hook
9374 'org-remove-file-link-modifiers))
9378 (defun org-get-effort (&optional pom)
9379 "Get the effort estimate for the current entry."
9380 (org-entry-get pom org-effort-property))
9384 (defvar org-create-file-search-functions nil
9385 "List of functions to construct the right search string for a file link.
9386 These functions are called in turn with point at the location to
9387 which the link should point.
9389 A function in the hook should first test if it would like to
9390 handle this file type, for example by checking the `major-mode'
9391 or the file extension. If it decides not to handle this file, it
9392 should just return nil to give other functions a chance. If it
9393 does handle the file, it must return the search string to be used
9394 when following the link. The search string will be part of the
9395 file link, given after a double colon, and `org-open-at-point'
9396 will automatically search for it. If special measures must be
9397 taken to make the search successful, another function should be
9398 added to the companion hook `org-execute-file-search-functions',
9401 A function in this hook may also use `setq' to set the variable
9402 `description' to provide a suggestion for the descriptive text to
9403 be used for this link when it gets inserted into an Org-mode
9404 buffer with \\[org-insert-link].")
9406 (defvar org-execute-file-search-functions nil
9407 "List of functions to execute a file search triggered by a link.
9409 Functions added to this hook must accept a single argument, the
9410 search string that was part of the file link, the part after the
9411 double colon. The function must first check if it would like to
9412 handle this search, for example by checking the `major-mode' or
9413 the file extension. If it decides not to handle this search, it
9414 should just return nil to give other functions a chance. If it
9415 does handle the search, it must return a non-nil value to keep
9416 other functions from trying.
9418 Each function can access the current prefix argument through the
9419 variable `current-prefix-argument'. Note that a single prefix is
9420 used to force opening a link in Emacs, so it may be good to only
9421 use a numeric or double prefix to guide the search function.
9423 In case this is needed, a function in this hook can also restore
9424 the window configuration before `org-open-at-point' was called using:
9426 (set-window-configuration org-window-config-before-follow-link)")
9428 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
9429 (defun org-link-search (s &optional type avoid-pos)
9430 "Search for a link search option.
9431 If S is surrounded by forward slashes, it is interpreted as a
9432 regular expression. In org-mode files, this will create an `org-occur'
9433 sparse tree. In ordinary files, `occur' will be used to list matches.
9434 If the current buffer is in `dired-mode', grep will be used to search
9435 in all files. If AVOID-POS is given, ignore matches near that position."
9436 (let ((case-fold-search t)
9437 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
9438 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
9439 (append '(("") (" ") ("\t") ("\n"))
9443 (pre nil) (post nil)
9444 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
9446 ;; First check if there are any special search functions
9447 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
9448 ;; Now try the builtin stuff
9449 ((and (equal (string-to-char s0) ?#)
9452 (goto-char (point-min))
9455 (concat "^[ \t]*:CUSTOM_ID:[ \t]+" (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
9456 (setq type 'dedicated
9457 pos (match-beginning 0))))
9458 ;; There is an exact target for this
9460 (org-back-to-heading t)))
9462 (goto-char (point-min))
9465 (concat "<<" (regexp-quote s0) ">>") nil t)
9466 (setq type 'dedicated
9467 pos (match-beginning 0))))
9468 ;; There is an exact target for this
9470 ((and (string-match "^(\\(.*\\))$" s0)
9472 (goto-char (point-min))
9475 (concat "[^[]" (regexp-quote
9476 (format org-coderef-label-format
9477 (match-string 1 s0))))
9479 (setq type 'dedicated
9480 pos (1+ (match-beginning 0))))))
9481 ;; There is a coderef target for this
9483 ((string-match "^/\\(.*\\)/$" s)
9484 ;; A regular expression
9487 (org-occur (match-string 1 s)))
9488 ;;((eq major-mode 'dired-mode)
9489 ;; (grep (concat "grep -n -e '" (match-string 1 s) "' *")))
9490 (t (org-do-occur (match-string 1 s)))))
9491 ((and (org-mode-p) org-link-search-must-match-exact-headline)
9492 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
9493 (goto-char (point-min))
9495 ((let (case-fold-search)
9496 (re-search-forward (format org-complex-heading-regexp-format
9499 ;; OK, found a match
9500 (setq type 'dedicated)
9501 (goto-char (match-beginning 0)))
9502 ((and (not org-link-search-inhibit-query)
9503 (eq org-link-search-must-match-exact-headline 'query-to-create)
9504 (y-or-n-p "No match - create this as a new heading? "))
9505 (goto-char (point-max))
9506 (or (bolp) (newline))
9507 (insert "* " s "\n")
9508 (beginning-of-line 0))
9511 (error "No match"))))
9513 ;; A normal search string
9514 (when (equal (string-to-char s) ?*)
9515 ;; Anchor on headlines, post may include tags.
9516 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
9517 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
9519 (remove-text-properties
9521 '(face nil mouse-face nil keymap nil fontified nil) s)
9522 ;; Make a series of regular expressions to find a match
9523 (setq words (org-split-string s "[ \n\r\t]+")
9525 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
9526 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
9528 re2a_ (concat "\\(" (mapconcat 'downcase words "[ \t\r\n]+") "\\)[ \t\r\n]")
9529 re2a (concat "[ \t\r\n]" re2a_)
9530 re4_ (concat "\\(" (mapconcat 'downcase words "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
9531 re4 (concat "[^a-zA-Z_]" re4_)
9533 re1 (concat pre re2 post)
9534 re3 (concat pre (if pre re4_ re4) post)
9535 re5 (concat pre ".*" re4)
9536 re2 (concat pre re2)
9537 re2a (concat pre (if pre re2a_ re2a))
9538 re4 (concat pre (if pre re4_ re4))
9539 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
9540 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
9544 ((eq type 'org-occur) (org-occur reall))
9545 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
9546 (t (goto-char (point-min))
9548 (if (or (and (org-search-not-self 1 re0 nil t) (setq type 'dedicated))
9549 (org-search-not-self 1 re1 nil t)
9550 (org-search-not-self 1 re2 nil t)
9551 (org-search-not-self 1 re2a nil t)
9552 (org-search-not-self 1 re3 nil t)
9553 (org-search-not-self 1 re4 nil t)
9554 (org-search-not-self 1 re5 nil t)
9556 (goto-char (match-beginning 1))
9558 (error "No match"))))))
9559 (and (org-mode-p) (org-show-context 'link-search))
9562 (defun org-search-not-self (group &rest args)
9563 "Execute `re-search-forward', but only accept matches that do not
9564 enclose the position of `org-open-link-marker'."
9565 (let ((m org-open-link-marker))
9567 (while (apply 're-search-forward args)
9568 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
9569 (goto-char (match-end group))
9570 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
9571 (> (match-beginning 0) (marker-position m))
9572 (< (match-end 0) (marker-position m)))
9574 (or (not (org-in-regexp
9575 org-bracket-link-analytic-regexp 1))
9576 (not (match-end 4)) ; no description
9577 (and (<= (match-beginning 4) (point))
9578 (>= (match-end 4) (point))))))
9579 (throw 'exit (point))))))))
9581 (defun org-get-buffer-for-internal-link (buffer)
9582 "Return a buffer to be used for displaying the link target of internal links."
9584 ((not org-display-internal-link-with-indirect-buffer)
9586 ((string-match "(Clone)$" (buffer-name buffer))
9587 (message "Buffer is already a clone, not making another one")
9588 ;; we also do not modify visibility in this case
9590 (t ; make a new indirect buffer for displaying the link
9591 (let* ((bn (buffer-name buffer))
9592 (ibn (concat bn "(Clone)"))
9593 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
9594 (with-current-buffer ib (org-overview))
9597 (defun org-do-occur (regexp &optional cleanup)
9598 "Call the Emacs command `occur'.
9599 If CLEANUP is non-nil, remove the printout of the regular expression
9600 in the *Occur* buffer. This is useful if the regex is long and not useful
9604 (let ((cwin (selected-window)) win beg end)
9605 (when (setq win (get-buffer-window "*Occur*"))
9606 (select-window win))
9607 (goto-char (point-min))
9608 (when (re-search-forward "match[a-z]+" nil t)
9609 (setq beg (match-end 0))
9610 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
9611 (setq end (1- (match-beginning 0)))))
9612 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
9613 (goto-char (point-min))
9614 (select-window cwin))))
9616 ;;; The mark ring for links jumps
9618 (defvar org-mark-ring nil
9619 "Mark ring for positions before jumps in Org-mode.")
9620 (defvar org-mark-ring-last-goto nil
9621 "Last position in the mark ring used to go back.")
9622 ;; Fill and close the ring
9623 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
9624 (loop for i from 1 to org-mark-ring-length do
9625 (push (make-marker) org-mark-ring))
9626 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
9629 (defun org-mark-ring-push (&optional pos buffer)
9630 "Put the current position or POS into the mark ring and rotate it."
9632 (setq pos (or pos (point)))
9633 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
9634 (move-marker (car org-mark-ring)
9636 (or buffer (current-buffer)))
9638 (substitute-command-keys
9639 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
9641 (defun org-mark-ring-goto (&optional n)
9642 "Jump to the previous position in the mark ring.
9643 With prefix arg N, jump back that many stored positions. When
9644 called several times in succession, walk through the entire ring.
9645 Org-mode commands jumping to a different position in the current file,
9646 or to another Org-mode file, automatically push the old position
9650 (if (eq last-command this-command)
9651 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
9652 (setq p org-mark-ring))
9653 (setq org-mark-ring-last-goto p)
9655 (switch-to-buffer (marker-buffer m))
9657 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
9659 (defun org-remove-angle-brackets (s)
9660 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
9661 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
9663 (defun org-add-angle-brackets (s)
9664 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
9665 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
9667 (defun org-remove-double-quotes (s)
9668 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
9669 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
9672 ;;; Following specific links
9674 (defun org-follow-timestamp-link ()
9676 ((org-at-date-range-p t)
9677 (let ((org-agenda-start-on-weekday)
9678 (t1 (match-string 1))
9679 (t2 (match-string 2)))
9680 (setq t1 (time-to-days (org-time-string-to-time t1))
9681 t2 (time-to-days (org-time-string-to-time t2)))
9682 (org-agenda-list nil t1 (1+ (- t2 t1)))))
9683 ((org-at-timestamp-p t)
9684 (org-agenda-list nil (time-to-days (org-time-string-to-time
9685 (substring (match-string 1) 0 10)))
9687 (t (error "This should not happen"))))
9690 ;;; Following file links
9691 (defvar org-wait nil)
9692 (defun org-open-file (path &optional in-emacs line search)
9693 "Open the file at PATH.
9694 First, this expands any special file name abbreviations. Then the
9695 configuration variable `org-file-apps' is checked if it contains an
9696 entry for this file type, and if yes, the corresponding command is launched.
9698 If no application is found, Emacs simply visits the file.
9700 With optional prefix argument IN-EMACS, Emacs will visit the file.
9701 With a double \\[universal-argument] \\[universal-argument] \
9702 prefix arg, Org tries to avoid opening in Emacs
9703 and to use an external application to visit the file.
9705 Optional LINE specifies a line to go to, optional SEARCH a string
9706 to search for. If LINE or SEARCH is given, the file will be
9707 opened in Emacs, unless an entry from org-file-apps that makes
9708 use of groups in a regexp matches.
9709 If the file does not exist, an error is thrown."
9710 (let* ((file (if (equal path "")
9712 (substitute-in-file-name (expand-file-name path))))
9713 (file-apps (append org-file-apps (org-default-apps)))
9714 (apps (org-remove-if
9715 'org-file-apps-entry-match-against-dlink-p file-apps))
9716 (apps-dlink (org-remove-if-not
9717 'org-file-apps-entry-match-against-dlink-p file-apps))
9718 (remp (and (assq 'remote apps) (org-file-remote-p file)))
9719 (dirp (if remp nil (file-directory-p file)))
9720 (file (if (and dirp org-open-directory-means-index-dot-org)
9721 (concat (file-name-as-directory file) "index.org")
9723 (a-m-a-p (assq 'auto-mode apps))
9724 (dfile (downcase file))
9725 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
9726 (link (cond ((and (eq line nil)
9730 (concat file "::" (number-to-string line)))
9732 (concat file "::" search))))
9733 (dlink (downcase link))
9734 (old-buffer (current-buffer))
9736 (old-mode major-mode)
9737 ext cmd link-match-data)
9738 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
9739 (setq ext (match-string 1 dfile))
9740 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
9741 (setq ext (match-string 1 dfile))))
9743 ((member in-emacs '((16) system))
9744 (setq cmd (cdr (assoc 'system apps))))
9745 (in-emacs (setq cmd 'emacs))
9747 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
9748 (and dirp (cdr (assoc 'directory apps)))
9749 ; first, try matching against apps-dlink
9750 ; if we get a match here, store the match data for later
9751 (let ((match (assoc-default dlink apps-dlink
9754 (progn (setq link-match-data (match-data))
9756 (progn (setq in-emacs (or in-emacs line search))
9757 nil))) ; if we have no match in apps-dlink,
9758 ; always open the file in emacs if line or search
9759 ; is given (for backwards compatibility)
9760 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
9762 (cdr (assoc ext apps))
9763 (cdr (assoc t apps))))))
9764 (when (eq cmd 'system)
9765 (setq cmd (cdr (assoc 'system apps))))
9766 (when (eq cmd 'default)
9767 (setq cmd (cdr (assoc t apps))))
9768 (when (eq cmd 'mailcap)
9770 (mailcap-parse-mailcaps)
9771 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
9772 (command (mailcap-mime-info mime-type)))
9773 (if (stringp command)
9775 (setq cmd 'emacs))))
9776 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
9777 (not (file-exists-p file))
9778 (not org-open-non-existing-files))
9779 (error "No such file: %s" file))
9781 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
9782 ;; Remove quotes around the file name - we'll use shell-quote-argument.
9783 (while (string-match "['\"]%s['\"]" cmd)
9784 (setq cmd (replace-match "%s" t t cmd)))
9785 (while (string-match "%s" cmd)
9786 (setq cmd (replace-match
9788 (shell-quote-argument
9789 (convert-standard-filename file)))
9792 ;; Replace "%1", "%2" etc. in command with group matches from regex
9794 (let ((match-index 1)
9795 (number-of-groups (- (/ (length link-match-data) 2) 1)))
9796 (set-match-data link-match-data)
9797 (while (<= match-index number-of-groups)
9798 (let ((regex (concat "%" (number-to-string match-index)))
9799 (replace-with (match-string match-index dlink)))
9800 (while (string-match regex cmd)
9801 (setq cmd (replace-match replace-with t t cmd))))
9802 (setq match-index (+ match-index 1)))))
9804 (save-window-excursion
9805 (start-process-shell-command cmd nil cmd)
9806 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))
9810 (funcall (cdr (assq 'file org-link-frame-setup)) file)
9812 (if line (org-goto-line line)
9813 (if search (org-link-search search))))
9815 (let ((file (convert-standard-filename file)))
9817 (set-match-data link-match-data)
9819 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
9820 (and (org-mode-p) (eq old-mode 'org-mode)
9821 (or (not (equal old-buffer (current-buffer)))
9822 (not (equal old-pos (point))))
9823 (org-mark-ring-push old-pos old-buffer))))
9825 (defun org-file-apps-entry-match-against-dlink-p (entry)
9826 "This function returns non-nil if `entry' uses a regular
9827 expression which should be matched against the whole link by
9830 It assumes that is the case when the entry uses a regular
9831 expression which has at least one grouping construct and the
9832 action is either a lisp form or a command string containing
9833 '%1', i.e. using at least one subexpression match as a
9835 (let ((selector (car entry))
9836 (action (cdr entry)))
9837 (if (stringp selector)
9838 (and (> (regexp-opt-depth selector) 0)
9839 (or (and (stringp action)
9840 (string-match "%[0-9]" action))
9844 (defun org-default-apps ()
9845 "Return the default applications for this operating system."
9847 ((eq system-type 'darwin)
9848 org-file-apps-defaults-macosx)
9849 ((eq system-type 'windows-nt)
9850 org-file-apps-defaults-windowsnt)
9851 (t org-file-apps-defaults-gnu)))
9853 (defun org-apps-regexp-alist (list &optional add-auto-mode)
9854 "Convert extensions to regular expressions in the cars of LIST.
9855 Also, weed out any non-string entries, because the return value is used
9856 only for regexp matching.
9857 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
9858 point to the symbol `emacs', indicating that the file should
9859 be opened in Emacs."
9863 (if (not (stringp (car x)))
9865 (if (string-match "\\W" (car x))
9867 (cons (concat "\\." (car x) "\\'") (cdr x)))))
9870 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
9872 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
9873 (defun org-file-remote-p (file)
9874 "Test whether FILE specifies a location on a remote system.
9875 Return non-nil if the location is indeed remote.
9877 For example, the filename \"/user@host:/foo\" specifies a location
9878 on the system \"/user@host:\"."
9879 (cond ((fboundp 'file-remote-p)
9880 (file-remote-p file))
9881 ((fboundp 'tramp-handle-file-remote-p)
9882 (tramp-handle-file-remote-p file))
9883 ((and (boundp 'ange-ftp-name-format)
9884 (string-match (car ange-ftp-name-format) file))
9891 (defun org-get-org-file ()
9892 "Read a filename, with default directory `org-directory'."
9893 (let ((default (or org-default-notes-file remember-data-file)))
9894 (read-file-name (format "File name [%s]: " default)
9895 (file-name-as-directory org-directory)
9898 (defun org-notes-order-reversed-p ()
9899 "Check if the current file should receive notes in reversed order."
9901 ((not org-reverse-note-order) nil)
9902 ((eq t org-reverse-note-order) t)
9903 ((not (listp org-reverse-note-order)) nil)
9905 (let ((all org-reverse-note-order)
9907 (while (setq entry (pop all))
9908 (if (string-match (car entry) buffer-file-name)
9909 (throw 'exit (cdr entry))))
9912 (defvar org-refile-target-table nil
9913 "The list of refile targets, created by `org-refile'.")
9915 (defvar org-agenda-new-buffers nil
9916 "Buffers created to visit agenda files.")
9918 (defvar org-refile-cache nil
9919 "Cache for refile targets.")
9922 (defvar org-refile-markers nil
9923 "All the markers used for caching refile locations.")
9925 (defun org-refile-marker (pos)
9926 "Get a new refile marker, but only if caching is in use."
9927 (if (not org-refile-use-cache)
9929 (let ((m (make-marker)))
9931 (push m org-refile-markers)
9934 (defun org-refile-cache-clear ()
9935 "Clear the refile cache and disable all the markers."
9936 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
9937 (setq org-refile-markers nil)
9938 (setq org-refile-cache nil)
9939 (message "Refile cache has been cleared"))
9941 (defun org-refile-cache-check-set (set)
9942 "Check if all the markers in the cache still have live buffers."
9945 (while (and set (setq marker (nth 3 (pop set))))
9946 ;; if org-refile-use-outline-path is 'file, marker may be nil
9947 (when (and marker (null (marker-buffer marker)))
9948 (message "not found") (sit-for 3)
9952 (defun org-refile-cache-put (set &rest identifiers)
9953 "Push the refile targets SET into the cache, under IDENTIFIERS."
9954 (let* ((key (sha1 (prin1-to-string identifiers)))
9955 (entry (assoc key org-refile-cache)))
9958 (push (cons key set) org-refile-cache))))
9960 (defun org-refile-cache-get (&rest identifiers)
9961 "Retrieve the cached value for refile targets given by IDENTIFIERS."
9963 ((not org-refile-cache) nil)
9964 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
9966 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
9967 org-refile-cache))))
9968 (and set (org-refile-cache-check-set set) set)))))
9970 (defun org-get-refile-targets (&optional default-buffer)
9971 "Produce a table with refile targets."
9972 (let ((case-fold-search nil)
9973 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
9974 (entries (or org-refile-targets '((nil . (:level . 1)))))
9975 targets tgs txt re files f desc descre fast-path-p level pos0)
9976 (message "Getting targets...")
9977 (with-current-buffer (or default-buffer (current-buffer))
9978 (while (setq entry (pop entries))
9979 (setq files (car entry) desc (cdr entry))
9980 (setq fast-path-p nil)
9982 ((null files) (setq files (list (current-buffer))))
9983 ((eq files 'org-agenda-files)
9984 (setq files (org-agenda-files 'unrestricted)))
9985 ((and (symbolp files) (fboundp files))
9986 (setq files (funcall files)))
9987 ((and (symbolp files) (boundp files))
9988 (setq files (symbol-value files))))
9989 (if (stringp files) (setq files (list files)))
9991 ((eq (car desc) :tag)
9992 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
9993 ((eq (car desc) :todo)
9994 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
9995 ((eq (car desc) :regexp)
9996 (setq descre (cdr desc)))
9997 ((eq (car desc) :level)
9998 (setq descre (concat "^\\*\\{" (number-to-string
9999 (if org-odd-levels-only
10000 (1- (* 2 (cdr desc)))
10003 ((eq (car desc) :maxlevel)
10004 (setq fast-path-p t)
10005 (setq descre (concat "^\\*\\{1," (number-to-string
10006 (if org-odd-levels-only
10007 (1- (* 2 (cdr desc)))
10010 (t (error "Bad refiling target description %s" desc)))
10011 (while (setq f (pop files))
10012 (with-current-buffer
10013 (if (bufferp f) f (org-get-agenda-file-buffer f))
10015 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
10017 (if (bufferp f) (setq f (buffer-file-name
10018 (buffer-base-buffer f))))
10019 (setq f (and f (expand-file-name f)))
10020 (if (eq org-refile-use-outline-path 'file)
10021 (push (list (file-name-nondirectory f) f nil nil) tgs))
10025 (goto-char (point-min))
10026 (while (re-search-forward descre nil t)
10027 (goto-char (setq pos0 (point-at-bol)))
10029 (when org-refile-target-verify-function
10031 (or (funcall org-refile-target-verify-function)
10033 (when (looking-at org-complex-heading-regexp)
10034 (setq level (org-reduced-level
10035 (- (match-end 1) (match-beginning 1)))
10036 txt (org-link-display-format (match-string 4))
10037 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
10038 re (format org-complex-heading-regexp-format
10039 (regexp-quote (match-string 4))))
10040 (when org-refile-use-outline-path
10041 (setq txt (mapconcat
10044 (if (eq org-refile-use-outline-path
10046 (list (file-name-nondirectory
10048 (buffer-base-buffer))))
10049 (if (eq org-refile-use-outline-path
10051 (list (buffer-file-name
10052 (buffer-base-buffer)))))
10053 (org-get-outline-path fast-path-p
10057 (push (list txt f re (org-refile-marker (point)))
10059 (when (= (point) pos0)
10060 ;; verification function has not moved point
10061 (goto-char (point-at-eol))))))))
10062 (when org-refile-use-cache
10063 (org-refile-cache-put tgs (buffer-file-name) descre))
10064 (setq targets (append tgs targets))
10066 (message "Getting targets...done")
10067 (nreverse targets)))
10069 (defun org-protect-slash (s)
10070 (while (string-match "/" s)
10071 (setq s (replace-match "\\" t t s)))
10074 (defvar org-olpa (make-vector 20 nil))
10076 (defun org-get-outline-path (&optional fastp level heading)
10077 "Return the outline path to the current entry, as a list.
10079 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
10080 routine which makes outline path derivations for an entire file,
10081 avoiding backtracing. Refile target collection makes use of that."
10085 (error "Outline path failure, more than 19 levels"))
10086 (loop for i from level upto 19 do
10087 (aset org-olpa i nil))
10089 (delq nil (append org-olpa nil))
10090 (aset org-olpa level heading)))
10091 (let (rtn case-fold-search)
10095 (while (org-up-heading-safe)
10096 (when (looking-at org-complex-heading-regexp)
10097 (push (org-match-string-no-properties 4) rtn)))
10100 (defun org-format-outline-path (path &optional width prefix)
10101 "Format the outline path PATH for display.
10102 Width is the maximum number of characters that is available.
10103 Prefix is a prefix to be included in the returned string,
10104 such as the file name."
10105 (setq width (or width 79))
10106 (if prefix (setq width (- width (length prefix))))
10109 (let* ((nsteps (length path))
10110 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
10111 (maxwidth (if (<= total-width width)
10112 10000 ;; everything fits
10113 ;; we need to shorten the level headings
10114 (/ (- width nsteps) nsteps)))
10115 (org-odd-levels-only nil)
10117 (total (1+ (length prefix))))
10118 (setq maxwidth (max maxwidth 10))
10123 (if (and (= n nsteps) (< maxwidth 10000))
10124 (setq maxwidth (- total-width total)))
10125 (if (< (length h) maxwidth)
10126 (progn (setq total (+ total (length h) 1)) h)
10127 (setq h (substring h 0 (- maxwidth 2))
10128 total (+ total maxwidth 1))
10129 (if (string-match "[ \t]+\\'" h)
10130 (setq h (substring h 0 (match-beginning 0))))
10131 (setq h (concat h "..")))
10132 (org-add-props h nil 'face
10133 (nth (% (1- n) org-n-level-faces)
10138 (defun org-display-outline-path (&optional file current)
10139 "Display the current outline path in the echo area."
10141 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
10142 (case-fold-search nil)
10143 (path (and (org-mode-p) (org-get-outline-path))))
10144 (if current (setq path (append path
10146 (org-back-to-heading t)
10147 (if (looking-at org-complex-heading-regexp)
10148 (list (match-string 4)))))))
10150 (org-format-outline-path
10153 (and file bfn (concat (file-name-nondirectory bfn) "/"))))))
10155 (defvar org-refile-history nil
10156 "History for refiling operations.")
10158 (defvar org-after-refile-insert-hook nil
10159 "Hook run after `org-refile' has inserted its stuff at the new location.
10160 Note that this is still *before* the stuff will be removed from
10161 the *old* location.")
10163 (defvar org-capture-last-stored-marker)
10164 (defun org-refile (&optional goto default-buffer rfloc)
10165 "Move the entry at point to another heading.
10166 The list of target headings is compiled using the information in
10167 `org-refile-targets', which see. This list is created before each use
10168 and will therefore always be up-to-date.
10170 At the target location, the entry is filed as a subitem of the target heading.
10171 Depending on `org-reverse-note-order', the new subitem will either be the
10172 first or the last subitem.
10174 If there is an active region, all entries in that region will be moved.
10175 However, the region must fulfill the requirement that the first heading
10176 is the first one sets the top-level of the moved text - at most siblings
10177 below it are allowed.
10179 With prefix arg GOTO, the command will only visit the target location,
10180 not actually move anything.
10181 With a double prefix arg \\[universal-argument] \\[universal-argument], \
10182 go to the location where the last refiling
10183 operation has put the subtree.
10184 With a prefix argument of `2', refile to the running clock.
10186 RFLOC can be a refile location obtained in a different way.
10188 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
10190 If you are using target caching (see `org-refile-use-cache'),
10191 You have to clear the target cache in order to find new targets.
10192 This can be done with a 0 prefix: `C-0 C-c C-w'"
10194 (if (member goto '(0 (64)))
10195 (org-refile-cache-clear)
10196 (let* ((cbuf (current-buffer))
10197 (regionp (org-region-active-p))
10198 (region-start (and regionp (region-beginning)))
10199 (region-end (and regionp (region-end)))
10200 (region-length (and regionp (- region-end region-start)))
10201 (filename (buffer-file-name (buffer-base-buffer cbuf)))
10202 pos it nbuf file re level reversed)
10203 (setq last-command nil)
10205 (goto-char region-start)
10206 (or (bolp) (goto-char (point-at-bol)))
10207 (setq region-start (point))
10208 (unless (org-kill-is-subtree-p
10209 (buffer-substring region-start region-end))
10210 (error "The region is not a (sequence of) subtree(s)")))
10211 (if (equal goto '(16))
10212 (org-refile-goto-last-stored)
10214 (and (equal goto 2)
10215 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
10217 (setq it (list (or org-clock-heading "running clock")
10219 (marker-buffer org-clock-hd-marker))
10221 (marker-position org-clock-hd-marker)))
10225 (org-refile-get-location
10226 (if goto "Goto: " "Refile to: ") default-buffer
10227 org-refile-allow-creating-parent-nodes)))))
10228 (setq file (nth 1 it)
10231 (if (and (not goto)
10233 (equal (buffer-file-name) file)
10235 (and (>= pos region-start)
10236 (<= pos region-end))
10237 (and (>= pos (point))
10238 (< pos (save-excursion
10239 (org-end-of-subtree t t))))))
10240 (error "Cannot refile to position inside the tree or region"))
10242 (setq nbuf (or (find-buffer-visiting file)
10243 (find-file-noselect file)))
10246 (switch-to-buffer nbuf)
10248 (org-show-context 'org-goto))
10251 (org-kill-new (buffer-substring region-start region-end))
10252 (org-save-markers-in-region region-start region-end))
10253 (org-copy-subtree 1 nil t))
10254 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
10255 (find-file-noselect file)))
10256 (setq reversed (org-notes-order-reversed-p))
10263 (looking-at outline-regexp)
10264 (setq level (org-get-valid-level (funcall outline-level) 1))
10267 (or (outline-next-heading) (point-max))
10268 (or (save-excursion (org-get-next-sibling))
10269 (org-end-of-subtree t t)
10273 (goto-char (point-max))
10274 (goto-char (point-min))
10275 (or (outline-next-heading) (goto-char (point-max)))))
10276 (if (not (bolp)) (newline))
10277 (org-paste-subtree level)
10278 (when org-log-refile
10279 (org-add-log-setup 'refile nil nil 'findpos
10281 (unless (eq org-log-refile 'note)
10282 (save-excursion (org-add-log-note))))
10283 (and org-auto-align-tags (org-set-tags nil t))
10284 (bookmark-set "org-refile-last-stored")
10285 ;; If we are refiling for capture, make sure that the
10286 ;; last-capture pointers point here
10287 (when (org-bound-and-true-p org-refile-for-capture)
10288 (bookmark-set "org-capture-last-stored-marker")
10289 (move-marker org-capture-last-stored-marker (point)))
10290 (if (fboundp 'deactivate-mark) (deactivate-mark))
10291 (run-hooks 'org-after-refile-insert-hook))))
10293 (delete-region (point) (+ (point) region-length))
10295 (when (featurep 'org-inlinetask)
10296 (org-inlinetask-remove-END-maybe))
10297 (setq org-markers-to-move nil)
10298 (message "Refiled to \"%s\" in file %s" (car it) file)))))))
10300 (defun org-refile-goto-last-stored ()
10301 "Go to the location where the last refile was stored."
10303 (bookmark-jump "org-refile-last-stored")
10304 (message "This is the location of the last refile"))
10306 (defun org-refile-get-location (&optional prompt default-buffer new-nodes)
10307 "Prompt the user for a refile location, using PROMPT."
10308 (let ((org-refile-targets org-refile-targets)
10309 (org-refile-use-outline-path org-refile-use-outline-path))
10310 (setq org-refile-target-table (org-get-refile-targets default-buffer)))
10311 (unless org-refile-target-table
10312 (error "No refile targets"))
10313 (let* ((cbuf (current-buffer))
10314 (partial-completion-mode nil)
10315 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
10316 (cfunc (if (and org-refile-use-outline-path
10317 org-outline-path-complete-in-steps)
10318 'org-olpath-completing-read
10319 'org-icompleting-read))
10320 (extra (if org-refile-use-outline-path "/" ""))
10321 (filename (and cfn (expand-file-name cfn)))
10324 (if (and (not (member org-refile-use-outline-path
10325 '(file full-file-path)))
10326 (not (equal filename (nth 1 x))))
10327 (cons (concat (car x) extra " ("
10328 (file-name-nondirectory (nth 1 x)) ")")
10330 (cons (concat (car x) extra) (cdr x))))
10331 org-refile-target-table))
10332 (completion-ignore-case t)
10333 pa answ parent-target child parent old-hist)
10334 (setq old-hist org-refile-history)
10335 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
10336 nil 'org-refile-history))
10337 (setq pa (or (assoc answ tbl) (assoc (concat answ "/") tbl)))
10338 (org-refile-check-position pa)
10341 (when (or (not org-refile-history)
10342 (not (eq old-hist org-refile-history))
10343 (not (equal (car pa) (car org-refile-history))))
10344 (setq org-refile-history
10345 (cons (car pa) (if (assoc (car org-refile-history) tbl)
10347 (cdr org-refile-history))))
10348 (if (equal (car org-refile-history) (nth 1 org-refile-history))
10349 (pop org-refile-history)))
10351 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
10353 (setq parent (match-string 1 answ)
10354 child (match-string 2 answ))
10355 (setq parent-target (or (assoc parent tbl)
10356 (assoc (concat parent "/") tbl)))
10357 (when (and parent-target
10358 (or (eq new-nodes t)
10359 (and (eq new-nodes 'confirm)
10360 (y-or-n-p (format "Create new node \"%s\"? "
10362 (org-refile-new-child parent-target child)))
10363 (error "Invalid target location")))))
10365 (defun org-refile-check-position (refile-pointer)
10366 "Check if the refile pointer matches the readline to which it points."
10367 (let* ((file (nth 1 refile-pointer))
10368 (re (nth 2 refile-pointer))
10369 (pos (nth 3 refile-pointer))
10371 (when (org-string-nw-p re)
10372 (setq buffer (if (markerp pos)
10373 (marker-buffer pos)
10374 (or (find-buffer-visiting file)
10375 (find-file-noselect file))))
10376 (with-current-buffer buffer
10381 (beginning-of-line 1)
10382 (unless (org-looking-at-p re)
10383 (error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling"))))))))
10385 (defun org-refile-new-child (parent-target child)
10386 "Use refile target PARENT-TARGET to add new CHILD below it."
10387 (unless parent-target
10388 (error "Cannot find parent for new node"))
10389 (let ((file (nth 1 parent-target))
10390 (pos (nth 3 parent-target))
10392 (with-current-buffer (or (find-buffer-visiting file)
10393 (find-file-noselect file))
10399 (goto-char (point-max))
10400 (if (not (bolp)) (newline)))
10401 (when (looking-at outline-regexp)
10402 (setq level (funcall outline-level))
10403 (org-end-of-subtree t t))
10404 (org-back-over-empty-lines)
10405 (insert "\n" (make-string
10406 (if pos (org-get-valid-level level 1) 1) ?*)
10408 (beginning-of-line 0)
10409 (list (concat (car parent-target) "/" child) file "" (point)))))))
10411 (defun org-olpath-completing-read (prompt collection &rest args)
10412 "Read an outline path like a file name."
10413 (let ((thetable collection)
10414 (org-completion-use-ido nil) ; does not work with ido.
10415 (org-completion-use-iswitchb nil)) ; or iswitchb
10417 'org-icompleting-read prompt
10418 (lambda (string predicate &optional flag)
10419 (let (rtn r f (l (length string)))
10423 (try-completion string thetable))
10426 (setq rtn (all-completions string thetable predicate))
10429 (setq r (substring x l))
10430 (if (string-match " ([^)]*)$" x)
10431 (setq f (match-string 0 x))
10433 (if (string-match "/" r)
10434 (concat string (substring r 0 (match-end 0)) f)
10439 (assoc string thetable)))
10443 ;;;; Dynamic blocks
10445 (defun org-find-dblock (name)
10446 "Find the first dynamic block with name NAME in the buffer.
10447 If not found, stay at current position and return nil."
10450 (goto-char (point-min))
10451 (setq pos (and (re-search-forward (concat "^#\\+BEGIN:[ \t]+" name "\\>")
10453 (match-beginning 0))))
10454 (if pos (goto-char pos))
10457 (defconst org-dblock-start-re
10458 "^[ \t]*#\\+BEGIN:[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
10459 "Matches the start line of a dynamic block, with parameters.")
10461 (defconst org-dblock-end-re "^[ \t]*#\\+END\\([: \t\r\n]\\|$\\)"
10462 "Matches the end of a dynamic block.")
10464 (defun org-create-dblock (plist)
10465 "Create a dynamic block section, with parameters taken from PLIST.
10466 PLIST must contain a :name entry which is used as name of the block."
10467 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
10470 (let ((col (current-column))
10471 (name (plist-get plist :name)))
10472 (insert "#+BEGIN: " name)
10474 (if (eq (car plist) :name)
10475 (setq plist (cddr plist))
10476 (insert " " (prin1-to-string (pop plist)))))
10477 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
10478 (beginning-of-line -2)))
10480 (defun org-prepare-dblock ()
10481 "Prepare dynamic block for refresh.
10482 This empties the block, puts the cursor at the insert position and returns
10483 the property list including an extra property :name with the block name."
10484 (unless (looking-at org-dblock-start-re)
10485 (error "Not at a dynamic block"))
10486 (let* ((begdel (1+ (match-end 0)))
10487 (name (org-no-properties (match-string 1)))
10488 (params (append (list :name name)
10489 (read (concat "(" (match-string 3) ")")))))
10491 (beginning-of-line 1)
10492 (skip-chars-forward " \t")
10493 (setq params (plist-put params :indentation-column (current-column))))
10494 (unless (re-search-forward org-dblock-end-re nil t)
10495 (error "Dynamic block not terminated"))
10498 (list :content (buffer-substring
10499 begdel (match-beginning 0)))))
10500 (delete-region begdel (match-beginning 0))
10505 (defun org-map-dblocks (&optional command)
10506 "Apply COMMAND to all dynamic blocks in the current buffer.
10507 If COMMAND is not given, use `org-update-dblock'."
10508 (let ((cmd (or command 'org-update-dblock)))
10510 (goto-char (point-min))
10511 (while (re-search-forward org-dblock-start-re nil t)
10512 (goto-char (match-beginning 0))
10514 (condition-case nil
10516 (error (message "Error during update of dynamic block"))))
10517 (unless (re-search-forward org-dblock-end-re nil t)
10518 (error "Dynamic block not terminated"))))))
10520 (defun org-dblock-update (&optional arg)
10521 "User command for updating dynamic blocks.
10522 Update the dynamic block at point. With prefix ARG, update all dynamic
10523 blocks in the buffer."
10526 (org-update-all-dblocks)
10527 (or (looking-at org-dblock-start-re)
10528 (org-beginning-of-dblock))
10529 (org-update-dblock)))
10531 (defun org-update-dblock ()
10532 "Update the dynamic block at point.
10533 This means to empty the block, parse for parameters and then call
10534 the correct writing function."
10536 (save-window-excursion
10537 (let* ((pos (point))
10538 (line (org-current-line))
10539 (params (org-prepare-dblock))
10540 (name (plist-get params :name))
10541 (indent (plist-get params :indentation-column))
10542 (cmd (intern (concat "org-dblock-write:" name))))
10543 (message "Updating dynamic block `%s' at line %d..." name line)
10544 (funcall cmd params)
10545 (message "Updating dynamic block `%s' at line %d...done" name line)
10547 (when (and indent (> indent 0))
10548 (setq indent (make-string indent ?\ ))
10550 (org-beginning-of-dblock)
10552 (while (not (looking-at org-dblock-end-re))
10554 (beginning-of-line 2))
10555 (when (looking-at org-dblock-end-re)
10556 (and (looking-at "[ \t]+")
10557 (replace-match ""))
10558 (insert indent)))))))
10560 (defun org-beginning-of-dblock ()
10561 "Find the beginning of the dynamic block at point.
10562 Error if there is no such block at point."
10563 (let ((pos (point))
10566 (if (and (re-search-backward org-dblock-start-re nil t)
10567 (setq beg (match-beginning 0))
10568 (re-search-forward org-dblock-end-re nil t)
10569 (> (match-end 0) pos))
10572 (error "Not in a dynamic block"))))
10574 (defun org-update-all-dblocks ()
10575 "Update all dynamic blocks in the buffer.
10576 This function can be used in a hook."
10579 (org-map-dblocks 'org-update-dblock)))
10584 (defconst org-additional-option-like-keywords
10585 '("BEGIN_HTML" "END_HTML" "HTML:" "ATTR_HTML:"
10586 "BEGIN_DocBook" "END_DocBook" "DocBook:" "ATTR_DocBook:"
10587 "BEGIN_LaTeX" "END_LaTeX" "LaTeX:" "LATEX_HEADER:"
10588 "LATEX_CLASS:" "LATEX_CLASS_OPTIONS:" "ATTR_LaTeX:"
10590 "ORGTBL" "TBLFM:" "TBLNAME:"
10591 "BEGIN_EXAMPLE" "END_EXAMPLE"
10592 "BEGIN_QUOTE" "END_QUOTE"
10593 "BEGIN_VERSE" "END_VERSE"
10594 "BEGIN_CENTER" "END_CENTER"
10595 "BEGIN_SRC" "END_SRC"
10596 "BEGIN_RESULT" "END_RESULT"
10597 "SOURCE:" "SRCNAME:" "FUNCTION:"
10599 "HEADER:" "HEADERS:"
10601 "CATEGORY:" "COLUMNS:" "PROPERTY:"
10602 "CAPTION:" "LABEL:"
10608 (defcustom org-structure-template-alist
10610 ("s" "#+begin_src ?\n\n#+end_src"
10611 "<src lang=\"?\">\n\n</src>")
10612 ("e" "#+begin_example\n?\n#+end_example"
10613 "<example>\n?\n</example>")
10614 ("q" "#+begin_quote\n?\n#+end_quote"
10615 "<quote>\n?\n</quote>")
10616 ("v" "#+begin_verse\n?\n#+end_verse"
10617 "<verse>\n?\n/verse>")
10618 ("c" "#+begin_center\n?\n#+end_center"
10619 "<center>\n?\n/center>")
10620 ("l" "#+begin_latex\n?\n#+end_latex"
10621 "<literal style=\"latex\">\n?\n</literal>")
10623 "<literal style=\"latex\">?</literal>")
10624 ("h" "#+begin_html\n?\n#+end_html"
10625 "<literal style=\"html\">\n?\n</literal>")
10627 "<literal style=\"html\">?</literal>")
10628 ("a" "#+begin_ascii\n?\n#+end_ascii")
10630 ("i" "#+include %file ?"
10631 "<include file=%file markup=\"?\">")
10633 "Structure completion elements.
10634 This is a list of abbreviation keys and values. The value gets inserted
10635 if you type `<' followed by the key and then press the completion key,
10636 usually `M-TAB'. %file will be replaced by a file name after prompting
10637 for the file using completion.
10638 There are two templates for each key, the first uses the original Org syntax,
10639 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
10640 the default when the /org-mtags.el/ module has been loaded. See also the
10641 variable `org-mtags-prefer-muse-templates'.
10642 This is an experimental feature, it is undecided if it is going to stay in."
10643 :group 'org-completion
10645 (string :tag "Key")
10646 (string :tag "Template")
10647 (string :tag "Muse Template")))
10649 (defun org-try-structure-completion ()
10650 "Try to complete a structure template before point.
10651 This looks for strings like \"<e\" on an otherwise empty line and
10653 (let ((l (buffer-substring (point-at-bol) (point)))
10655 (when (and (looking-at "[ \t]*$")
10656 (string-match "^[ \t]*<\\([a-z]+\\)$"l)
10657 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
10658 (org-complete-expand-structure-template (+ -1 (point-at-bol)
10659 (match-beginning 1)) a)
10662 (defun org-complete-expand-structure-template (start cell)
10663 "Expand a structure template."
10664 (let* ((musep (org-bound-and-true-p org-mtags-prefer-muse-templates))
10665 (rpl (nth (if musep 2 1) cell))
10667 (delete-region start (point))
10668 (when (string-match "\\`#\\+" rpl)
10671 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
10672 (setq ind (buffer-substring (point-at-bol) (point))))
10674 (setq start (point))
10675 (if (string-match "%file" rpl)
10676 (setq rpl (replace-match
10680 (abbreviate-file-name (read-file-name "Include file: ")))
10683 (setq rpl (mapconcat 'identity (split-string rpl "\n")
10684 (concat "\n" ind)))
10686 (if (re-search-backward "\\?" start t) (delete-char 1))))
10688 ;;;; TODO, DEADLINE, Comments
10690 (defun org-toggle-comment ()
10691 "Change the COMMENT state of an entry."
10694 (org-back-to-heading)
10695 (let (case-fold-search)
10696 (if (looking-at (concat outline-regexp
10697 "\\( *\\<" org-comment-string "\\>[ \t]*\\)"))
10698 (replace-match "" t t nil 1)
10699 (if (looking-at outline-regexp)
10701 (goto-char (match-end 0))
10702 (insert org-comment-string " ")))))))
10704 (defvar org-last-todo-state-is-todo nil
10705 "This is non-nil when the last TODO state change led to a TODO state.
10706 If the last change removed the TODO tag or switched to DONE, then
10709 (defvar org-setting-tags nil) ; dynamically skipped
10711 (defvar org-todo-setup-filter-hook nil
10712 "Hook for functions that pre-filter todo specs.
10713 Each function takes a todo spec and returns either nil or the spec
10714 transformed into canonical form." )
10716 (defvar org-todo-get-default-hook nil
10717 "Hook for functions that get a default item for todo.
10718 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
10719 nil or a string to be used for the todo mark." )
10721 (defvar org-agenda-headline-snapshot-before-repeat)
10723 (defun org-todo (&optional arg)
10724 "Change the TODO state of an item.
10725 The state of an item is given by a keyword at the start of the heading,
10727 *** TODO Write paper
10730 The different keywords are specified in the variable `org-todo-keywords'.
10731 By default the available states are \"TODO\" and \"DONE\".
10732 So for this example: when the item starts with TODO, it is changed to DONE.
10733 When it starts with DONE, the DONE is removed. And when neither TODO nor
10734 DONE are present, add TODO at the beginning of the heading.
10736 With \\[universal-argument] prefix arg, use completion to determine the new \
10738 With numeric prefix arg, switch to that state.
10739 With a double \\[universal-argument] prefix, switch to the next set of TODO \
10740 keywords (nextset).
10741 With a triple \\[universal-argument] prefix, circumvent any state blocking.
10743 For calling through lisp, arg is also interpreted in the following way:
10744 'none -> empty state
10745 \"\"(empty string) -> switch to empty state
10746 'done -> switch to DONE
10747 'nextset -> switch to the next set of keywords
10748 'previousset -> switch to the previous set of keywords
10749 \"WAITING\" -> switch to the specified keyword, but only if it
10750 really is a member of `org-todo-keywords'."
10752 (if (equal arg '(16)) (setq arg 'nextset))
10753 (let ((org-blocker-hook org-blocker-hook)
10754 (case-fold-search nil))
10755 (when (equal arg '(64))
10756 (setq arg nil org-blocker-hook nil))
10757 (when (and org-blocker-hook
10758 (or org-inhibit-blocking
10759 (org-entry-get nil "NOBLOCKING")))
10760 (setq org-blocker-hook nil))
10763 (org-back-to-heading t)
10764 (if (looking-at outline-regexp) (goto-char (1- (match-end 0))))
10765 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|$\\)"))
10767 (let* ((match-data (match-data))
10768 (startpos (point-at-bol))
10769 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
10770 (org-log-done org-log-done)
10771 (org-log-repeat org-log-repeat)
10772 (org-todo-log-states org-todo-log-states)
10773 (this (match-string 1))
10774 (hl-pos (match-beginning 0))
10775 (head (org-get-todo-sequence-head this))
10776 (ass (assoc head org-todo-kwd-alist))
10777 (interpret (nth 1 ass))
10778 (done-word (nth 3 ass))
10779 (final-done-word (nth 4 ass))
10780 (last-state (or this ""))
10781 (completion-ignore-case t)
10782 (member (member this org-todo-keywords-1))
10783 (tail (cdr member))
10785 ((and org-todo-key-trigger
10786 (or (and (equal arg '(4))
10787 (eq org-use-fast-todo-selection 'prefix))
10788 (and (not arg) org-use-fast-todo-selection
10789 (not (eq org-use-fast-todo-selection
10791 ;; Use fast selection
10792 (org-fast-todo-selection))
10793 ((and (equal arg '(4))
10794 (or (not org-use-fast-todo-selection)
10795 (not org-todo-key-trigger)))
10796 ;; Read a state with completion
10797 (org-icompleting-read
10798 "State: " (mapcar (lambda(x) (list x))
10799 org-todo-keywords-1)
10803 (if tail (car tail) nil)
10804 (car org-todo-keywords-1)))
10806 (if (equal member org-todo-keywords-1)
10809 (nth (- (length org-todo-keywords-1)
10811 org-todo-keywords-1)
10812 (org-last org-todo-keywords-1))))
10813 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
10814 (setq arg nil))) ; hack to fall back to cycling
10816 ;; user or caller requests a specific state
10818 ((equal arg "") nil)
10819 ((eq arg 'none) nil)
10820 ((eq arg 'done) (or done-word (car org-done-keywords)))
10822 (or (car (cdr (member head org-todo-heads)))
10823 (car org-todo-heads)))
10824 ((eq arg 'previousset)
10825 (let ((org-todo-heads (reverse org-todo-heads)))
10826 (or (car (cdr (member head org-todo-heads)))
10827 (car org-todo-heads))))
10828 ((car (member arg org-todo-keywords-1)))
10830 (error "State `%s' not valid in this file" arg))
10831 ((nth (1- (prefix-numeric-value arg))
10832 org-todo-keywords-1))))
10833 ((null member) (or head (car org-todo-keywords-1)))
10834 ((equal this final-done-word) nil) ;; -> make empty
10835 ((null tail) nil) ;; -> first entry
10836 ((memq interpret '(type priority))
10837 (if (eq this-command last-command)
10839 (if (> (length tail) 0)
10840 (or done-word (car org-done-keywords))
10845 (run-hook-with-args-until-success
10846 'org-todo-get-default-hook state last-state)
10848 (next (if state (concat " " state " ") " "))
10849 (change-plist (list :type 'todo-state-change :from this :to state
10850 :position startpos))
10852 (when org-blocker-hook
10853 (setq org-last-todo-state-is-todo
10854 (not (member this org-done-keywords)))
10855 (unless (save-excursion
10857 (run-hook-with-args-until-failure
10858 'org-blocker-hook change-plist)))
10859 (if (interactive-p)
10860 (error "TODO state change from %s to %s blocked" this state)
10862 (message "TODO state change from %s to %s blocked" this state)
10863 (throw 'exit nil))))
10864 (store-match-data match-data)
10865 (replace-match next t t)
10866 (unless (pos-visible-in-window-p hl-pos)
10867 (message "TODO state changed to %s" (org-trim next)))
10869 (setq head (org-get-todo-sequence-head state)
10870 ass (assoc head org-todo-kwd-alist)
10871 interpret (nth 1 ass)
10872 done-word (nth 3 ass)
10873 final-done-word (nth 4 ass)))
10874 (when (memq arg '(nextset previousset))
10875 (message "Keyword-Set %d/%d: %s"
10876 (- (length org-todo-sets) -1
10877 (length (memq (assoc state org-todo-sets) org-todo-sets)))
10878 (length org-todo-sets)
10879 (mapconcat 'identity (assoc state org-todo-sets) " ")))
10880 (setq org-last-todo-state-is-todo
10881 (not (member state org-done-keywords)))
10882 (setq now-done-p (and (member state org-done-keywords)
10883 (not (member this org-done-keywords))))
10884 (and logging (org-local-logging logging))
10885 (when (and (or org-todo-log-states org-log-done)
10886 (not (eq org-inhibit-logging t))
10887 (not (memq arg '(nextset previousset))))
10888 ;; we need to look at recording a time and note
10889 (setq dolog (or (nth 1 (assoc state org-todo-log-states))
10890 (nth 2 (assoc this org-todo-log-states))))
10891 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
10892 (setq dolog 'time))
10894 (member state org-not-done-keywords)
10895 (not (member this org-not-done-keywords)))
10896 ;; This is now a todo state and was not one before
10897 ;; If there was a CLOSED time stamp, get rid of it.
10898 (org-add-planning-info nil nil 'closed))
10899 (when (and now-done-p org-log-done)
10900 ;; It is now done, and it was not done before
10901 (org-add-planning-info 'closed (org-current-time))
10902 (if (and (not dolog) (eq 'note org-log-done))
10903 (org-add-log-setup 'done state this 'findpos 'note)))
10904 (when (and state dolog)
10905 ;; This is a non-nil state, and we need to log it
10906 (org-add-log-setup 'state state this 'findpos dolog)))
10907 ;; Fixup tag positioning
10908 (org-todo-trigger-tag-changes state)
10909 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
10910 (when org-provide-todo-statistics
10911 (org-update-parent-todo-statistics))
10912 (run-hooks 'org-after-todo-state-change-hook)
10913 (if (and arg (not (member state org-done-keywords)))
10914 (setq head (org-get-todo-sequence-head state)))
10915 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
10916 ;; Do we need to trigger a repeat?
10918 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
10919 ;; This is for the agenda, take a snapshot of the headline.
10921 (setq org-agenda-headline-snapshot-before-repeat
10922 (org-get-heading))))
10923 (org-auto-repeat-maybe state))
10924 ;; Fixup cursor location if close to the keyword
10925 (if (and (outline-on-heading-p)
10927 (save-excursion (beginning-of-line 1)
10928 (looking-at org-todo-line-regexp))
10929 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
10931 (goto-char (or (match-end 2) (match-end 1)))
10932 (and (looking-at " ") (just-one-space))))
10933 (when org-trigger-hook
10935 (run-hook-with-args 'org-trigger-hook change-plist))))))))
10937 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
10938 "Block turning an entry into a TODO, using the hierarchy.
10939 This checks whether the current task should be blocked from state
10940 changes. Such blocking occurs when:
10942 1. The task has children which are not all in a completed state.
10944 2. A task has a parent with the property :ORDERED:, and there
10945 are siblings prior to the current task with incomplete
10948 3. The parent of the task is blocked because it has siblings that should
10949 be done first, or is child of a block grandparent TODO entry."
10951 (if (not org-enforce-todo-dependencies)
10952 t ; if locally turned off don't block
10954 ;; If this is not a todo state change, or if this entry is already DONE,
10956 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
10957 (member (plist-get change-plist :from)
10958 (cons 'done org-done-keywords))
10959 (member (plist-get change-plist :to)
10960 (cons 'todo org-not-done-keywords))
10961 (not (plist-get change-plist :to)))
10962 (throw 'dont-block t))
10963 ;; If this task has children, and any are undone, it's blocked
10965 (org-back-to-heading t)
10966 (let ((this-level (funcall outline-level)))
10967 (outline-next-heading)
10968 (let ((child-level (funcall outline-level)))
10969 (while (and (not (eobp))
10970 (> child-level this-level))
10971 ;; this todo has children, check whether they are all
10973 (if (and (not (org-entry-is-done-p))
10974 (org-entry-is-todo-p))
10975 (throw 'dont-block nil))
10976 (outline-next-heading)
10977 (setq child-level (funcall outline-level))))))
10978 ;; Otherwise, if the task's parent has the :ORDERED: property, and
10979 ;; any previous siblings are undone, it's blocked
10981 (org-back-to-heading t)
10982 (let* ((pos (point))
10983 (parent-pos (and (org-up-heading-safe) (point))))
10984 (if (not parent-pos) (throw 'dont-block t)) ; no parent
10985 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
10987 (re-search-forward org-not-done-heading-regexp pos t))
10988 (throw 'dont-block nil)) ; block, there is an older sibling not done.
10989 ;; Search further up the hierarchy, to see if an anchestor is blocked
10991 (goto-char parent-pos)
10992 (if (not (looking-at org-not-done-heading-regexp))
10993 (throw 'dont-block t)) ; do not block, parent is not a TODO
10995 (setq parent-pos (and (org-up-heading-safe) (point)))
10996 (if (not parent-pos) (throw 'dont-block t)) ; no parent
10997 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
10999 (re-search-forward org-not-done-heading-regexp pos t))
11000 (throw 'dont-block nil)))))))) ; block, older sibling not done.
11002 (defcustom org-track-ordered-property-with-tag nil
11003 "Should the ORDERED property also be shown as a tag?
11004 The ORDERED property decides if an entry should require subtasks to be
11005 completed in sequence. Since a property is not very visible, setting
11006 this option means that toggling the ORDERED property with the command
11007 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
11008 not relevant for the behavior, but it makes things more visible.
11010 Note that toggling the tag with tags commands will not change the property
11011 and therefore not influence behavior!
11013 This can be t, meaning the tag ORDERED should be used, It can also be a
11014 string to select a different tag for this task."
11017 (const :tag "No tracking" nil)
11018 (const :tag "Track with ORDERED tag" t)
11019 (string :tag "Use other tag")))
11021 (defun org-toggle-ordered-property ()
11022 "Toggle the ORDERED property of the current entry.
11023 For better visibility, you can track the value of this property with a tag.
11024 See variable `org-track-ordered-property-with-tag'."
11026 (let* ((t1 org-track-ordered-property-with-tag)
11027 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
11029 (org-back-to-heading)
11030 (if (org-entry-get nil "ORDERED")
11032 (org-delete-property "ORDERED")
11033 (and tag (org-toggle-tag tag 'off))
11034 (message "Subtasks can be completed in arbitrary order"))
11035 (org-entry-put nil "ORDERED" "t")
11036 (and tag (org-toggle-tag tag 'on))
11037 (message "Subtasks must be completed in sequence")))))
11039 (defvar org-blocked-by-checkboxes) ; dynamically scoped
11040 (defun org-block-todo-from-checkboxes (change-plist)
11041 "Block turning an entry into a TODO, using checkboxes.
11042 This checks whether the current task should be blocked from state
11043 changes because there are unchecked boxes in this entry."
11044 (if (not org-enforce-todo-checkbox-dependencies)
11045 t ; if locally turned off don't block
11047 ;; If this is not a todo state change, or if this entry is already DONE,
11049 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
11050 (member (plist-get change-plist :from)
11051 (cons 'done org-done-keywords))
11052 (member (plist-get change-plist :to)
11053 (cons 'todo org-not-done-keywords))
11054 (not (plist-get change-plist :to)))
11055 (throw 'dont-block t))
11056 ;; If this task has checkboxes that are not checked, it's blocked
11058 (org-back-to-heading t)
11059 (let ((beg (point)) end)
11060 (outline-next-heading)
11063 (if (re-search-forward "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\)[ \t]+\\[[- ]\\]"
11066 (if (boundp 'org-blocked-by-checkboxes)
11067 (setq org-blocked-by-checkboxes t))
11068 (throw 'dont-block nil)))))
11069 t))) ; do not block
11071 (defun org-entry-blocked-p ()
11072 "Is the current entry blocked?"
11073 (if (org-entry-get nil "NOBLOCKING")
11074 nil ;; Never block this entry
11076 (run-hook-with-args-until-failure
11078 (list :type 'todo-state-change
11083 (defun org-update-statistics-cookies (all)
11084 "Update the statistics cookie, either from TODO or from checkboxes.
11085 This should be called with the cursor in a line with a statistics cookie."
11089 (org-update-checkbox-count 'all)
11090 (org-map-entries 'org-update-parent-todo-statistics))
11091 (if (not (org-on-heading-p))
11092 (org-update-checkbox-count)
11093 (let ((pos (move-marker (make-marker) (point)))
11095 (ignore-errors (org-back-to-heading t))
11096 (if (not (org-on-heading-p))
11097 (org-update-checkbox-count)
11098 (setq l1 (org-outline-level))
11099 (setq end (save-excursion
11100 (outline-next-heading)
11101 (if (org-on-heading-p) (setq l2 (org-outline-level)))
11103 (if (and (save-excursion
11105 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
11106 (not (save-excursion (re-search-forward
11107 ":COOKIE_DATA:.*\\<todo\\>" end t))))
11108 (org-update-checkbox-count)
11109 (if (and l2 (> l2 l1))
11112 (org-update-parent-todo-statistics))
11114 (beginning-of-line 1)
11115 (while (re-search-forward
11116 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
11118 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
11120 (move-marker pos nil)))))
11122 (defvar org-entry-property-inherited-from) ;; defined below
11123 (defun org-update-parent-todo-statistics ()
11124 "Update any statistics cookie in the parent of the current headline.
11125 When `org-hierarchical-todo-statistics' is nil, statistics will cover
11126 the entire subtree and this will travel up the hierarchy and update
11127 statistics everywhere."
11129 (let* ((lim 0) prop
11130 (recursive (or (not org-hierarchical-todo-statistics)
11133 (or (setq prop (org-entry-get
11134 nil "COOKIE_DATA" 'inherit)) ""))))
11135 (lim (or (and prop (marker-position
11136 org-entry-property-inherited-from))
11139 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
11140 level ltoggle l1 new ndel
11141 (cnt-all 0) (cnt-done 0) is-percent kwd cookie-present)
11144 (beginning-of-line 1)
11145 (if (org-at-heading-p)
11146 (setq ltoggle (funcall outline-level))
11147 (error "This should not happen"))
11148 (while (and (setq level (org-up-heading-safe))
11149 (or recursive first)
11151 (setq first nil cookie-present nil)
11160 (while (re-search-forward box-re (point-at-eol) t)
11161 (setq cnt-all 0 cnt-done 0 cookie-present t)
11162 (setq is-percent (match-end 2))
11164 (unless (outline-next-heading) (throw 'exit nil))
11165 (while (and (looking-at org-complex-heading-regexp)
11166 (> (setq l1 (length (match-string 1))) level))
11167 (setq kwd (and (or recursive (= l1 ltoggle))
11169 (if (or (eq org-provide-todo-statistics 'all-headlines)
11170 (and (listp org-provide-todo-statistics)
11171 (or (member kwd org-provide-todo-statistics)
11172 (member kwd org-done-keywords))))
11173 (setq cnt-all (1+ cnt-all))
11174 (if (eq org-provide-todo-statistics t)
11175 (and kwd (setq cnt-all (1+ cnt-all)))))
11176 (and (member kwd org-done-keywords)
11177 (setq cnt-done (1+ cnt-done)))
11178 (outline-next-heading)))
11181 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
11182 (format "[%d/%d]" cnt-done cnt-all))
11183 ndel (- (match-end 0) (match-beginning 0)))
11184 (goto-char (match-beginning 0))
11186 (delete-region (point) (+ (point) ndel)))
11187 (when cookie-present
11188 (run-hook-with-args 'org-after-todo-statistics-hook
11189 cnt-done (- cnt-all cnt-done))))))
11190 (run-hooks 'org-todo-statistics-hook)))
11192 (defvar org-after-todo-statistics-hook nil
11193 "Hook that is called after a TODO statistics cookie has been updated.
11194 Each function is called with two arguments: the number of not-done entries
11195 and the number of done entries.
11197 For example, the following function, when added to this hook, will switch
11198 an entry to DONE when all children are done, and back to TODO when new
11199 entries are set to a TODO status. Note that this hook is only called
11200 when there is a statistics cookie in the headline!
11202 (defun org-summary-todo (n-done n-not-done)
11203 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
11204 (let (org-log-done org-log-states) ; turn off logging
11205 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
11208 (defvar org-todo-statistics-hook nil
11209 "Hook that is run whenever Org thinks TODO statistics should be updated.
11210 This hook runs even if there is no statistics cookie present, in which case
11211 `org-after-todo-statistics-hook' would not run.")
11213 (defun org-todo-trigger-tag-changes (state)
11214 "Apply the changes defined in `org-todo-state-tags-triggers'."
11215 (let ((l org-todo-state-tags-triggers)
11217 (when (or (not state) (equal state ""))
11218 (setq changes (append changes (cdr (assoc "" l)))))
11219 (when (and (stringp state) (> (length state) 0))
11220 (setq changes (append changes (cdr (assoc state l)))))
11221 (when (member state org-not-done-keywords)
11222 (setq changes (append changes (cdr (assoc 'todo l)))))
11223 (when (member state org-done-keywords)
11224 (setq changes (append changes (cdr (assoc 'done l)))))
11225 (dolist (c changes)
11226 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
11228 (defun org-local-logging (value)
11229 "Get logging settings from a property VALUE."
11231 ;; directly set the variables, they are already local.
11232 (setq org-log-done nil
11234 org-todo-log-states nil)
11235 (setq words (org-split-string value))
11236 (while (setq w (pop words))
11238 ((setq a (assoc w org-startup-options))
11239 (and (member (nth 1 a) '(org-log-done org-log-repeat))
11240 (set (nth 1 a) (nth 2 a))))
11241 ((setq a (org-extract-log-state-settings w))
11242 (and (member (car a) org-todo-keywords-1)
11243 (push a org-todo-log-states)))))))
11245 (defun org-get-todo-sequence-head (kwd)
11246 "Return the head of the TODO sequence to which KWD belongs.
11247 If KWD is not set, check if there is a text property remembering the
11252 (or (get-text-property (point-at-bol) 'org-todo-head)
11254 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
11255 nil (point-at-eol)))
11256 (get-text-property p 'org-todo-head))))
11257 ((not (member kwd org-todo-keywords-1))
11258 (car org-todo-keywords-1))
11259 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
11261 (defun org-fast-todo-selection ()
11262 "Fast TODO keyword selection with single keys.
11263 Returns the new TODO keyword, or nil if no state change should occur."
11264 (let* ((fulltable org-todo-key-alist)
11265 (done-keywords org-done-keywords) ;; needed for the faces.
11266 (maxlen (apply 'max (mapcar
11268 (if (stringp (car x)) (string-width (car x)) 0))
11271 (fwidth (+ maxlen 3 1 3))
11272 (ncol (/ (- (window-width) 4) fwidth))
11276 (save-window-excursion
11278 (set-buffer (get-buffer-create " *Org todo*"))
11279 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
11281 (org-set-local 'org-done-keywords done-keywords)
11282 (setq tbl fulltable cnt 0)
11283 (while (setq e (pop tbl))
11285 ((equal e '(:startgroup))
11286 (push '() groups) (setq ingroup t)
11287 (when (not (= cnt 0))
11291 ((equal e '(:endgroup))
11292 (setq ingroup nil cnt 0)
11294 ((equal e '(:newline))
11295 (when (not (= cnt 0))
11299 (while (equal (car tbl) '(:newline))
11301 (setq tbl (cdr tbl)))))
11303 (setq tg (car e) c (cdr e))
11304 (if ingroup (push tg (car groups)))
11305 (setq tg (org-add-props tg nil 'face
11306 (org-get-todo-face tg)))
11307 (if (and (= cnt 0) (not ingroup)) (insert " "))
11308 (insert "[" c "] " tg (make-string
11309 (- fwidth 4 (length tg)) ?\ ))
11310 (when (= (setq cnt (1+ cnt)) ncol)
11312 (if ingroup (insert " "))
11315 (goto-char (point-min))
11316 (if (not expert) (org-fit-window-to-buffer))
11317 (message "[a-z..]:Set [SPC]:clear")
11318 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
11321 (and (= c ?q) (not (rassoc c fulltable))))
11322 (setq quit-flag t))
11324 ((setq e (rassoc c fulltable) tg (car e))
11326 (t (setq quit-flag t)))))))
11328 (defun org-entry-is-todo-p ()
11329 (member (org-get-todo-state) org-not-done-keywords))
11331 (defun org-entry-is-done-p ()
11332 (member (org-get-todo-state) org-done-keywords))
11334 (defun org-get-todo-state ()
11336 (org-back-to-heading t)
11337 (and (looking-at org-todo-line-regexp)
11339 (match-string 2))))
11341 (defun org-at-date-range-p (&optional inactive-ok)
11342 "Is the cursor inside a date range?"
11346 (let ((pos (point)))
11347 (skip-chars-backward "^[<\r\n")
11348 (skip-chars-backward "<[")
11349 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
11350 (>= (match-end 0) pos)
11352 (skip-chars-backward "^<[\r\n")
11353 (skip-chars-backward "<[")
11354 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
11355 (>= (match-end 0) pos)
11359 (defun org-get-repeat (&optional tagline)
11360 "Check if there is a deadline/schedule with repeater in this entry."
11363 (org-back-to-heading t)
11364 (and (re-search-forward (if tagline
11365 (concat tagline "\\s-*" org-repeat-re)
11367 (org-entry-end-position) t)
11368 (match-string-no-properties 1)))))
11370 (defvar org-last-changed-timestamp)
11371 (defvar org-last-inserted-timestamp)
11372 (defvar org-log-post-message)
11373 (defvar org-log-note-purpose)
11374 (defvar org-log-note-how)
11375 (defvar org-log-note-extra)
11376 (defun org-auto-repeat-maybe (done-word)
11377 "Check if the current headline contains a repeated deadline/schedule.
11378 If yes, set TODO state back to what it was and change the base date
11379 of repeating deadline/scheduled time stamps to new date.
11380 This function is run automatically after each state change to a DONE state."
11381 ;; last-state is dynamically scoped into this function
11382 (let* ((repeat (org-get-repeat))
11383 (aa (assoc last-state org-todo-kwd-alist))
11384 (interpret (nth 1 aa))
11386 (whata '(("d" . day) ("m" . month) ("y" . year)))
11387 (msg "Entry repeats: ")
11389 (org-todo-log-states nil)
11390 re type n what ts time to-state)
11392 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
11393 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
11394 org-todo-repeat-to-state))
11395 (unless (and to-state (member to-state org-todo-keywords-1))
11396 (setq to-state (if (eq interpret 'type) last-state head)))
11397 (org-todo to-state)
11398 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
11399 (org-entry-put nil "LAST_REPEAT" (format-time-string
11400 (org-time-stamp-format t t))))
11401 (when org-log-repeat
11402 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
11403 (memq 'org-add-log-note post-command-hook))
11404 ;; OK, we are already setup for some record
11405 (if (eq org-log-repeat 'note)
11406 ;; make sure we take a note, not only a time stamp
11407 (setq org-log-note-how 'note))
11408 ;; Set up for taking a record
11409 (org-add-log-setup 'state (or done-word (car org-done-keywords))
11411 'findpos org-log-repeat)))
11412 (org-back-to-heading t)
11413 (org-add-planning-info nil nil 'closed)
11414 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
11415 org-deadline-time-regexp "\\)\\|\\("
11416 org-ts-regexp "\\)"))
11417 (while (re-search-forward
11418 re (save-excursion (outline-next-heading) (point)) t)
11419 (setq type (if (match-end 1) org-scheduled-string
11420 (if (match-end 3) org-deadline-string "Plain:"))
11421 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
11422 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts)
11423 (setq n (string-to-number (match-string 2 ts))
11424 what (match-string 3 ts))
11425 (if (equal what "w") (setq n (* n 7) what "d"))
11426 ;; Preparation, see if we need to modify the start date for the change
11427 (when (match-end 1)
11428 (setq time (save-match-data (org-time-string-to-time ts)))
11430 ((equal (match-string 1 ts) ".")
11431 ;; Shift starting date to today
11432 (org-timestamp-change
11433 (- (time-to-days (current-time)) (time-to-days time))
11435 ((equal (match-string 1 ts) "+")
11436 (let ((nshiftmax 10) (nshift 0))
11437 (while (or (= nshift 0)
11438 (<= (time-to-days time)
11439 (time-to-days (current-time))))
11440 (when (= (incf nshift) nshiftmax)
11441 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
11443 (org-timestamp-change n (cdr (assoc what whata)))
11444 (org-at-timestamp-p t)
11445 (setq ts (match-string 1))
11446 (setq time (save-match-data (org-time-string-to-time ts)))))
11447 (org-timestamp-change (- n) (cdr (assoc what whata)))
11448 ;; rematch, so that we have everything in place for the real shift
11449 (org-at-timestamp-p t)
11450 (setq ts (match-string 1))
11451 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts))))
11452 (org-timestamp-change n (cdr (assoc what whata)))
11453 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
11454 (setq org-log-post-message msg)
11455 (message "%s" msg))))
11457 (defun org-show-todo-tree (arg)
11458 "Make a compact tree which shows all headlines marked with TODO.
11459 The tree will show the lines where the regexp matches, and all higher
11460 headlines above the match.
11461 With a \\[universal-argument] prefix, prompt for a regexp to match.
11462 With a numeric prefix N, construct a sparse tree for the Nth element
11463 of `org-todo-keywords-1'."
11465 (let ((case-fold-search nil)
11467 (cond ((null arg) org-not-done-regexp)
11469 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
11470 (mapcar 'list org-todo-keywords-1))))
11472 (mapconcat 'identity (org-split-string kwd "|") "\\|")
11474 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
11475 (regexp-quote (nth (1- (prefix-numeric-value arg))
11476 org-todo-keywords-1)))
11477 (t (error "Invalid prefix argument: %s" arg)))))
11478 (message "%d TODO entries found"
11479 (org-occur (concat "^" outline-regexp " *" kwd-re )))))
11481 (defun org-deadline (&optional remove time)
11482 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
11483 With argument REMOVE, remove any deadline from the item.
11484 When TIME is set, it should be an internal time specification, and the
11485 scheduling will use the corresponding date."
11487 (let* ((old-date (org-entry-get nil "DEADLINE"))
11488 (repeater (and old-date
11490 "\\([.+]+[0-9]+[dwmy]\\(?:[/ ][-+]?[0-9]+[dwmy]\\)?\\) ?"
11492 (match-string 1 old-date))))
11495 (when (and old-date org-log-redeadline)
11496 (org-add-log-setup 'deldeadline nil old-date 'findpos
11497 org-log-redeadline))
11498 (org-remove-timestamp-with-keyword org-deadline-string)
11499 (message "Item no longer has a deadline."))
11500 (org-add-planning-info 'deadline time 'closed)
11501 (when (and old-date org-log-redeadline
11502 (not (equal old-date
11503 (substring org-last-inserted-timestamp 1 -1))))
11504 (org-add-log-setup 'redeadline nil old-date 'findpos
11505 org-log-redeadline))
11508 (org-back-to-heading t)
11509 (when (re-search-forward (concat org-deadline-string " "
11510 org-last-inserted-timestamp)
11512 (outline-next-heading) (point)) t)
11513 (goto-char (1- (match-end 0)))
11514 (insert " " repeater)
11515 (setq org-last-inserted-timestamp
11516 (concat (substring org-last-inserted-timestamp 0 -1)
11518 (substring org-last-inserted-timestamp -1))))))
11519 (message "Deadline on %s" org-last-inserted-timestamp))))
11521 (defun org-schedule (&optional remove time)
11522 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
11523 With argument REMOVE, remove any scheduling date from the item.
11524 When TIME is set, it should be an internal time specification, and the
11525 scheduling will use the corresponding date."
11527 (let* ((old-date (org-entry-get nil "SCHEDULED"))
11528 (repeater (and old-date
11530 "\\([.+]+[0-9]+[dwmy]\\(?:[/ ][-+]?[0-9]+[dwmy]\\)?\\) ?"
11532 (match-string 1 old-date))))
11535 (when (and old-date org-log-reschedule)
11536 (org-add-log-setup 'delschedule nil old-date 'findpos
11537 org-log-reschedule))
11538 (org-remove-timestamp-with-keyword org-scheduled-string)
11539 (message "Item is no longer scheduled."))
11540 (org-add-planning-info 'scheduled time 'closed)
11541 (when (and old-date org-log-reschedule
11542 (not (equal old-date
11543 (substring org-last-inserted-timestamp 1 -1))))
11544 (org-add-log-setup 'reschedule nil old-date 'findpos
11545 org-log-reschedule))
11548 (org-back-to-heading t)
11549 (when (re-search-forward (concat org-scheduled-string " "
11550 org-last-inserted-timestamp)
11552 (outline-next-heading) (point)) t)
11553 (goto-char (1- (match-end 0)))
11554 (insert " " repeater)
11555 (setq org-last-inserted-timestamp
11556 (concat (substring org-last-inserted-timestamp 0 -1)
11558 (substring org-last-inserted-timestamp -1))))))
11559 (message "Scheduled to %s" org-last-inserted-timestamp))))
11561 (defun org-get-scheduled-time (pom &optional inherit)
11562 "Get the scheduled time as a time tuple, of a format suitable
11563 for calling org-schedule with, or if there is no scheduling,
11565 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
11567 (apply 'encode-time (org-parse-time-string time)))))
11569 (defun org-get-deadline-time (pom &optional inherit)
11570 "Get the deadline as a time tuple, of a format suitable for
11571 calling org-deadline with, or if there is no scheduling, returns
11573 (let ((time (org-entry-get pom "DEADLINE" inherit)))
11575 (apply 'encode-time (org-parse-time-string time)))))
11577 (defun org-remove-timestamp-with-keyword (keyword)
11578 "Remove all time stamps with KEYWORD in the current entry."
11579 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
11582 (org-back-to-heading t)
11584 (outline-next-heading)
11585 (while (re-search-backward re beg t)
11587 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
11588 (equal (char-before) ?\ ))
11589 (backward-delete-char 1)
11590 (if (string-match "^[ \t]*$" (buffer-substring
11591 (point-at-bol) (point-at-eol)))
11592 (delete-region (point-at-bol)
11593 (min (point-max) (1+ (point-at-eol))))))))))
11595 (defun org-add-planning-info (what &optional time &rest remove)
11596 "Insert new timestamp with keyword in the line directly after the headline.
11597 WHAT indicates what kind of time stamp to add. TIME indicated the time to use.
11598 If non is given, the user is prompted for a date.
11599 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
11602 (let (org-time-was-given org-end-time-was-given ts
11603 end default-time default-input)
11606 (when (and (not time) (memq what '(scheduled deadline)))
11607 ;; Try to get a default date/time from existing timestamp
11609 (org-back-to-heading t)
11610 (setq end (save-excursion (outline-next-heading) (point)))
11611 (when (re-search-forward (if (eq what 'scheduled)
11612 org-scheduled-time-regexp
11613 org-deadline-time-regexp)
11615 (setq ts (match-string 1)
11617 (apply 'encode-time (org-parse-time-string ts))
11618 default-input (and ts (org-get-compact-tod ts))))))
11620 ;; If necessary, get the time from the user
11621 (setq time (or time (org-read-date nil 'to-time nil nil
11622 default-time default-input))))
11624 (when (and org-insert-labeled-timestamps-at-point
11625 (member what '(scheduled deadline)))
11627 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
11628 (org-insert-time-stamp time org-time-was-given
11629 nil nil nil (list org-end-time-was-given))
11633 (let (col list elt ts buffer-invisibility-spec)
11634 (org-back-to-heading t)
11635 (looking-at (concat outline-regexp "\\( *\\)[^\r\n]*"))
11636 (goto-char (match-end 1))
11637 (setq col (current-column))
11638 (goto-char (match-end 0))
11639 (if (eobp) (insert "\n") (forward-char 1))
11640 (when (and (not what)
11643 org-keyword-time-not-clock-regexp))))
11644 ;; Nothing to add, nothing to remove...... :-)
11646 (if (and (not (looking-at outline-regexp))
11647 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
11649 (not (equal (match-string 1) org-clock-string)))
11650 (narrow-to-region (match-beginning 0) (match-end 0))
11651 (insert-before-markers "\n")
11653 (narrow-to-region (point) (point))
11654 (and org-adapt-indentation (org-indent-to-column col)))
11655 ;; Check if we have to remove something.
11656 (setq list (cons what remove))
11658 (setq elt (pop list))
11659 (goto-char (point-min))
11660 (when (or (and (eq elt 'scheduled)
11661 (re-search-forward org-scheduled-time-regexp nil t))
11662 (and (eq elt 'deadline)
11663 (re-search-forward org-deadline-time-regexp nil t))
11664 (and (eq elt 'closed)
11665 (re-search-forward org-closed-time-regexp nil t)))
11667 (if (looking-at "--+<[^>]+>") (replace-match ""))
11668 (skip-chars-backward " ")
11669 (if (looking-at " +") (replace-match ""))))
11670 (goto-char (point-max))
11671 (and org-adapt-indentation (bolp) (org-indent-to-column col))
11674 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
11675 (cond ((eq what 'scheduled) org-scheduled-string)
11676 ((eq what 'deadline) org-deadline-string)
11677 ((eq what 'closed) org-closed-string))
11679 (setq ts (org-insert-time-stamp
11681 (or org-time-was-given
11682 (and (eq what 'closed) org-log-done-with-time))
11684 nil nil (list org-end-time-was-given)))
11686 (goto-char (point-min))
11688 (if (and (looking-at "[ \t]*\n")
11689 (equal (char-before) ?\n))
11690 (delete-region (1- (point)) (point-at-eol)))
11693 (defvar org-log-note-marker (make-marker))
11694 (defvar org-log-note-purpose nil)
11695 (defvar org-log-note-state nil)
11696 (defvar org-log-note-previous-state nil)
11697 (defvar org-log-note-how nil)
11698 (defvar org-log-note-extra nil)
11699 (defvar org-log-note-window-configuration nil)
11700 (defvar org-log-note-return-to (make-marker))
11701 (defvar org-log-post-message nil
11702 "Message to be displayed after a log note has been stored.
11703 The auto-repeater uses this.")
11705 (defun org-add-note ()
11706 "Add a note to the current entry.
11707 This is done in the same way as adding a state change note."
11709 (org-add-log-setup 'note nil nil 'findpos nil))
11711 (defvar org-property-end-re)
11712 (defun org-add-log-setup (&optional purpose state prev-state
11714 "Set up the post command hook to take a note.
11715 If this is about to TODO state change, the new state is expected in STATE.
11716 When FINDPOS is non-nil, find the correct position for the note in
11717 the current entry. If not, assume that it can be inserted at point.
11718 HOW is an indicator what kind of note should be created.
11719 EXTRA is additional text that will be inserted into the notes buffer."
11720 (let* ((org-log-into-drawer (org-log-into-drawer))
11721 (drawer (cond ((stringp org-log-into-drawer)
11722 org-log-into-drawer)
11723 (org-log-into-drawer "LOGBOOK")
11728 (org-back-to-heading t)
11729 (narrow-to-region (point) (save-excursion
11730 (outline-next-heading) (point)))
11731 (looking-at (concat outline-regexp "\\( *\\)[^\r\n]*"
11732 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
11734 (goto-char (match-end 0))
11737 (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*$")
11740 (goto-char (match-end 0))
11741 (or org-log-states-order-reversed
11742 (and (re-search-forward org-property-end-re nil t)
11743 (goto-char (1- (match-beginning 0))))))
11744 (insert "\n:" drawer ":\n:END:")
11745 (beginning-of-line 0)
11746 (org-indent-line-function)
11747 (beginning-of-line 2)
11748 (org-indent-line-function)
11750 ((and org-log-state-notes-insert-after-drawers
11752 (forward-line) (looking-at org-drawer-regexp)))
11754 (while (looking-at org-drawer-regexp)
11755 (goto-char (match-end 0))
11756 (re-search-forward org-property-end-re (point-max) t)
11758 (forward-line -1)))
11759 (unless org-log-states-order-reversed
11760 (and (= (char-after) ?\n) (forward-char 1))
11761 (org-skip-over-state-notes)
11762 (skip-chars-backward " \t\n\r")))
11763 (move-marker org-log-note-marker (point))
11764 (setq org-log-note-purpose purpose
11765 org-log-note-state state
11766 org-log-note-previous-state prev-state
11767 org-log-note-how how
11768 org-log-note-extra extra)
11769 (add-hook 'post-command-hook 'org-add-log-note 'append)))))
11771 (defun org-skip-over-state-notes ()
11772 "Skip past the list of State notes in an entry."
11773 (if (looking-at "\n[ \t]*- State") (forward-char 1))
11774 (when (org-in-item-p)
11775 (let ((limit (org-list-bottom-point)))
11776 (while (looking-at "[ \t]*- State")
11777 (goto-char (or (org-get-next-item (point) limit)
11778 (org-get-end-of-item limit)))))))
11780 (defun org-add-log-note (&optional purpose)
11781 "Pop up a window for taking a note, and add this note later at point."
11782 (remove-hook 'post-command-hook 'org-add-log-note)
11783 (setq org-log-note-window-configuration (current-window-configuration))
11784 (delete-other-windows)
11785 (move-marker org-log-note-return-to (point))
11786 (switch-to-buffer (marker-buffer org-log-note-marker))
11787 (goto-char org-log-note-marker)
11788 (org-switch-to-buffer-other-window "*Org Note*")
11790 (if (memq org-log-note-how '(time state))
11791 (let (current-prefix-arg) (org-store-log-note))
11792 (let ((org-inhibit-startup t)) (org-mode))
11793 (insert (format "# Insert note for %s.
11794 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
11796 ((eq org-log-note-purpose 'clock-out) "stopped clock")
11797 ((eq org-log-note-purpose 'done) "closed todo item")
11798 ((eq org-log-note-purpose 'state)
11799 (format "state change from \"%s\" to \"%s\""
11800 (or org-log-note-previous-state "")
11801 (or org-log-note-state "")))
11802 ((eq org-log-note-purpose 'reschedule)
11804 ((eq org-log-note-purpose 'delschedule)
11805 "no longer scheduled")
11806 ((eq org-log-note-purpose 'redeadline)
11807 "changing deadline")
11808 ((eq org-log-note-purpose 'deldeadline)
11809 "removing deadline")
11810 ((eq org-log-note-purpose 'refile)
11812 ((eq org-log-note-purpose 'note)
11814 (t (error "This should not happen")))))
11815 (if org-log-note-extra (insert org-log-note-extra))
11816 (org-set-local 'org-finish-function 'org-store-log-note)))
11818 (defvar org-note-abort nil) ; dynamically scoped
11819 (defun org-store-log-note ()
11820 "Finish taking a log note, and insert it to where it belongs."
11821 (let ((txt (buffer-string))
11822 (note (cdr (assq org-log-note-purpose org-log-note-headings)))
11824 (kill-buffer (current-buffer))
11825 (while (string-match "\\`#.*\n[ \t\n]*" txt)
11826 (setq txt (replace-match "" t t txt)))
11827 (if (string-match "\\s-+\\'" txt)
11828 (setq txt (replace-match "" t t txt)))
11829 (setq lines (org-split-string txt "\n"))
11830 (when (and note (string-match "\\S-" note))
11832 (org-replace-escapes
11834 (list (cons "%u" (user-login-name))
11835 (cons "%U" user-full-name)
11836 (cons "%t" (format-time-string
11837 (org-time-stamp-format 'long 'inactive)
11839 (cons "%T" (format-time-string
11840 (org-time-stamp-format 'long nil)
11842 (cons "%s" (if org-log-note-state
11843 (concat "\"" org-log-note-state "\"")
11845 (cons "%S" (if org-log-note-previous-state
11846 (concat "\"" org-log-note-previous-state "\"")
11848 (if lines (setq note (concat note " \\\\")))
11850 (when (or current-prefix-arg org-note-abort)
11851 (when org-log-into-drawer
11852 (org-remove-empty-drawer-at
11853 (if (stringp org-log-into-drawer) org-log-into-drawer "LOGBOOK")
11854 org-log-note-marker))
11857 (with-current-buffer (marker-buffer org-log-note-marker)
11859 (goto-char org-log-note-marker)
11860 (move-marker org-log-note-marker nil)
11862 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
11863 (setq ind (save-excursion
11864 (if (org-in-item-p)
11866 (goto-char (org-list-top-point))
11867 (org-get-indentation))
11868 (skip-chars-backward " \r\t\n")
11870 ((and (org-at-heading-p)
11871 org-adapt-indentation)
11872 (1+ (org-current-level)))
11873 ((org-at-heading-p) 0)
11874 (t (org-get-indentation))))))
11875 (setq bul (org-list-bullet-string "-"))
11876 (org-indent-line-to ind)
11877 (insert bul (pop lines))
11878 (let ((ind-body (+ (length bul) ind)))
11881 (org-indent-line-to ind-body)
11882 (insert (pop lines))))
11883 (message "Note stored")
11884 (org-back-to-heading t)
11885 (org-cycle-hide-drawers 'children)))))
11886 (set-window-configuration org-log-note-window-configuration)
11887 (with-current-buffer (marker-buffer org-log-note-return-to)
11888 (goto-char org-log-note-return-to))
11889 (move-marker org-log-note-return-to nil)
11890 (and org-log-post-message (message "%s" org-log-post-message)))
11892 (defun org-remove-empty-drawer-at (drawer pos)
11893 "Remove an empty drawer DRAWER at position POS.
11894 POS may also be a marker."
11895 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
11901 (concat "^[ \t]*:" drawer ":[ \t]*\n[ \t]*:END:[ \t]*\n?") 2)
11902 (replace-match ""))))))
11904 (defun org-sparse-tree (&optional arg)
11905 "Create a sparse tree, prompt for the details.
11906 This command can create sparse trees. You first need to select the type
11907 of match used to create the tree:
11909 t Show all TODO entries.
11910 T Show entries with a specific TODO keyword.
11911 m Show entries selected by a tags/property match.
11912 p Enter a property name and its value (both with completion on existing
11913 names/values) and show entries with that property.
11914 r Show entries matching a regular expression (`/' can be used as well)
11915 d Show deadlines due within `org-deadline-warning-days'.
11916 b Show deadlines and scheduled items before a date.
11917 a Show deadlines and scheduled items after a date."
11919 (let (ans kwd value)
11920 (message "Sparse tree: [r]egexp [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty\n [d]eadlines [b]efore-date [a]fter-date")
11921 (setq ans (read-char-exclusive))
11924 (call-interactively 'org-check-deadlines))
11926 (call-interactively 'org-check-before-date))
11928 (call-interactively 'org-check-after-date))
11930 (org-show-todo-tree nil))
11932 (org-show-todo-tree '(4)))
11933 ((member ans '(?T ?m))
11934 (call-interactively 'org-match-sparse-tree))
11935 ((member ans '(?p ?P))
11936 (setq kwd (org-icompleting-read "Property: "
11937 (mapcar 'list (org-buffer-property-keys))))
11938 (setq value (org-icompleting-read "Value: "
11939 (mapcar 'list (org-property-values kwd))))
11940 (unless (string-match "\\`{.*}\\'" value)
11941 (setq value (concat "\"" value "\"")))
11942 (org-match-sparse-tree arg (concat kwd "=" value)))
11943 ((member ans '(?r ?R ?/))
11944 (call-interactively 'org-occur))
11945 (t (error "No such sparse tree command \"%c\"" ans)))))
11947 (defvar org-occur-highlights nil
11948 "List of overlays used for occur matches.")
11949 (make-variable-buffer-local 'org-occur-highlights)
11950 (defvar org-occur-parameters nil
11951 "Parameters of the active org-occur calls.
11952 This is a list, each call to org-occur pushes as cons cell,
11953 containing the regular expression and the callback, onto the list.
11954 The list can contain several entries if `org-occur' has been called
11955 several time with the KEEP-PREVIOUS argument. Otherwise, this list
11956 will only contain one set of parameters. When the highlights are
11957 removed (for example with `C-c C-c', or with the next edit (depending
11958 on `org-remove-highlights-with-change'), this variable is emptied
11960 (make-variable-buffer-local 'org-occur-parameters)
11962 (defun org-occur (regexp &optional keep-previous callback)
11963 "Make a compact tree which shows all matches of REGEXP.
11964 The tree will show the lines where the regexp matches, and all higher
11965 headlines above the match. It will also show the heading after the match,
11966 to make sure editing the matching entry is easy.
11967 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
11968 call to `org-occur' will be kept, to allow stacking of calls to this
11970 If CALLBACK is non-nil, it is a function which is called to confirm
11971 that the match should indeed be shown."
11972 (interactive "sRegexp: \nP")
11973 (when (equal regexp "")
11974 (error "Regexp cannot be empty"))
11975 (unless keep-previous
11976 (org-remove-occur-highlights nil nil t))
11977 (push (cons regexp callback) org-occur-parameters)
11980 (goto-char (point-min))
11981 (if (or (not keep-previous) ; do not want to keep
11982 (not org-occur-highlights)) ; no previous matches
11985 (while (re-search-forward regexp nil t)
11986 (when (or (not callback)
11987 (save-match-data (funcall callback)))
11988 (setq cnt (1+ cnt))
11989 (when org-highlight-sparse-tree-matches
11990 (org-highlight-new-match (match-beginning 0) (match-end 0)))
11991 (org-show-context 'occur-tree))))
11992 (when org-remove-highlights-with-change
11993 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
11995 (unless org-sparse-tree-open-archived-trees
11996 (org-hide-archived-subtrees (point-min) (point-max)))
11997 (run-hooks 'org-occur-hook)
11998 (if (interactive-p)
11999 (message "%d match(es) for regexp %s" cnt regexp))
12002 (defun org-occur-next-match (&optional n reset)
12003 "Function for `next-error-function' to find sparse tree matches.
12004 N is the number of matches to move, when negative move backwards.
12005 RESET is entirely ignored - this function always goes back to the
12006 starting point when no match is found."
12007 (let* ((limit (if (< n 0) (point-min) (point-max)))
12008 (search-func (if (< n 0)
12009 'previous-single-char-property-change
12010 'next-single-char-property-change))
12015 (while (setq p1 (funcall search-func (point) 'org-type))
12016 (when (equal p1 limit)
12018 (error "No more matches"))
12019 (when (equal (get-char-property p1 'org-type) 'org-occur)
12023 (throw 'exit (point))))
12026 (error "No more matches"))))
12028 (defun org-show-context (&optional key)
12029 "Make sure point and context are visible.
12030 How much context is shown depends upon the variables
12031 `org-show-hierarchy-above', `org-show-following-heading'. and
12032 `org-show-siblings'."
12033 (let ((heading-p (org-on-heading-p t))
12034 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
12035 (following-p (org-get-alist-option org-show-following-heading key))
12036 (entry-p (org-get-alist-option org-show-entry-below key))
12037 (siblings-p (org-get-alist-option org-show-siblings key)))
12039 ;; Show heading or entry text
12040 (if (and heading-p (not entry-p))
12041 (org-flag-heading nil) ; only show the heading
12042 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
12043 (org-show-hidden-entry))) ; show entire entry
12045 ;; Show next sibling, or heading below text
12047 (and (if heading-p (org-goto-sibling) (outline-next-heading))
12048 (org-flag-heading nil))))
12049 (when siblings-p (org-show-siblings))
12051 ;; show all higher headings, possibly with siblings
12053 (while (and (condition-case nil
12054 (progn (org-up-heading-all 1) t)
12057 (org-flag-heading nil)
12058 (when siblings-p (org-show-siblings))))))))
12060 (defvar org-reveal-start-hook nil
12061 "Hook run before revealing a location.")
12063 (defun org-reveal (&optional siblings)
12064 "Show current entry, hierarchy above it, and the following headline.
12065 This can be used to show a consistent set of context around locations
12066 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
12067 not t for the search context.
12069 With optional argument SIBLINGS, on each level of the hierarchy all
12070 siblings are shown. This repairs the tree structure to what it would
12071 look like when opened with hierarchical calls to `org-cycle'.
12072 With double optional argument \\[universal-argument] \\[universal-argument], \
12073 go to the parent and show the
12076 (run-hooks 'org-reveal-start-hook)
12077 (let ((org-show-hierarchy-above t)
12078 (org-show-following-heading t)
12079 (org-show-siblings (if siblings t org-show-siblings)))
12080 (org-show-context nil))
12081 (when (equal siblings '(16))
12083 (when (org-up-heading-safe)
12085 (run-hook-with-args 'org-cycle-hook 'subtree)))))
12087 (defun org-highlight-new-match (beg end)
12088 "Highlight from BEG to END and mark the highlight is an occur headline."
12089 (let ((ov (make-overlay beg end)))
12090 (overlay-put ov 'face 'secondary-selection)
12091 (overlay-put ov 'org-type 'org-occur)
12092 (push ov org-occur-highlights)))
12094 (defun org-remove-occur-highlights (&optional beg end noremove)
12095 "Remove the occur highlights from the buffer.
12096 BEG and END are ignored. If NOREMOVE is nil, remove this function
12097 from the `before-change-functions' in the current buffer."
12099 (unless org-inhibit-highlight-removal
12100 (mapc 'delete-overlay org-occur-highlights)
12101 (setq org-occur-highlights nil)
12102 (setq org-occur-parameters nil)
12104 (remove-hook 'before-change-functions
12105 'org-remove-occur-highlights 'local))))
12109 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
12110 "Regular expression matching the priority indicator.")
12112 (defvar org-remove-priority-next-time nil)
12114 (defun org-priority-up ()
12115 "Increase the priority of the current item."
12117 (org-priority 'up))
12119 (defun org-priority-down ()
12120 "Decrease the priority of the current item."
12122 (org-priority 'down))
12124 (defun org-priority (&optional action)
12125 "Change the priority of an item by ARG.
12126 ACTION can be `set', `up', `down', or a character."
12128 (unless org-enable-priority-commands
12129 (error "Priority commands are disabled"))
12130 (setq action (or action 'set))
12131 (let (current new news have remove)
12133 (org-back-to-heading t)
12134 (if (looking-at org-priority-regexp)
12135 (setq current (string-to-char (match-string 2))
12137 (setq current org-default-priority))
12139 ((eq action 'remove)
12140 (setq remove t new ?\ ))
12141 ((or (eq action 'set)
12142 (if (featurep 'xemacs) (characterp action) (integerp action)))
12143 (if (not (eq action 'set))
12145 (message "Priority %c-%c, SPC to remove: "
12146 org-highest-priority org-lowest-priority)
12148 (setq new (read-char-exclusive))))
12149 (if (and (= (upcase org-highest-priority) org-highest-priority)
12150 (= (upcase org-lowest-priority) org-lowest-priority))
12151 (setq new (upcase new)))
12152 (cond ((equal new ?\ ) (setq remove t))
12153 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
12154 (error "Priority must be between `%c' and `%c'"
12155 org-highest-priority org-lowest-priority))))
12157 (if (and (not have) (eq last-command this-command))
12158 (setq new org-lowest-priority)
12159 (setq new (if (and org-priority-start-cycle-with-default (not have))
12160 org-default-priority (1- current)))))
12162 (if (and (not have) (eq last-command this-command))
12163 (setq new org-highest-priority)
12164 (setq new (if (and org-priority-start-cycle-with-default (not have))
12165 org-default-priority (1+ current)))))
12166 (t (error "Invalid action")))
12167 (if (or (< (upcase new) org-highest-priority)
12168 (> (upcase new) org-lowest-priority))
12170 (setq news (format "%c" new))
12173 (replace-match "" t t nil 1)
12174 (replace-match news t t nil 2))
12176 (error "No priority cookie found in line")
12177 (let ((case-fold-search nil))
12178 (looking-at org-todo-line-regexp))
12181 (goto-char (match-end 2))
12182 (insert " [#" news "]"))
12183 (goto-char (match-beginning 3))
12184 (insert "[#" news "] "))))
12185 (org-preserve-lc (org-set-tags nil 'align)))
12187 (message "Priority removed")
12188 (message "Priority of current item set to %s" news))))
12190 (defun org-get-priority (s)
12191 "Find priority cookie and return priority."
12192 (if (functionp org-get-priority-function)
12193 (funcall org-get-priority-function)
12195 (if (not (string-match org-priority-regexp s))
12196 (* 1000 (- org-lowest-priority org-default-priority))
12197 (* 1000 (- org-lowest-priority
12198 (string-to-char (match-string 2 s))))))))
12202 (defvar org-agenda-archives-mode)
12203 (defvar org-map-continue-from nil
12204 "Position from where mapping should continue.
12205 Can be set by the action argument to `org-scan-tag's and `org-map-entries'.")
12207 (defvar org-scanner-tags nil
12208 "The current tag list while the tags scanner is running.")
12209 (defvar org-trust-scanner-tags nil
12210 "Should `org-get-tags-at' use the tags fro the scanner.
12211 This is for internal dynamical scoping only.
12212 When this is non-nil, the function `org-get-tags-at' will return the value
12213 of `org-scanner-tags' instead of building the list by itself. This
12214 can lead to large speed-ups when the tags scanner is used in a file with
12215 many entries, and when the list of tags is retrieved, for example to
12216 obtain a list of properties. Building the tags list for each entry in such
12217 a file becomes an N^2 operation - but with this variable set, it scales
12220 (defun org-scan-tags (action matcher &optional todo-only)
12221 "Scan headline tags with inheritance and produce output ACTION.
12223 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
12224 or `agenda' to produce an entry list for an agenda view. It can also be
12225 a Lisp form or a function that should be called at each matched headline, in
12226 this case the return value is a list of all return values from these calls.
12228 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
12229 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
12230 only lines with a TODO keyword are included in the output."
12231 (require 'org-agenda)
12232 (let* ((re (concat "^" outline-regexp " *\\(\\<\\("
12233 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
12235 "\\>\\)\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
12236 (props (list 'face 'default
12237 'done-face 'org-agenda-done
12238 'undone-face 'default
12239 'mouse-face 'highlight
12240 'org-not-done-regexp org-not-done-regexp
12241 'org-todo-regexp org-todo-regexp
12243 (format "mouse-2 or RET jump to org file %s"
12244 (abbreviate-file-name
12245 (or (buffer-file-name (buffer-base-buffer))
12246 (buffer-name (buffer-base-buffer)))))))
12247 (case-fold-search nil)
12248 (org-map-continue-from nil)
12249 lspos tags tags-list
12250 (tags-alist (list (cons 0 org-file-tags)))
12251 (llast 0) rtn rtn1 level category i txt
12252 todo marker entry priority)
12253 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
12254 (setq action (list 'lambda nil action)))
12256 (goto-char (point-min))
12257 (when (eq action 'sparse-tree)
12259 (org-remove-occur-highlights))
12260 (while (re-search-forward re nil t)
12262 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
12263 tags (if (match-end 4) (org-match-string-no-properties 4)))
12264 (goto-char (setq lspos (match-beginning 0)))
12265 (setq level (org-reduced-level (funcall outline-level))
12266 category (org-get-category))
12267 (setq i llast llast level)
12268 ;; remove tag lists from same and sublevels
12269 (while (>= i level)
12270 (when (setq entry (assoc i tags-alist))
12271 (setq tags-alist (delete entry tags-alist)))
12273 ;; add the next tags
12275 (setq tags (org-split-string tags ":")
12277 (cons (cons level tags) tags-alist)))
12278 ;; compile tags for current headline
12280 (if org-use-tag-inheritance
12281 (apply 'append (mapcar 'cdr (reverse tags-alist)))
12283 org-scanner-tags tags-list)
12284 (when org-use-tag-inheritance
12285 (setcdr (car tags-alist)
12286 (mapcar (lambda (x)
12287 (setq x (copy-sequence x))
12288 (org-add-prop-inherited x))
12289 (cdar tags-alist))))
12290 (when (and tags org-use-tag-inheritance
12291 (or (not (eq t org-use-tag-inheritance))
12292 org-tags-exclude-from-inheritance))
12293 ;; selective inheritance, remove uninherited ones
12294 (setcdr (car tags-alist)
12295 (org-remove-uniherited-tags (cdar tags-alist))))
12296 (when (and (or (not todo-only)
12297 (and (member todo org-not-done-keywords)
12298 (or (not org-agenda-tags-todo-honor-ignore-options)
12299 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item)))))
12300 (let ((case-fold-search t)) (eval matcher))
12302 (not (member org-archive-tag tags-list))
12303 ;; we have an archive tag, should we use this anyway?
12304 (or (not org-agenda-skip-archived-trees)
12305 (and (eq action 'agenda) org-agenda-archives-mode))))
12306 (unless (eq action 'sparse-tree) (org-agenda-skip))
12308 ;; select this headline
12311 ((eq action 'sparse-tree)
12312 (and org-highlight-sparse-tree-matches
12313 (org-get-heading) (match-end 0)
12314 (org-highlight-new-match
12315 (match-beginning 0) (match-beginning 1)))
12316 (org-show-context 'tags-tree))
12317 ((eq action 'agenda)
12318 (setq txt (org-format-agenda-item
12321 (if (eq org-tags-match-list-sublevels 'indented)
12322 (make-string (1- level) ?.) "")
12327 priority (org-get-priority txt))
12329 (setq marker (org-agenda-new-marker))
12330 (org-add-props txt props
12331 'org-marker marker 'org-hd-marker marker 'org-category category
12333 'priority priority 'type "tagsmatch")
12335 ((functionp action)
12336 (setq org-map-continue-from nil)
12338 (setq rtn1 (funcall action))
12340 (t (error "Invalid action")))
12342 ;; if we are to skip sublevels, jump to end of subtree
12343 (unless org-tags-match-list-sublevels
12344 (org-end-of-subtree t)
12345 (backward-char 1))))
12346 ;; Get the correct position from where to continue
12347 (if org-map-continue-from
12348 (goto-char org-map-continue-from)
12349 (and (= (point) lspos) (end-of-line 1)))))
12350 (when (and (eq action 'sparse-tree)
12351 (not org-sparse-tree-open-archived-trees))
12352 (org-hide-archived-subtrees (point-min) (point-max)))
12355 (defun org-remove-uniherited-tags (tags)
12356 "Remove all tags that are not inherited from the list TAGS."
12358 ((eq org-use-tag-inheritance t)
12359 (if org-tags-exclude-from-inheritance
12360 (org-delete-all org-tags-exclude-from-inheritance tags)
12362 ((not org-use-tag-inheritance) nil)
12363 ((stringp org-use-tag-inheritance)
12366 (if (and (string-match org-use-tag-inheritance x)
12367 (not (member x org-tags-exclude-from-inheritance)))
12370 ((listp org-use-tag-inheritance)
12373 (if (member x org-use-tag-inheritance) x nil))
12376 (defvar todo-only) ;; dynamically scoped
12378 (defun org-match-sparse-tree (&optional todo-only match)
12379 "Create a sparse tree according to tags string MATCH.
12380 MATCH can contain positive and negative selection of tags, like
12381 \"+WORK+URGENT-WITHBOSS\".
12382 If optional argument TODO-ONLY is non-nil, only select lines that are
12385 (org-prepare-agenda-buffers (list (current-buffer)))
12386 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
12388 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
12390 (defvar org-cached-props nil)
12391 (defun org-cached-entry-get (pom property)
12392 (if (or (eq t org-use-property-inheritance)
12393 (and (stringp org-use-property-inheritance)
12394 (string-match org-use-property-inheritance property))
12395 (and (listp org-use-property-inheritance)
12396 (member property org-use-property-inheritance)))
12397 ;; Caching is not possible, check it directly
12398 (org-entry-get pom property 'inherit)
12399 ;; Get all properties, so that we can do complicated checks easily
12400 (cdr (assoc property (or org-cached-props
12401 (setq org-cached-props
12402 (org-entry-properties pom)))))))
12404 (defun org-global-tags-completion-table (&optional files)
12405 "Return the list of all tags in all agenda buffer/files.
12406 Optional FILES argument is a list of files to which can be used
12407 instead of the agenda files."
12414 (set-buffer (find-file-noselect file))
12415 (append (org-get-buffer-tags)
12416 (mapcar (lambda (x) (if (stringp (car-safe x))
12417 (list (car-safe x)) nil))
12419 (if (and files (car files))
12421 (org-agenda-files))))))))
12423 (defun org-make-tags-matcher (match)
12424 "Create the TAGS//TODO matcher form for the selection string MATCH."
12425 ;; todo-only is scoped dynamically into this function, and the function
12426 ;; may change it if the matcher asks for it.
12428 ;; Get a new match request, with completion
12429 (let ((org-last-tags-completion-table
12430 (org-global-tags-completion-table)))
12431 (setq match (org-completing-read-no-i
12432 "Match: " 'org-tags-completion-function nil nil nil
12433 'org-tags-history))))
12435 ;; Parse the string and create a lisp form
12436 (let ((match0 match)
12437 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
12439 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
12440 orterms term orlist re-p str-p level-p level-op time-p
12441 prop-p pn pv po gv rest)
12442 (if (string-match "/+" match)
12443 ;; match contains also a todo-matching request
12445 (setq tagsmatch (substring match 0 (match-beginning 0))
12446 todomatch (substring match (match-end 0)))
12447 (if (string-match "^!" todomatch)
12448 (setq todo-only t todomatch (substring todomatch 1)))
12449 (if (string-match "^\\s-*$" todomatch)
12450 (setq todomatch nil)))
12451 ;; only matching tags
12452 (setq tagsmatch match todomatch nil))
12454 ;; Make the tags matcher
12455 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
12456 (setq tagsmatcher t)
12457 (setq orterms (org-split-string tagsmatch "|") orlist nil)
12458 (while (setq term (pop orterms))
12459 (while (and (equal (substring term -1) "\\") orterms)
12460 (setq term (concat term "|" (pop orterms)))) ; repair bad split
12461 (while (string-match re term)
12462 (setq rest (substring term (match-end 0))
12463 minus (and (match-end 1)
12464 (equal (match-string 1 term) "-"))
12465 tag (save-match-data (replace-regexp-in-string
12467 (match-string 2 term)))
12468 re-p (equal (string-to-char tag) ?{)
12469 level-p (match-end 4)
12470 prop-p (match-end 5)
12472 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
12474 (setq level-op (org-op-to-function (match-string 3 term)))
12475 `(,level-op level ,(string-to-number
12476 (match-string 4 term))))
12478 (setq pn (match-string 5 term)
12479 po (match-string 6 term)
12480 pv (match-string 7 term)
12481 re-p (equal (string-to-char pv) ?{)
12482 str-p (equal (string-to-char pv) ?\")
12483 time-p (save-match-data
12484 (string-match "^\"[[<].*[]>]\"$" pv))
12485 pv (if (or re-p str-p) (substring pv 1 -1) pv))
12486 (if time-p (setq pv (org-matcher-time pv)))
12487 (setq po (org-op-to-function po (if time-p 'time str-p)))
12489 ((equal pn "CATEGORY")
12490 (setq gv '(get-text-property (point) 'org-category)))
12494 (setq gv `(org-cached-entry-get nil ,pn))))
12497 `(not (string-match ,pv (or ,gv "")))
12498 `(string-match ,pv (or ,gv "")))
12500 `(,po (or ,gv "") ,pv)
12501 `(,po (string-to-number (or ,gv ""))
12502 ,(string-to-number pv) ))))
12503 (t `(member ,tag tags-list)))
12504 mm (if minus (list 'not mm) mm)
12506 (push mm tagsmatcher))
12507 (push (if (> (length tagsmatcher) 1)
12508 (cons 'and tagsmatcher)
12511 (setq tagsmatcher nil))
12512 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
12514 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
12515 ;; Make the todo matcher
12516 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
12517 (setq todomatcher t)
12518 (setq orterms (org-split-string todomatch "|") orlist nil)
12519 (while (setq term (pop orterms))
12520 (while (string-match re term)
12521 (setq minus (and (match-end 1)
12522 (equal (match-string 1 term) "-"))
12523 kwd (match-string 2 term)
12524 re-p (equal (string-to-char kwd) ?{)
12525 term (substring term (match-end 0))
12527 `(string-match ,(substring kwd 1 -1) todo)
12528 (list 'equal 'todo kwd))
12529 mm (if minus (list 'not mm) mm))
12530 (push mm todomatcher))
12531 (push (if (> (length todomatcher) 1)
12532 (cons 'and todomatcher)
12535 (setq todomatcher nil))
12536 (setq todomatcher (if (> (length orlist) 1)
12537 (cons 'or orlist) (car orlist))))
12539 ;; Return the string and lisp forms of the matcher
12540 (setq matcher (if todomatcher
12541 (list 'and tagsmatcher todomatcher)
12543 (cons match0 matcher)))
12545 (defun org-op-to-function (op &optional stringp)
12546 "Turn an operator into the appropriate function."
12549 ((equal op "<" ) '(< string< org-time<))
12550 ((equal op ">" ) '(> org-string> org-time>))
12551 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
12552 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
12553 ((member op '("=" "==")) '(= string= org-time=))
12554 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
12555 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
12557 (defun org<> (a b) (not (= a b)))
12558 (defun org-string<= (a b) (or (string= a b) (string< a b)))
12559 (defun org-string>= (a b) (not (string< a b)))
12560 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
12561 (defun org-string<> (a b) (not (string= a b)))
12562 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
12563 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
12564 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
12565 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
12566 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
12567 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
12569 "Convert S to a floating point time.
12570 If S is already a number, just return it. If it is a string, parse
12571 it as a time string and apply `float-time' to it. If S is nil, just return 0."
12575 (condition-case nil
12576 (float-time (apply 'encode-time (org-parse-time-string s)))
12580 (defun org-time-today ()
12581 "Time in seconds today at 0:00.
12582 Returns the float number of seconds since the beginning of the
12583 epoch to the beginning of today (00:00)."
12584 (float-time (apply 'encode-time
12585 (append '(0 0 0) (nthcdr 3 (decode-time))))))
12587 (defun org-matcher-time (s)
12588 "Interpret a time comparison value."
12591 ((string= s "<now>") (float-time))
12592 ((string= s "<today>") (org-time-today))
12593 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
12594 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
12595 ((string-match "^<\\([-+][0-9]+\\)\\([dwmy]\\)>$" s)
12596 (+ (org-time-today)
12597 (* (string-to-number (match-string 1 s))
12598 (cdr (assoc (match-string 2 s)
12599 '(("d" . 86400.0) ("w" . 604800.0)
12600 ("m" . 2678400.0) ("y" . 31557600.0)))))))
12603 (defun org-match-any-p (re list)
12604 "Does re match any element of list?"
12605 (setq list (mapcar (lambda (x) (string-match re x)) list))
12608 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
12609 (defvar org-tags-overlay (make-overlay 1 1))
12610 (org-detach-overlay org-tags-overlay)
12612 (defun org-get-local-tags-at (&optional pos)
12613 "Get a list of tags defined in the current headline."
12614 (org-get-tags-at pos 'local))
12616 (defun org-get-local-tags ()
12617 "Get a list of tags defined in the current headline."
12618 (org-get-tags-at nil 'local))
12620 (defun org-get-tags-at (&optional pos local)
12621 "Get a list of all headline tags applicable at POS.
12622 POS defaults to point. If tags are inherited, the list contains
12623 the targets in the same sequence as the headlines appear, i.e.
12624 the tags of the current headline come last.
12625 When LOCAL is non-nil, only return tags from the current headline,
12626 ignore inherited ones."
12628 (if (and org-trust-scanner-tags
12629 (or (not pos) (equal pos (point)))
12632 (let (tags ltags lastpos parent)
12636 (goto-char (or pos (point)))
12639 (condition-case nil
12641 (org-back-to-heading t)
12642 (while (not (equal lastpos (point)))
12643 (setq lastpos (point))
12645 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
12646 (setq ltags (org-split-string
12647 (org-match-string-no-properties 1) ":"))
12649 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
12652 (org-remove-uniherited-tags ltags)
12655 (or org-use-tag-inheritance (throw 'done t))
12656 (if local (throw 'done t))
12657 (or (org-up-heading-safe) (error nil))
12660 (append (org-remove-uniherited-tags org-file-tags) tags)))))
12662 (defun org-add-prop-inherited (s)
12663 (add-text-properties 0 (length s) '(inherited t) s)
12666 (defun org-toggle-tag (tag &optional onoff)
12667 "Toggle the tag TAG for the current line.
12668 If ONOFF is `on' or `off', don't toggle but set to this state."
12671 (org-back-to-heading t)
12672 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
12675 (setq current (match-string 1))
12676 (replace-match ""))
12678 (setq current (nreverse (org-split-string current ":")))
12682 (or (member tag current) (push tag current)))
12684 (or (not (member tag current)) (setq current (delete tag current))))
12685 (t (if (member tag current)
12686 (setq current (delete tag current))
12688 (push tag current))))
12692 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
12693 (org-set-tags nil t))
12694 (delete-horizontal-space))
12695 (run-hooks 'org-after-tags-change-hook))
12698 (defun org-align-tags-here (to-col)
12699 ;; Assumes that this is a headline
12700 (let ((pos (point)) (col (current-column)) ncol tags-l p)
12701 (beginning-of-line 1)
12702 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
12703 (< pos (match-beginning 2)))
12705 (setq tags-l (- (match-end 2) (match-beginning 2)))
12706 (goto-char (match-beginning 1))
12708 (delete-region (point) (1+ (match-beginning 2)))
12709 (setq ncol (max (1+ (current-column))
12713 (- (abs to-col) tags-l))))
12715 (insert (make-string (- ncol (current-column)) ?\ ))
12716 (setq ncol (current-column))
12717 (when indent-tabs-mode (tabify p (point-at-eol)))
12718 (org-move-to-column (min ncol col) t))
12721 (defun org-set-tags-command (&optional arg just-align)
12722 "Call the set-tags command for the current entry."
12724 (if (org-on-heading-p)
12725 (org-set-tags arg just-align)
12727 (org-back-to-heading t)
12728 (org-set-tags arg just-align))))
12730 (defun org-set-tags-to (data)
12731 "Set the tags of the current entry to DATA, replacing the current tags.
12732 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
12733 If DATA is nil or the empty string, any tags will be removed."
12734 (interactive "sTags: ")
12738 ((equal data "") "")
12740 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
12743 (concat ":" (mapconcat 'identity data ":") ":"))
12747 (org-back-to-heading t)
12748 (when (looking-at org-complex-heading-regexp)
12751 (goto-char (match-beginning 5))
12753 (delete-region (point) (point-at-eol))
12754 (org-set-tags nil 'align))
12755 (goto-char (point-at-eol))
12757 (org-set-tags nil 'align)))
12758 (beginning-of-line 1)
12759 (if (looking-at ".*?\\([ \t]+\\)$")
12760 (delete-region (match-beginning 1) (match-end 1))))))
12762 (defun org-align-all-tags ()
12763 "Align the tags i all headings."
12766 (or (ignore-errors (org-back-to-heading t))
12767 (outline-next-heading))
12768 (if (org-on-heading-p)
12770 (message "No headings"))))
12772 (defvar org-indent-indentation-per-level)
12773 (defun org-set-tags (&optional arg just-align)
12774 "Set the tags for the current headline.
12775 With prefix ARG, realign all tags in headings in the current buffer."
12777 (let* ((re (concat "^" outline-regexp))
12778 (current (org-get-tags-string))
12779 (col (current-column))
12780 (org-setting-tags t)
12781 table current-tags inherited-tags ; computed below when needed
12782 tags p0 c0 c1 rpl di tc level)
12785 (goto-char (point-min))
12786 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
12787 (while (re-search-forward re nil t)
12788 (org-set-tags nil t)
12790 (message "All tags realigned to column %d" org-tags-column))
12792 (setq tags current)
12793 ;; Get a new set of tags from the user
12795 (setq table (append org-tag-persistent-alist
12796 (or org-tag-alist (org-get-buffer-tags))
12798 org-complete-tags-always-offer-all-agenda-tags
12799 (org-global-tags-completion-table
12800 (org-agenda-files))))
12801 org-last-tags-completion-table table
12802 current-tags (org-split-string current ":")
12803 inherited-tags (nreverse
12804 (nthcdr (length current-tags)
12805 (nreverse (org-get-tags-at))))
12807 (if (or (eq t org-use-fast-tag-selection)
12808 (and org-use-fast-tag-selection
12809 (delq nil (mapcar 'cdr table))))
12810 (org-fast-tag-selection
12811 current-tags inherited-tags table
12812 (if org-fast-tag-selection-include-todo
12813 org-todo-key-alist))
12814 (let ((org-add-colon-after-tag-completion t))
12816 (org-without-partial-completion
12817 (org-icompleting-read "Tags: "
12818 'org-tags-completion-function
12819 nil nil current 'org-tags-history)))))))
12820 (while (string-match "[-+&]+" tags)
12821 ;; No boolean logic, just a list
12822 (setq tags (replace-match ":" t t tags))))
12824 (setq tags (replace-regexp-in-string "[,]" ":" tags))
12826 (if org-tags-sort-function
12827 (setq tags (mapconcat 'identity
12828 (sort (org-split-string
12829 tags (org-re "[^[:alnum:]_@#%]+"))
12830 org-tags-sort-function) ":")))
12832 (if (string-match "\\`[\t ]*\\'" tags)
12834 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
12835 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
12837 ;; Insert new tags at the correct column
12838 (beginning-of-line 1)
12839 (setq level (or (and (looking-at org-outline-regexp)
12840 (- (match-end 0) (point) 1))
12843 ((and (equal current "") (equal tags "")))
12844 ((re-search-forward
12845 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
12847 (if (equal tags "")
12849 (goto-char (match-beginning 0))
12850 (setq c0 (current-column)
12851 ;; compute offset for the case of org-indent-mode active
12852 di (if org-indent-mode
12853 (* (1- org-indent-indentation-per-level) (1- level))
12855 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
12856 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
12857 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (length tags))))
12858 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
12859 (replace-match rpl t t)
12860 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
12862 (t (error "Tags alignment failed")))
12863 (org-move-to-column col)
12865 (run-hooks 'org-after-tags-change-hook)))))
12867 (defun org-change-tag-in-region (beg end tag off)
12868 "Add or remove TAG for each entry in the region.
12869 This works in the agenda, and also in an org-mode buffer."
12871 (list (region-beginning) (region-end)
12872 (let ((org-last-tags-completion-table
12874 (org-get-buffer-tags)
12875 (org-global-tags-completion-table))))
12876 (org-icompleting-read
12877 "Tag: " 'org-tags-completion-function nil nil nil
12878 'org-tags-history))
12880 (message "[s]et or
[r]emove? ")
12881 (equal (read-char-exclusive) ?r))))
12882 (if (fboundp 'deactivate-mark) (deactivate-mark))
12883 (let ((agendap (equal major-mode 'org-agenda-mode))
12884 l1 l2 m buf pos newhead (cnt 0))
12886 (setq l2 (1- (org-current-line)))
12888 (setq l1 (org-current-line))
12889 (loop for l from l1 to l2 do
12891 (setq m (get-text-property (point) 'org-hd-marker))
12892 (when (or (and (org-mode-p) (org-on-heading-p))
12894 (setq buf (if agendap (marker-buffer m) (current-buffer))
12895 pos (if agendap m (point)))
12896 (with-current-buffer buf
12900 (setq cnt (1+ cnt))
12901 (org-toggle-tag tag (if off 'off 'on))
12902 (setq newhead (org-get-heading)))))
12903 (and agendap (org-agenda-change-all-lines newhead m))))
12904 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
12906 (defun org-tags-completion-function (string predicate &optional flag)
12907 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
12908 (confirm (lambda (x) (stringp (car x)))))
12909 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
12910 (setq s1 (match-string 1 string)
12911 s2 (match-string 2 string))
12912 (setq s1 "" s2 string))
12916 (setq rtn (try-completion s2 ctable confirm))
12919 (concat s1 s2 (substring rtn (length s2))
12920 (if (and org-add-colon-after-tag-completion
12921 (assoc rtn ctable))
12926 (all-completions s2 ctable confirm)
12930 (assoc s2 ctable)))
12933 (defun org-fast-tag-insert (kwd tags face &optional end)
12934 "Insert KDW, and the TAGS, the latter with face FACE. Also insert END."
12935 (insert (format "%-12s" (concat kwd ":"))
12936 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
12939 (defun org-fast-tag-show-exit (flag)
12942 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
12943 (replace-match ""))
12946 (org-move-to-column (- (window-width) 19) t)
12947 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
12949 (defun org-set-current-tags-overlay (current prefix)
12950 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
12951 (if (featurep 'xemacs)
12952 (org-overlay-display org-tags-overlay (concat prefix s)
12953 'secondary-selection)
12954 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
12955 (org-overlay-display org-tags-overlay (concat prefix s)))))
12957 (defvar org-last-tag-selection-key nil)
12958 (defun org-fast-tag-selection (current inherited table &optional todo-table)
12959 "Fast tag selection with single keys.
12960 CURRENT is the current list of tags in the headline, INHERITED is the
12961 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
12962 possibly with grouping information. TODO-TABLE is a similar table with
12963 TODO keywords, should these have keys assigned to them.
12964 If the keys are nil, a-z are automatically assigned.
12965 Returns the new tags string, or nil to not change the current settings."
12966 (let* ((fulltable (append table todo-table))
12967 (maxlen (apply 'max (mapcar
12969 (if (stringp (car x)) (string-width (car x)) 0))
12971 (buf (current-buffer))
12972 (expert (eq org-fast-tag-selection-single-key 'expert))
12974 (fwidth (+ maxlen 3 1 3))
12975 (ncol (/ (- (window-width) 4) fwidth))
12978 tg cnt e c char c1 c2 ntable tbl rtn
12979 ov-start ov-end ov-prefix
12980 (exit-after-next org-fast-tag-selection-single-key)
12981 (done-keywords org-done-keywords)
12984 (beginning-of-line 1)
12986 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
12987 (setq ov-start (match-beginning 1)
12988 ov-end (match-end 1)
12990 (setq ov-start (1- (point-at-eol))
12991 ov-end (1+ ov-start))
12992 (skip-chars-forward "^\n\r")
12995 (buffer-substring (1- (point)) (point))
12996 (if (> (current-column) org-tags-column)
12998 (make-string (- org-tags-column (current-column)) ?\ ))))))
12999 (move-overlay org-tags-overlay ov-start ov-end)
13000 (save-window-excursion
13002 (set-buffer (get-buffer-create " *Org tags*"))
13003 (delete-other-windows)
13004 (split-window-vertically)
13005 (org-switch-to-buffer-other-window (get-buffer-create " *Org tags*")))
13007 (org-set-local 'org-done-keywords done-keywords)
13008 (org-fast-tag-insert "Inherited" inherited i-face "\n")
13009 (org-fast-tag-insert "Current" current c-face "\n\n")
13010 (org-fast-tag-show-exit exit-after-next)
13011 (org-set-current-tags-overlay current ov-prefix)
13012 (setq tbl fulltable char ?a cnt 0)
13013 (while (setq e (pop tbl))
13015 ((equal (car e) :startgroup)
13016 (push '() groups) (setq ingroup t)
13017 (when (not (= cnt 0))
13020 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
13021 ((equal (car e) :endgroup)
13022 (setq ingroup nil cnt 0)
13023 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
13024 ((equal e '(:newline))
13025 (when (not (= cnt 0))
13029 (while (equal (car tbl) '(:newline))
13031 (setq tbl (cdr tbl)))))
13033 (setq tg (copy-sequence (car e)) c2 nil)
13036 ;; automatically assign a character.
13037 (setq c1 (string-to-char
13038 (downcase (substring
13039 tg (if (= (string-to-char tg) ?@) 1 0)))))
13040 (if (or (rassoc c1 ntable) (rassoc c1 table))
13041 (while (or (rassoc char ntable) (rassoc char table))
13042 (setq char (1+ char)))
13044 (setq c (or c2 char)))
13045 (if ingroup (push tg (car groups)))
13046 (setq tg (org-add-props tg nil 'face
13048 ((not (assoc tg table))
13049 (org-get-todo-face tg))
13050 ((member tg current) c-face)
13051 ((member tg inherited) i-face)
13053 (if (and (= cnt 0) (not ingroup)) (insert " "))
13054 (insert "[" c "] " tg (make-string
13055 (- fwidth 4 (length tg)) ?\ ))
13056 (push (cons tg c) ntable)
13057 (when (= (setq cnt (1+ cnt)) ncol)
13059 (if ingroup (insert " "))
13061 (setq ntable (nreverse ntable))
13063 (goto-char (point-min))
13064 (if (not expert) (org-fit-window-to-buffer))
13068 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
13069 (if (not groups) "no " "")
13070 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
13071 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13072 (setq org-last-tag-selection-key c)
13074 ((= c ?\r) (throw 'exit t))
13076 (setq groups (not groups))
13077 (goto-char (point-min))
13078 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
13081 (org-fast-tag-show-exit
13082 (setq exit-after-next (not exit-after-next)))
13084 (delete-other-windows)
13085 (set-window-buffer (split-window-vertically) " *Org tags*")
13086 (org-switch-to-buffer-other-window " *Org tags*")
13087 (org-fit-window-to-buffer)))
13089 (and (= c ?q) (not (rassoc c ntable))))
13090 (org-detach-overlay org-tags-overlay)
13091 (setq quit-flag t))
13094 (if exit-after-next (setq exit-after-next 'now)))
13096 (condition-case nil
13097 (setq tg (org-icompleting-read
13100 (with-current-buffer buf
13101 (org-get-buffer-tags)))))
13102 (quit (setq tg "")))
13103 (when (string-match "\\S-" tg)
13104 (add-to-list 'buffer-tags (list tg))
13105 (if (member tg current)
13106 (setq current (delete tg current))
13107 (push tg current)))
13108 (if exit-after-next (setq exit-after-next 'now)))
13109 ((setq e (rassoc c todo-table) tg (car e))
13110 (with-current-buffer buf
13111 (save-excursion (org-todo tg)))
13112 (if exit-after-next (setq exit-after-next 'now)))
13113 ((setq e (rassoc c ntable) tg (car e))
13114 (if (member tg current)
13115 (setq current (delete tg current))
13116 (loop for g in groups do
13119 (setq current (delete x current)))
13122 (if exit-after-next (setq exit-after-next 'now))))
13124 ;; Create a sorted list
13128 (assoc b (cdr (memq (assoc a ntable) ntable))))))
13129 (if (eq exit-after-next 'now) (throw 'exit t))
13130 (goto-char (point-min))
13131 (beginning-of-line 2)
13132 (delete-region (point) (point-at-eol))
13133 (org-fast-tag-insert "Current" current c-face)
13134 (org-set-current-tags-overlay current ov-prefix)
13135 (while (re-search-forward
13136 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
13137 (setq tg (match-string 1))
13138 (add-text-properties
13139 (match-beginning 1) (match-end 1)
13142 ((member tg current) c-face)
13143 ((member tg inherited) i-face)
13144 (t (get-text-property (match-beginning 1) 'face))))))
13145 (goto-char (point-min)))))
13146 (org-detach-overlay org-tags-overlay)
13148 (mapconcat 'identity current ":")
13151 (defun org-get-tags-string ()
13152 "Get the TAGS string in the current headline."
13153 (unless (org-on-heading-p t)
13154 (error "Not on a heading"))
13156 (beginning-of-line 1)
13157 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
13158 (org-match-string-no-properties 1)
13161 (defun org-get-tags ()
13162 "Get the list of tags specified in the current headline."
13163 (org-split-string (org-get-tags-string) ":"))
13165 (defun org-get-buffer-tags ()
13166 "Get a table of all tags used in the buffer, for completion."
13169 (goto-char (point-min))
13170 (while (re-search-forward
13171 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
13172 (when (equal (char-after (point-at-bol 0)) ?*)
13173 (mapc (lambda (x) (add-to-list 'tags x))
13174 (org-split-string (org-match-string-no-properties 1) ":")))))
13175 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
13176 (mapcar 'list tags)))
13178 ;;;; The mapping API
13181 (defun org-map-entries (func &optional match scope &rest skip)
13182 "Call FUNC at each headline selected by MATCH in SCOPE.
13184 FUNC is a function or a lisp form. The function will be called without
13185 arguments, with the cursor positioned at the beginning of the headline.
13186 The return values of all calls to the function will be collected and
13187 returned as a list.
13189 The call to FUNC will be wrapped into a save-excursion form, so FUNC
13190 does not need to preserve point. After evaluation, the cursor will be
13191 moved to the end of the line (presumably of the headline of the
13192 processed entry) and search continues from there. Under some
13193 circumstances, this may not produce the wanted results. For example,
13194 if you have removed (e.g. archived) the current (sub)tree it could
13195 mean that the next entry will be skipped entirely. In such cases, you
13196 can specify the position from where search should continue by making
13197 FUNC set the variable `org-map-continue-from' to the desired buffer
13200 MATCH is a tags/property/todo match as it is used in the agenda tags view.
13201 Only headlines that are matched by this query will be considered during
13202 the iteration. When MATCH is nil or t, all headlines will be
13203 visited by the iteration.
13205 SCOPE determines the scope of this command. It can be any of:
13207 nil The current buffer, respecting the restriction if any
13208 tree The subtree started with the entry at point
13209 file The current buffer, without restriction
13211 The current buffer, and any archives associated with it
13212 agenda All agenda files
13213 agenda-with-archives
13214 All agenda files with any archive files associated with them
13216 If this is a list, all files in the list will be scanned
13218 The remaining args are treated as settings for the skipping facilities of
13219 the scanner. The following items can be given here:
13221 archive skip trees with the archive tag.
13222 comment skip trees with the COMMENT keyword
13223 function or Emacs Lisp form:
13224 will be used as value for `org-agenda-skip-function', so whenever
13225 the function returns t, FUNC will not be called for that
13226 entry and search will continue from the point where the
13227 function leaves it.
13229 If your function needs to retrieve the tags including inherited tags
13230 at the *current* entry, you can use the value of the variable
13231 `org-scanner-tags' which will be much faster than getting the value
13232 with `org-get-tags-at'. If your function gets properties with
13233 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
13234 to t around the call to `org-entry-properties' to get the same speedup.
13235 Note that if your function moves around to retrieve tags and properties at
13236 a *different* entry, you cannot use these techniques."
13237 (let* ((org-agenda-archives-mode nil) ; just to make sure
13238 (org-agenda-skip-archived-trees (memq 'archive skip))
13239 (org-agenda-skip-comment-trees (memq 'comment skip))
13240 (org-agenda-skip-function
13241 (car (org-delete-all '(comment archive) skip)))
13242 (org-tags-match-list-sublevels t)
13244 org-todo-keywords-for-agenda
13245 org-done-keywords-for-agenda
13246 org-todo-keyword-alist-for-agenda
13247 org-drawers-for-agenda
13248 org-tag-alist-for-agenda)
13251 ((eq match t) (setq matcher t))
13252 ((eq match nil) (setq matcher t))
13253 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
13257 (when (eq scope 'tree)
13258 (org-back-to-heading t)
13259 (org-narrow-to-subtree)
13264 (org-prepare-agenda-buffers
13265 (list (buffer-file-name (current-buffer))))
13266 (setq res (org-scan-tags func matcher)))
13267 ;; Get the right scope
13269 ((and scope (listp scope) (symbolp (car scope)))
13270 (setq scope (eval scope)))
13271 ((eq scope 'agenda)
13272 (setq scope (org-agenda-files t)))
13273 ((eq scope 'agenda-with-archives)
13274 (setq scope (org-agenda-files t))
13275 (setq scope (org-add-archive-files scope)))
13277 (setq scope (list (buffer-file-name))))
13278 ((eq scope 'file-with-archives)
13279 (setq scope (org-add-archive-files (list (buffer-file-name))))))
13280 (org-prepare-agenda-buffers scope)
13281 (while (setq file (pop scope))
13282 (with-current-buffer (org-find-base-buffer-visiting file)
13286 (goto-char (point-min))
13287 (setq res (append res (org-scan-tags func matcher))))))))))
13292 ;;; Setting and retrieving properties
13294 (defconst org-special-properties
13295 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "CLOSED" "PRIORITY"
13296 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE")
13297 "The special properties valid in Org-mode.
13299 These are properties that are not defined in the property drawer,
13300 but in some other way.")
13302 (defconst org-default-properties
13303 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
13304 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
13305 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
13306 "EXPORT_FILE_NAME" "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE"
13307 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
13308 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
13309 "Some properties that are used by Org-mode for various purposes.
13310 Being in this list makes sure that they are offered for completion.")
13312 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
13313 "Regular expression matching the first line of a property drawer.")
13315 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
13316 "Regular expression matching the last line of a property drawer.")
13318 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
13319 "Regular expression matching the first line of a property drawer.")
13321 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
13322 "Regular expression matching the first line of a property drawer.")
13324 (defconst org-property-drawer-re
13325 (concat "\\(" org-property-start-re "\\)[^\000]*\\("
13326 org-property-end-re "\\)\n?")
13327 "Matches an entire property drawer.")
13329 (defconst org-clock-drawer-re
13330 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*\\("
13331 org-property-end-re "\\)\n?")
13332 "Matches an entire clock drawer.")
13334 (defun org-property-action ()
13335 "Do an action on properties."
13338 (org-at-property-p)
13339 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
13340 (setq c (read-char-exclusive))
13343 (call-interactively 'org-set-property))
13345 (call-interactively 'org-delete-property))
13347 (call-interactively 'org-delete-property-globally))
13349 (call-interactively 'org-compute-property-at-point))
13350 (t (error "No such property action %c" c)))))
13352 (defun org-set-effort (&optional value)
13353 "Set the effort property of the current entry.
13354 With numerical prefix arg, use the nth allowed value, 0 stands for the 10th
13357 (if (equal value 0) (setq value 10))
13358 (let* ((completion-ignore-case t)
13359 (prop org-effort-property)
13360 (cur (org-entry-get nil prop))
13361 (allowed (org-property-get-allowed-values nil prop 'table))
13362 (existing (mapcar 'list (org-property-values prop)))
13365 ((stringp value) value)
13366 ((and allowed (integerp value))
13367 (or (car (nth (1- value) allowed))
13368 (car (org-last allowed))))
13370 (message "Select 1-9,0, [RET%s]: %s"
13371 (if cur (concat "=" cur) "")
13372 (mapconcat 'car allowed " "))
13373 (setq rpl (read-char-exclusive))
13374 (if (equal rpl ?\r)
13376 (setq rpl (- rpl ?0))
13377 (if (equal rpl 0) (setq rpl 10))
13378 (if (and (> rpl 0) (<= rpl (length allowed)))
13379 (car (nth (1- rpl) allowed))
13380 (org-completing-read "Effort: " allowed nil))))
13382 (let (org-completion-use-ido org-completion-use-iswitchb)
13383 (org-completing-read
13384 (concat "Effort " (if (and cur (string-match "\\S-" cur))
13385 (concat "[" cur "]") "")
13387 existing nil nil "" nil cur))))))
13388 (unless (equal (org-entry-get nil prop) val)
13389 (org-entry-put nil prop val))
13390 (message "%s is now %s" prop val)))
13392 (defun org-at-property-p ()
13393 "Is cursor inside a property drawer?"
13395 (beginning-of-line 1)
13396 (when (looking-at (org-re "^[ \t]*\\(:\\([[:alpha:]][[:alnum:]_-]*\\):\\)[ \t]*\\(.*\\)"))
13397 (save-match-data ;; Used by calling procedures
13399 (range (unless (org-before-first-heading-p)
13400 (org-get-property-block))))
13401 (and range (<= (car range) p) (< p (cdr range))))))))
13403 (defun org-get-property-block (&optional beg end force)
13404 "Return the (beg . end) range of the body of the property drawer.
13405 BEG and END can be beginning and end of subtree, if not given
13406 they will be found.
13407 If the drawer does not exist and FORCE is non-nil, create the drawer."
13410 (let* ((beg (or beg (progn (org-back-to-heading t) (point))))
13411 (end (or end (progn (outline-next-heading) (point)))))
13413 (if (re-search-forward org-property-start-re end t)
13414 (setq beg (1+ (match-end 0)))
13417 (org-insert-property-drawer)
13418 (setq end (progn (outline-next-heading) (point))))
13421 (if (re-search-forward org-property-start-re end t)
13422 (setq beg (1+ (match-end 0)))))
13423 (if (re-search-forward org-property-end-re end t)
13424 (setq end (match-beginning 0))
13425 (or force (throw 'exit nil))
13428 (org-indent-line-function)
13429 (insert ":END:\n"))
13432 (defun org-entry-properties (&optional pom which specific)
13433 "Get all properties of the entry at point-or-marker POM.
13434 This includes the TODO keyword, the tags, time strings for deadline,
13435 scheduled, and clocking, and any additional properties defined in the
13436 entry. The return value is an alist, keys may occur multiple times
13437 if the property key was used several times.
13438 POM may also be nil, in which case the current entry is used.
13439 If WHICH is nil or `all', get all properties. If WHICH is
13440 `special' or `standard', only get that subclass. If WHICH
13441 is a string only get exactly this property. SPECIFIC can be a string, the
13442 specific property we are interested in. Specifying it can speed
13443 things up because then unnecessary parsing is avoided."
13444 (setq which (or which 'all))
13445 (org-with-point-at pom
13446 (let ((clockstr (substring org-clock-string 0 -1))
13447 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY" "BLOCKED"))
13448 (case-fold-search nil)
13449 beg end range props sum-props key key1 value string clocksum)
13451 (when (condition-case nil
13452 (and (org-mode-p) (org-back-to-heading t))
13455 (setq sum-props (get-text-property (point) 'org-summaries))
13456 (setq clocksum (get-text-property (point) :org-clock-minutes))
13457 (outline-next-heading)
13459 (when (memq which '(all special))
13460 ;; Get the special properties, like TODO and tags
13462 (when (and (or (not specific) (string= specific "TODO"))
13463 (looking-at org-todo-line-regexp) (match-end 2))
13464 (push (cons "TODO" (org-match-string-no-properties 2)) props))
13465 (when (and (or (not specific) (string= specific "PRIORITY"))
13466 (looking-at org-priority-regexp))
13467 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
13468 (when (or (not specific) (string= specific "FILE"))
13469 (push (cons "FILE" buffer-file-name) props))
13470 (when (and (or (not specific) (string= specific "TAGS"))
13471 (setq value (org-get-tags-string))
13472 (string-match "\\S-" value))
13473 (push (cons "TAGS" value) props))
13474 (when (and (or (not specific) (string= specific "ALLTAGS"))
13475 (setq value (org-get-tags-at)))
13476 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":")
13479 (when (or (not specific) (string= specific "BLOCKED"))
13480 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props))
13481 (when (or (not specific)
13483 '("SCHEDULED" "DEADLINE" "CLOCK" "CLOSED"
13484 "TIMESTAMP" "TIMESTAMP_IA")))
13486 (while (re-search-forward org-maybe-keyword-time-regexp end t)
13487 (setq key (if (match-end 1)
13488 (substring (org-match-string-no-properties 1)
13490 string (if (equal key clockstr)
13494 (match-beginning 3) (goto-char
13496 (substring (org-match-string-no-properties 3)
13498 ;; Get the correct property name from the key. This is
13499 ;; necessary if the user has configured time keywords.
13500 (setq key1 (concat key ":"))
13504 (if (= (char-after (match-beginning 3)) ?\[)
13505 "TIMESTAMP_IA" "TIMESTAMP")))
13506 ((equal key1 org-scheduled-string) (setq key "SCHEDULED"))
13507 ((equal key1 org-deadline-string) (setq key "DEADLINE"))
13508 ((equal key1 org-closed-string) (setq key "CLOSED"))
13509 ((equal key1 org-clock-string) (setq key "CLOCK")))
13510 (if (and specific (equal key specific) (not (equal key "CLOCK")))
13512 (push (cons key string) props)
13513 ;; no need to search further if match is found
13515 (when (or (equal key "CLOCK") (not (assoc key props)))
13516 (push (cons key string) props))))))
13519 (when (memq which '(all standard))
13520 ;; Get the standard properties, like :PROP: ...
13521 (setq range (org-get-property-block beg end))
13523 (goto-char (car range))
13524 (while (re-search-forward
13525 (org-re "^[ \t]*:\\([[:alpha:]][[:alnum:]_-]*\\):[ \t]*\\(\\S-.*\\)?")
13527 (setq key (org-match-string-no-properties 1)
13528 value (org-trim (or (org-match-string-no-properties 2) "")))
13529 (unless (member key excluded)
13530 (push (cons key (or value "")) props)))))
13532 (push (cons "CLOCKSUM"
13533 (org-columns-number-to-string (/ (float clocksum) 60.)
13536 (unless (assoc "CATEGORY" props)
13537 (push (cons "CATEGORY" (org-get-category)) props))
13538 (append sum-props (nreverse props)))))))
13540 (defun org-entry-get (pom property &optional inherit literal-nil)
13541 "Get value of PROPERTY for entry at point-or-marker POM.
13542 If INHERIT is non-nil and the entry does not have the property,
13543 then also check higher levels of the hierarchy.
13544 If INHERIT is the symbol `selective', use inheritance only if the setting
13545 in `org-use-property-inheritance' selects PROPERTY for inheritance.
13546 If the property is present but empty, the return value is the empty string.
13547 If the property is not present at all, nil is returned.
13549 If LITERAL-NIL is set, return the string value \"nil\" as a string,
13550 do not interpret it as the list atom nil. This is used for inheritance
13551 when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
13552 (org-with-point-at pom
13553 (if (and inherit (if (eq inherit 'selective)
13554 (org-property-inherit-p property)
13556 (org-entry-get-with-inheritance property literal-nil)
13557 (if (member property org-special-properties)
13558 ;; We need a special property. Use `org-entry-properties' to
13559 ;; retrieve it, but specify the wanted property
13560 (cdr (assoc property (org-entry-properties nil 'special property)))
13561 (let ((range (org-get-property-block)))
13563 (goto-char (car range))
13565 (concat "^[ \t]*:" property ":[ \t]*\\(.*[^ \t\r\n\f\v]\\)?")
13567 ;; Found the property, return it.
13570 (org-match-string-no-properties 1)
13571 (org-not-nil (org-match-string-no-properties 1)))
13574 (defun org-property-or-variable-value (var &optional inherit)
13575 "Check if there is a property fixing the value of VAR.
13576 If yes, return this value. If not, return the current value of the variable."
13577 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
13578 (if (and prop (stringp prop) (string-match "\\S-" prop))
13580 (symbol-value var))))
13582 (defun org-entry-delete (pom property)
13583 "Delete the property PROPERTY from entry at point-or-marker POM."
13584 (org-with-point-at pom
13585 (if (member property org-special-properties)
13586 nil ; cannot delete these properties.
13587 (let ((range (org-get-property-block)))
13589 (goto-char (car range))
13591 (concat "^[ \t]*:" property ":[ \t]*\\(.*[^ \t\r\n\f\v]\\)")
13594 (delete-region (match-beginning 0) (1+ (point-at-eol)))
13598 ;; Multi-values properties are properties that contain multiple values
13599 ;; These values are assumed to be single words, separated by whitespace.
13600 (defun org-entry-add-to-multivalued-property (pom property value)
13601 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
13602 (let* ((old (org-entry-get pom property))
13603 (values (and old (org-split-string old "[ \t]"))))
13604 (setq value (org-entry-protect-space value))
13605 (unless (member value values)
13606 (setq values (cons value values))
13607 (org-entry-put pom property
13608 (mapconcat 'identity values " ")))))
13610 (defun org-entry-remove-from-multivalued-property (pom property value)
13611 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
13612 (let* ((old (org-entry-get pom property))
13613 (values (and old (org-split-string old "[ \t]"))))
13614 (setq value (org-entry-protect-space value))
13615 (when (member value values)
13616 (setq values (delete value values))
13617 (org-entry-put pom property
13618 (mapconcat 'identity values " ")))))
13620 (defun org-entry-member-in-multivalued-property (pom property value)
13621 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
13622 (let* ((old (org-entry-get pom property))
13623 (values (and old (org-split-string old "[ \t]"))))
13624 (setq value (org-entry-protect-space value))
13625 (member value values)))
13627 (defun org-entry-get-multivalued-property (pom property)
13628 "Return a list of values in a multivalued property."
13629 (let* ((value (org-entry-get pom property))
13630 (values (and value (org-split-string value "[ \t]"))))
13631 (mapcar 'org-entry-restore-space values)))
13633 (defun org-entry-put-multivalued-property (pom property &rest values)
13634 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
13635 VALUES should be a list of strings. Spaces will be protected."
13636 (org-entry-put pom property
13637 (mapconcat 'org-entry-protect-space values " "))
13638 (let* ((value (org-entry-get pom property))
13639 (values (and value (org-split-string value "[ \t]"))))
13640 (mapcar 'org-entry-restore-space values)))
13642 (defun org-entry-protect-space (s)
13643 "Protect spaces and newline in string S."
13644 (while (string-match " " s)
13645 (setq s (replace-match "%20" t t s)))
13646 (while (string-match "\n" s)
13647 (setq s (replace-match "%0A" t t s)))
13650 (defun org-entry-restore-space (s)
13651 "Restore spaces and newline in string S."
13652 (while (string-match "%20" s)
13653 (setq s (replace-match " " t t s)))
13654 (while (string-match "%0A" s)
13655 (setq s (replace-match "\n" t t s)))
13658 (defvar org-entry-property-inherited-from (make-marker)
13659 "Marker pointing to the entry from where a property was inherited.
13660 Each call to `org-entry-get-with-inheritance' will set this marker to the
13661 location of the entry where the inheritance search matched. If there was
13662 no match, the marker will point nowhere.
13663 Note that also `org-entry-get' calls this function, if the INHERIT flag
13666 (defun org-entry-get-with-inheritance (property &optional literal-nil)
13667 "Get entry property, and search higher levels if not present.
13668 The search will stop at the first ancestor which has the property defined.
13669 If the value found is \"nil\", return nil to show that the property
13670 should be considered as undefined (this is the meaning of nil here).
13671 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
13672 (move-marker org-entry-property-inherited-from nil)
13679 (when (setq tmp (org-entry-get nil property nil 'literal-nil))
13680 (org-back-to-heading t)
13681 (move-marker org-entry-property-inherited-from (point))
13683 (or (org-up-heading-safe) (throw 'ex nil)))))
13685 (cdr (assoc property org-file-properties))
13686 (cdr (assoc property org-global-properties))
13687 (cdr (assoc property org-global-properties-fixed))))
13688 (if literal-nil tmp (org-not-nil tmp)))))
13690 (defvar org-property-changed-functions nil
13691 "Hook called when the value of a property has changed.
13692 Each hook function should accept two arguments, the name of the property
13693 and the new value.")
13695 (defun org-entry-put (pom property value)
13696 "Set PROPERTY to VALUE for entry at point-or-marker POM."
13697 (org-with-point-at pom
13698 (org-back-to-heading t)
13699 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
13702 ((equal property "TODO")
13703 (when (and (stringp value) (string-match "\\S-" value)
13704 (not (member value org-todo-keywords-1)))
13705 (error "\"%s\" is not a valid TODO state" value))
13706 (if (or (not value)
13707 (not (string-match "\\S-" value)))
13708 (setq value 'none))
13710 (org-set-tags nil 'align))
13711 ((equal property "PRIORITY")
13712 (org-priority (if (and value (stringp value) (string-match "\\S-" value))
13713 (string-to-char value) ?\ ))
13714 (org-set-tags nil 'align))
13715 ((equal property "SCHEDULED")
13716 (if (re-search-forward org-scheduled-time-regexp end t)
13718 ((eq value 'earlier) (org-timestamp-change -1 'day))
13719 ((eq value 'later) (org-timestamp-change 1 'day))
13720 (t (call-interactively 'org-schedule)))
13721 (call-interactively 'org-schedule)))
13722 ((equal property "DEADLINE")
13723 (if (re-search-forward org-deadline-time-regexp end t)
13725 ((eq value 'earlier) (org-timestamp-change -1 'day))
13726 ((eq value 'later) (org-timestamp-change 1 'day))
13727 (t (call-interactively 'org-deadline)))
13728 (call-interactively 'org-deadline)))
13729 ((member property org-special-properties)
13730 (error "The %s property can not yet be set with `org-entry-put'"
13732 (t ; a non-special property
13733 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
13734 (setq range (org-get-property-block beg end 'force))
13735 (goto-char (car range))
13736 (if (re-search-forward
13737 (concat "^[ \t]*:" property ":\\(.*\\)") (cdr range) t)
13739 (delete-region (match-beginning 1) (match-end 1))
13740 (goto-char (match-beginning 1)))
13741 (goto-char (cdr range))
13744 (org-indent-line-function)
13745 (insert ":" property ":"))
13746 (and value (insert " " value))
13747 (org-indent-line-function)))))
13748 (run-hook-with-args 'org-property-changed-functions property value)))
13750 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
13751 "Get all property keys in the current buffer.
13752 With INCLUDE-SPECIALS, also list the special properties that reflect things
13753 like tags and TODO state.
13754 With INCLUDE-DEFAULTS, also include properties that has special meaning
13755 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING.
13756 With INCLUDE-COLUMNS, also include property names given in COLUMN
13757 formats in the current buffer."
13758 (let (rtn range cfmt s p)
13762 (goto-char (point-min))
13763 (while (re-search-forward org-property-start-re nil t)
13764 (setq range (org-get-property-block))
13765 (goto-char (car range))
13766 (while (re-search-forward
13767 (org-re "^[ \t]*:\\([-[:alnum:]_]+\\):")
13769 (add-to-list 'rtn (org-match-string-no-properties 1)))
13770 (outline-next-heading))))
13772 (when include-specials
13773 (setq rtn (append org-special-properties rtn)))
13775 (when include-defaults
13776 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties)
13777 (add-to-list 'rtn org-effort-property))
13779 (when include-columns
13783 (goto-char (point-min))
13784 (while (re-search-forward
13785 "^\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
13787 (setq cfmt (match-string 2) s 0)
13788 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
13790 (setq s (match-end 0)
13791 p (match-string 1 cfmt))
13792 (unless (or (equal p "ITEM")
13793 (member p org-special-properties))
13794 (add-to-list 'rtn (match-string 1 cfmt))))))))
13796 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
13798 (defun org-property-values (key)
13799 "Return a list of all values of property KEY."
13803 (goto-char (point-min))
13804 (let ((re (concat "^[ \t]*:" key ":[ \t]*\\(\\S-.*\\)"))
13806 (while (re-search-forward re nil t)
13807 (add-to-list 'values (org-trim (match-string 1))))
13808 (delete "" values)))))
13810 (defun org-insert-property-drawer ()
13811 "Insert a property drawer into the current entry."
13813 (org-back-to-heading t)
13814 (looking-at outline-regexp)
13815 (let ((indent (if org-adapt-indentation
13816 (- (match-end 0)(match-beginning 0))
13819 (re (concat "^[ \t]*" org-keyword-time-regexp))
13821 (outline-next-heading)
13824 (while (re-search-forward re end t))
13825 (setq hiddenp (outline-invisible-p))
13827 (and (equal (char-after) ?\n) (forward-char 1))
13828 (while (looking-at "^[ \t]*\\(:CLOCK:\\|:LOGBOOK:\\|CLOCK:\\|:END:\\)")
13829 (if (member (match-string 1) '("CLOCK:" ":END:"))
13830 ;; just skip this line
13831 (beginning-of-line 2)
13832 ;; Drawer start, find the end
13833 (re-search-forward "^\\*+ \\|^[ \t]*:END:" nil t)
13834 (beginning-of-line 1)))
13835 (org-skip-over-state-notes)
13836 (skip-chars-backward " \t\n\r")
13837 (if (eq (char-before) ?*) (forward-char 1))
13838 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
13839 (beginning-of-line 0)
13840 (org-indent-to-column indent)
13841 (beginning-of-line 2)
13842 (org-indent-to-column indent)
13843 (beginning-of-line 0)
13846 (org-back-to-heading t)
13848 (org-flag-drawer t))))
13850 (defvar org-property-set-functions-alist nil
13851 "Property set function alist.
13852 Each entry should have the following format:
13854 (PROPERTY . READ-FUNCTION)
13856 The read function will be called with the same argument as
13857 `org-completing-read.")
13859 (defun org-set-property-function (property)
13860 "Get the function that should be used to set PROPERTY.
13861 This is computed according to `org-property-set-functions-alist'."
13862 (or (cdr (assoc property org-property-set-functions-alist))
13863 'org-completing-read))
13865 (defun org-read-property-value (property)
13866 "Read PROPERTY value from user."
13867 (let* ((completion-ignore-case t)
13868 (allowed (org-property-get-allowed-values nil property 'table))
13869 (cur (org-entry-get nil property))
13870 (prompt (concat property " value"
13871 (if (and cur (string-match "\\S-" cur))
13872 (concat " [" cur "]") "") ": "))
13873 (set-function (org-set-property-function property))
13875 (funcall set-function prompt allowed nil
13876 (not (get-text-property 0 'org-unrestricted
13878 (let (org-completion-use-ido org-completion-use-iswitchb)
13879 (funcall set-function prompt
13880 (mapcar 'list (org-property-values property))
13881 nil nil "" nil cur)))))
13886 (defun org-read-property-name ()
13887 "Read a property name."
13888 (let* ((completion-ignore-case t)
13889 (keys (org-buffer-property-keys nil t t))
13890 (property (org-icompleting-read "Property: " (mapcar 'list keys))))
13891 (if (member property keys)
13893 (or (cdr (assoc (downcase property)
13894 (mapcar (lambda (x) (cons (downcase x) x))
13898 (defun org-set-property (property value)
13899 "In the current entry, set PROPERTY to VALUE.
13900 When called interactively, this will prompt for a property name, offering
13901 completion on existing and default properties. And then it will prompt
13902 for a value, offering completion either on allowed values (via an inherited
13903 xxx_ALL property) or on existing values in other instances of this property
13904 in the current file."
13905 (interactive (list nil nil))
13906 (let* ((property (or property (org-read-property-name)))
13907 (value (or value (org-read-property-value property))))
13908 (unless (equal (org-entry-get nil property) value)
13909 (org-entry-put nil property value))))
13911 (defun org-delete-property (property)
13912 "In the current entry, delete PROPERTY."
13914 (let* ((completion-ignore-case t)
13915 (prop (org-icompleting-read "Property: "
13916 (org-entry-properties nil 'standard))))
13918 (message "Property %s %s" property
13919 (if (org-entry-delete nil property)
13921 "was not present in the entry")))
13923 (defun org-delete-property-globally (property)
13924 "Remove PROPERTY globally, from all entries."
13926 (let* ((completion-ignore-case t)
13927 (prop (org-icompleting-read
13928 "Globally remove property: "
13929 (mapcar 'list (org-buffer-property-keys)))))
13934 (goto-char (point-min))
13936 (while (re-search-forward
13937 (concat "^[ \t]*:" (regexp-quote property) ":.*\n?")
13939 (setq cnt (1+ cnt))
13940 (replace-match ""))
13941 (message "Property \"%s\" removed from %d entries" property cnt)))))
13943 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
13945 (defun org-compute-property-at-point ()
13946 "Compute the property at point.
13947 This looks for an enclosing column format, extracts the operator and
13948 then applies it to the property in the column format's scope."
13950 (unless (org-at-property-p)
13951 (error "Not at a property"))
13952 (let ((prop (org-match-string-no-properties 2)))
13953 (org-columns-get-format-and-top-level)
13954 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
13955 (error "No operator defined for property %s" prop))
13956 (org-columns-compute prop)))
13958 (defvar org-property-allowed-value-functions nil
13959 "Hook for functions supplying allowed values for a specific property.
13960 The functions must take a single argument, the name of the property, and
13961 return a flat list of allowed values. If \":ETC\" is one of
13962 the values, this means that these values are intended as defaults for
13963 completion, but that other values should be allowed too.
13964 The functions must return nil if they are not responsible for this
13967 (defun org-property-get-allowed-values (pom property &optional table)
13968 "Get allowed values for the property PROPERTY.
13969 When TABLE is non-nil, return an alist that can directly be used for
13973 ((equal property "TODO")
13974 (setq vals (org-with-point-at pom
13975 (append org-todo-keywords-1 '("")))))
13976 ((equal property "PRIORITY")
13977 (let ((n org-lowest-priority))
13978 (while (>= n org-highest-priority)
13979 (push (char-to-string n) vals)
13981 ((member property org-special-properties))
13982 ((setq vals (run-hook-with-args-until-success
13983 'org-property-allowed-value-functions property)))
13985 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
13986 (when (and vals (string-match "\\S-" vals))
13987 (setq vals (car (read-from-string (concat "(" vals ")"))))
13988 (setq vals (mapcar (lambda (x)
13989 (cond ((stringp x) x)
13990 ((numberp x) (number-to-string x))
13991 ((symbolp x) (symbol-name x))
13994 (when (member ":ETC" vals)
13995 (setq vals (remove ":ETC" vals))
13996 (org-add-props (car vals) '(org-unrestricted t)))
13997 (if table (mapcar 'list vals) vals)))
13999 (defun org-property-previous-allowed-value (&optional previous)
14000 "Switch to the next allowed value for this property."
14002 (org-property-next-allowed-value t))
14004 (defun org-property-next-allowed-value (&optional previous)
14005 "Switch to the next allowed value for this property."
14007 (unless (org-at-property-p)
14008 (error "Not at a property"))
14009 (let* ((key (match-string 2))
14010 (value (match-string 3))
14011 (allowed (or (org-property-get-allowed-values (point) key)
14012 (and (member value '("[ ]" "[-]" "[X]"))
14016 (error "Allowed values for this property have not been defined"))
14017 (if previous (setq allowed (reverse allowed)))
14018 (if (member value allowed)
14019 (setq nval (car (cdr (member value allowed)))))
14020 (setq nval (or nval (car allowed)))
14021 (if (equal nval value)
14022 (error "Only one allowed value for this property"))
14023 (org-at-property-p)
14024 (replace-match (concat " :" key ": " nval) t t)
14025 (org-indent-line-function)
14026 (beginning-of-line 1)
14027 (skip-chars-forward " \t")
14028 (run-hook-with-args 'org-property-changed-functions key nval)))
14030 (defun org-find-olp (path &optional this-buffer)
14031 "Return a marker pointing to the entry at outline path OLP.
14032 If anything goes wrong, throw an error.
14033 You can wrap this call to catch the error like this:
14035 (condition-case msg
14036 (org-mobile-locate-entry (match-string 4))
14037 (error (nth 1 msg)))
14039 The return value will then be either a string with the error message,
14040 or a marker if everything is OK.
14042 If THIS-BUFFER is set, the outline path does not contain a file,
14044 (let* ((file (if this-buffer buffer-file-name (pop path)))
14045 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
14049 limit re end found pos heading cnt)
14050 (unless buffer (error "File not found :%s" file))
14051 (with-current-buffer buffer
14055 (setq limit (point-max))
14056 (goto-char (point-min))
14057 (while (setq heading (pop path))
14058 (setq re (format org-complex-heading-regexp-format
14059 (regexp-quote heading)))
14060 (setq cnt 0 pos (point))
14061 (while (re-search-forward re end t)
14062 (setq level (- (match-end 1) (match-beginning 1)))
14063 (if (and (>= level lmin) (<= level lmax))
14064 (setq found (match-beginning 0) cnt (1+ cnt))))
14065 (when (= cnt 0) (error "Heading not found on level %d: %s"
14067 (when (> cnt 1) (error "Heading not unique on level %d: %s"
14070 (setq lmin (1+ level) lmax (+ lmin (if org-odd-levels-only 1 0)))
14071 (setq end (save-excursion (org-end-of-subtree t t))))
14072 (when (org-on-heading-p)
14073 (move-marker (make-marker) (point))))))))
14075 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
14076 "Find node HEADING in BUFFER.
14077 Return a marker to the heading if it was found, or nil if not.
14078 If POS-ONLY is set, return just the position instead of a marker.
14080 The heading text must match exact, but it may have a TODO keyword,
14081 a priority cookie and tags in the standard locations."
14082 (with-current-buffer (or buffer (current-buffer))
14086 (goto-char (point-min))
14087 (let (case-fold-search)
14088 (if (re-search-forward
14089 (format org-complex-heading-regexp-format
14090 (regexp-quote heading)) nil t)
14092 (match-beginning 0)
14093 (move-marker (make-marker) (match-beginning 0)))))))))
14095 (defun org-find-exact-heading-in-directory (heading &optional dir)
14096 "Find Org node headline HEADING in all .org files in directory DIR.
14097 When the target headline is found, return a marker to this location."
14098 (let ((files (directory-files (or dir default-directory)
14099 nil "\\`[^.#].*\\.org\\'"))
14100 file visiting m buffer)
14102 (while (setq file (pop files))
14103 (message "trying %s" file)
14104 (setq visiting (org-find-base-buffer-visiting file))
14105 (setq buffer (or visiting (find-file-noselect file)))
14106 (setq m (org-find-exact-headline-in-buffer
14108 (when (and (not m) (not visiting)) (kill-buffer buffer))
14109 (and m (throw 'found m))))))
14111 (defun org-find-entry-with-id (ident)
14112 "Locate the entry that contains the ID property with exact value IDENT.
14113 IDENT can be a string, a symbol or a number, this function will search for
14114 the string representation of it.
14115 Return the position where this entry starts, or nil if there is no such entry."
14116 (interactive "sID: ")
14118 ((stringp ident) ident)
14119 ((symbol-name ident) (symbol-name ident))
14120 ((numberp ident) (number-to-string ident))
14121 (t (error "IDENT %s must be a string, symbol or number" ident))))
14122 (case-fold-search nil))
14126 (goto-char (point-min))
14127 (when (re-search-forward
14128 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
14130 (org-back-to-heading t)
14135 (defvar org-last-changed-timestamp nil)
14136 (defvar org-last-inserted-timestamp nil
14137 "The last time stamp inserted with `org-insert-time-stamp'.")
14138 (defvar org-time-was-given) ; dynamically scoped parameter
14139 (defvar org-end-time-was-given) ; dynamically scoped parameter
14140 (defvar org-ts-what) ; dynamically scoped parameter
14142 (defun org-time-stamp (arg &optional inactive)
14143 "Prompt for a date/time and insert a time stamp.
14144 If the user specifies a time like HH:MM, or if this command is called
14145 with a prefix argument, the time stamp will contain date and time.
14146 Otherwise, only the date will be included. All parts of a date not
14147 specified by the user will be filled in from the current date/time.
14148 So if you press just return without typing anything, the time stamp
14149 will represent the current date/time. If there is already a timestamp
14150 at the cursor, it will be modified."
14154 ;; Default time is either today, or, when entering a range,
14155 ;; the range start.
14156 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
14158 (re-search-backward
14159 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
14160 (- (point) 20) t)))
14161 (apply 'encode-time (org-parse-time-string (match-string 1)))
14163 (default-input (and ts (org-get-compact-tod ts)))
14164 org-time-was-given org-end-time-was-given time)
14166 ((and (org-at-timestamp-p t)
14167 (memq last-command '(org-time-stamp org-time-stamp-inactive))
14168 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
14170 (setq time (let ((this-command this-command))
14171 (org-read-date arg 'totime nil nil
14172 default-time default-input)))
14173 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
14174 ((org-at-timestamp-p t)
14175 (setq time (let ((this-command this-command))
14176 (org-read-date arg 'totime nil nil default-time default-input)))
14177 (when (org-at-timestamp-p t) ; just to get the match data
14178 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
14180 (setq org-last-changed-timestamp
14181 (org-insert-time-stamp
14182 time (or org-time-was-given arg)
14183 inactive nil nil (list org-end-time-was-given))))
14184 (message "Timestamp updated"))
14186 (setq time (let ((this-command this-command))
14187 (org-read-date arg 'totime nil nil default-time default-input)))
14188 (org-insert-time-stamp time (or org-time-was-given arg) inactive
14189 nil nil (list org-end-time-was-given))))))
14191 ;; FIXME: can we use this for something else, like computing time differences?
14192 (defun org-get-compact-tod (s)
14193 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
14194 (let* ((t1 (match-string 1 s))
14195 (h1 (string-to-number (match-string 2 s)))
14196 (m1 (string-to-number (match-string 3 s)))
14197 (t2 (and (match-end 4) (match-string 5 s)))
14198 (h2 (and t2 (string-to-number (match-string 6 s))))
14199 (m2 (and t2 (string-to-number (match-string 7 s))))
14203 (setq dh (- h2 h1) dm (- m2 m1))
14204 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
14205 (concat t1 "+" (number-to-string dh)
14206 (if (/= 0 dm) (concat ":" (number-to-string dm))))))))
14208 (defun org-time-stamp-inactive (&optional arg)
14209 "Insert an inactive time stamp.
14210 An inactive time stamp is enclosed in square brackets instead of angle
14211 brackets. It is inactive in the sense that it does not trigger agenda entries,
14212 does not link to the calendar and cannot be changed with the S-cursor keys.
14213 So these are more for recording a certain time/date."
14215 (org-time-stamp arg 'inactive))
14217 (defvar org-date-ovl (make-overlay 1 1))
14218 (overlay-put org-date-ovl 'face 'org-warning)
14219 (org-detach-overlay org-date-ovl)
14221 (defvar org-ans1) ; dynamically scoped parameter
14222 (defvar org-ans2) ; dynamically scoped parameter
14224 (defvar org-plain-time-of-day-regexp) ; defined below
14226 (defvar org-overriding-default-time nil) ; dynamically scoped
14227 (defvar org-read-date-overlay nil)
14228 (defvar org-dcst nil) ; dynamically scoped
14229 (defvar org-read-date-history nil)
14230 (defvar org-read-date-final-answer nil)
14232 (defun org-read-date (&optional with-time to-time from-string prompt
14233 default-time default-input)
14234 "Read a date, possibly a time, and make things smooth for the user.
14235 The prompt will suggest to enter an ISO date, but you can also enter anything
14236 which will at least partially be understood by `parse-time-string'.
14237 Unrecognized parts of the date will default to the current day, month, year,
14238 hour and minute. If this command is called to replace a timestamp at point,
14239 of to enter the second timestamp of a range, the default time is taken
14240 from the existing stamp. Furthermore, the command prefers the future,
14241 so if you are giving a date where the year is not given, and the day-month
14242 combination is already past in the current year, it will assume you
14243 mean next year. For details, see the manual. A few examples:
14245 3-2-5 --> 2003-02-05
14246 feb 15 --> currentyear-02-15
14247 2/15 --> currentyear-02-15
14248 sep 12 9 --> 2009-09-12
14249 12:45 --> today 12:45
14250 22 sept 0:34 --> currentyear-09-22 0:34
14251 12 --> currentyear-currentmonth-12
14252 Fri --> nearest Friday (today or later)
14255 Furthermore you can specify a relative date by giving, as the *first* thing
14256 in the input: a plus/minus sign, a number and a letter [dwmy] to indicate
14257 change in days weeks, months, years.
14258 With a single plus or minus, the date is relative to today. With a double
14259 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
14260 +4d --> four days from today
14261 +4 --> same as above
14262 +2w --> two weeks from today
14263 ++5 --> five days from default date
14265 The function understands only English month and weekday abbreviations,
14266 but this can be configured with the variables `parse-time-months' and
14267 `parse-time-weekdays'.
14269 While prompting, a calendar is popped up - you can also select the
14270 date with the mouse (button 1). The calendar shows a period of three
14271 months. To scroll it to other months, use the keys `>' and `<'.
14272 If you don't like the calendar, turn it off with
14273 \(setq org-read-date-popup-calendar nil)
14275 With optional argument TO-TIME, the date will immediately be converted
14276 to an internal time.
14277 With an optional argument WITH-TIME, the prompt will suggest to also
14278 insert a time. Note that when WITH-TIME is not set, you can still
14279 enter a time, and this function will inform the calling routine about
14280 this change. The calling routine may then choose to change the format
14281 used to insert the time stamp into the buffer to include the time.
14282 With optional argument FROM-STRING, read from this string instead from
14283 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
14284 the time/date that is used for everything that is not specified by the
14286 (require 'parse-time)
14287 (let* ((org-time-stamp-rounding-minutes
14288 (if (equal with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
14289 (org-dcst org-display-custom-times)
14290 (ct (org-current-time))
14291 (def (or org-overriding-default-time default-time ct))
14292 (defdecode (decode-time def))
14294 (when (< (nth 2 defdecode) org-extend-today-until)
14295 (setcar (nthcdr 2 defdecode) -1)
14296 (setcar (nthcdr 1 defdecode) 59)
14297 (setq def (apply 'encode-time defdecode)
14298 defdecode (decode-time def)))))
14299 (calendar-frame-setup nil)
14300 (calendar-setup nil)
14301 (calendar-move-hook nil)
14302 (calendar-view-diary-initially-flag nil)
14303 (calendar-view-holidays-initially-flag nil)
14304 (timestr (format-time-string
14305 (if with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") def))
14306 (prompt (concat (if prompt (concat prompt " ") "")
14307 (format "Date+time [%s]: " timestr)))
14308 ans (org-ans0 "") org-ans1 org-ans2 final)
14311 (from-string (setq ans from-string))
14312 (org-read-date-popup-calendar
14314 (save-window-excursion
14316 (calendar-forward-day (- (time-to-days def)
14317 (calendar-absolute-from-gregorian
14318 (calendar-current-date))))
14319 (org-eval-in-calendar nil t)
14320 (let* ((old-map (current-local-map))
14321 (map (copy-keymap calendar-mode-map))
14322 (minibuffer-local-map (copy-keymap minibuffer-local-map)))
14323 (org-defkey map (kbd "RET") 'org-calendar-select)
14324 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
14325 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
14326 (org-defkey minibuffer-local-map [(meta shift left)]
14327 (lambda () (interactive)
14328 (org-eval-in-calendar '(calendar-backward-month 1))))
14329 (org-defkey minibuffer-local-map [(meta shift right)]
14330 (lambda () (interactive)
14331 (org-eval-in-calendar '(calendar-forward-month 1))))
14332 (org-defkey minibuffer-local-map [(meta shift up)]
14333 (lambda () (interactive)
14334 (org-eval-in-calendar '(calendar-backward-year 1))))
14335 (org-defkey minibuffer-local-map [(meta shift down)]
14336 (lambda () (interactive)
14337 (org-eval-in-calendar '(calendar-forward-year 1))))
14338 (org-defkey minibuffer-local-map [?\e (shift left)]
14339 (lambda () (interactive)
14340 (org-eval-in-calendar '(calendar-backward-month 1))))
14341 (org-defkey minibuffer-local-map [?\e (shift right)]
14342 (lambda () (interactive)
14343 (org-eval-in-calendar '(calendar-forward-month 1))))
14344 (org-defkey minibuffer-local-map [?\e (shift up)]
14345 (lambda () (interactive)
14346 (org-eval-in-calendar '(calendar-backward-year 1))))
14347 (org-defkey minibuffer-local-map [?\e (shift down)]
14348 (lambda () (interactive)
14349 (org-eval-in-calendar '(calendar-forward-year 1))))
14350 (org-defkey minibuffer-local-map [(shift up)]
14351 (lambda () (interactive)
14352 (org-eval-in-calendar '(calendar-backward-week 1))))
14353 (org-defkey minibuffer-local-map [(shift down)]
14354 (lambda () (interactive)
14355 (org-eval-in-calendar '(calendar-forward-week 1))))
14356 (org-defkey minibuffer-local-map [(shift left)]
14357 (lambda () (interactive)
14358 (org-eval-in-calendar '(calendar-backward-day 1))))
14359 (org-defkey minibuffer-local-map [(shift right)]
14360 (lambda () (interactive)
14361 (org-eval-in-calendar '(calendar-forward-day 1))))
14362 (org-defkey minibuffer-local-map ">"
14363 (lambda () (interactive)
14364 (org-eval-in-calendar '(scroll-calendar-left 1))))
14365 (org-defkey minibuffer-local-map "<"
14366 (lambda () (interactive)
14367 (org-eval-in-calendar '(scroll-calendar-right 1))))
14368 (org-defkey minibuffer-local-map "\C-v"
14369 (lambda () (interactive)
14370 (org-eval-in-calendar
14371 '(calendar-scroll-left-three-months 1))))
14372 (org-defkey minibuffer-local-map "\M-v"
14373 (lambda () (interactive)
14374 (org-eval-in-calendar
14375 '(calendar-scroll-right-three-months 1))))
14376 (run-hooks 'org-read-date-minibuffer-setup-hook)
14379 (use-local-map map)
14380 (add-hook 'post-command-hook 'org-read-date-display)
14381 (setq org-ans0 (read-string prompt default-input
14382 'org-read-date-history nil))
14383 ;; org-ans0: from prompt
14384 ;; org-ans1: from mouse click
14385 ;; org-ans2: from calendar motion
14386 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
14387 (remove-hook 'post-command-hook 'org-read-date-display)
14388 (use-local-map old-map)
14389 (when org-read-date-overlay
14390 (delete-overlay org-read-date-overlay)
14391 (setq org-read-date-overlay nil)))))))
14393 (t ; Naked prompt only
14395 (setq ans (read-string prompt default-input
14396 'org-read-date-history timestr))
14397 (when org-read-date-overlay
14398 (delete-overlay org-read-date-overlay)
14399 (setq org-read-date-overlay nil)))))
14401 (setq final (org-read-date-analyze ans def defdecode))
14403 ;; One round trip to get rid of 34th of August and stuff like that....
14404 (setq final (decode-time (apply 'encode-time final)))
14406 (setq org-read-date-final-answer ans)
14409 (apply 'encode-time final)
14410 (if (and (boundp 'org-time-was-given) org-time-was-given)
14411 (format "%04d-%02d-%02d %02d:%02d"
14412 (nth 5 final) (nth 4 final) (nth 3 final)
14413 (nth 2 final) (nth 1 final))
14414 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
14419 (defvar org-read-date-analyze-futurep nil)
14420 (defun org-read-date-display ()
14421 "Display the current date prompt interpretation in the minibuffer."
14422 (when org-read-date-display-live
14423 (when org-read-date-overlay
14424 (delete-overlay org-read-date-overlay))
14427 (while (not (equal (buffer-substring
14428 (max (point-min) (- (point) 4)) (point))
14432 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
14433 " " (or org-ans1 org-ans2)))
14434 (org-end-time-was-given nil)
14435 (f (org-read-date-analyze ans def defdecode))
14437 org-time-stamp-custom-formats
14438 org-time-stamp-formats))
14439 (fmt (if (or with-time
14440 (and (boundp 'org-time-was-given) org-time-was-given))
14443 (txt (concat "=> " (format-time-string fmt (apply 'encode-time f)))))
14444 (when (and org-end-time-was-given
14445 (string-match org-plain-time-of-day-regexp txt))
14446 (setq txt (concat (substring txt 0 (match-end 0)) "-"
14447 org-end-time-was-given
14448 (substring txt (match-end 0)))))
14449 (when org-read-date-analyze-futurep
14450 (setq txt (concat txt " (=>F)")))
14451 (setq org-read-date-overlay
14452 (make-overlay (1- (point-at-eol)) (point-at-eol)))
14453 (org-overlay-display org-read-date-overlay txt 'secondary-selection))))
14455 (defun org-read-date-analyze (ans def defdecode)
14456 "Analyze the combined answer of the date prompt."
14457 ;; FIXME: cleanup and comment
14458 (let ((nowdecode (decode-time (current-time)))
14459 delta deltan deltaw deltadef year month day
14460 hour minute second wday pm h2 m2 tl wday1
14461 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
14462 (setq org-read-date-analyze-futurep nil)
14463 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
14466 (when (setq delta (org-read-date-get-relative ans (current-time) def))
14467 (setq ans (replace-match "" t t ans)
14469 deltaw (nth 1 delta)
14470 deltadef (nth 2 delta)))
14472 ;; Check if there is an iso week date in there
14473 ;; If yes, store the info and postpone interpreting it until the rest
14474 ;; of the parsing is done
14475 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
14476 (setq iso-year (if (match-end 1)
14477 (org-small-year-to-year
14478 (string-to-number (match-string 1 ans))))
14479 iso-weekday (if (match-end 3)
14480 (string-to-number (match-string 3 ans)))
14481 iso-week (string-to-number (match-string 2 ans)))
14482 (setq ans (replace-match "" t t ans)))
14484 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
14485 (when (string-match
14486 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
14487 (setq year (if (match-end 2)
14488 (string-to-number (match-string 2 ans))
14489 (progn (setq kill-year t)
14490 (string-to-number (format-time-string "%Y"))))
14491 month (string-to-number (match-string 3 ans))
14492 day (string-to-number (match-string 4 ans)))
14493 (if (< year 100) (setq year (+ 2000 year)))
14494 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
14496 ;; Help matching american dates, like 5/30 or 5/30/7
14497 (when (string-match
14498 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
14499 (setq year (if (match-end 4)
14500 (string-to-number (match-string 4 ans))
14501 (progn (setq kill-year t)
14502 (string-to-number (format-time-string "%Y"))))
14503 month (string-to-number (match-string 1 ans))
14504 day (string-to-number (match-string 2 ans)))
14505 (if (< year 100) (setq year (+ 2000 year)))
14506 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
14508 ;; Help matching am/pm times, because `parse-time-string' does not do that.
14509 ;; If there is a time with am/pm, and *no* time without it, we convert
14510 ;; so that matching will be successful.
14511 (loop for i from 1 to 2 do ; twice, for end time as well
14512 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
14513 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
14514 (setq hour (string-to-number (match-string 1 ans))
14515 minute (if (match-end 3)
14516 (string-to-number (match-string 3 ans))
14519 (string-to-char (downcase (match-string 4 ans)))))
14520 (if (and (= hour 12) (not pm))
14522 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
14523 (setq ans (replace-match (format "%02d:%02d" hour minute)
14526 ;; Check if a time range is given as a duration
14527 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
14528 (setq hour (string-to-number (match-string 1 ans))
14529 h2 (+ hour (string-to-number (match-string 3 ans)))
14530 minute (string-to-number (match-string 2 ans))
14531 m2 (+ minute (if (match-end 5) (string-to-number
14532 (match-string 5 ans))0)))
14533 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
14534 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
14537 ;; Check if there is a time range
14538 (when (boundp 'org-end-time-was-given)
14539 (setq org-time-was-given nil)
14540 (when (and (string-match org-plain-time-of-day-regexp ans)
14542 (setq org-end-time-was-given (match-string 8 ans))
14543 (setq ans (concat (substring ans 0 (match-beginning 7))
14544 (substring ans (match-end 7))))))
14546 (setq tl (parse-time-string ans)
14547 day (or (nth 3 tl) (nth 3 defdecode))
14548 month (or (nth 4 tl)
14549 (if (and org-read-date-prefer-future
14550 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
14551 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
14552 (nth 4 defdecode)))
14553 year (or (and (not kill-year) (nth 5 tl))
14554 (if (and org-read-date-prefer-future
14555 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
14556 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
14557 (nth 5 defdecode)))
14558 hour (or (nth 2 tl) (nth 2 defdecode))
14559 minute (or (nth 1 tl) (nth 1 defdecode))
14560 second (or (nth 0 tl) 0)
14563 (when (and (eq org-read-date-prefer-future 'time)
14564 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
14565 (equal day (nth 3 nowdecode))
14566 (equal month (nth 4 nowdecode))
14567 (equal year (nth 5 nowdecode))
14569 (or (< (nth 2 tl) (nth 2 nowdecode))
14570 (and (= (nth 2 tl) (nth 2 nowdecode))
14572 (< (nth 1 tl) (nth 1 nowdecode)))))
14576 ;; Special date definitions below
14579 ;; There was an iso week
14582 (setq year (or iso-year year)
14583 day (or iso-weekday wday 1)
14584 wday nil ; to make sure that the trigger below does not match
14585 iso-date (calendar-gregorian-from-absolute
14586 (calendar-absolute-from-iso
14587 (list iso-week day year))))
14588 ; FIXME: Should we also push ISO weeks into the future?
14589 ; (when (and org-read-date-prefer-future
14591 ; (< (calendar-absolute-from-gregorian iso-date)
14592 ; (time-to-days (current-time))))
14593 ; (setq year (1+ year)
14594 ; iso-date (calendar-gregorian-from-absolute
14595 ; (calendar-absolute-from-iso
14596 ; (list iso-week day year)))))
14597 (setq month (car iso-date)
14598 year (nth 2 iso-date)
14599 day (nth 1 iso-date)))
14603 (let ((now (decode-time (current-time))))
14604 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
14605 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
14606 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
14607 ((equal deltaw "m") (setq month (+ month deltan)))
14608 ((equal deltaw "y") (setq year (+ year deltan)))))
14609 ((and wday (not (nth 3 tl)))
14611 ;; Weekday was given, but no day, so pick that day in the week
14612 ;; on or after the derived date.
14613 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
14614 (unless (equal wday wday1)
14615 (setq day (+ day (% (- wday wday1 -7) 7))))))
14616 (if (and (boundp 'org-time-was-given)
14618 (setq org-time-was-given t))
14619 (if (< year 100) (setq year (+ 2000 year)))
14620 (if (< year 1970) (setq year (nth 5 defdecode))) ; not representable
14621 (setq org-read-date-analyze-futurep futurep)
14622 (list second minute hour day month year)))
14624 (defvar parse-time-weekdays)
14626 (defun org-read-date-get-relative (s today default)
14627 "Check string S for special relative date string.
14628 TODAY and DEFAULT are internal times, for today and for a default.
14629 Return shift list (N what def-flag)
14630 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
14631 N is the number of WHATs to shift.
14632 DEF-FLAG is t when a double ++ or -- indicates shift relative to
14633 the DEFAULT date rather than TODAY."
14637 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
14639 "\\([dwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
14640 "\\([ \t]\\|$\\)") s)
14641 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
14642 (let* ((dir (if (> (match-end 1) (match-beginning 1))
14643 (string-to-char (substring (match-string 1 s) -1))
14645 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
14646 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
14647 (what (if (match-end 3) (match-string 3 s) "d"))
14648 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
14649 (date (if rel default today))
14650 (wday (nth 6 (decode-time date)))
14654 (setq delta (mod (+ 7 (- wday1 wday)) 7))
14655 (if (= dir ?-) (setq delta (- delta 7)))
14656 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
14657 (list delta "d" rel))
14658 (list (* n (if (= dir ?-) -1 1)) what rel)))))
14660 (defun org-order-calendar-date-args (arg1 arg2 arg3)
14661 "Turn a user-specified date into the internal representation.
14662 The internal representation needed by the calendar is (month day year).
14663 This is a wrapper to handle the brain-dead convention in calendar that
14664 user function argument order change dependent on argument order."
14665 (if (boundp 'calendar-date-style)
14667 ((eq calendar-date-style 'american)
14668 (list arg1 arg2 arg3))
14669 ((eq calendar-date-style 'european)
14670 (list arg2 arg1 arg3))
14671 ((eq calendar-date-style 'iso)
14672 (list arg2 arg3 arg1)))
14673 (with-no-warnings ;; european-calendar-style is obsolete as of version 23.1
14674 (if (org-bound-and-true-p european-calendar-style)
14675 (list arg2 arg1 arg3)
14676 (list arg1 arg2 arg3)))))
14678 (defun org-eval-in-calendar (form &optional keepdate)
14679 "Eval FORM in the calendar window and return to current window.
14680 Also, store the cursor date in variable org-ans2."
14681 (let ((sf (selected-frame))
14682 (sw (selected-window)))
14683 (select-window (get-buffer-window "*Calendar*" t))
14685 (when (and (not keepdate) (calendar-cursor-to-date))
14686 (let* ((date (calendar-cursor-to-date))
14687 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
14688 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
14689 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
14691 (org-select-frame-set-input-focus sf)))
14693 (defun org-calendar-select ()
14694 "Return to `org-read-date' with the date currently selected.
14695 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
14697 (when (calendar-cursor-to-date)
14698 (let* ((date (calendar-cursor-to-date))
14699 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
14700 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
14701 (if (active-minibuffer-window) (exit-minibuffer))))
14703 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
14704 "Insert a date stamp for the date given by the internal TIME.
14705 WITH-HM means use the stamp format that includes the time of the day.
14706 INACTIVE means use square brackets instead of angular ones, so that the
14707 stamp will not contribute to the agenda.
14708 PRE and POST are optional strings to be inserted before and after the
14710 The command returns the inserted time stamp."
14711 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
14713 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
14714 (insert-before-markers (or pre ""))
14715 (when (listp extra)
14716 (setq extra (car extra))
14717 (if (and (stringp extra)
14718 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
14719 (setq extra (format "-%02d:%02d"
14720 (string-to-number (match-string 1 extra))
14721 (string-to-number (match-string 2 extra))))
14724 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
14725 (insert-before-markers (setq stamp (format-time-string fmt time)))
14726 (insert-before-markers (or post ""))
14727 (setq org-last-inserted-timestamp stamp)))
14729 (defun org-toggle-time-stamp-overlays ()
14730 "Toggle the use of custom time stamp formats."
14732 (setq org-display-custom-times (not org-display-custom-times))
14733 (unless org-display-custom-times
14734 (let ((p (point-min)) (bmp (buffer-modified-p)))
14735 (while (setq p (next-single-property-change p 'display))
14736 (if (and (get-text-property p 'display)
14737 (eq (get-text-property p 'face) 'org-date))
14738 (remove-text-properties
14739 p (setq p (next-single-property-change p 'display))
14741 (set-buffer-modified-p bmp)))
14742 (if (featurep 'xemacs)
14743 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
14744 (org-restart-font-lock)
14745 (setq org-table-may-need-update t)
14746 (if org-display-custom-times
14747 (message "Time stamps are overlayed with custom format")
14748 (message "Time stamp overlays removed")))
14750 (defun org-display-custom-time (beg end)
14751 "Overlay modified time stamp format over timestamp between BEG and END."
14752 (let* ((ts (buffer-substring beg end))
14753 t1 w1 with-hm tf time str w2 (off 0))
14755 (setq t1 (org-parse-time-string ts t))
14756 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)?\\'" ts)
14757 (setq off (- (match-end 0) (match-beginning 0)))))
14758 (setq end (- end off))
14759 (setq w1 (- end beg)
14760 with-hm (and (nth 1 t1) (nth 2 t1))
14761 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
14762 time (org-fix-decoded-time t1)
14764 (format-time-string
14765 (substring tf 1 -1) (apply 'encode-time time))
14766 nil 'mouse-face 'highlight)
14768 (if (not (= w2 w1))
14769 (add-text-properties (1+ beg) (+ 2 beg)
14770 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
14771 (if (featurep 'xemacs)
14773 (put-text-property beg end 'invisible t)
14774 (put-text-property beg end 'end-glyph (make-glyph str)))
14775 (put-text-property beg end 'display str))))
14777 (defun org-translate-time (string)
14778 "Translate all timestamps in STRING to custom format.
14779 But do this only if the variable `org-display-custom-times' is set."
14780 (when org-display-custom-times
14783 (re org-ts-regexp-both)
14784 t1 with-hm inactive tf time str beg end)
14785 (while (setq start (string-match re string start))
14786 (setq beg (match-beginning 0)
14788 t1 (save-match-data
14789 (org-parse-time-string (substring string beg end) t))
14790 with-hm (and (nth 1 t1) (nth 2 t1))
14791 inactive (equal (substring string beg (1+ beg)) "[")
14792 tf (funcall (if with-hm 'cdr 'car)
14793 org-time-stamp-custom-formats)
14794 time (org-fix-decoded-time t1)
14795 str (format-time-string
14797 (if inactive "[" "<") (substring tf 1 -1)
14798 (if inactive "]" ">"))
14799 (apply 'encode-time time))
14800 string (replace-match str t t string)
14801 start (+ start (length str)))))))
14804 (defun org-fix-decoded-time (time)
14805 "Set 0 instead of nil for the first 6 elements of time.
14806 Don't touch the rest."
14808 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
14810 (defun org-days-to-time (timestamp-string)
14811 "Difference between TIMESTAMP-STRING and now in days."
14812 (- (time-to-days (org-time-string-to-time timestamp-string))
14813 (time-to-days (current-time))))
14815 (defun org-deadline-close (timestamp-string &optional ndays)
14816 "Is the time in TIMESTAMP-STRING close to the current date?"
14817 (setq ndays (or ndays (org-get-wdays timestamp-string)))
14818 (and (< (org-days-to-time timestamp-string) ndays)
14819 (not (org-entry-is-done-p))))
14821 (defun org-get-wdays (ts)
14822 "Get the deadline lead time appropriate for timestring TS."
14824 ((<= org-deadline-warning-days 0)
14825 ;; 0 or negative, enforce this value no matter what
14826 (- org-deadline-warning-days))
14827 ((string-match "-\\([0-9]+\\)\\([dwmy]\\)\\(\\'\\|>\\| \\)" ts)
14828 ;; lead time is specified.
14829 (floor (* (string-to-number (match-string 1 ts))
14830 (cdr (assoc (match-string 2 ts)
14831 '(("d" . 1) ("w" . 7)
14832 ("m" . 30.4) ("y" . 365.25)))))))
14833 ;; go for the default.
14834 (t org-deadline-warning-days)))
14836 (defun org-calendar-select-mouse (ev)
14837 "Return to `org-read-date' with the date currently selected.
14838 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
14840 (mouse-set-point ev)
14841 (when (calendar-cursor-to-date)
14842 (let* ((date (calendar-cursor-to-date))
14843 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
14844 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
14845 (if (active-minibuffer-window) (exit-minibuffer))))
14847 (defun org-check-deadlines (ndays)
14848 "Check if there are any deadlines due or past due.
14849 A deadline is considered due if it happens within `org-deadline-warning-days'
14850 days from today's date. If the deadline appears in an entry marked DONE,
14851 it is not shown. The prefix arg NDAYS can be used to test that many
14852 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
14854 (let* ((org-warn-days
14856 ((equal ndays '(4)) 100000)
14857 (ndays (prefix-numeric-value ndays))
14858 (t (abs org-deadline-warning-days))))
14859 (case-fold-search nil)
14860 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
14862 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
14864 (message "%d deadlines past-due or due within %d days"
14865 (org-occur regexp nil callback)
14868 (defun org-check-before-date (date)
14869 "Check if there are deadlines or scheduled entries before DATE."
14870 (interactive (list (org-read-date)))
14871 (let ((case-fold-search nil)
14872 (regexp (concat "\\<\\(" org-deadline-string
14873 "\\|" org-scheduled-string
14874 "\\) *<\\([^>]+\\)>"))
14876 (lambda () (time-less-p
14877 (org-time-string-to-time (match-string 2))
14878 (org-time-string-to-time date)))))
14879 (message "%d entries before %s"
14880 (org-occur regexp nil callback) date)))
14882 (defun org-check-after-date (date)
14883 "Check if there are deadlines or scheduled entries after DATE."
14884 (interactive (list (org-read-date)))
14885 (let ((case-fold-search nil)
14886 (regexp (concat "\\<\\(" org-deadline-string
14887 "\\|" org-scheduled-string
14888 "\\) *<\\([^>]+\\)>"))
14892 (org-time-string-to-time (match-string 2))
14893 (org-time-string-to-time date))))))
14894 (message "%d entries after %s"
14895 (org-occur regexp nil callback) date)))
14897 (defun org-evaluate-time-range (&optional to-buffer)
14898 "Evaluate a time range by computing the difference between start and end.
14899 Normally the result is just printed in the echo area, but with prefix arg
14900 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
14901 If the time range is actually in a table, the result is inserted into the
14903 For time difference computation, a year is assumed to be exactly 365
14904 days in order to avoid rounding problems."
14907 (org-clock-update-time-maybe)
14909 (unless (org-at-date-range-p t)
14910 (goto-char (point-at-bol))
14911 (re-search-forward org-tr-regexp-both (point-at-eol) t))
14912 (if (not (org-at-date-range-p t))
14913 (error "Not at a time-stamp range, and none found in current line")))
14914 (let* ((ts1 (match-string 1))
14915 (ts2 (match-string 2))
14916 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
14917 (match-end (match-end 0))
14918 (time1 (org-time-string-to-time ts1))
14919 (time2 (org-time-string-to-time ts2))
14920 (t1 (org-float-time time1))
14921 (t2 (org-float-time time2))
14922 (diff (abs (- t2 t1)))
14923 (negative (< (- t2 t1) 0))
14924 ;; (ys (floor (* 365 24 60 60)))
14927 (fy "%dy %dd %02d:%02d")
14929 (fd "%dd %02d:%02d")
14934 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
14936 d (floor (/ diff ds)) diff (mod diff ds)
14937 h (floor (/ diff hs)) diff (mod diff hs)
14938 m (floor (/ diff 60)))
14939 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
14941 d (floor (+ (/ diff ds) 0.5))
14943 (if (not to-buffer)
14944 (message "%s" (org-make-tdiff-string y d h m))
14945 (if (org-at-table-p)
14947 (goto-char match-end)
14949 (and (looking-at " *|") (goto-char (match-end 0))))
14950 (goto-char match-end))
14952 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
14953 (replace-match ""))
14954 (if negative (insert " -"))
14955 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
14956 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
14957 (insert " " (format fh h m))))
14958 (if align (org-table-align))
14959 (message "Time difference inserted")))))
14961 (defun org-make-tdiff-string (y d h m)
14964 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
14966 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
14968 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
14970 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
14972 (apply 'format fmt (nreverse l))))
14974 (defun org-time-string-to-time (s)
14975 (apply 'encode-time (org-parse-time-string s)))
14976 (defun org-time-string-to-seconds (s)
14977 (org-float-time (org-time-string-to-time s)))
14979 (defun org-time-string-to-absolute (s &optional daynr prefer show-all)
14980 "Convert a time stamp to an absolute day number.
14981 If there is a specifier for a cyclic time stamp, get the closest date to
14983 PREFER and SHOW-ALL are passed through to `org-closest-date'.
14984 The variable date is bound by the calendar when this is called."
14986 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
14987 (if (org-diary-sexp-entry (match-string 1 s) "" date)
14990 ((and daynr (string-match "\\+[0-9]+[dwmy]" s))
14991 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
14992 (time-to-days (current-time))) (match-string 0 s)
14994 (t (time-to-days (apply 'encode-time (org-parse-time-string s))))))
14996 (defun org-days-to-iso-week (days)
14997 "Return the iso week number."
14999 (car (calendar-iso-from-absolute days)))
15001 (defun org-small-year-to-year (year)
15002 "Convert 2-digit years into 4-digit years.
15003 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2007.
15004 The year 2000 cannot be abbreviated. Any year larger than 99
15005 is returned unchanged."
15007 (setq year (+ 2000 year))
15009 (setq year (+ 1900 year))))
15012 (defun org-time-from-absolute (d)
15013 "Return the time corresponding to date D.
15014 D may be an absolute day number, or a calendar-type list (month day year)."
15015 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
15016 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
15018 (defun org-calendar-holiday ()
15019 "List of holidays, for Diary display in Org-mode."
15020 (require 'holidays)
15022 (if (fboundp 'calendar-check-holidays)
15023 'calendar-check-holidays 'check-calendar-holidays) date)))
15024 (if hl (mapconcat 'identity hl "; "))))
15026 (defun org-diary-sexp-entry (sexp entry date)
15027 "Process a SEXP diary ENTRY for DATE."
15028 (require 'diary-lib)
15029 (let ((result (if calendar-debug-sexp
15030 (let ((stack-trace-on-error t))
15031 (eval (car (read-from-string sexp))))
15032 (condition-case nil
15033 (eval (car (read-from-string sexp)))
15036 (message "Bad sexp at line %d in %s: %s"
15038 (buffer-file-name) sexp)
15040 (cond ((stringp result) (split-string result "; "))
15041 ((and (consp result)
15042 (not (consp (cdr result)))
15043 (stringp (cdr result))) (cdr result))
15044 ((and (consp result)
15045 (stringp (car result))) result)
15049 (defun org-diary-to-ical-string (frombuf)
15050 "Get iCalendar entries from diary entries in buffer FROMBUF.
15051 This uses the icalendar.el library."
15052 (let* ((tmpdir (if (featurep 'xemacs)
15054 temporary-file-directory))
15055 (tmpfile (make-temp-name
15056 (expand-file-name "orgics" tmpdir)))
15058 (with-current-buffer frombuf
15059 (icalendar-export-region (point-min) (point-max) tmpfile)
15060 (setq buf (find-buffer-visiting tmpfile))
15062 (goto-char (point-min))
15063 (if (re-search-forward "^BEGIN:VEVENT" nil t)
15064 (setq b (match-beginning 0)))
15065 (goto-char (point-max))
15066 (if (re-search-backward "^END:VEVENT" nil t)
15067 (setq e (match-end 0)))
15068 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
15070 (delete-file tmpfile)
15073 (defun org-closest-date (start current change prefer show-all)
15074 "Find the date closest to CURRENT that is consistent with START and CHANGE.
15075 When PREFER is `past', return a date that is either CURRENT or past.
15076 When PREFER is `future', return a date that is either CURRENT or future.
15077 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
15078 ;; Make the proper lists from the dates
15080 (let ((a1 '(("d" . day) ("w" . week) ("m" . month) ("y" . year)))
15081 dn dw sday cday n1 n2 n0
15082 d m y y1 y2 date1 date2 nmonths nm ny m2)
15084 (setq start (org-date-to-gregorian start)
15085 current (org-date-to-gregorian
15088 (time-to-days (current-time))))
15089 sday (calendar-absolute-from-gregorian start)
15090 cday (calendar-absolute-from-gregorian current))
15092 (if (<= cday sday) (throw 'exit sday))
15094 (if (string-match "\\(\\+[0-9]+\\)\\([dwmy]\\)" change)
15095 (setq dn (string-to-number (match-string 1 change))
15096 dw (cdr (assoc (match-string 2 change) a1)))
15097 (error "Invalid change specifier: %s" change))
15098 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
15101 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
15104 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
15105 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
15106 (setq date1 (list m d y1)
15107 n1 (calendar-absolute-from-gregorian date1)
15108 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
15109 n2 (calendar-absolute-from-gregorian date2)))
15111 ;; approx number of month between the two dates
15112 (setq nmonths (floor (/ (- cday sday) 30.436875)))
15113 ;; How often does dn fit in there?
15114 (setq d (nth 1 start) m (car start) y (nth 2 start)
15115 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
15117 ny (floor (/ m 12))
15120 (while (> m 12) (setq m (- m 12) y (1+ y)))
15121 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
15122 (setq m2 (+ m dn) y2 y)
15123 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
15124 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
15125 (while (<= n2 cday)
15126 (setq n1 n2 m m2 y y2)
15127 (setq m2 (+ m dn) y2 y)
15128 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
15129 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
15130 ;; Make sure n1 is the earlier date
15131 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
15134 ((eq prefer 'past) (if (= cday n2) n2 n1))
15135 ((eq prefer 'future) (if (= cday n1) n1 n2))
15136 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
15138 ((eq prefer 'past) (if (= cday n2) n2 n1))
15139 ((eq prefer 'future) (if (= cday n1) n1 n2))
15140 (t (if (= cday n1) n1 n2)))))))
15142 (defun org-date-to-gregorian (date)
15143 "Turn any specification of DATE into a Gregorian date for the calendar."
15144 (cond ((integerp date) (calendar-gregorian-from-absolute date))
15145 ((and (listp date) (= (length date) 3)) date)
15147 (setq date (org-parse-time-string date))
15148 (list (nth 4 date) (nth 3 date) (nth 5 date)))
15150 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
15152 (defun org-parse-time-string (s &optional nodefault)
15153 "Parse the standard Org-mode time string.
15154 This should be a lot faster than the normal `parse-time-string'.
15155 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
15156 hour and minute fields will be nil if not given."
15157 (if (string-match org-ts-regexp0 s)
15159 (if (or (match-beginning 8) (not nodefault))
15160 (string-to-number (or (match-string 8 s) "0")))
15161 (if (or (match-beginning 7) (not nodefault))
15162 (string-to-number (or (match-string 7 s) "0")))
15163 (string-to-number (match-string 4 s))
15164 (string-to-number (match-string 3 s))
15165 (string-to-number (match-string 2 s))
15167 (error "Not a standard Org-mode time string: %s" s)))
15169 (defun org-timestamp-up (&optional arg)
15170 "Increase the date item at the cursor by one.
15171 If the cursor is on the year, change the year. If it is on the month or
15172 the day, change that.
15173 With prefix ARG, change by that many units."
15175 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
15177 (defun org-timestamp-down (&optional arg)
15178 "Decrease the date item at the cursor by one.
15179 If the cursor is on the year, change the year. If it is on the month or
15180 the day, change that.
15181 With prefix ARG, change by that many units."
15183 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
15185 (defun org-timestamp-up-day (&optional arg)
15186 "Increase the date in the time stamp by one day.
15187 With prefix ARG, change that many days."
15189 (if (and (not (org-at-timestamp-p t))
15190 (org-on-heading-p))
15192 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
15194 (defun org-timestamp-down-day (&optional arg)
15195 "Decrease the date in the time stamp by one day.
15196 With prefix ARG, change that many days."
15198 (if (and (not (org-at-timestamp-p t))
15199 (org-on-heading-p))
15201 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
15203 (defun org-at-timestamp-p (&optional inactive-ok)
15204 "Determine if the cursor is in or at a timestamp."
15206 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
15208 (ans (or (looking-at tsr)
15210 (skip-chars-backward "^[<\n\r\t")
15211 (if (> (point) (point-min)) (backward-char 1))
15212 (and (looking-at tsr)
15213 (> (- (match-end 0) pos) -1))))))
15215 (boundp 'org-ts-what)
15218 ((= pos (match-beginning 0)) 'bracket)
15219 ((= pos (1- (match-end 0))) 'bracket)
15220 ((org-pos-in-match-range pos 2) 'year)
15221 ((org-pos-in-match-range pos 3) 'month)
15222 ((org-pos-in-match-range pos 7) 'hour)
15223 ((org-pos-in-match-range pos 8) 'minute)
15224 ((or (org-pos-in-match-range pos 4)
15225 (org-pos-in-match-range pos 5)) 'day)
15226 ((and (> pos (or (match-end 8) (match-end 5)))
15227 (< pos (match-end 0)))
15228 (- pos (or (match-end 8) (match-end 5))))
15232 (defun org-toggle-timestamp-type ()
15233 "Toggle the type (<active> or [inactive]) of a time stamp."
15235 (when (org-at-timestamp-p t)
15236 (let ((beg (match-beginning 0)) (end (match-end 0))
15237 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
15240 (while (re-search-forward "[][<>]" end t)
15241 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
15243 (message "Timestamp is now %sactive"
15244 (if (equal (char-after beg) ?<) "" "in")))))
15246 (defun org-timestamp-change (n &optional what updown)
15247 "Change the date in the time stamp at point.
15248 The date will be changed by N times WHAT. WHAT can be `day', `month',
15249 `year', `minute', `second'. If WHAT is not given, the cursor position
15250 in the timestamp determines what will be changed."
15251 (let ((pos (point))
15253 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
15257 (if (not (org-at-timestamp-p t))
15258 (error "Not at a timestamp"))
15259 (if (and (not what) (eq org-ts-what 'bracket))
15260 (org-toggle-timestamp-type)
15261 (if (and (not what) (not (eq org-ts-what 'day))
15262 org-display-custom-times
15263 (get-text-property (point) 'display)
15264 (not (get-text-property (1- (point)) 'display)))
15265 (setq org-ts-what 'day))
15266 (setq org-ts-what (or what org-ts-what)
15267 inactive (= (char-after (match-beginning 0)) ?\[)
15268 ts (match-string 0))
15271 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?[-+][0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)*\\)[]>]"
15273 (setq extra (match-string 1 ts)))
15274 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
15276 (setq time0 (org-parse-time-string ts))
15278 (eq org-ts-what 'minute)
15279 (not current-prefix-arg))
15280 ;; This looks like s-up and s-down. Change by one rounding step.
15281 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
15282 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
15283 (setcar (cdr time0) (+ (nth 1 time0)
15284 (if (> n 0) (- rem) (- dm rem))))))
15286 (encode-time (or (car time0) 0)
15287 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
15288 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
15289 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
15290 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
15291 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
15293 (when (and (member org-ts-what '(hour minute))
15295 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
15296 (setq extra (org-modify-ts-extra
15298 (if (eq org-ts-what 'hour) 2 5)
15300 (when (integerp org-ts-what)
15301 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
15302 (if (eq what 'calendar)
15303 (let ((cal-date (org-get-date-from-calendar)))
15304 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
15305 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
15306 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
15307 (setcar time0 (or (car time0) 0))
15308 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
15309 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
15310 (setq time (apply 'encode-time time0))))
15311 (setq org-last-changed-timestamp
15312 (org-insert-time-stamp time with-hm inactive nil nil extra))
15313 (org-clock-update-time-maybe)
15315 ;; Try to recenter the calendar window, if any
15316 (if (and org-calendar-follow-timestamp-change
15317 (get-buffer-window "*Calendar*" t)
15318 (memq org-ts-what '(day month year)))
15319 (org-recenter-calendar (time-to-days time))))))
15321 (defun org-modify-ts-extra (s pos n dm)
15322 "Change the different parts of the lead-time and repeat fields in timestamp."
15323 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
15325 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
15327 ((or (org-pos-in-match-range pos 2)
15328 (org-pos-in-match-range pos 3))
15329 (setq m (string-to-number (match-string 3 s))
15330 h (string-to-number (match-string 2 s)))
15331 (if (org-pos-in-match-range pos 2)
15333 (setq n (* dm (org-no-warnings (signum n))))
15334 (when (not (= 0 (setq rem (% m dm))))
15335 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
15337 (if (< m 0) (setq m (+ m 60) h (1- h)))
15338 (if (> m 59) (setq m (- m 60) h (1+ h)))
15339 (setq h (min 24 (max 0 h)))
15340 (setq ng 1 new (format "-%02d:%02d" h m)))
15341 ((org-pos-in-match-range pos 6)
15342 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
15343 ((org-pos-in-match-range pos 5)
15344 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
15346 ((org-pos-in-match-range pos 9)
15347 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
15348 ((org-pos-in-match-range pos 8)
15349 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
15353 (substring s 0 (match-beginning ng))
15355 (substring s (match-end ng))))))
15358 (defun org-recenter-calendar (date)
15359 "If the calendar is visible, recenter it to DATE."
15360 (let* ((win (selected-window))
15361 (cwin (get-buffer-window "*Calendar*" t))
15362 (calendar-move-hook nil))
15364 (select-window cwin)
15365 (calendar-goto-date (if (listp date) date
15366 (calendar-gregorian-from-absolute date)))
15367 (select-window win))))
15369 (defun org-goto-calendar (&optional arg)
15370 "Go to the Emacs calendar at the current date.
15371 If there is a time stamp in the current line, go to that date.
15372 A prefix ARG can be used to force the current date."
15374 (let ((tsr org-ts-regexp) diff
15375 (calendar-move-hook nil)
15376 (calendar-view-holidays-initially-flag nil)
15377 (calendar-view-diary-initially-flag nil))
15378 (if (or (org-at-timestamp-p)
15380 (beginning-of-line 1)
15381 (looking-at (concat ".*" tsr))))
15382 (let ((d1 (time-to-days (current-time)))
15384 (org-time-string-to-time (match-string 1)))))
15385 (setq diff (- d2 d1))))
15387 (calendar-goto-today)
15388 (if (and diff (not arg)) (calendar-forward-day diff))))
15390 (defun org-get-date-from-calendar ()
15391 "Return a list (month day year) of date at point in calendar."
15392 (with-current-buffer "*Calendar*"
15394 (calendar-cursor-to-date))))
15396 (defun org-date-from-calendar ()
15397 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
15398 If there is already a time stamp at the cursor position, update it."
15400 (if (org-at-timestamp-p t)
15401 (org-timestamp-change 0 'calendar)
15402 (let ((cal-date (org-get-date-from-calendar)))
15403 (org-insert-time-stamp
15404 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
15406 (defun org-minutes-to-hh:mm-string (m)
15407 "Compute H:MM from a number of minutes."
15408 (let ((h (/ m 60)))
15409 (setq m (- m (* 60 h)))
15410 (format org-time-clocksum-format h m)))
15412 (defun org-hh:mm-string-to-minutes (s)
15413 "Convert a string H:MM to a number of minutes.
15414 If the string is just a number, interpret it as minutes.
15415 In fact, the first hh:mm or number in the string will be taken,
15416 there can be extra stuff in the string.
15417 If no number is found, the return value is 0."
15419 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
15420 (+ (* (string-to-number (match-string 1 s)) 60)
15421 (string-to-number (match-string 2 s))))
15422 ((string-match "\\([0-9]+\\)" s)
15423 (string-to-number (match-string 1 s)))
15428 (defun org-save-all-org-buffers ()
15429 "Save all Org-mode buffers without user confirmation."
15431 (message "Saving all Org-mode buffers...")
15432 (save-some-buffers t 'org-mode-p)
15433 (when (featurep 'org-id) (org-id-locations-save))
15434 (message "Saving all Org-mode buffers... done"))
15436 (defun org-revert-all-org-buffers ()
15437 "Revert all Org-mode buffers.
15438 Prompt for confirmation when there are unsaved changes.
15439 Be sure you know what you are doing before letting this function
15440 overwrite your changes.
15442 This function is useful in a setup where one tracks org files
15443 with a version control system, to revert on one machine after pulling
15444 changes from another. I believe the procedure must be like this:
15446 1. M-x org-save-all-org-buffers
15447 2. Pull changes from the other machine, resolve conflicts
15448 3. M-x org-revert-all-org-buffers"
15450 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
15453 (save-window-excursion
15456 (when (and (with-current-buffer b (org-mode-p))
15457 (with-current-buffer b buffer-file-name))
15458 (switch-to-buffer b)
15459 (revert-buffer t 'no-confirm)))
15461 (when (and (featurep 'org-id) org-id-track-globally)
15462 (org-id-locations-load)))))
15467 (defun org-switchb (&optional arg)
15468 "Switch between Org buffers.
15469 With a prefix argument, restrict available to files.
15470 With two prefix arguments, restrict available buffers to agenda files.
15472 Defaults to `iswitchb' for buffer name completion.
15473 Set `org-completion-use-ido' to make it use ido instead."
15475 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
15476 ((equal arg '(16)) (org-buffer-list 'agenda))
15477 (t (org-buffer-list))))
15478 (org-completion-use-iswitchb org-completion-use-iswitchb)
15479 (org-completion-use-ido org-completion-use-ido))
15480 (unless (or org-completion-use-ido org-completion-use-iswitchb)
15481 (setq org-completion-use-iswitchb t))
15483 (org-icompleting-read "Org buffer: "
15484 (mapcar 'list (mapcar 'buffer-name blist))
15487 ;;; Define some older names previously used for this functionality
15489 (defalias 'org-ido-switchb 'org-switchb)
15491 (defalias 'org-iswitchb 'org-switchb)
15493 (defun org-buffer-list (&optional predicate exclude-tmp)
15494 "Return a list of Org buffers.
15495 PREDICATE can be `export', `files' or `agenda'.
15497 export restrict the list to Export buffers.
15498 files restrict the list to buffers visiting Org files.
15499 agenda restrict the list to buffers visiting agenda files.
15501 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
15503 (agenda-files (and (eq predicate 'agenda)
15504 (mapcar 'file-truename (org-agenda-files t))))
15507 ((eq predicate 'files)
15508 (lambda (b) (with-current-buffer b (eq major-mode 'org-mode))))
15509 ((eq predicate 'export)
15510 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
15511 ((eq predicate 'agenda)
15513 (with-current-buffer b
15514 (and (eq major-mode 'org-mode)
15515 (setq bfn (buffer-file-name b))
15516 (member (file-truename bfn) agenda-files)))))
15517 (t (lambda (b) (with-current-buffer b
15518 (or (eq major-mode 'org-mode)
15519 (string-match "\*Org .*Export"
15520 (buffer-name b)))))))))
15524 (if (and (funcall filter b)
15525 (or (not exclude-tmp)
15526 (not (string-match "tmp" (buffer-name b)))))
15531 (defun org-agenda-files (&optional unrestricted archives)
15532 "Get the list of agenda files.
15533 Optional UNRESTRICTED means return the full list even if a restriction
15534 is currently in place.
15535 When ARCHIVES is t, include all archive files that are really being
15536 used by the agenda files. If ARCHIVE is `ifmode', do this only if
15537 `org-agenda-archives-mode' is t."
15540 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
15541 ((stringp org-agenda-files) (org-read-agenda-file-list))
15542 ((listp org-agenda-files) org-agenda-files)
15543 (t (error "Invalid value of `org-agenda-files'")))))
15544 (setq files (apply 'append
15545 (mapcar (lambda (f)
15546 (if (file-directory-p f)
15548 f t org-agenda-file-regexp)
15551 (when org-agenda-skip-unavailable-files
15552 (setq files (delq nil
15555 (and (file-readable-p file) file)))
15557 (when (or (eq archives t)
15558 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
15559 (setq files (org-add-archive-files files)))
15562 (defun org-agenda-file-p (&optional file)
15563 "Return non-nil, if FILE is an agenda file.
15564 If FILE is omitted, use the file associated with the current
15566 (member (or file (buffer-file-name))
15567 (org-agenda-files t)))
15569 (defun org-edit-agenda-file-list ()
15570 "Edit the list of agenda files.
15571 Depending on setup, this either uses customize to edit the variable
15572 `org-agenda-files', or it visits the file that is holding the list. In the
15573 latter case, the buffer is set up in a way that saving it automatically kills
15574 the buffer and restores the previous window configuration."
15576 (if (stringp org-agenda-files)
15577 (let ((cw (current-window-configuration)))
15578 (find-file org-agenda-files)
15579 (org-set-local 'org-window-configuration cw)
15580 (org-add-hook 'after-save-hook
15582 (set-window-configuration
15583 (prog1 org-window-configuration
15584 (kill-buffer (current-buffer))))
15585 (org-install-agenda-files-menu)
15586 (message "New agenda file list installed"))
15588 (message "%s" (substitute-command-keys
15589 "Edit list and finish with \\[save-buffer]")))
15590 (customize-variable 'org-agenda-files)))
15592 (defun org-store-new-agenda-file-list (list)
15593 "Set new value for the agenda file list and save it correctly."
15594 (if (stringp org-agenda-files)
15595 (let ((fe (org-read-agenda-file-list t)) b u)
15596 (while (setq b (find-buffer-visiting org-agenda-files))
15598 (with-temp-file org-agenda-files
15601 (lambda (f) ;; Keep un-expanded entries.
15602 (if (setq u (assoc f fe))
15607 (let ((org-mode-hook nil) (org-inhibit-startup t)
15608 (org-insert-mode-line-in-empty-file nil))
15609 (setq org-agenda-files list)
15610 (customize-save-variable 'org-agenda-files org-agenda-files))))
15612 (defun org-read-agenda-file-list (&optional pair-with-expansion)
15613 "Read the list of agenda files from a file.
15614 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
15615 filenames, used by `org-store-new-agenda-file-list' to write back
15616 un-expanded file names."
15617 (when (file-directory-p org-agenda-files)
15618 (error "`org-agenda-files' cannot be a single directory"))
15619 (when (stringp org-agenda-files)
15621 (insert-file-contents org-agenda-files)
15624 (let ((e (expand-file-name (substitute-in-file-name f)
15626 (if pair-with-expansion
15629 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
15632 (defun org-cycle-agenda-files ()
15633 "Cycle through the files in `org-agenda-files'.
15634 If the current buffer visits an agenda file, find the next one in the list.
15635 If the current buffer does not, find the first agenda file."
15637 (let* ((fs (org-agenda-files t))
15638 (files (append fs (list (car fs))))
15639 (tcf (if buffer-file-name (file-truename buffer-file-name)))
15641 (unless files (error "No agenda files"))
15643 (while (setq file (pop files))
15644 (if (equal (file-truename file) tcf)
15646 (find-file (car files))
15648 (find-file (car fs)))
15649 (if (buffer-base-buffer) (switch-to-buffer (buffer-base-buffer)))))
15651 (defun org-agenda-file-to-front (&optional to-end)
15652 "Move/add the current file to the top of the agenda file list.
15653 If the file is not present in the list, it is added to the front. If it is
15654 present, it is moved there. With optional argument TO-END, add/move to the
15657 (let ((org-agenda-skip-unavailable-files nil)
15658 (file-alist (mapcar (lambda (x)
15659 (cons (file-truename x) x))
15660 (org-agenda-files t)))
15661 (ctf (file-truename buffer-file-name))
15663 (setq x (assoc ctf file-alist) had x)
15665 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
15667 (setq file-alist (append (delq x file-alist) (list x)))
15668 (setq file-alist (cons x (delq x file-alist))))
15669 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
15670 (org-install-agenda-files-menu)
15671 (message "File %s to %s of agenda file list"
15672 (if had "moved" "added") (if to-end "end" "front"))))
15674 (defun org-remove-file (&optional file)
15675 "Remove current file from the list of files in variable `org-agenda-files'.
15676 These are the files which are being checked for agenda entries.
15677 Optional argument FILE means use this file instead of the current."
15679 (let* ((org-agenda-skip-unavailable-files nil)
15680 (file (or file buffer-file-name))
15681 (true-file (file-truename file))
15682 (afile (abbreviate-file-name file))
15683 (files (delq nil (mapcar
15685 (if (equal true-file
15688 (org-agenda-files t)))))
15689 (if (not (= (length files) (length (org-agenda-files t))))
15691 (org-store-new-agenda-file-list files)
15692 (org-install-agenda-files-menu)
15693 (message "Removed file: %s" afile))
15694 (message "File was not in list: %s (not removed)" afile))))
15696 (defun org-file-menu-entry (file)
15697 (vector file (list 'find-file file) t))
15699 (defun org-check-agenda-file (file)
15700 "Make sure FILE exists. If not, ask user what to do."
15701 (when (not (file-exists-p file))
15702 (message "non-existent agenda file %s. [R]emove from list or [A]bort?"
15703 (abbreviate-file-name file))
15704 (let ((r (downcase (read-char-exclusive))))
15707 (org-remove-file file)
15708 (throw 'nextfile t))
15709 (t (error "Abort"))))))
15711 (defun org-get-agenda-file-buffer (file)
15712 "Get a buffer visiting FILE. If the buffer needs to be created, add
15713 it to the list of buffers which might be released later."
15714 (let ((buf (org-find-base-buffer-visiting file)))
15716 buf ; just return it
15717 ;; Make a new buffer and remember it
15718 (setq buf (find-file-noselect file))
15719 (if buf (push buf org-agenda-new-buffers))
15722 (defun org-release-buffers (blist)
15723 "Release all buffers in list, asking the user for confirmation when needed.
15724 When a buffer is unmodified, it is just killed. When modified, it is saved
15725 \(if the user agrees) and then killed."
15727 (while (setq buf (pop blist))
15728 (setq file (buffer-file-name buf))
15729 (when (and (buffer-modified-p buf)
15731 (y-or-n-p (format "Save file %s? " file)))
15732 (with-current-buffer buf (save-buffer)))
15733 (kill-buffer buf))))
15735 (defun org-prepare-agenda-buffers (files)
15736 "Create buffers for all agenda files, protect archived trees and comments."
15738 (let ((pa '(:org-archived t))
15739 (pc '(:org-comment t))
15740 (pall '(:org-archived t :org-comment t))
15741 (inhibit-read-only t)
15742 (rea (concat ":" org-archive-tag ":"))
15746 (while (setq file (pop files))
15750 (org-check-agenda-file file)
15751 (set-buffer (org-get-agenda-file-buffer file)))
15753 (setq bmp (buffer-modified-p))
15754 (org-refresh-category-properties)
15755 (setq org-todo-keywords-for-agenda
15756 (append org-todo-keywords-for-agenda org-todo-keywords-1))
15757 (setq org-done-keywords-for-agenda
15758 (append org-done-keywords-for-agenda org-done-keywords))
15759 (setq org-todo-keyword-alist-for-agenda
15760 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
15761 (setq org-drawers-for-agenda
15762 (append org-drawers-for-agenda org-drawers))
15763 (setq org-tag-alist-for-agenda
15764 (append org-tag-alist-for-agenda org-tag-alist))
15767 (remove-text-properties (point-min) (point-max) pall)
15768 (when org-agenda-skip-archived-trees
15769 (goto-char (point-min))
15770 (while (re-search-forward rea nil t)
15771 (if (org-on-heading-p t)
15772 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
15773 (goto-char (point-min))
15774 (setq re (concat "^\\*+ +" org-comment-string "\\>"))
15775 (while (re-search-forward re nil t)
15776 (add-text-properties
15777 (match-beginning 0) (org-end-of-subtree t) pc)))
15778 (set-buffer-modified-p bmp)))))
15779 (setq org-todo-keywords-for-agenda
15780 (org-uniquify org-todo-keywords-for-agenda))
15781 (setq org-todo-keyword-alist-for-agenda
15782 (org-uniquify org-todo-keyword-alist-for-agenda)
15783 org-tag-alist-for-agenda (org-uniquify org-tag-alist-for-agenda))))
15785 ;;;; Embedded LaTeX
15787 (defvar org-cdlatex-mode-map (make-sparse-keymap)
15788 "Keymap for the minor `org-cdlatex-mode'.")
15790 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
15791 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
15792 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
15793 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
15794 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
15796 (defvar org-cdlatex-texmathp-advice-is-done nil
15797 "Flag remembering if we have applied the advice to texmathp already.")
15799 (define-minor-mode org-cdlatex-mode
15800 "Toggle the minor `org-cdlatex-mode'.
15801 This mode supports entering LaTeX environment and math in LaTeX fragments
15803 \\{org-cdlatex-mode-map}"
15805 (when org-cdlatex-mode (require 'cdlatex))
15806 (unless org-cdlatex-texmathp-advice-is-done
15807 (setq org-cdlatex-texmathp-advice-is-done t)
15808 (defadvice texmathp (around org-math-always-on activate)
15809 "Always return t in org-mode buffers.
15810 This is because we want to insert math symbols without dollars even outside
15811 the LaTeX math segments. If Orgmode thinks that point is actually inside
15812 an embedded LaTeX fragment, let texmathp do its job.
15813 \\[org-cdlatex-mode-map]"
15817 ((not (org-mode-p)) ad-do-it)
15818 ((eq this-command 'cdlatex-math-symbol)
15819 (setq ad-return-value t
15820 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
15822 (let ((p (org-inside-LaTeX-fragment-p)))
15823 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
15824 (setq ad-return-value t
15825 texmathp-why '("Org-mode embedded math" . 0))
15826 (if p ad-do-it)))))))))
15828 (defun turn-on-org-cdlatex ()
15829 "Unconditionally turn on `org-cdlatex-mode'."
15830 (org-cdlatex-mode 1))
15832 (defun org-inside-LaTeX-fragment-p ()
15833 "Test if point is inside a LaTeX fragment.
15834 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
15835 sequence appearing also before point.
15836 Even though the matchers for math are configurable, this function assumes
15837 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
15838 delimiters are skipped when they have been removed by customization.
15839 The return value is nil, or a cons cell with the delimiter and
15840 and the position of this delimiter.
15842 This function does a reasonably good job, but can locally be fooled by
15843 for example currency specifications. For example it will assume being in
15844 inline math after \"$22.34\". The LaTeX fragment formatter will only format
15845 fragments that are properly closed, but during editing, we have to live
15846 with the uncertainty caused by missing closing delimiters. This function
15847 looks only before point, not after."
15849 (let ((pos (point))
15850 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
15852 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
15854 dd-on str (start 0) m re)
15857 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
15858 re (nth 1 (assoc "$" org-latex-regexps)))
15859 (while (string-match re str start)
15861 ((= (match-end 0) (length str))
15862 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
15863 ((= (match-end 0) (- (length str) 5))
15865 (t (setq start (match-end 0))))))
15866 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
15868 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
15869 (and (match-beginning 2) (throw 'exit nil))
15871 (while (re-search-backward "\\$\\$" lim t)
15872 (setq dd-on (not dd-on)))
15874 (if dd-on (cons "$$" m))))))
15876 (defun org-inside-latex-macro-p ()
15877 "Is point inside a LaTeX macro or its arguments?"
15880 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
15882 (defun org-try-cdlatex-tab ()
15883 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
15884 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
15885 - inside a LaTeX fragment, or
15886 - after the first word in a line, where an abbreviation expansion could
15887 insert a LaTeX environment."
15888 (when org-cdlatex-mode
15891 (skip-chars-backward "a-zA-Z0-9*")
15892 (skip-chars-backward " \t")
15895 ((org-inside-LaTeX-fragment-p)
15899 (defun org-cdlatex-underscore-caret (&optional arg)
15900 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
15901 Revert to the normal definition outside of these fragments."
15903 (if (org-inside-LaTeX-fragment-p)
15904 (call-interactively 'cdlatex-sub-superscript)
15905 (let (org-cdlatex-mode)
15906 (call-interactively (key-binding (vector last-input-event))))))
15908 (defun org-cdlatex-math-modify (&optional arg)
15909 "Execute `cdlatex-math-modify' in LaTeX fragments.
15910 Revert to the normal definition outside of these fragments."
15912 (if (org-inside-LaTeX-fragment-p)
15913 (call-interactively 'cdlatex-math-modify)
15914 (let (org-cdlatex-mode)
15915 (call-interactively (key-binding (vector last-input-event))))))
15917 (defvar org-latex-fragment-image-overlays nil
15918 "List of overlays carrying the images of latex fragments.")
15919 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
15921 (defun org-remove-latex-fragment-image-overlays ()
15922 "Remove all overlays with LaTeX fragment images in current buffer."
15923 (mapc 'delete-overlay org-latex-fragment-image-overlays)
15924 (setq org-latex-fragment-image-overlays nil))
15926 (defun org-preview-latex-fragment (&optional subtree)
15927 "Preview the LaTeX fragment at point, or all locally or globally.
15928 If the cursor is in a LaTeX fragment, create the image and overlay
15929 it over the source code. If there is no fragment at point, display
15930 all fragments in the current text, from one headline to the next. With
15931 prefix SUBTREE, display all fragments in the current subtree. With a
15932 double prefix arg \\[universal-argument] \\[universal-argument], or when \
15933 the cursor is before the first headline,
15934 display all fragments in the buffer.
15935 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
15937 (org-remove-latex-fragment-image-overlays)
15940 (let (beg end at msg)
15942 ((or (equal subtree '(16))
15943 (not (save-excursion
15944 (re-search-backward (concat "^" outline-regexp) nil t))))
15945 (setq beg (point-min) end (point-max)
15946 msg "Creating images for buffer...%s"))
15947 ((equal subtree '(4))
15948 (org-back-to-heading)
15949 (setq beg (point) end (org-end-of-subtree t)
15950 msg "Creating images for subtree...%s"))
15952 (if (setq at (org-inside-LaTeX-fragment-p))
15953 (goto-char (max (point-min) (- (cdr at) 2)))
15954 (org-back-to-heading))
15955 (setq beg (point) end (progn (outline-next-heading) (point))
15956 msg (if at "Creating image...%s"
15957 "Creating images for entry...%s"))))
15959 (narrow-to-region beg end)
15962 (concat "ltxpng/" (file-name-sans-extension
15963 (file-name-nondirectory
15964 buffer-file-name)))
15965 default-directory 'overlays msg at 'forbuffer 'dvipng)
15966 (message msg "done. Use `C-c C-c' to remove images.")))))
15968 (defvar org-latex-regexps
15969 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
15970 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
15971 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
15972 ("$1" "\\([^$]\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
15973 ("$" "\\([^$]\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
15974 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
15975 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
15976 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
15977 "Regular expressions for matching embedded LaTeX.")
15979 (defvar org-export-have-math nil) ;; dynamic scoping
15980 (defun org-format-latex (prefix &optional dir overlays msg at
15981 forbuffer processing-type)
15982 "Replace LaTeX fragments with links to an image, and produce images.
15983 Some of the options can be changed using the variable
15984 `org-format-latex-options'."
15985 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
15986 (let* ((prefixnodir (file-name-nondirectory prefix))
15987 (absprefix (expand-file-name prefix dir))
15988 (todir (file-name-directory absprefix))
15989 (opt org-format-latex-options)
15990 (matchers (plist-get opt :matchers))
15991 (re-list org-latex-regexps)
15992 (org-format-latex-header-extra
15993 (plist-get (org-infile-export-plist) :latex-header-extra))
15994 (cnt 0) txt hash link beg end re e checkdir
15995 executables-checked string
15996 m n block linkfile movefile ov)
15997 ;; Check the different regular expressions
15998 (while (setq e (pop re-list))
15999 (setq m (car e) re (nth 1 e) n (nth 2 e)
16000 block (if (nth 3 e) "\n\n" ""))
16001 (when (member m matchers)
16002 (goto-char (point-min))
16003 (while (re-search-forward re nil t)
16004 (when (and (or (not at) (equal (cdr at) (match-beginning n)))
16005 (not (get-text-property (match-beginning n)
16008 (not (eq (get-char-property (match-beginning n)
16010 'org-latex-overlay))))
16011 (setq org-export-have-math t)
16013 ((eq processing-type 'verbatim)
16014 ;; Leave the text verbatim, just protect it
16015 (add-text-properties (match-beginning n) (match-end n)
16016 '(org-protected t)))
16017 ((eq processing-type 'mathjax)
16018 ;; Prepare for MathJax processing
16019 (setq string (match-string n))
16020 (if (member m '("$" "$1"))
16022 (delete-region (match-beginning n) (match-end n))
16023 (goto-char (match-beginning n))
16024 (insert (org-add-props (concat "\\(" (substring string 1 -1)
16026 '(org-protected t))))
16027 (add-text-properties (match-beginning n) (match-end n)
16028 '(org-protected t))))
16029 ((or (eq processing-type 'dvipng) t)
16030 ;; Process to an image
16031 (setq txt (match-string n)
16032 beg (match-beginning n) end (match-end n)
16034 (let (print-length print-level) ; make sure full list is printed
16035 (setq hash (sha1 (prin1-to-string
16036 (list org-format-latex-header
16037 org-format-latex-header-extra
16038 org-export-latex-default-packages-alist
16039 org-export-latex-packages-alist
16040 org-format-latex-options
16042 linkfile (format "%s_%s.png" prefix hash)
16043 movefile (format "%s_%s.png" absprefix hash)))
16044 (setq link (concat block "[[file:" linkfile "]]" block))
16045 (if msg (message msg cnt))
16047 (unless checkdir ; make sure the directory exists
16049 (or (file-directory-p todir) (make-directory todir t)))
16051 (unless executables-checked
16052 (org-check-external-command
16053 "latex" "needed to convert LaTeX fragments to images")
16054 (org-check-external-command
16055 "dvipng" "needed to convert LaTeX fragments to images")
16056 (setq executables-checked t))
16058 (unless (file-exists-p movefile)
16059 (org-create-formula-image
16060 txt movefile opt forbuffer))
16064 (if (eq (overlay-get o 'org-overlay-type)
16065 'org-latex-overlay)
16066 (delete-overlay o)))
16067 (overlays-in beg end))
16068 (setq ov (make-overlay beg end))
16069 (overlay-put ov 'org-overlay-type 'org-latex-overlay)
16070 (if (featurep 'xemacs)
16072 (overlay-put ov 'invisible t)
16075 (make-glyph (vector 'png :file movefile))))
16078 (list 'image :type 'png :file movefile :ascent 'center)))
16079 (push ov org-latex-fragment-image-overlays)
16081 (delete-region beg end)
16082 (insert (org-add-props link
16083 (list 'org-latex-src
16084 (replace-regexp-in-string
16085 "\"" "" txt)))))))))))))
16087 ;; This function borrows from Ganesh Swami's latex2png.el
16088 (defun org-create-formula-image (string tofile options buffer)
16089 "This calls dvipng."
16090 (require 'org-latex)
16091 (let* ((tmpdir (if (featurep 'xemacs)
16093 temporary-file-directory))
16094 (texfilebase (make-temp-name
16095 (expand-file-name "orgtex" tmpdir)))
16096 (texfile (concat texfilebase ".tex"))
16097 (dvifile (concat texfilebase ".dvi"))
16098 (pngfile (concat texfilebase ".png"))
16099 (fnh (if (featurep 'xemacs)
16100 (font-height (get-face-font 'default))
16101 (face-attribute 'default :height nil)))
16102 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
16103 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
16104 (fg (or (plist-get options (if buffer :foreground :html-foreground))
16106 (bg (or (plist-get options (if buffer :background :html-background))
16108 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground)))
16109 (if (eq bg 'default) (setq bg (org-dvipng-color :background)))
16110 (with-temp-file texfile
16111 (insert (org-splice-latex-header
16112 org-format-latex-header
16113 org-export-latex-default-packages-alist
16114 org-export-latex-packages-alist t
16115 org-format-latex-header-extra))
16116 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")
16117 (require 'org-latex)
16118 (org-export-latex-fix-inputenc))
16119 (let ((dir default-directory))
16120 (condition-case nil
16123 (call-process "latex" nil nil nil texfile))
16126 (if (not (file-exists-p dvifile))
16127 (progn (message "Failed to create dvi file from %s" texfile) nil)
16128 (condition-case nil
16129 (call-process "dvipng" nil nil nil
16132 ;;"-x" scale "-y" scale
16137 (if (not (file-exists-p pngfile))
16138 (if org-format-latex-signal-error
16139 (error "Failed to create png file from %s" texfile)
16140 (message "Failed to create png file from %s" texfile)
16142 ;; Use the requested file name and clean up
16143 (copy-file pngfile tofile 'replace)
16144 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png") do
16145 (delete-file (concat texfilebase e)))
16148 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
16149 "Fill a LaTeX header template TPL.
16150 In the template, the following place holders will be recognized:
16152 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
16153 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
16154 [PACKAGES] \\usepackage statements for PKG
16155 [NO-PACKAGES] do not include PKG
16156 [EXTRA] the string EXTRA
16157 [NO-EXTRA] do not include EXTRA
16159 For backward compatibility, if both the positive and the negative place
16160 holder is missing, the positive one (without the \"NO-\") will be
16161 assumed to be present at the end of the template.
16162 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
16164 SNIPPETS-P indicates if this is run to create snippet images for HTML."
16165 (let (rpl (end ""))
16166 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
16167 (setq rpl (if (or (match-end 1) (not def-pkg))
16168 "" (org-latex-packages-to-string def-pkg snippets-p t))
16169 tpl (replace-match rpl t t tpl))
16170 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
16172 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
16173 (setq rpl (if (or (match-end 1) (not pkg))
16174 "" (org-latex-packages-to-string pkg snippets-p t))
16175 tpl (replace-match rpl t t tpl))
16178 (org-latex-packages-to-string pkg snippets-p)))))
16180 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
16181 (setq rpl (if (or (match-end 1) (not extra))
16182 "" (concat extra "\n"))
16183 tpl (replace-match rpl t t tpl))
16184 (if (and extra (string-match "\\S-" extra))
16185 (setq end (concat end "\n" extra))))
16187 (if (string-match "\\S-" end)
16188 (concat tpl "\n" end)
16191 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
16192 "Turn an alist of packages into a string with the \\usepackage macros."
16193 (setq pkg (mapconcat (lambda(p)
16196 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
16197 (format "%% Package %s omitted" (cadr p)))
16198 ((equal "" (car p))
16199 (format "\\usepackage{%s}" (cadr p)))
16201 (format "\\usepackage[%s]{%s}"
16202 (car p) (cadr p)))))
16205 (if newline (concat pkg "\n") pkg))
16207 (defun org-dvipng-color (attr)
16208 "Return an rgb color specification for dvipng."
16209 (apply 'format "rgb %s %s %s"
16210 (mapcar 'org-normalize-color
16211 (color-values (face-attribute 'default attr nil)))))
16213 (defun org-normalize-color (value)
16214 "Return string to be used as color value for an RGB component."
16215 (format "%g" (/ value 65535.0)))
16220 (defvar org-inline-image-overlays nil)
16221 (make-variable-buffer-local 'org-inline-image-overlays)
16223 (defun org-toggle-inline-images (&optional include-linked)
16224 "Toggle the display of inline images.
16225 INCLUDE-LINKED is passed to `org-display-inline-images'."
16227 (if org-inline-image-overlays
16229 (org-remove-inline-images)
16230 (message "Inline image display turned off"))
16231 (org-display-inline-images include-linked)
16232 (if org-inline-image-overlays
16233 (message "%d images displayed inline"
16234 (length org-inline-image-overlays))
16235 (message "No images to display inline"))))
16237 (defun org-display-inline-images (&optional include-linked refresh beg end)
16238 "Display inline images.
16239 Normally only links without a description part are inlined, because this
16240 is how it will work for export. When INCLUDE-LINKED is set, also links
16241 with a description part will be inlined. This can be nice for a quick
16242 look at those images, but it does not reflect what exported files will look
16244 When REFRESH is set, refresh existing images between BEG and END.
16245 This will create new image displays only if necessary.
16246 BEG and END default to the buffer boundaries."
16249 (org-remove-inline-images)
16250 (if (fboundp 'clear-image-cache) (clear-image-cache)))
16254 (setq beg (or beg (point-min)) end (or end (point-max)))
16255 (goto-char (point-min))
16256 (let ((re (concat "\\[\\[\\(\\(file:\\)\\|\\([./~]\\)\\)\\([^]\n]+?"
16257 (substring (org-image-file-name-regexp) 0 -2)
16258 "\\)\\]" (if include-linked "" "\\]")))
16260 (while (re-search-forward re end t)
16261 (setq old (get-char-property-and-overlay (match-beginning 1)
16262 'org-image-overlay))
16263 (setq file (expand-file-name
16264 (concat (or (match-string 3) "") (match-string 4))))
16265 (when (file-exists-p file)
16266 (if (and (car-safe old) refresh)
16267 (image-refresh (overlay-get (cdr old) 'display))
16268 (setq img (save-match-data (create-image file)))
16270 (setq ov (make-overlay (match-beginning 0) (match-end 0)))
16271 (overlay-put ov 'display img)
16272 (overlay-put ov 'face 'default)
16273 (overlay-put ov 'org-image-overlay t)
16274 (overlay-put ov 'modification-hooks
16275 (list 'org-display-inline-modification-hook))
16276 (push ov org-inline-image-overlays)))))))))
16278 (defun org-display-inline-modification-hook (ov after beg end &optional len)
16279 "Remove inline-display overlay if a corresponding region is modified."
16280 (let ((inhibit-modification-hooks t))
16281 (when (and ov after)
16282 (delete ov org-inline-image-overlays)
16283 (delete-overlay ov))))
16285 (defun org-remove-inline-images ()
16286 "Remove inline display of images."
16288 (mapc 'delete-overlay org-inline-image-overlays)
16289 (setq org-inline-image-overlays nil))
16293 ;; Make `C-c C-x' a prefix key
16294 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
16296 ;; TAB key with modifiers
16297 (org-defkey org-mode-map "\C-i" 'org-cycle)
16298 (org-defkey org-mode-map [(tab)] 'org-cycle)
16299 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
16300 (org-defkey org-mode-map [(meta tab)] 'pcomplete)
16301 (org-defkey org-mode-map "\M-\t" 'pcomplete)
16302 (org-defkey org-mode-map "\M-\C-i" 'pcomplete)
16303 ;; The following line is necessary under Suse GNU/Linux
16304 (unless (featurep 'xemacs)
16305 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
16306 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
16307 (define-key org-mode-map [backtab] 'org-shifttab)
16309 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
16310 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
16311 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
16313 ;; Cursor keys with modifiers
16314 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
16315 (org-defkey org-mode-map [(meta right)] 'org-metaright)
16316 (org-defkey org-mode-map [(meta up)] 'org-metaup)
16317 (org-defkey org-mode-map [(meta down)] 'org-metadown)
16319 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
16320 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
16321 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
16322 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
16324 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
16325 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
16326 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
16327 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
16329 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
16330 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
16333 (define-key org-mode-map org-babel-key-prefix org-babel-map)
16334 (mapc (lambda (pair)
16335 (define-key org-babel-map (car pair) (cdr pair)))
16336 org-babel-key-bindings)
16338 ;;; Extra keys for tty access.
16339 ;; We only set them when really needed because otherwise the
16340 ;; menus don't show the simple keys
16342 (when (or org-use-extra-keys
16343 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
16344 (not window-system))
16345 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
16346 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
16347 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
16348 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
16349 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
16350 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
16351 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
16352 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
16353 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
16354 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
16355 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
16356 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
16357 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
16358 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
16359 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
16360 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
16361 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
16362 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
16363 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
16364 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
16365 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
16366 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
16367 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
16368 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
16369 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
16370 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
16371 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
16372 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
16374 ;; All the other keys
16376 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
16377 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
16378 (if (boundp 'narrow-map)
16379 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
16380 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
16381 (if (boundp 'narrow-map)
16382 (org-defkey narrow-map "b" 'org-narrow-to-block)
16383 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
16384 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-same-level)
16385 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-same-level)
16386 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
16387 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
16388 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
16389 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
16390 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
16391 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
16392 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
16393 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
16394 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
16395 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
16396 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
16397 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
16398 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
16399 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
16400 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
16401 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
16402 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
16403 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
16404 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
16405 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
16406 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
16407 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
16408 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
16409 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
16410 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
16411 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
16412 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
16413 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
16414 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
16415 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
16416 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
16417 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
16418 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
16419 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
16420 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
16421 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
16422 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
16423 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
16424 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
16425 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
16426 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
16427 (org-defkey org-mode-map "\C-c^" 'org-sort)
16428 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
16429 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
16430 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
16431 (org-defkey org-mode-map "\C-m" 'org-return)
16432 (org-defkey org-mode-map "\C-j" 'org-return-indent)
16433 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
16434 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
16435 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
16436 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
16437 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
16438 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
16439 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
16440 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
16441 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
16442 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
16443 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
16444 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
16445 (org-defkey org-mode-map "\C-c\C-e" 'org-export)
16446 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section)
16447 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
16448 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
16449 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
16450 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
16451 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
16452 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
16453 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
16455 (org-defkey org-mode-map "\C-c\C-x\C-k" 'org-mark-entry-for-agenda-action)
16456 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
16457 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
16458 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
16460 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
16461 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
16462 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
16463 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
16464 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-cancel)
16465 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
16466 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
16467 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
16468 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
16469 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
16470 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
16471 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
16472 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
16473 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
16474 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
16475 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
16476 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
16477 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
16479 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
16480 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
16481 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
16482 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
16483 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
16485 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
16487 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
16489 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
16490 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
16492 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
16495 (when (featurep 'xemacs)
16496 (org-defkey org-mode-map 'button3 'popup-mode-menu))
16499 (defconst org-speed-commands-default
16501 ("Outline Navigation")
16502 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
16503 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
16504 ("f" . (org-speed-move-safe 'org-forward-same-level))
16505 ("b" . (org-speed-move-safe 'org-backward-same-level))
16506 ("u" . (org-speed-move-safe 'outline-up-heading))
16508 ("g" . (org-refile t))
16509 ("Outline Visibility")
16511 ("C" . org-shifttab)
16512 (" " . org-display-outline-path)
16513 ("Outline Structure Editing")
16514 ("U" . org-shiftmetaup)
16515 ("D" . org-shiftmetadown)
16516 ("r" . org-metaright)
16517 ("l" . org-metaleft)
16518 ("R" . org-shiftmetaright)
16519 ("L" . org-shiftmetaleft)
16520 ("i" . (progn (forward-char 1) (call-interactively
16521 'org-insert-heading-respect-content)))
16524 ("a" . org-archive-subtree-default-with-confirmation)
16525 ("." . org-mark-subtree)
16527 ("I" . org-clock-in)
16528 ("O" . org-clock-out)
16529 ("Meta Data Editing")
16531 ("0" . (org-priority ?\ ))
16532 ("1" . (org-priority ?A))
16533 ("2" . (org-priority ?B))
16534 ("3" . (org-priority ?C))
16535 (";" . org-set-tags-command)
16536 ("e" . org-set-effort)
16537 ("Agenda Views etc")
16539 ("/" . org-sparse-tree)
16541 ("o" . org-open-at-point)
16542 ("?" . org-speed-command-help)
16543 ("<" . (org-agenda-set-restriction-lock 'subtree))
16544 (">" . (org-agenda-remove-restriction-lock))
16546 "The default speed commands.")
16548 (defun org-print-speed-command (e)
16549 (if (> (length (car e)) 1)
16554 (princ (make-string (length (car e)) ?-))
16558 (if (symbolp (cdr e))
16559 (princ (symbol-name (cdr e)))
16563 (defun org-speed-command-help ()
16564 "Show the available speed commands."
16566 (if (not org-use-speed-commands)
16567 (error "Speed commands are not activated, customize `org-use-speed-commands'")
16568 (with-output-to-temp-buffer "*Help*"
16569 (princ "User-defined Speed commands\n===========================\n")
16570 (mapc 'org-print-speed-command org-speed-commands-user)
16572 (princ "Built-in Speed commands\n=======================\n")
16573 (mapc 'org-print-speed-command org-speed-commands-default))
16574 (with-current-buffer "*Help*"
16575 (setq truncate-lines t))))
16577 (defun org-speed-move-safe (cmd)
16578 "Execute CMD, but make sure that the cursor always ends up in a headline.
16579 If not, return to the original position and throw an error."
16581 (let ((pos (point)))
16582 (call-interactively cmd)
16583 (unless (and (bolp) (org-on-heading-p))
16585 (error "Boundary reached while executing %s" cmd))))
16587 (defvar org-self-insert-command-undo-counter 0)
16589 (defvar org-table-auto-blank-field) ; defined in org-table.el
16590 (defvar org-speed-command nil)
16592 (defun org-speed-command-default-hook (keys)
16593 "Hook for activating single-letter speed commands.
16594 `org-speed-commands-default' specifies a minimal command set. Use
16595 `org-speed-commands-user' for further customization."
16596 (when (or (and (bolp) (looking-at outline-regexp))
16597 (and (functionp org-use-speed-commands)
16598 (funcall org-use-speed-commands)))
16599 (cdr (assoc keys (append org-speed-commands-user
16600 org-speed-commands-default)))))
16602 (defun org-babel-speed-command-hook (keys)
16603 "Hook for activating single-letter code block commands."
16604 (when (and (bolp) (looking-at org-babel-src-block-regexp))
16605 (cdr (assoc keys org-babel-key-bindings))))
16607 (defcustom org-speed-command-hook
16608 '(org-speed-command-default-hook org-babel-speed-command-hook)
16609 "Hook for activating speed commands at strategic locations.
16610 Hook functions are called in sequence until a valid handler is
16613 Each hook takes a single argument, a user-pressed command key
16614 which is also a `self-insert-command' from the global map.
16616 Within the hook, examine the cursor position and the command key
16617 and return nil or a valid handler as appropriate. Handler could
16618 be one of an interactive command, a function, or a form.
16620 Set `org-use-speed-commands' to non-nil value to enable this
16621 hook. The default setting is `org-speed-command-default-hook'."
16622 :group 'org-structure
16625 (defun org-self-insert-command (N)
16626 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
16627 If the cursor is in a table looking at whitespace, the whitespace is
16628 overwritten, and the table is not marked as requiring realignment."
16631 ((and org-use-speed-commands
16632 (setq org-speed-command
16633 (run-hook-with-args-until-success
16634 'org-speed-command-hook (this-command-keys))))
16636 ((commandp org-speed-command)
16637 (setq this-command org-speed-command)
16638 (call-interactively org-speed-command))
16639 ((functionp org-speed-command)
16640 (funcall org-speed-command))
16641 ((and org-speed-command (listp org-speed-command))
16642 (eval org-speed-command))
16643 (t (let (org-use-speed-commands)
16644 (call-interactively 'org-self-insert-command)))))
16648 ;; check if we blank the field, and if that triggers align
16649 (and (featurep 'org-table) org-table-auto-blank-field
16650 (member last-command
16651 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand))
16652 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
16653 ;; got extra space, this field does not determine column width
16654 (let (org-table-may-need-update) (org-table-blank-field))
16655 ;; no extra space, this field may determine column width
16656 (org-table-blank-field)))
16659 (looking-at "[^|\n]* |"))
16660 (let (org-table-may-need-update)
16661 (goto-char (1- (match-end 0)))
16662 (delete-backward-char 1)
16663 (goto-char (match-beginning 0))
16664 (self-insert-command N)))
16666 (setq org-table-may-need-update t)
16667 (self-insert-command N)
16668 (org-fix-tags-on-the-fly)
16669 (if org-self-insert-cluster-for-undo
16670 (if (not (eq last-command 'org-self-insert-command))
16671 (setq org-self-insert-command-undo-counter 1)
16672 (if (>= org-self-insert-command-undo-counter 20)
16673 (setq org-self-insert-command-undo-counter 1)
16674 (and (> org-self-insert-command-undo-counter 0)
16676 (not (cadr buffer-undo-list)) ; remove nil entry
16677 (setcdr buffer-undo-list (cddr buffer-undo-list)))
16678 (setq org-self-insert-command-undo-counter
16679 (1+ org-self-insert-command-undo-counter))))))))
16681 (defun org-fix-tags-on-the-fly ()
16682 (when (and (equal (char-after (point-at-bol)) ?*)
16683 (org-on-heading-p))
16684 (org-align-tags-here org-tags-column)))
16686 (defun org-delete-backward-char (N)
16687 "Like `delete-backward-char', insert whitespace at field end in tables.
16688 When deleting backwards, in tables this function will insert whitespace in
16689 front of the next \"|\" separator, to keep the table aligned. The table will
16690 still be marked for re-alignment if the field did fill the entire column,
16691 because, in this case the deletion might narrow the column."
16693 (if (and (org-table-p)
16695 (string-match "|" (buffer-substring (point-at-bol) (point)))
16696 (looking-at ".*?|"))
16697 (let ((pos (point))
16698 (noalign (looking-at "[^|\n\r]* |"))
16699 (c org-table-may-need-update))
16700 (backward-delete-char N)
16701 (if (not overwrite-mode)
16703 (skip-chars-forward "^|")
16705 (goto-char (1- pos))))
16706 ;; noalign: if there were two spaces at the end, this field
16707 ;; does not determine the width of the column.
16708 (if noalign (setq org-table-may-need-update c)))
16709 (backward-delete-char N)
16710 (org-fix-tags-on-the-fly)))
16712 (defun org-delete-char (N)
16713 "Like `delete-char', but insert whitespace at field end in tables.
16714 When deleting characters, in tables this function will insert whitespace in
16715 front of the next \"|\" separator, to keep the table aligned. The table will
16716 still be marked for re-alignment if the field did fill the entire column,
16717 because, in this case the deletion might narrow the column."
16719 (if (and (org-table-p)
16721 (not (= (char-after) ?|))
16723 (if (looking-at ".*?|")
16724 (let ((pos (point))
16725 (noalign (looking-at "[^|\n\r]* |"))
16726 (c org-table-may-need-update))
16727 (replace-match (concat
16728 (substring (match-string 0) 1 -1)
16731 ;; noalign: if there were two spaces at the end, this field
16732 ;; does not determine the width of the column.
16733 (if noalign (setq org-table-may-need-update c)))
16736 (org-fix-tags-on-the-fly)))
16738 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
16739 (put 'org-self-insert-command 'delete-selection t)
16740 (put 'orgtbl-self-insert-command 'delete-selection t)
16741 (put 'org-delete-char 'delete-selection 'supersede)
16742 (put 'org-delete-backward-char 'delete-selection 'supersede)
16743 (put 'org-yank 'delete-selection 'yank)
16745 ;; Make `flyspell-mode' delay after some commands
16746 (put 'org-self-insert-command 'flyspell-delayed t)
16747 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
16748 (put 'org-delete-char 'flyspell-delayed t)
16749 (put 'org-delete-backward-char 'flyspell-delayed t)
16751 ;; Make pabbrev-mode expand after org-mode commands
16752 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
16753 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
16755 ;; How to do this: Measure non-white length of current string
16756 ;; If equal to column width, we should realign.
16758 (defun org-remap (map &rest commands)
16759 "In MAP, remap the functions given in COMMANDS.
16760 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
16763 (setq old (pop commands) new (pop commands))
16764 (if (fboundp 'command-remapping)
16765 (org-defkey map (vector 'remap old) new)
16766 (substitute-key-definition old new map global-map)))))
16768 (when (eq org-enable-table-editor 'optimized)
16769 ;; If the user wants maximum table support, we need to hijack
16770 ;; some standard editing functions
16771 (org-remap org-mode-map
16772 'self-insert-command 'org-self-insert-command
16773 'delete-char 'org-delete-char
16774 'delete-backward-char 'org-delete-backward-char)
16775 (org-defkey org-mode-map "|" 'org-force-self-insert))
16777 (defvar org-ctrl-c-ctrl-c-hook nil
16778 "Hook for functions attaching themselves to `C-c C-c'.
16779 This can be used to add additional functionality to the C-c C-c key which
16780 executes context-dependent commands.
16781 Each function will be called with no arguments. The function must check
16782 if the context is appropriate for it to act. If yes, it should do its
16783 thing and then return a non-nil value. If the context is wrong,
16784 just do nothing and return nil.")
16786 (defvar org-tab-first-hook nil
16787 "Hook for functions to attach themselves to TAB.
16788 See `org-ctrl-c-ctrl-c-hook' for more information.
16789 This hook runs as the first action when TAB is pressed, even before
16790 `org-cycle' messes around with the `outline-regexp' to cater for
16791 inline tasks and plain list item folding.
16792 If any function in this hook returns t, any other actions that
16793 would have been caused by TAB (such as table field motion or visibility
16794 cycling) will not occur.")
16796 (defvar org-tab-after-check-for-table-hook nil
16797 "Hook for functions to attach themselves to TAB.
16798 See `org-ctrl-c-ctrl-c-hook' for more information.
16799 This hook runs after it has been established that the cursor is not in a
16800 table, but before checking if the cursor is in a headline or if global cycling
16802 If any function in this hook returns t, not other actions like visibility
16803 cycling will be done.")
16805 (defvar org-tab-after-check-for-cycling-hook nil
16806 "Hook for functions to attach themselves to TAB.
16807 See `org-ctrl-c-ctrl-c-hook' for more information.
16808 This hook runs after it has been established that not table field motion and
16809 not visibility should be done because of current context. This is probably
16810 the place where a package like yasnippets can hook in.")
16812 (defvar org-tab-before-tab-emulation-hook nil
16813 "Hook for functions to attach themselves to TAB.
16814 See `org-ctrl-c-ctrl-c-hook' for more information.
16815 This hook runs after every other options for TAB have been exhausted, but
16816 before indentation and \t insertion takes place.")
16818 (defvar org-metaleft-hook nil
16819 "Hook for functions attaching themselves to `M-left'.
16820 See `org-ctrl-c-ctrl-c-hook' for more information.")
16821 (defvar org-metaright-hook nil
16822 "Hook for functions attaching themselves to `M-right'.
16823 See `org-ctrl-c-ctrl-c-hook' for more information.")
16824 (defvar org-metaup-hook nil
16825 "Hook for functions attaching themselves to `M-up'.
16826 See `org-ctrl-c-ctrl-c-hook' for more information.")
16827 (defvar org-metadown-hook nil
16828 "Hook for functions attaching themselves to `M-down'.
16829 See `org-ctrl-c-ctrl-c-hook' for more information.")
16830 (defvar org-shiftmetaleft-hook nil
16831 "Hook for functions attaching themselves to `M-S-left'.
16832 See `org-ctrl-c-ctrl-c-hook' for more information.")
16833 (defvar org-shiftmetaright-hook nil
16834 "Hook for functions attaching themselves to `M-S-right'.
16835 See `org-ctrl-c-ctrl-c-hook' for more information.")
16836 (defvar org-shiftmetaup-hook nil
16837 "Hook for functions attaching themselves to `M-S-up'.
16838 See `org-ctrl-c-ctrl-c-hook' for more information.")
16839 (defvar org-shiftmetadown-hook nil
16840 "Hook for functions attaching themselves to `M-S-down'.
16841 See `org-ctrl-c-ctrl-c-hook' for more information.")
16842 (defvar org-metareturn-hook nil
16843 "Hook for functions attaching themselves to `M-RET'.
16844 See `org-ctrl-c-ctrl-c-hook' for more information.")
16845 (defvar org-shiftup-hook nil
16846 "Hook for functions attaching themselves to `S-up'.
16847 See `org-ctrl-c-ctrl-c-hook' for more information.")
16848 (defvar org-shiftup-final-hook nil
16849 "Hook for functions attaching themselves to `S-up'.
16850 This one runs after all other options except shift-select have been excluded.
16851 See `org-ctrl-c-ctrl-c-hook' for more information.")
16852 (defvar org-shiftdown-hook nil
16853 "Hook for functions attaching themselves to `S-down'.
16854 See `org-ctrl-c-ctrl-c-hook' for more information.")
16855 (defvar org-shiftdown-final-hook nil
16856 "Hook for functions attaching themselves to `S-down'.
16857 This one runs after all other options except shift-select have been excluded.
16858 See `org-ctrl-c-ctrl-c-hook' for more information.")
16859 (defvar org-shiftleft-hook nil
16860 "Hook for functions attaching themselves to `S-left'.
16861 See `org-ctrl-c-ctrl-c-hook' for more information.")
16862 (defvar org-shiftleft-final-hook nil
16863 "Hook for functions attaching themselves to `S-left'.
16864 This one runs after all other options except shift-select have been excluded.
16865 See `org-ctrl-c-ctrl-c-hook' for more information.")
16866 (defvar org-shiftright-hook nil
16867 "Hook for functions attaching themselves to `S-right'.
16868 See `org-ctrl-c-ctrl-c-hook' for more information.")
16869 (defvar org-shiftright-final-hook nil
16870 "Hook for functions attaching themselves to `S-right'.
16871 This one runs after all other options except shift-select have been excluded.
16872 See `org-ctrl-c-ctrl-c-hook' for more information.")
16874 (defun org-modifier-cursor-error ()
16875 "Throw an error, a modified cursor command was applied in wrong context."
16876 (error "This command is active in special context like tables, headlines or items"))
16878 (defun org-shiftselect-error ()
16879 "Throw an error because Shift-Cursor command was applied in wrong context."
16880 (if (and (boundp 'shift-select-mode) shift-select-mode)
16881 (error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
16882 (error "This command works only in special context like headlines or timestamps")))
16884 (defun org-call-for-shift-select (cmd)
16885 (let ((this-command-keys-shift-translated t))
16886 (call-interactively cmd)))
16888 (defun org-shifttab (&optional arg)
16889 "Global visibility cycling or move to previous table field.
16890 Calls `org-cycle' with argument t, or `org-table-previous-field', depending
16892 See the individual commands for more information."
16895 ((org-at-table-p) (call-interactively 'org-table-previous-field))
16897 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
16898 (message "Content view to level: %d" arg)
16899 (org-content (prefix-numeric-value arg2))
16900 (setq org-cycle-global-status 'overview)))
16901 (t (call-interactively 'org-global-cycle))))
16903 (defun org-shiftmetaleft ()
16904 "Promote subtree or delete table column.
16905 Calls `org-promote-subtree', `org-outdent-item',
16906 or `org-table-delete-column', depending on context.
16907 See the individual commands for more information."
16910 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
16911 ((org-at-table-p) (call-interactively 'org-table-delete-column))
16912 ((org-on-heading-p) (call-interactively 'org-promote-subtree))
16913 ((org-at-item-p) (call-interactively 'org-outdent-item-tree))
16914 (t (org-modifier-cursor-error))))
16916 (defun org-shiftmetaright ()
16917 "Demote subtree or insert table column.
16918 Calls `org-demote-subtree', `org-indent-item',
16919 or `org-table-insert-column', depending on context.
16920 See the individual commands for more information."
16923 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
16924 ((org-at-table-p) (call-interactively 'org-table-insert-column))
16925 ((org-on-heading-p) (call-interactively 'org-demote-subtree))
16926 ((org-at-item-p) (call-interactively 'org-indent-item-tree))
16927 (t (org-modifier-cursor-error))))
16929 (defun org-shiftmetaup (&optional arg)
16930 "Move subtree up or kill table row.
16931 Calls `org-move-subtree-up' or `org-table-kill-row' or
16932 `org-move-item-up' depending on context. See the individual commands
16933 for more information."
16936 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
16937 ((org-at-table-p) (call-interactively 'org-table-kill-row))
16938 ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
16939 ((org-at-item-p) (call-interactively 'org-move-item-up))
16940 (t (org-modifier-cursor-error))))
16942 (defun org-shiftmetadown (&optional arg)
16943 "Move subtree down or insert table row.
16944 Calls `org-move-subtree-down' or `org-table-insert-row' or
16945 `org-move-item-down', depending on context. See the individual
16946 commands for more information."
16949 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
16950 ((org-at-table-p) (call-interactively 'org-table-insert-row))
16951 ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
16952 ((org-at-item-p) (call-interactively 'org-move-item-down))
16953 (t (org-modifier-cursor-error))))
16955 (defsubst org-hidden-tree-error ()
16957 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
16959 (defun org-metaleft (&optional arg)
16960 "Promote heading or move table column to left.
16961 Calls `org-do-promote' or `org-table-move-column', depending on context.
16962 With no specific context, calls the Emacs default `backward-word'.
16963 See the individual commands for more information."
16966 ((run-hook-with-args-until-success 'org-metaleft-hook))
16967 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
16968 ((or (org-on-heading-p)
16969 (and (org-region-active-p)
16971 (goto-char (region-beginning))
16972 (org-on-heading-p))))
16973 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
16974 (call-interactively 'org-do-promote))
16975 ((or (org-at-item-p)
16976 (and (org-region-active-p)
16978 (goto-char (region-beginning))
16980 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
16981 (call-interactively 'org-outdent-item))
16982 (t (call-interactively 'backward-word))))
16984 (defun org-metaright (&optional arg)
16985 "Demote subtree or move table column to right.
16986 Calls `org-do-demote' or `org-table-move-column', depending on context.
16987 With no specific context, calls the Emacs default `forward-word'.
16988 See the individual commands for more information."
16991 ((run-hook-with-args-until-success 'org-metaright-hook))
16992 ((org-at-table-p) (call-interactively 'org-table-move-column))
16993 ((or (org-on-heading-p)
16994 (and (org-region-active-p)
16996 (goto-char (region-beginning))
16997 (org-on-heading-p))))
16998 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
16999 (call-interactively 'org-do-demote))
17000 ((or (org-at-item-p)
17001 (and (org-region-active-p)
17003 (goto-char (region-beginning))
17005 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
17006 (call-interactively 'org-indent-item))
17007 (t (call-interactively 'forward-word))))
17009 (defun org-check-for-hidden (what)
17010 "Check if there are hidden headlines/items in the current visual line.
17011 WHAT can be either `headlines' or `items'. If the current line is
17012 an outline or item heading and it has a folded subtree below it,
17013 this function returns t, nil otherwise."
17015 ((eq what 'headlines) (concat "^" org-outline-regexp))
17016 ((eq what 'items) (concat "^" (org-item-re t)))
17017 (t (error "This should not happen"))))
17021 (unless (org-region-active-p)
17022 (setq beg (point-at-bol))
17023 (beginning-of-line 2)
17024 (while (and (not (eobp)) ;; this is like `next-line'
17025 (get-char-property (1- (point)) 'invisible))
17026 (beginning-of-line 2))
17029 (goto-char (point-at-eol))
17030 (setq end (max end (point)))
17031 (while (re-search-forward re end t)
17032 (if (get-char-property (match-beginning 0) 'invisible)
17036 (defun org-metaup (&optional arg)
17037 "Move subtree up or move table row up.
17038 Calls `org-move-subtree-up' or `org-table-move-row' or
17039 `org-move-item-up', depending on context. See the individual commands
17040 for more information."
17043 ((run-hook-with-args-until-success 'org-metaup-hook))
17044 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
17045 ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
17046 ((org-at-item-p) (call-interactively 'org-move-item-up))
17047 (t (transpose-lines 1) (beginning-of-line -1))))
17049 (defun org-metadown (&optional arg)
17050 "Move subtree down or move table row down.
17051 Calls `org-move-subtree-down' or `org-table-move-row' or
17052 `org-move-item-down', depending on context. See the individual
17053 commands for more information."
17056 ((run-hook-with-args-until-success 'org-metadown-hook))
17057 ((org-at-table-p) (call-interactively 'org-table-move-row))
17058 ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
17059 ((org-at-item-p) (call-interactively 'org-move-item-down))
17060 (t (beginning-of-line 2) (transpose-lines 1) (beginning-of-line 0))))
17062 (defun org-shiftup (&optional arg)
17063 "Increase item in timestamp or increase priority of current headline.
17064 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
17065 depending on context. See the individual commands for more information."
17068 ((run-hook-with-args-until-success 'org-shiftup-hook))
17069 ((and org-support-shift-select (org-region-active-p))
17070 (org-call-for-shift-select 'previous-line))
17071 ((org-at-timestamp-p t)
17072 (call-interactively (if org-edit-timestamp-down-means-later
17073 'org-timestamp-down 'org-timestamp-up)))
17074 ((and (not (eq org-support-shift-select 'always))
17075 org-enable-priority-commands
17076 (org-on-heading-p))
17077 (call-interactively 'org-priority-up))
17078 ((and (not org-support-shift-select) (org-at-item-p))
17079 (call-interactively 'org-previous-item))
17080 ((org-clocktable-try-shift 'up arg))
17081 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
17082 (org-support-shift-select
17083 (org-call-for-shift-select 'previous-line))
17084 (t (org-shiftselect-error))))
17086 (defun org-shiftdown (&optional arg)
17087 "Decrease item in timestamp or decrease priority of current headline.
17088 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
17089 depending on context. See the individual commands for more information."
17092 ((run-hook-with-args-until-success 'org-shiftdown-hook))
17093 ((and org-support-shift-select (org-region-active-p))
17094 (org-call-for-shift-select 'next-line))
17095 ((org-at-timestamp-p t)
17096 (call-interactively (if org-edit-timestamp-down-means-later
17097 'org-timestamp-up 'org-timestamp-down)))
17098 ((and (not (eq org-support-shift-select 'always))
17099 org-enable-priority-commands
17100 (org-on-heading-p))
17101 (call-interactively 'org-priority-down))
17102 ((and (not org-support-shift-select) (org-at-item-p))
17103 (call-interactively 'org-next-item))
17104 ((org-clocktable-try-shift 'down arg))
17105 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
17106 (org-support-shift-select
17107 (org-call-for-shift-select 'next-line))
17108 (t (org-shiftselect-error))))
17110 (defun org-shiftright (&optional arg)
17111 "Cycle the thing at point or in the current line, depending on context.
17112 Depending on context, this does one of the following:
17114 - switch a timestamp at point one day into the future
17115 - on a headline, switch to the next TODO keyword.
17116 - on an item, switch entire list to the next bullet type
17117 - on a property line, switch to the next allowed value
17118 - on a clocktable definition line, move time block into the future"
17121 ((run-hook-with-args-until-success 'org-shiftright-hook))
17122 ((and org-support-shift-select (org-region-active-p))
17123 (org-call-for-shift-select 'forward-char))
17124 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
17125 ((and (not (eq org-support-shift-select 'always))
17126 (org-on-heading-p))
17127 (let ((org-inhibit-logging
17128 (not org-treat-S-cursor-todo-selection-as-state-change))
17129 (org-inhibit-blocking
17130 (not org-treat-S-cursor-todo-selection-as-state-change)))
17131 (org-call-with-arg 'org-todo 'right)))
17132 ((or (and org-support-shift-select
17133 (not (eq org-support-shift-select 'always))
17134 (org-at-item-bullet-p))
17135 (and (not org-support-shift-select) (org-at-item-p)))
17136 (org-call-with-arg 'org-cycle-list-bullet nil))
17137 ((and (not (eq org-support-shift-select 'always))
17138 (org-at-property-p))
17139 (call-interactively 'org-property-next-allowed-value))
17140 ((org-clocktable-try-shift 'right arg))
17141 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
17142 (org-support-shift-select
17143 (org-call-for-shift-select 'forward-char))
17144 (t (org-shiftselect-error))))
17146 (defun org-shiftleft (&optional arg)
17147 "Cycle the thing at point or in the current line, depending on context.
17148 Depending on context, this does one of the following:
17150 - switch a timestamp at point one day into the past
17151 - on a headline, switch to the previous TODO keyword.
17152 - on an item, switch entire list to the previous bullet type
17153 - on a property line, switch to the previous allowed value
17154 - on a clocktable definition line, move time block into the past"
17157 ((run-hook-with-args-until-success 'org-shiftleft-hook))
17158 ((and org-support-shift-select (org-region-active-p))
17159 (org-call-for-shift-select 'backward-char))
17160 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
17161 ((and (not (eq org-support-shift-select 'always))
17162 (org-on-heading-p))
17163 (let ((org-inhibit-logging
17164 (not org-treat-S-cursor-todo-selection-as-state-change))
17165 (org-inhibit-blocking
17166 (not org-treat-S-cursor-todo-selection-as-state-change)))
17167 (org-call-with-arg 'org-todo 'left)))
17168 ((or (and org-support-shift-select
17169 (not (eq org-support-shift-select 'always))
17170 (org-at-item-bullet-p))
17171 (and (not org-support-shift-select) (org-at-item-p)))
17172 (org-call-with-arg 'org-cycle-list-bullet 'previous))
17173 ((and (not (eq org-support-shift-select 'always))
17174 (org-at-property-p))
17175 (call-interactively 'org-property-previous-allowed-value))
17176 ((org-clocktable-try-shift 'left arg))
17177 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
17178 (org-support-shift-select
17179 (org-call-for-shift-select 'backward-char))
17180 (t (org-shiftselect-error))))
17182 (defun org-shiftcontrolright ()
17183 "Switch to next TODO set."
17186 ((and org-support-shift-select (org-region-active-p))
17187 (org-call-for-shift-select 'forward-word))
17188 ((and (not (eq org-support-shift-select 'always))
17189 (org-on-heading-p))
17190 (org-call-with-arg 'org-todo 'nextset))
17191 (org-support-shift-select
17192 (org-call-for-shift-select 'forward-word))
17193 (t (org-shiftselect-error))))
17195 (defun org-shiftcontrolleft ()
17196 "Switch to previous TODO set."
17199 ((and org-support-shift-select (org-region-active-p))
17200 (org-call-for-shift-select 'backward-word))
17201 ((and (not (eq org-support-shift-select 'always))
17202 (org-on-heading-p))
17203 (org-call-with-arg 'org-todo 'previousset))
17204 (org-support-shift-select
17205 (org-call-for-shift-select 'backward-word))
17206 (t (org-shiftselect-error))))
17208 (defun org-ctrl-c-ret ()
17209 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
17212 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
17213 (t (call-interactively 'org-insert-heading))))
17215 (defun org-copy-special ()
17216 "Copy region in table or copy current subtree.
17217 Calls `org-table-copy' or `org-copy-subtree', depending on context.
17218 See the individual commands for more information."
17220 (call-interactively
17221 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
17223 (defun org-cut-special ()
17224 "Cut region in table or cut current subtree.
17225 Calls `org-table-copy' or `org-cut-subtree', depending on context.
17226 See the individual commands for more information."
17228 (call-interactively
17229 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
17231 (defun org-paste-special (arg)
17232 "Paste rectangular region into table, or past subtree relative to level.
17233 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
17234 See the individual commands for more information."
17236 (if (org-at-table-p)
17237 (org-table-paste-rectangle)
17238 (org-paste-subtree arg)))
17240 (defun org-edit-special (&optional arg)
17241 "Call a special editor for the stuff at point.
17242 When at a table, call the formula editor with `org-table-edit-formulas'.
17243 When at the first line of an src example, call `org-edit-src-code'.
17244 When in an #+include line, visit the include file. Otherwise call
17245 `ffap' to visit the file at point."
17247 ;; possibly prep session before editing source
17249 (let* ((info (org-babel-get-src-block-info))
17250 (lang (nth 0 info))
17251 (params (nth 2 info))
17252 (session (cdr (assoc :session params))))
17253 (when (and info session) ;; we are in a source-code block with a session
17255 (intern (concat "org-babel-prep-session:" lang)) session params))))
17256 (cond ;; proceed with `org-edit-special'
17258 (beginning-of-line 1)
17259 (looking-at "\\(?:#\\+\\(?:setupfile\\|include\\):?[ \t]+\"?\\|[ \t]*<include\\>.*?file=\"\\)\\([^\"\n>]+\\)"))
17260 (find-file (org-trim (match-string 1))))
17261 ((org-edit-src-code))
17262 ((org-edit-fixed-width-region))
17263 ((org-at-table.el-p)
17264 (org-edit-src-code))
17265 ((or (org-at-table-p)
17267 (beginning-of-line 1)
17268 (looking-at "[ \t]*#\\+TBLFM:")))
17269 (call-interactively 'org-table-edit-formulas))
17270 (t (call-interactively 'ffap))))
17272 (defun org-ctrl-c-ctrl-c (&optional arg)
17273 "Set tags in headline, or update according to changed information at point.
17275 This command does many different things, depending on context:
17277 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
17278 this is what we do.
17280 - If the cursor is on a statistics cookie, update it.
17282 - If the cursor is in a headline, prompt for tags and insert them
17283 into the current line, aligned to `org-tags-column'. When called
17284 with prefix arg, realign all tags in the current buffer.
17286 - If the cursor is in one of the special #+KEYWORD lines, this
17287 triggers scanning the buffer for these lines and updating the
17290 - If the cursor is inside a table, realign the table. This command
17291 works even if the automatic table editor has been turned off.
17293 - If the cursor is on a #+TBLFM line, re-apply the formulas to
17296 - If the cursor is at a footnote reference or definition, jump to
17297 the corresponding definition or references, respectively.
17299 - If the cursor is a the beginning of a dynamic block, update it.
17301 - If the current buffer is a capture buffer, close note and file it.
17303 - If the cursor is on a <<<target>>>, update radio targets and
17304 corresponding links in this buffer.
17306 - If the cursor is on a numbered item in a plain list, renumber the
17309 - If the cursor is on a checkbox, toggle it.
17311 - If the cursor is on a code block, evaluate it. The variable
17312 `org-confirm-babel-evaluate' can be used to control prompting
17313 before code block evaluation, by default every code block
17314 evaluation requires confirmation. Code block evaluation can be
17315 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
17317 (let ((org-enable-table-editor t))
17319 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
17320 org-occur-highlights
17321 org-latex-fragment-image-overlays)
17322 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
17323 (org-remove-occur-highlights)
17324 (org-remove-latex-fragment-image-overlays)
17325 (message "Temporary highlights/overlays removed from current buffer"))
17326 ((and (local-variable-p 'org-finish-function (current-buffer))
17327 (fboundp org-finish-function))
17328 (funcall org-finish-function))
17329 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
17330 ((or (looking-at org-property-start-re)
17331 (org-at-property-p))
17332 (call-interactively 'org-property-action))
17333 ((org-on-target-p) (call-interactively 'org-update-radio-target-regexp))
17334 ((and (org-in-regexp "\\[\\([0-9]*%\\|[0-9]*/[0-9]*\\)\\]")
17335 (or (org-on-heading-p) (org-at-item-p)))
17336 (call-interactively 'org-update-statistics-cookies))
17337 ((org-on-heading-p) (call-interactively 'org-set-tags))
17338 ((org-at-table.el-p)
17339 (message "Use C-c ' to edit table.el tables"))
17341 (org-table-maybe-eval-formula)
17343 (call-interactively 'org-table-recalculate)
17344 (org-table-maybe-recalculate-line))
17345 (call-interactively 'org-table-align)
17346 (orgtbl-send-table 'maybe))
17347 ((or (org-footnote-at-reference-p)
17348 (org-footnote-at-definition-p))
17349 (call-interactively 'org-footnote-action))
17350 ((org-at-item-checkbox-p)
17351 (call-interactively 'org-list-repair)
17352 (call-interactively 'org-toggle-checkbox)
17353 (org-list-send-list 'maybe))
17355 (call-interactively 'org-list-repair)
17356 (when arg (call-interactively 'org-toggle-checkbox))
17357 (org-list-send-list 'maybe))
17358 ((save-excursion (beginning-of-line 1) (looking-at org-dblock-start-re))
17360 (beginning-of-line 1)
17361 (save-excursion (org-update-dblock)))
17363 (beginning-of-line 1)
17364 (looking-at "[ \t]*#\\+\\([A-Z]+\\)"))
17366 ((equal (match-string 1) "TBLFM")
17367 ;; Recalculate the table before this line
17369 (beginning-of-line 1)
17370 (skip-chars-backward " \r\n\t")
17371 (if (org-at-table-p)
17372 (org-call-with-arg 'org-table-recalculate (or arg t)))))
17374 (let ((org-inhibit-startup-visibility-stuff t)
17375 (org-startup-align-all-tables nil))
17376 (org-save-outline-visibility 'use-markers (org-mode-restart)))
17377 (message "Local setup has been refreshed"))))
17378 ((org-clock-update-time-maybe))
17379 (t (error "C-c C-c can do nothing useful at this location")))))
17381 (defun org-mode-restart ()
17382 "Restart Org-mode, to scan again for special lines.
17383 Also updates the keyword regular expressions."
17386 (message "Org-mode restarted"))
17388 (defun org-kill-note-or-show-branches ()
17389 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
17391 (if (not org-finish-function)
17394 (call-interactively 'show-branches))
17395 (let ((org-note-abort t))
17396 (funcall org-finish-function))))
17398 (defun org-return (&optional indent)
17399 "Goto next table row or insert a newline.
17400 Calls `org-table-next-row' or `newline', depending on context.
17401 See the individual commands for more information."
17404 ((bobp) (if indent (newline-and-indent) (newline)))
17406 (org-table-justify-field-maybe)
17407 (call-interactively 'org-table-next-row))
17408 ((and org-return-follows-link
17409 (eq (get-text-property (point) 'face) 'org-link))
17410 (call-interactively 'org-open-at-point))
17411 ((and (org-at-heading-p)
17413 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
17417 (t (if indent (newline-and-indent) (newline)))))
17419 (defun org-return-indent ()
17420 "Goto next table row or insert a newline and indent.
17421 Calls `org-table-next-row' or `newline-and-indent', depending on
17422 context. See the individual commands for more information."
17426 (defun org-ctrl-c-star ()
17427 "Compute table, or change heading status of lines.
17428 Calls `org-table-recalculate' or `org-toggle-heading',
17429 depending on context."
17433 (call-interactively 'org-table-recalculate))
17435 ;; Convert all lines in region to list items
17436 (call-interactively 'org-toggle-heading))))
17438 (defun org-ctrl-c-minus ()
17439 "Insert separator line in table or modify bullet status of line.
17440 Also turns a plain line or a region of lines into list items.
17441 Calls `org-table-insert-hline', `org-toggle-item', or
17442 `org-cycle-list-bullet', depending on context."
17446 (call-interactively 'org-table-insert-hline))
17447 ((org-region-active-p)
17448 (call-interactively 'org-toggle-item))
17450 (call-interactively 'org-cycle-list-bullet))
17452 (call-interactively 'org-toggle-item))))
17454 (defun org-toggle-item ()
17455 "Convert headings or normal lines to items, items to normal lines.
17456 If there is no active region, only the current line is considered.
17458 If the first line in the region is a headline, convert all headlines to items.
17460 If the first line in the region is an item, convert all items to normal lines.
17462 If the first line is normal text, add an item bullet to each line."
17464 (let (l2 l beg end)
17465 (if (org-region-active-p)
17466 (setq beg (region-beginning) end (region-end))
17467 (setq beg (point-at-bol)
17468 end (min (1+ (point-at-eol)) (point-max))))
17471 (setq l2 (org-current-line))
17473 (beginning-of-line 1)
17474 (setq l (1- (org-current-line)))
17475 (if (org-at-item-p)
17476 ;; We already have items, de-itemize
17477 (while (< (setq l (1+ l)) l2)
17478 (when (org-at-item-p)
17479 (skip-chars-forward " \t")
17480 (delete-region (point) (match-end 0)))
17481 (beginning-of-line 2))
17482 (if (org-on-heading-p)
17483 ;; Headings, convert to items
17484 (while (< (setq l (1+ l)) l2)
17485 (if (looking-at org-outline-regexp)
17486 (replace-match (org-list-bullet-string "-") t t))
17487 (beginning-of-line 2))
17488 ;; normal lines, turn them into items
17489 (while (< (setq l (1+ l)) l2)
17490 (unless (org-at-item-p)
17491 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
17493 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
17494 (beginning-of-line 2)))))))
17496 (defun org-toggle-heading (&optional nstars)
17497 "Convert headings to normal text, or items or text to headings.
17498 If there is no active region, only the current line is considered.
17500 If the first line is a heading, remove the stars from all headlines
17503 If the first line is a plain list item, turn all plain list items
17506 If the first line is a normal line, turn each and every line in the
17507 region into a heading.
17509 When converting a line into a heading, the number of stars is chosen
17510 such that the lines become children of the current entry. However,
17511 when a prefix argument is given, its value determines the number of
17514 (let (l2 l itemp beg end)
17515 (if (org-region-active-p)
17516 (setq beg (region-beginning) end (region-end))
17517 (setq beg (point-at-bol)
17518 end (min (1+ (point-at-eol)) (point-max))))
17521 (setq l2 (org-current-line))
17523 (beginning-of-line 1)
17524 (setq l (1- (org-current-line)))
17525 (if (org-on-heading-p)
17526 ;; We already have headlines, de-star them
17527 (while (< (setq l (1+ l)) l2)
17528 (when (org-on-heading-p t)
17529 (and (looking-at outline-regexp) (replace-match "")))
17530 (beginning-of-line 2))
17531 (setq itemp (org-at-item-p))
17534 (make-string (prefix-numeric-value current-prefix-arg)
17537 (if (re-search-backward org-complex-heading-regexp nil t)
17538 (match-string 1) ""))))
17539 (add-stars (cond (nstars "")
17540 ((equal stars "") "*")
17541 (org-odd-levels-only "**")
17543 (rpl (concat stars add-stars " ")))
17544 (while (< (setq l (1+ l)) l2)
17546 (and (org-at-item-p) (replace-match rpl t t))
17547 (unless (org-on-heading-p)
17548 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
17549 (replace-match (concat rpl (match-string 2))))))
17550 (beginning-of-line 2)))))))
17552 (defun org-meta-return (&optional arg)
17553 "Insert a new heading or wrap a region in a table.
17554 Calls `org-insert-heading' or `org-table-wrap-region', depending on context.
17555 See the individual commands for more information."
17558 ((run-hook-with-args-until-success 'org-metareturn-hook))
17560 (call-interactively 'org-table-wrap-region))
17561 (t (call-interactively 'org-insert-heading))))
17565 ;; Define the Org-mode menus
17566 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
17568 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
17569 ["Next Field" org-cycle (org-at-table-p)]
17570 ["Previous Field" org-shifttab (org-at-table-p)]
17571 ["Next Row" org-return (org-at-table-p)]
17573 ["Blank Field" org-table-blank-field (org-at-table-p)]
17574 ["Edit Field" org-table-edit-field (org-at-table-p)]
17575 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
17578 ["Move Column Left" org-metaleft (org-at-table-p)]
17579 ["Move Column Right" org-metaright (org-at-table-p)]
17580 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
17581 ["Insert Column" org-shiftmetaright (org-at-table-p)])
17583 ["Move Row Up" org-metaup (org-at-table-p)]
17584 ["Move Row Down" org-metadown (org-at-table-p)]
17585 ["Delete Row" org-shiftmetaup (org-at-table-p)]
17586 ["Insert Row" org-shiftmetadown (org-at-table-p)]
17587 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
17589 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
17591 ["Copy Rectangle" org-copy-special (org-at-table-p)]
17592 ["Cut Rectangle" org-cut-special (org-at-table-p)]
17593 ["Paste Rectangle" org-paste-special (org-at-table-p)]
17594 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
17597 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
17598 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
17599 ["Edit Formulas" org-edit-special (org-at-table-p)]
17601 ["Recalculate line" org-table-recalculate (org-at-table-p)]
17602 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
17603 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
17605 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
17607 ["Sum Column/Rectangle" org-table-sum
17608 (or (org-at-table-p) (org-region-active-p))]
17609 ["Which Column?" org-table-current-column (org-at-table-p)])
17611 org-table-toggle-formula-debugger
17612 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
17613 ["Show Col/Row Numbers"
17614 org-table-toggle-coordinate-overlays
17616 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
17618 ["Create" org-table-create (and (not (org-at-table-p))
17619 org-enable-table-editor)]
17620 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
17621 ["Import from File" org-table-import (not (org-at-table-p))]
17622 ["Export to File" org-table-export (org-at-table-p)]
17624 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
17626 (easy-menu-define org-org-menu org-mode-map "Org menu"
17629 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
17630 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
17631 ["Sparse Tree..." org-sparse-tree t]
17632 ["Reveal Context" org-reveal t]
17633 ["Show All" show-all t]
17635 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
17637 ["New Heading" org-insert-heading t]
17638 ("Navigate Headings"
17639 ["Up" outline-up-heading t]
17640 ["Next" outline-next-visible-heading t]
17641 ["Previous" outline-previous-visible-heading t]
17642 ["Next Same Level" outline-forward-same-level t]
17643 ["Previous Same Level" outline-backward-same-level t]
17645 ["Jump" org-goto t])
17647 ["Move Subtree Up" org-shiftmetaup (not (org-at-table-p))]
17648 ["Move Subtree Down" org-shiftmetadown (not (org-at-table-p))]
17650 ["Copy Subtree" org-copy-special (not (org-at-table-p))]
17651 ["Cut Subtree" org-cut-special (not (org-at-table-p))]
17652 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
17654 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
17656 ["Promote Heading" org-metaleft (not (org-at-table-p))]
17657 ["Promote Subtree" org-shiftmetaleft (not (org-at-table-p))]
17658 ["Demote Heading" org-metaright (not (org-at-table-p))]
17659 ["Demote Subtree" org-shiftmetaright (not (org-at-table-p))]
17661 ["Sort Region/Children" org-sort (not (org-at-table-p))]
17663 ["Convert to odd levels" org-convert-to-odd-levels t]
17664 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
17666 ["Emphasis..." org-emphasize t]
17667 ["Edit Source Example" org-edit-special t]
17669 ["Footnote new/jump" org-footnote-action t]
17670 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
17672 ["Archive (default method)" org-archive-subtree-default t]
17674 ["Move Subtree to Archive file" org-advertized-archive-subtree t]
17675 ["Toggle ARCHIVE tag" org-toggle-archive-tag t]
17676 ["Move subtree to Archive sibling" org-archive-to-archive-sibling t]
17680 ["Store Link (Global)" org-store-link t]
17681 ["Find existing link to here" org-occur-link-in-agenda-files t]
17682 ["Insert Link" org-insert-link t]
17683 ["Follow Link" org-open-at-point t]
17685 ["Next link" org-next-link t]
17686 ["Previous link" org-previous-link t]
17688 ["Descriptive Links"
17689 (progn (add-to-invisibility-spec '(org-link)) (org-restart-font-lock))
17691 :selected (member '(org-link) buffer-invisibility-spec)]
17694 (org-remove-from-invisibility-spec '(org-link)) (org-restart-font-lock))
17696 :selected (not (member '(org-link) buffer-invisibility-spec))])
17699 ["TODO/DONE/-" org-todo t]
17701 ["Next keyword" org-shiftright (org-on-heading-p)]
17702 ["Previous keyword" org-shiftleft (org-on-heading-p)]
17703 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
17704 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))]
17705 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))])
17706 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
17707 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
17709 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
17710 :selected org-enforce-todo-dependencies :style toggle :active t]
17711 "Settings for tree at point"
17712 ["Do Children sequentially" org-toggle-ordered-property :style radio
17713 :selected (ignore-errors (org-entry-get nil "ORDERED"))
17714 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
17715 ["Do Children parallel" org-toggle-ordered-property :style radio
17716 :selected (ignore-errors (not (org-entry-get nil "ORDERED")))
17717 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
17719 ["Set Priority" org-priority t]
17720 ["Priority Up" org-shiftup t]
17721 ["Priority Down" org-shiftdown t]
17723 ["Get news from all feeds" org-feed-update-all t]
17724 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
17725 ["Customize feeds" (customize-variable 'org-feed-alist) t])
17726 ("TAGS and Properties"
17727 ["Set Tags" org-set-tags-command t]
17728 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
17730 ["Set property" org-set-property t]
17731 ["Column view of properties" org-columns t]
17732 ["Insert Column View DBlock" org-insert-columns-dblock t])
17733 ("Dates and Scheduling"
17734 ["Timestamp" org-time-stamp t]
17735 ["Timestamp (inactive)" org-time-stamp-inactive t]
17737 ["1 Day Later" org-shiftright t]
17738 ["1 Day Earlier" org-shiftleft t]
17739 ["1 ... Later" org-shiftup t]
17740 ["1 ... Earlier" org-shiftdown t])
17741 ["Compute Time Range" org-evaluate-time-range t]
17742 ["Schedule Item" org-schedule t]
17743 ["Deadline" org-deadline t]
17745 ["Custom time format" org-toggle-time-stamp-overlays
17746 :style radio :selected org-display-custom-times]
17748 ["Goto Calendar" org-goto-calendar t]
17749 ["Date from Calendar" org-date-from-calendar t]
17751 ["Start/Restart Timer" org-timer-start t]
17752 ["Pause/Continue Timer" org-timer-pause-or-continue t]
17753 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
17754 ["Insert Timer String" org-timer t]
17755 ["Insert Timer Item" org-timer-item t])
17757 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
17758 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
17759 ["Clock out" org-clock-out t]
17760 ["Clock cancel" org-clock-cancel t]
17762 ["Mark as default task" org-clock-mark-default-task t]
17763 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
17764 ["Goto running clock" org-clock-goto t]
17766 ["Display times" org-clock-display t]
17767 ["Create clock table" org-clock-report t]
17769 ["Record DONE time"
17770 (progn (setq org-log-done (not org-log-done))
17771 (message "Switching to %s will %s record a timestamp"
17772 (car org-done-keywords)
17773 (if org-log-done "automatically" "not")))
17774 :style toggle :selected org-log-done])
17776 ["Agenda Command..." org-agenda t]
17777 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
17778 ("File List for Agenda")
17779 ("Special views current file"
17780 ["TODO Tree" org-show-todo-tree t]
17781 ["Check Deadlines" org-check-deadlines t]
17782 ["Timeline" org-timeline t]
17783 ["Tags/Property tree" org-match-sparse-tree t])
17785 ["Export/Publish..." org-export t]
17787 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
17788 :selected org-cdlatex-mode]
17789 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
17790 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
17791 ["Modify math symbol" org-cdlatex-math-modify
17792 (org-inside-LaTeX-fragment-p)]
17793 ["Insert citation" org-reftex-citation t]
17795 ["Template for BEAMER" org-insert-beamer-options-template t])
17798 ["Push Files and Views" org-mobile-push t]
17799 ["Get Captured and Flagged" org-mobile-pull t]
17800 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
17802 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
17805 ["Show Version" org-version t]
17806 ["Info Documentation" org-info t])
17808 ["Browse Org Group" org-customize t]
17810 ["Expand This Menu" org-create-customize-menu
17811 (fboundp 'customize-menu-create)])
17812 ["Send bug report" org-submit-bug-report t]
17815 ["Refresh setup current buffer" org-mode-restart t]
17816 ["Reload Org (after update)" org-reload t]
17817 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x r"])
17820 (defun org-info (&optional node)
17821 "Read documentation for Org-mode in the info system.
17822 With optional NODE, go directly to that node."
17824 (info (format "(org)%s" (or node ""))))
17827 (defun org-submit-bug-report ()
17828 "Submit a bug report on Org-mode via mail.
17830 Don't hesitate to report any problems or inaccurate documentation.
17832 If you don't have setup sending mail from (X)Emacs, please copy the
17833 output buffer into your mail program, as it gives us important
17834 information about your Org-mode version and configuration."
17836 (require 'reporter)
17837 (org-load-modules-maybe)
17838 (org-require-autoloaded-modules)
17839 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
17840 (reporter-submit-bug-report
17841 "emacs-orgmode@gnu.org"
17844 (save-window-excursion
17845 (switch-to-buffer (get-buffer-create "*Warn about privacy*"))
17846 (delete-other-windows)
17848 (insert "You are about to submit a bug report to the Org-mode mailing list.
17850 We would like to add your full Org-mode and Outline configuration to the
17851 bug report. This greatly simplifies the work of the maintainer and
17852 other experts on the mailing list.
17854 HOWEVER, some variables you have customized may contain private
17855 information. The names of customers, colleagues, or friends, might
17856 appear in the form of file names, tags, todo states, or search strings.
17857 If you answer yes to the prompt, you might want to check and remove
17858 such private information before sending the email.")
17859 (add-text-properties (point-min) (point-max) '(face org-warning))
17860 (when (yes-or-no-p "Include your Org-mode configuration ")
17864 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
17865 (or (and (symbol-value v)
17866 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
17868 (get v 'custom-type) (get v 'standard-value)
17869 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
17871 (kill-buffer (get-buffer "*Warn about privacy*"))
17874 "Remember to cover the basics, that is, what you expected to happen and
17875 what in fact did happen. You don't know how to make a good report? See
17877 http://orgmode.org/manual/Feedback.html#Feedback
17879 Your bug report will be posted to the Org-mode mailing list.
17880 ------------------------------------------------------------------------")
17882 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
17883 (replace-match "\\1Bug: \\3 [\\2]")))))
17886 (defun org-install-agenda-files-menu ()
17887 (let ((bl (buffer-list)))
17890 (set-buffer (pop bl))
17891 (if (org-mode-p) (setq bl nil)))
17894 '("Org") "File List for Agenda"
17897 ["Edit File List" (org-edit-agenda-file-list) t]
17898 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
17899 ["Remove Current File from List" org-remove-file t]
17900 ["Cycle through agenda files" org-cycle-agenda-files t]
17901 ["Occur in all agenda files" org-occur-in-agenda-files t]
17903 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
17908 (defun org-require-autoloaded-modules ()
17911 '(org-agenda org-archive org-ascii org-attach org-clock org-colview
17912 org-docbook org-exp org-html org-icalendar
17914 org-publish org-remember org-table
17915 org-timer org-xoxo)))
17918 (defun org-reload (&optional uncompiled)
17919 "Reload all org lisp files.
17920 With prefix arg UNCOMPILED, load the uncompiled versions."
17922 (require 'find-func)
17923 (let* ((file-re "^\\(org\\|orgtbl\\)\\(\\.el\\|-.*\\.el\\)")
17924 (dir-org (file-name-directory (org-find-library-name "org")))
17925 (dir-org-contrib (ignore-errors
17926 (file-name-directory
17927 (org-find-library-name "org-contribdir"))))
17929 (mapcar (lambda (el) (concat "ob" (when el (format "-%s" el)) ".el"))
17930 (append (list nil "comint" "eval" "exp" "keys"
17931 "lob" "ref" "table" "tangle")
17935 (when (cdr lang) (symbol-name (car lang))))
17936 org-babel-load-languages)))))
17938 (append (directory-files dir-org t file-re)
17940 (and dir-org-contrib
17941 (directory-files dir-org-contrib t file-re))))
17942 (remove-re (concat (if (featurep 'xemacs)
17943 "org-colview" "org-colview-xemacs")
17945 (setq files (mapcar 'file-name-sans-extension files))
17946 (setq files (mapcar
17947 (lambda (x) (if (string-match remove-re x) nil x))
17949 (setq files (delq nil files))
17952 (when (featurep (intern (file-name-nondirectory f)))
17953 (if (and (not uncompiled)
17954 (file-exists-p (concat f ".elc")))
17955 (load (concat f ".elc") nil nil t)
17956 (load (concat f ".el") nil nil t))))
17961 (defun org-customize ()
17962 "Call the customize function with org as argument."
17964 (org-load-modules-maybe)
17965 (org-require-autoloaded-modules)
17966 (customize-browse 'org))
17968 (defun org-create-customize-menu ()
17969 "Create a full customization menu for Org-mode, insert it into the menu."
17971 (org-load-modules-maybe)
17972 (org-require-autoloaded-modules)
17973 (if (fboundp 'customize-menu-create)
17976 '("Org") "Customize"
17977 `(["Browse Org group" org-customize t]
17979 ,(customize-menu-create 'org)
17980 ["Set" Custom-set t]
17981 ["Save" Custom-save t]
17982 ["Reset to Current" Custom-reset-current t]
17983 ["Reset to Saved" Custom-reset-saved t]
17984 ["Reset to Standard Settings" Custom-reset-standard t]))
17985 (message "\"Org\"-menu now contains full customization menu"))
17986 (error "Cannot expand menu (outdated version of cus-edit.el)")))
17988 ;;;; Miscellaneous stuff
17990 ;;; Generally useful functions
17992 (defun org-get-at-bol (property)
17993 "Get text property PROPERTY at beginning of line."
17994 (get-text-property (point-at-bol) property))
17996 (defun org-find-text-property-in-string (prop s)
17997 "Return the first non-nil value of property PROP in string S."
17998 (or (get-text-property 0 prop s)
17999 (get-text-property (or (next-single-property-change 0 prop s) 0)
18002 (defun org-display-warning (message) ;; Copied from Emacs-Muse
18003 "Display the given MESSAGE as a warning."
18004 (if (fboundp 'display-warning)
18005 (display-warning 'org message
18006 (if (featurep 'xemacs) 'warning :warning))
18007 (let ((buf (get-buffer-create "*Org warnings*")))
18008 (with-current-buffer buf
18009 (goto-char (point-max))
18010 (insert "Warning (Org): " message)
18013 (display-buffer buf)
18016 (defun org-in-commented-line ()
18017 "Is point in a line starting with `#'?"
18018 (equal (char-after (point-at-bol)) ?#))
18020 (defun org-in-indented-comment-line ()
18021 "Is point in a line starting with `#' after some white space?"
18024 (goto-char (point-at-bol))
18025 (looking-at "[ \t]*#"))))
18027 (defun org-in-verbatim-emphasis ()
18029 (and (org-in-regexp org-emph-re 2) (member (match-string 3) '("=" "~")))))
18031 (defun org-goto-marker-or-bmk (marker &optional bookmark)
18032 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
18033 (if (and marker (marker-buffer marker)
18034 (buffer-live-p (marker-buffer marker)))
18036 (switch-to-buffer (marker-buffer marker))
18037 (if (or (> marker (point-max)) (< marker (point-min)))
18040 (org-show-context 'org-goto))
18042 (bookmark-jump bookmark)
18043 (error "Cannot find location"))))
18045 (defun org-quote-csv-field (s)
18046 "Quote field for inclusion in CSV material."
18047 (if (string-match "[\",]" s)
18048 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
18051 (defun org-force-self-insert (N)
18052 "Needed to enforce self-insert under remapping."
18054 (self-insert-command N))
18056 (defun org-string-width (s)
18057 "Compute width of string, ignoring invisible characters.
18058 This ignores character with invisibility property `org-link', and also
18059 characters with property `org-cwidth', because these will become invisible
18060 upon the next fontification round."
18062 (when (or (eq t buffer-invisibility-spec)
18063 (assq 'org-link buffer-invisibility-spec))
18064 (while (setq b (text-property-any 0 (length s)
18065 'invisible 'org-link s))
18066 (setq s (concat (substring s 0 b)
18067 (substring s (or (next-single-property-change
18068 b 'invisible s) (length s)))))))
18069 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
18070 (setq s (concat (substring s 0 b)
18071 (substring s (or (next-single-property-change
18072 b 'org-cwidth s) (length s))))))
18073 (setq l (string-width s) b -1)
18074 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
18075 (setq l (- l (get-text-property b 'org-dwidth-n s))))
18078 (defun org-shorten-string (s maxlength)
18079 "Shorten string S so tht it is no longer than MAXLENGTH characters.
18080 If the string is shorter or has length MAXLENGTH, just return the
18081 original string. If it is longer, the functions finds a space in the
18082 string, breaks this string off at that locations and adds three dots
18083 as ellipsis. Including the ellipsis, the string will not be longer
18084 than MAXLENGTH. If finding a good breaking point in the string does
18085 not work, the string is just chopped off in the middle of a word
18087 (if (<= (length s) maxlength)
18089 (let* ((n (max (- maxlength 4) 1))
18090 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
18091 (if (string-match re s)
18092 (concat (match-string 1 s) "...")
18093 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
18095 (defun org-get-indentation (&optional line)
18096 "Get the indentation of the current line, interpreting tabs.
18097 When LINE is given, assume it represents a line and compute its indentation."
18099 (if (string-match "^ *" (org-remove-tabs line))
18102 (beginning-of-line 1)
18103 (skip-chars-forward " \t")
18104 (current-column))))
18106 (defun org-remove-tabs (s &optional width)
18107 "Replace tabulators in S with spaces.
18108 Assumes that s is a single line, starting in column 0."
18109 (setq width (or width tab-width))
18110 (while (string-match "\t" s)
18111 (setq s (replace-match
18113 (- (* width (/ (+ (match-beginning 0) width) width))
18114 (match-beginning 0)) ?\ )
18118 (defun org-fix-indentation (line ind)
18119 "Fix indentation in LINE.
18120 IND is a cons cell with target and minimum indentation.
18121 If the current indentation in LINE is smaller than the minimum,
18122 leave it alone. If it is larger than ind, set it to the target."
18123 (let* ((l (org-remove-tabs line))
18124 (i (org-get-indentation l))
18125 (i1 (car ind)) (i2 (cdr ind)))
18126 (if (>= i i2) (setq l (substring line i2)))
18128 (concat (make-string i1 ?\ ) l)
18131 (defun org-remove-indentation (code &optional n)
18132 "Remove the maximum common indentation from the lines in CODE.
18133 N may optionally be the number of spaces to remove."
18136 (org-do-remove-indentation n)
18139 (defun org-do-remove-indentation (&optional n)
18140 "Remove the maximum common indentation from the buffer."
18141 (untabify (point-min) (point-max))
18142 (let ((min 10000) re)
18145 (goto-char (point-min))
18146 (while (re-search-forward "^ *[^ \n]" nil t)
18147 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
18148 (unless (or (= min 0) (= min 10000))
18149 (setq re (format "^ \\{%d\\}" min))
18150 (goto-char (point-min))
18151 (while (re-search-forward re nil t)
18156 (defun org-fill-template (template alist)
18157 "Find each %key of ALIST in TEMPLATE and replace it."
18158 (let ((case-fold-search nil)
18160 (setq alist (sort (copy-sequence alist)
18161 (lambda (a b) (< (length (car a)) (length (car b))))))
18162 (while (setq entry (pop alist))
18164 (replace-regexp-in-string
18165 (concat "%" (regexp-quote (car entry)))
18166 (cdr entry) template t t)))
18169 (defun org-base-buffer (buffer)
18170 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
18173 (or (buffer-base-buffer buffer)
18176 (defun org-trim (s)
18177 "Remove whitespace at beginning and end of string."
18178 (if (string-match "\\`[ \t\n\r]+" s) (setq s (replace-match "" t t s)))
18179 (if (string-match "[ \t\n\r]+\\'" s) (setq s (replace-match "" t t s)))
18182 (defun org-wrap (string &optional width lines)
18183 "Wrap string to either a number of lines, or a width in characters.
18184 If WIDTH is non-nil, the string is wrapped to that width, however many lines
18185 that costs. If there is a word longer than WIDTH, the text is actually
18186 wrapped to the length of that word.
18187 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
18188 many lines, whatever width that takes.
18189 The return value is a list of lines, without newlines at the end."
18190 (let* ((words (org-split-string string "[ \t\n]+"))
18191 (maxword (apply 'max (mapcar 'org-string-width words)))
18194 (org-do-wrap words (max maxword width)))
18197 (setq ll (org-do-wrap words maxword))
18198 (if (<= (length ll) lines)
18201 (while (> (length ll) lines)
18203 (setq ll (org-do-wrap words w)))
18205 (t (error "Cannot wrap this")))))
18207 (defun org-do-wrap (words width)
18208 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
18211 (setq line (pop words))
18212 (while (and words (< (+ (length line) (length (car words))) width))
18213 (setq line (concat line " " (pop words))))
18214 (setq lines (push line lines)))
18217 (defun org-split-string (string &optional separators)
18218 "Splits STRING into substrings at SEPARATORS.
18219 No empty strings are returned if there are matches at the beginning
18220 and end of string."
18221 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
18225 (while (and (string-match rexp string
18227 (= start (match-beginning 0))
18228 (< start (length string)))
18230 (< (match-beginning 0) (length string)))
18232 (or (eq (match-beginning 0) 0)
18233 (and (eq (match-beginning 0) (match-end 0))
18234 (eq (match-beginning 0) start))
18236 (cons (substring string start (match-beginning 0))
18238 (setq start (match-end 0)))
18239 (or (eq start (length string))
18241 (cons (substring string start)
18245 (defun org-quote-vert (s)
18246 "Replace \"|\" with \"\\vert\"."
18247 (while (string-match "|" s)
18248 (setq s (replace-match "\\vert" t t s)))
18251 (defun org-uuidgen-p (s)
18252 "Is S an ID created by UUIDGEN?"
18253 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
18255 (defun org-context ()
18256 "Return a list of contexts of the current cursor position.
18257 If several contexts apply, all are returned.
18258 Each context entry is a list with a symbol naming the context, and
18259 two positions indicating start and end of the context. Possible
18262 :headline anywhere in a headline
18263 :headline-stars on the leading stars in a headline
18264 :todo-keyword on a TODO keyword (including DONE) in a headline
18265 :tags on the TAGS in a headline
18266 :priority on the priority cookie in a headline
18267 :item on the first line of a plain list item
18268 :item-bullet on the bullet/number of a plain list item
18269 :checkbox on the checkbox in a plain list item
18270 :table in an org-mode table
18271 :table-special on a special filed in a table
18272 :table-table in a table.el table
18273 :link on a hyperlink
18274 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE,COMMENT, QUOTE.
18275 :target on a <<target>>
18276 :radio-target on a <<<radio-target>>>
18277 :latex-fragment on a LaTeX fragment
18278 :latex-preview on a LaTeX fragment with overlayed preview image
18280 This function expects the position to be visible because it uses font-lock
18281 faces as a help to recognize the following contexts: :table-special, :link,
18283 (let* ((f (get-text-property (point) 'face))
18284 (faces (if (listp f) f (list f)))
18285 (p (point)) clist o)
18286 ;; First the large context
18288 ((org-on-heading-p t)
18289 (push (list :headline (point-at-bol) (point-at-eol)) clist)
18291 (beginning-of-line 1)
18292 (looking-at org-todo-line-tags-regexp))
18293 (push (org-point-in-group p 1 :headline-stars) clist)
18294 (push (org-point-in-group p 2 :todo-keyword) clist)
18295 (push (org-point-in-group p 4 :tags) clist))
18297 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
18298 (if (looking-at "\\[#[A-Z0-9]\\]")
18299 (push (org-point-in-group p 0 :priority) clist)))
18302 (push (org-point-in-group p 2 :item-bullet) clist)
18303 (push (list :item (point-at-bol)
18304 (save-excursion (org-end-of-item) (point)))
18306 (and (org-at-item-checkbox-p)
18307 (push (org-point-in-group p 0 :checkbox) clist)))
18310 (push (list :table (org-table-begin) (org-table-end)) clist)
18311 (if (memq 'org-formula faces)
18312 (push (list :table-special
18313 (previous-single-property-change p 'face)
18314 (next-single-property-change p 'face)) clist)))
18315 ((org-at-table-p 'any)
18316 (push (list :table-table) clist)))
18319 ;; Now the small context
18321 ((org-at-timestamp-p)
18322 (push (org-point-in-group p 0 :timestamp) clist))
18323 ((memq 'org-link faces)
18325 (previous-single-property-change p 'face)
18326 (next-single-property-change p 'face)) clist))
18327 ((memq 'org-special-keyword faces)
18328 (push (list :keyword
18329 (previous-single-property-change p 'face)
18330 (next-single-property-change p 'face)) clist))
18332 (push (org-point-in-group p 0 :target) clist)
18333 (goto-char (1- (match-beginning 0)))
18334 (if (looking-at org-radio-target-regexp)
18335 (push (org-point-in-group p 0 :radio-target) clist))
18337 ((setq o (car (delq nil
18340 (if (memq x org-latex-fragment-image-overlays) x))
18341 (overlays-at (point))))))
18342 (push (list :latex-fragment
18343 (overlay-start o) (overlay-end o)) clist)
18344 (push (list :latex-preview
18345 (overlay-start o) (overlay-end o)) clist))
18346 ((org-inside-LaTeX-fragment-p)
18347 ;; FIXME: positions wrong.
18348 (push (list :latex-fragment (point) (point)) clist)))
18350 (setq clist (nreverse (delq nil clist)))
18353 ;; FIXME: Compare with at-regexp-p Do we need both?
18354 (defun org-in-regexp (re &optional nlines visually)
18355 "Check if point is inside a match of regexp.
18356 Normally only the current line is checked, but you can include NLINES extra
18357 lines both before and after point into the search.
18358 If VISUALLY is set, require that the cursor is not after the match but
18359 really on, so that the block visually is on the match."
18361 (let ((pos (point))
18362 (eol (point-at-eol (+ 1 (or nlines 0))))
18363 (inc (if visually 1 0)))
18365 (beginning-of-line (- 1 (or nlines 0)))
18366 (while (re-search-forward re eol t)
18367 (if (and (<= (match-beginning 0) pos)
18368 (>= (+ inc (match-end 0)) pos))
18369 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
18371 (defun org-at-regexp-p (regexp)
18372 "Is point inside a match of REGEXP in the current line?"
18375 (let ((pos (point)) (end (point-at-eol)))
18376 (beginning-of-line 1)
18377 (while (re-search-forward regexp end t)
18378 (if (and (<= (match-beginning 0) pos)
18379 (>= (match-end 0) pos))
18383 (defun org-in-regexps-block-p (start-re end-re &optional bound)
18384 "Return t if the current point is between matches of START-RE and END-RE.
18385 This will also return t if point is on one of the two matches or
18386 in an unfinished block. END-RE can be a string or a form
18387 returning a string.
18389 An optional third argument bounds the search for START-RE. It
18390 defaults to previous heading or `point-min'."
18391 (let ((pos (point))
18392 (limit (or bound (save-excursion (outline-previous-heading)))))
18394 ;; we're on a block when point is on start-re...
18395 (or (org-at-regexp-p start-re)
18396 ;; ... or start-re can be found above...
18397 (and (re-search-backward start-re limit t)
18398 ;; ... but no end-re between start-re and point.
18399 (not (re-search-forward (eval end-re) pos t)))))))
18401 (defun org-occur-in-agenda-files (regexp &optional nlines)
18402 "Call `multi-occur' with buffers for all agenda files."
18403 (interactive "sOrg-files matching: \np")
18404 (let* ((files (org-agenda-files))
18405 (tnames (mapcar 'file-truename files))
18406 (extra org-agenda-text-search-extra-files)
18408 (when (eq (car extra) 'agenda-archives)
18409 (setq extra (cdr extra))
18410 (setq files (org-add-archive-files files)))
18411 (while (setq f (pop extra))
18412 (unless (member (file-truename f) tnames)
18413 (add-to-list 'files f 'append)
18414 (add-to-list 'tnames (file-truename f) 'append)))
18416 (mapcar (lambda (x)
18417 (with-current-buffer
18418 (or (get-file-buffer x) (find-file-noselect x))
18424 (if (boundp 'occur-mode-find-occurrence-hook)
18426 (add-hook 'occur-mode-find-occurrence-hook
18431 (defadvice occur-mode-goto-occurrence
18432 (after org-occur-reveal activate)
18433 (and (org-mode-p) (org-reveal)))
18434 (defadvice occur-mode-goto-occurrence-other-window
18435 (after org-occur-reveal activate)
18436 (and (org-mode-p) (org-reveal)))
18437 (defadvice occur-mode-display-occurrence
18438 (after org-occur-reveal activate)
18440 (let ((pos (occur-mode-find-occurrence)))
18441 (with-current-buffer (marker-buffer pos)
18446 (defun org-occur-link-in-agenda-files ()
18447 "Create a link and search for it in the agendas.
18448 The link is not stored in `org-stored-links', it is just created
18449 for the search purpose."
18451 (let ((link (condition-case nil
18452 (org-store-link nil)
18453 (error "Unable to create a link to here"))))
18454 (org-occur-in-agenda-files (regexp-quote link))))
18456 (defun org-uniquify (list)
18457 "Remove duplicate elements from LIST."
18459 (mapc (lambda (x) (add-to-list 'res x 'append)) list)
18462 (defun org-delete-all (elts list)
18463 "Remove all elements in ELTS from LIST."
18465 (setq list (delete (pop elts) list)))
18468 (defun org-count (cl-item cl-seq)
18469 "Count the number of occurrences of ITEM in SEQ.
18470 Taken from `count' in cl-seq.el with all keyword arguments removed."
18471 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
18472 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
18473 (while (< cl-start cl-end)
18474 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
18475 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
18476 (setq cl-start (1+ cl-start)))
18479 (defun org-remove-if (predicate seq)
18480 "Remove everything from SEQ that fulfills PREDICATE."
18484 (if (not (funcall predicate e)) (push e res)))
18487 (defun org-remove-if-not (predicate seq)
18488 "Remove everything from SEQ that does not fulfill PREDICATE."
18492 (if (funcall predicate e) (push e res)))
18495 (defun org-back-over-empty-lines ()
18496 "Move backwards over whitespace, to the beginning of the first empty line.
18497 Returns the number of empty lines passed."
18498 (let ((pos (point)))
18499 (skip-chars-backward " \t\n\r")
18500 ;; (if (cdr (assoc 'heading org-blank-before-new-entry))
18501 ;; (skip-chars-backward " \t\n\r")
18502 ;; (forward-line -1))
18503 (beginning-of-line 2)
18504 (goto-char (min (point) pos))
18505 (count-lines (point) pos)))
18507 (defun org-skip-whitespace ()
18508 (skip-chars-forward " \t\n\r"))
18510 (defun org-point-in-group (point group &optional context)
18511 "Check if POINT is in match-group GROUP.
18512 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
18513 match. If the match group does not exist or point is not inside it,
18515 (and (match-beginning group)
18516 (>= point (match-beginning group))
18517 (<= point (match-end group))
18519 (list context (match-beginning group) (match-end group))
18522 (defun org-switch-to-buffer-other-window (&rest args)
18523 "Switch to buffer in a second window on the current frame.
18524 In particular, do not allow pop-up frames.
18525 Returns the newly created buffer."
18526 (let (pop-up-frames special-display-buffer-names special-display-regexps
18527 special-display-function)
18528 (apply 'switch-to-buffer-other-window args)))
18530 (defun org-combine-plists (&rest plists)
18531 "Create a single property list from all plists in PLISTS.
18532 The process starts by copying the first list, and then setting properties
18533 from the other lists. Settings in the last list are the most significant
18534 ones and overrule settings in the other lists."
18535 (let ((rtn (copy-sequence (pop plists)))
18538 (setq ls (pop plists))
18540 (setq p (pop ls) v (pop ls))
18541 (setq rtn (plist-put rtn p v))))
18544 (defun org-move-line-down (arg)
18545 "Move the current line down. With prefix argument, move it past ARG lines."
18547 (let ((col (current-column))
18549 (beginning-of-line 1) (setq beg (point))
18550 (beginning-of-line 2) (setq end (point))
18551 (beginning-of-line (+ 1 arg))
18552 (setq pos (move-marker (make-marker) (point)))
18553 (insert (delete-and-extract-region beg end))
18555 (org-move-to-column col)))
18557 (defun org-move-line-up (arg)
18558 "Move the current line up. With prefix argument, move it past ARG lines."
18560 (let ((col (current-column))
18562 (beginning-of-line 1) (setq beg (point))
18563 (beginning-of-line 2) (setq end (point))
18564 (beginning-of-line (- arg))
18565 (setq pos (move-marker (make-marker) (point)))
18566 (insert (delete-and-extract-region beg end))
18568 (org-move-to-column col)))
18570 (defun org-replace-escapes (string table)
18571 "Replace %-escapes in STRING with values in TABLE.
18572 TABLE is an association list with keys like \"%a\" and string values.
18573 The sequences in STRING may contain normal field width and padding information,
18574 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
18575 so values can contain further %-escapes if they are define later in TABLE."
18576 (let ((tbl (copy-alist table))
18577 (case-fold-search nil)
18580 (while (setq e (pop tbl))
18581 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
18582 (when (and (cdr e) (string-match re (cdr e)))
18583 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
18585 (add-text-properties 0 3 (list 'sref sref) safe)
18586 (setcdr e (replace-match safe t t (cdr e)))))
18587 (while (string-match re string)
18588 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
18590 (setq string (replace-match rpl t t string))))
18591 (while (setq pchg (next-property-change pchg string))
18592 (let ((sref (get-text-property pchg 'sref string)))
18593 (when (and sref (string-match "SREF" string pchg))
18594 (setq string (replace-match sref t t string)))))
18597 (defun org-sublist (list start end)
18598 "Return a section of LIST, from START to END.
18599 Counting starts at 1."
18600 (let (rtn (c start))
18601 (setq list (nthcdr (1- start) list))
18602 (while (and list (<= c end))
18603 (push (pop list) rtn)
18607 (defun org-find-base-buffer-visiting (file)
18608 "Like `find-buffer-visiting' but always return the base buffer and
18609 not an indirect buffer."
18610 (let ((buf (or (get-file-buffer file)
18611 (find-buffer-visiting file))))
18613 (or (buffer-base-buffer buf) buf)
18616 (defun org-image-file-name-regexp (&optional extensions)
18617 "Return regexp matching the file names of images.
18618 If EXTENSIONS is given, only match these."
18619 (if (and (not extensions) (fboundp 'image-file-name-regexp))
18620 (image-file-name-regexp)
18621 (let ((image-file-name-extensions
18623 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
18624 "xbm" "xpm" "pbm" "pgm" "ppm"))))
18626 (regexp-opt (nconc (mapcar 'upcase
18627 image-file-name-extensions)
18628 image-file-name-extensions)
18632 (defun org-file-image-p (file &optional extensions)
18633 "Return non-nil if FILE is an image."
18635 (string-match (org-image-file-name-regexp extensions) file)))
18637 (defun org-get-cursor-date ()
18638 "Return the date at cursor in as a time.
18639 This works in the calendar and in the agenda, anywhere else it just
18640 returns the current time."
18641 (let (date day defd)
18643 ((eq major-mode 'calendar-mode)
18644 (setq date (calendar-cursor-to-date)
18645 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
18646 ((eq major-mode 'org-agenda-mode)
18647 (setq day (get-text-property (point) 'day))
18649 (setq date (calendar-gregorian-from-absolute day)
18650 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date)
18652 (or defd (current-time))))
18654 (defvar org-agenda-action-marker (make-marker)
18655 "Marker pointing to the entry for the next agenda action.")
18657 (defun org-mark-entry-for-agenda-action ()
18658 "Mark the current entry as target of an agenda action.
18659 Agenda actions are actions executed from the agenda with the key `k',
18660 which make use of the date at the cursor."
18662 (move-marker org-agenda-action-marker
18663 (save-excursion (org-back-to-heading t) (point))
18666 "Entry marked for action; press `k' at desired date in agenda or calendar"))
18668 (defun org-mark-subtree ()
18669 "Mark the current subtree.
18670 This puts point at the start of the current subtree, and mark at the end.
18672 If point is in an inline task, mark that task instead."
18674 (let ((inline-task-p
18675 (and (featurep 'org-inlinetask)
18676 (org-inlinetask-in-task-p)))
18678 ;; Get beginning of subtree
18680 (inline-task-p (org-inlinetask-goto-beginning))
18681 ((org-at-heading-p) (beginning-of-line))
18682 (t (org-with-limited-levels (outline-previous-visible-heading 1))))
18686 (org-inlinetask-goto-end)
18687 (org-end-of-subtree))
18689 (push-mark (point) nil t)
18692 ;;; Paragraph filling stuff.
18693 ;; We want this to be just right, so use the full arsenal.
18695 (defun org-indent-line-function ()
18696 "Indent line depending on context."
18698 (let* ((pos (point))
18699 (itemp (org-at-item-p))
18700 (case-fold-search t)
18701 (org-drawer-regexp (or org-drawer-regexp "\000"))
18702 (inline-task-p (and (featurep 'org-inlinetask)
18703 (org-inlinetask-in-task-p)))
18704 column bpos bcol tpos tcol)
18705 (beginning-of-line 1)
18708 ((looking-at "# ") (setq column 0))
18710 ((looking-at "\\*+ ") (setq column 0))
18711 ;; Literal examples
18712 ((looking-at "[ \t]*:[ \t]")
18713 (setq column (org-get-indentation))) ; do nothing
18715 ((and (looking-at "[ \t]*:END:")
18716 (save-excursion (re-search-backward org-drawer-regexp nil t)))
18718 (goto-char (1- (match-beginning 1)))
18719 (setq column (current-column))))
18721 ((and (looking-at "[ \t]*#\\+end_\\([a-z]+\\)")
18723 (re-search-backward
18724 (concat "^[ \t]*#\\+begin_" (downcase (match-string 1))) nil t)))
18725 (setq column (org-get-indentation (match-string 0))))
18726 ((and (not (looking-at "[ \t]*#\\+begin_"))
18727 (org-in-regexps-block-p "^[ \t]*#\\+begin_" "[ \t]*#\\+end_"))
18729 (re-search-backward "^[ \t]*#\\+begin_\\([a-z]+\\)" nil t))
18731 (if (equal (downcase (match-string 1)) "src")
18732 ;; src blocks: let `org-edit-src-exit' handle them
18733 (org-get-indentation)
18734 (org-get-indentation (match-string 0)))))
18737 (org-beginning-of-item)
18738 (looking-at "[ \t]*\\(\\S-+\\)[ \t]*\\(\\(:?\\[@\\(:?start:\\)?[0-9]+\\][ \t]*\\)?\\[[- X]\\][ \t]*\\|.*? :: \\)?")
18739 (setq bpos (match-beginning 1) tpos (match-end 0)
18740 bcol (progn (goto-char bpos) (current-column))
18741 tcol (progn (goto-char tpos) (current-column)))
18742 (if (> tcol (+ bcol org-description-max-indent))
18743 (setq tcol (+ bcol 5)))
18745 (setq column (if itemp (org-get-indentation) tcol)))
18746 ;; This line has nothing special, look at the previous relevant
18747 ;; line to compute indentation
18749 (beginning-of-line 0)
18750 (while (and (not (bobp))
18751 (not (looking-at org-drawer-regexp))
18752 ;; skip comments, verbatim, empty lines, tables,
18753 ;; inline tasks, lists, drawers and blocks
18754 (or (and (looking-at "[ \t]*:END:")
18755 (re-search-backward org-drawer-regexp nil t))
18756 (and (looking-at "[ \t]*#\\+end_")
18757 (re-search-backward "[ \t]*#\\+begin_"nil t))
18758 (looking-at "[ \t]*[\n:#|]")
18759 (and (org-in-item-p) (goto-char (org-list-top-point)))
18760 (and (not inline-task-p)
18761 (featurep 'org-inlinetask)
18762 (org-inlinetask-in-task-p)
18763 (or (org-inlinetask-goto-beginning) t))))
18764 (beginning-of-line 0))
18766 ;; There was an heading above.
18767 ((looking-at "\\*+[ \t]+")
18768 (if (not org-adapt-indentation)
18770 (goto-char (match-end 0))
18771 (setq column (current-column))))
18772 ;; A drawer had started and is unfinished
18773 ((looking-at org-drawer-regexp)
18774 (goto-char (1- (match-beginning 1)))
18775 (setq column (current-column)))
18776 ;; Else, nothing noticeable found: get indentation and go on.
18777 (t (setq column (org-get-indentation))))))
18778 ;; Now apply indentation and move cursor accordingly
18780 (if (<= (current-column) (current-indentation))
18781 (org-indent-line-to column)
18782 (save-excursion (org-indent-line-to column)))
18783 ;; Special polishing for properties, see `org-property-format'
18784 (setq column (current-column))
18785 (beginning-of-line 1)
18787 "\\([ \t]+\\)\\(:[-_0-9a-zA-Z]+:\\)[ \t]*\\(\\S-.*\\(\\S-\\|$\\)\\)")
18788 (replace-match (concat (match-string 1)
18789 (format org-property-format
18790 (match-string 2) (match-string 3)))
18792 (org-move-to-column column)))
18794 (defvar org-adaptive-fill-regexp-backup adaptive-fill-regexp
18795 "Variable to store copy of `adaptive-fill-regexp'.
18796 Since `adaptive-fill-regexp' is set to never match, we need to
18797 store a backup of its value before entering `org-mode' so that
18798 the functionality can be provided as a fall-back.")
18800 (defun org-set-autofill-regexps ()
18802 ;; In the paragraph separator we include headlines, because filling
18803 ;; text in a line directly attached to a headline would otherwise
18804 ;; fill the headline as well.
18805 (org-set-local 'comment-start-skip "^#+[ \t]*")
18806 (org-set-local 'paragraph-separate "\f\\|\\*+ \\|[ ]*$\\|[ \t]*[:|#]")
18807 ;; The paragraph starter includes hand-formatted lists.
18815 "[ \t]*\\([-+*][ \t]+\\|[0-9]+[.)][ \t]+\\)" "\\|"
18818 "\\\\\\(begin\\|end\\|[][]\\)"))
18819 ;; Inhibit auto-fill for headers, tables and fixed-width lines.
18820 ;; But only if the user has not turned off tables or fixed-width regions
18822 'auto-fill-inhibit-regexp
18823 (concat "\\*+ \\|#\\+"
18824 "\\|[ \t]*" org-keyword-time-regexp
18825 (if (or org-enable-table-editor org-enable-fixed-width-editor)
18828 (if org-enable-table-editor "|" "")
18829 (if org-enable-fixed-width-editor ":" "")
18831 ;; We use our own fill-paragraph function, to make sure that tables
18832 ;; and fixed-width regions are not wrapped. That function will pass
18833 ;; through to `fill-paragraph' when appropriate.
18834 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
18835 ;; Adaptive filling: To get full control, first make sure that
18836 ;; `adaptive-fill-regexp' never matches. Then install our own matcher.
18837 (unless (local-variable-p 'adaptive-fill-regexp (current-buffer))
18838 (org-set-local 'org-adaptive-fill-regexp-backup
18839 adaptive-fill-regexp))
18840 (org-set-local 'adaptive-fill-regexp "\000")
18841 (org-set-local 'adaptive-fill-function
18842 'org-adaptive-fill-function)
18844 'align-mode-rules-list
18845 '((org-in-buffer-settings
18846 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
18847 (modes . '(org-mode))))))
18849 (defun org-fill-paragraph (&optional justify)
18850 "Re-align a table, pass through to fill-paragraph if no table."
18851 (let ((table-p (org-at-table-p))
18852 (table.el-p (org-at-table.el-p)))
18853 (cond ((and (equal (char-after (point-at-bol)) ?*)
18854 (save-excursion (goto-char (point-at-bol))
18855 (looking-at outline-regexp)))
18856 t) ; skip headlines
18857 (table.el-p t) ; skip table.el tables
18858 (table-p (org-table-align) t) ; align org-mode tables
18859 (t nil)))) ; call paragraph-fill
18861 ;; For reference, this is the default value of adaptive-fill-regexp
18862 ;; "[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"
18864 (defun org-adaptive-fill-function ()
18865 "Return a fill prefix for org-mode files.
18866 In particular, this makes sure hanging paragraphs for hand-formatted lists
18870 ((looking-at "#[ \t]+")
18871 (match-string-no-properties 0))
18872 ;; Description list
18873 ((looking-at "[ \t]*\\([-*+] .*? :: \\)")
18875 (if (> (match-end 1) (+ (match-beginning 1)
18876 org-description-max-indent))
18877 (goto-char (+ (match-beginning 1) 5))
18878 (goto-char (match-end 0)))
18879 (make-string (current-column) ?\ )))
18880 ;; Ordered or unordered list
18881 ((looking-at "[ \t]*\\([-*+] \\|[0-9]+[.)] ?\\)")
18883 (goto-char (match-end 0))
18884 (make-string (current-column) ?\ )))
18886 ((looking-at org-adaptive-fill-regexp-backup)
18887 (match-string-no-properties 0))))
18891 (defun org-toggle-fixed-width-section (arg)
18892 "Toggle the fixed-width export.
18893 If there is no active region, the QUOTE keyword at the current headline is
18894 inserted or removed. When present, it causes the text between this headline
18895 and the next to be exported as fixed-width text, and unmodified.
18896 If there is an active region, this command adds or removes a colon as the
18897 first character of this line. If the first character of a line is a colon,
18898 this line is also exported in fixed-width font."
18901 (regionp (org-region-active-p))
18902 (beg (if regionp (region-beginning) (point)))
18903 (end (if regionp (region-end)))
18904 (nlines (or arg (if (and beg end) (count-lines beg end) 1)))
18905 (case-fold-search nil)
18906 (re "[ \t]*\\(: \\)")
18911 (setq cc (current-column))
18912 (beginning-of-line 1)
18913 (setq off (looking-at re))
18914 (while (> nlines 0)
18915 (setq nlines (1- nlines))
18916 (beginning-of-line 1)
18919 (org-move-to-column cc t)
18922 ((and off (looking-at re))
18923 (replace-match "" t t nil 1))
18924 ((not off) (org-move-to-column cc t) (insert ": ")))
18927 (org-back-to-heading)
18928 (if (looking-at (concat outline-regexp
18929 "\\( *\\<" org-quote-string "\\>[ \t]*\\)"))
18930 (replace-match "" t t nil 1)
18931 (if (looking-at outline-regexp)
18933 (goto-char (match-end 0))
18934 (insert org-quote-string " "))))))))
18936 (defun org-reftex-citation ()
18937 "Use reftex-citation to insert a citation into the buffer.
18938 This looks for a line like
18940 #+BIBLIOGRAPHY: foo plain option:-d
18942 and derives from it that foo.bib is the bibliography file relevant
18943 for this document. It then installs the necessary environment for RefTeX
18944 to work in this buffer and calls `reftex-citation' to insert a citation
18947 Export of such citations to both LaTeX and HTML is handled by the contributed
18948 package org-exp-bibtex by Taru Karttunen."
18950 (let ((reftex-docstruct-symbol 'rds)
18951 (reftex-cite-format "\\cite{%l}")
18956 (let ((case-fold-search t)
18957 (re "^#\\+bibliography:[ \t]+\\([^ \t\n]+\\)"))
18958 (if (not (save-excursion
18959 (or (re-search-forward re nil t)
18960 (re-search-backward re nil t))))
18961 (error "No bibliography defined in file")
18962 (setq bib (concat (match-string 1) ".bib")
18963 rds (list (list 'bib bib)))))))
18964 (call-interactively 'reftex-citation)))
18966 ;;;; Functions extending outline functionality
18968 (defun org-beginning-of-line (&optional arg)
18969 "Go to the beginning of the current line. If that is invisible, continue
18970 to a visible line beginning. This makes the function of C-a more intuitive.
18971 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
18972 first attempt, and only move to after the tags when the cursor is already
18973 beyond the end of the headline."
18975 (let ((pos (point))
18976 (special (if (consp org-special-ctrl-a/e)
18977 (car org-special-ctrl-a/e)
18978 org-special-ctrl-a/e))
18980 (if (org-bound-and-true-p line-move-visual)
18981 (beginning-of-visual-line 1)
18982 (beginning-of-line 1))
18983 (if (and arg (fboundp 'move-beginning-of-line))
18984 (call-interactively 'move-beginning-of-line)
18988 (if (org-truely-invisible-p)
18989 (while (and (not (bobp)) (org-truely-invisible-p))
18991 (beginning-of-line 1))
18992 (forward-char 1))))
18995 ((and (looking-at org-complex-heading-regexp)
18996 (= (char-after (match-end 1)) ?\ ))
18997 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
19001 (cond ((> pos refpos) refpos)
19002 ((= pos (point)) refpos)
19004 (cond ((> pos (point)) (point))
19005 ((not (eq last-command this-command)) (point))
19010 (cond ((> pos (match-end 4)) (match-end 4))
19011 ((= pos (point)) (match-end 4))
19013 (cond ((> pos (point)) (point))
19014 ((not (eq last-command this-command)) (point))
19015 (t (match-end 4))))))))
19017 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
19019 (defun org-end-of-line (&optional arg)
19020 "Go to the end of the line.
19021 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
19022 first attempt, and only move to after the tags when the cursor is already
19023 beyond the end of the headline."
19025 (let ((special (if (consp org-special-ctrl-a/e)
19026 (cdr org-special-ctrl-a/e)
19027 org-special-ctrl-a/e)))
19028 (if (or (not special)
19029 (not (org-on-heading-p))
19031 (call-interactively
19032 (cond ((org-bound-and-true-p line-move-visual) 'end-of-visual-line)
19033 ((fboundp 'move-end-of-line) 'move-end-of-line)
19035 (let ((pos (point)))
19036 (beginning-of-line 1)
19037 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
19039 (if (or (< pos (match-beginning 1))
19040 (= pos (match-end 0)))
19041 (goto-char (match-beginning 1))
19042 (goto-char (match-end 0)))
19043 (if (or (< pos (match-end 0)) (not (eq this-command last-command)))
19044 (goto-char (match-end 0))
19045 (goto-char (match-beginning 1))))
19046 (call-interactively (if (fboundp 'move-end-of-line)
19050 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
19052 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
19053 (define-key org-mode-map "\C-e" 'org-end-of-line)
19055 (defun org-backward-sentence (&optional arg)
19056 "Go to beginning of sentence, or beginning of table field.
19057 This will call `backward-sentence' or `org-table-beginning-of-field',
19058 depending on context."
19061 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
19062 (t (call-interactively 'backward-sentence))))
19064 (defun org-forward-sentence (&optional arg)
19065 "Go to end of sentence, or end of table field.
19066 This will call `forward-sentence' or `org-table-end-of-field',
19067 depending on context."
19070 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
19071 (t (call-interactively 'forward-sentence))))
19073 (define-key org-mode-map "\M-a" 'org-backward-sentence)
19074 (define-key org-mode-map "\M-e" 'org-forward-sentence)
19076 (defun org-kill-line (&optional arg)
19077 "Kill line, to tags or end of line."
19080 ((or (not org-special-ctrl-k)
19082 (not (org-on-heading-p)))
19083 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
19084 org-ctrl-k-protect-subtree)
19085 (if (or (eq org-ctrl-k-protect-subtree 'error)
19086 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
19087 (error "C-k aborted - would kill hidden subtree")))
19088 (call-interactively 'kill-line))
19089 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
19090 (kill-region (point) (match-beginning 1))
19091 (org-set-tags nil t))
19092 (t (kill-region (point) (point-at-eol)))))
19094 (define-key org-mode-map "\C-k" 'org-kill-line)
19096 (defun org-yank (&optional arg)
19097 "Yank. If the kill is a subtree, treat it specially.
19098 This command will look at the current kill and check if is a single
19099 subtree, or a series of subtrees[1]. If it passes the test, and if the
19100 cursor is at the beginning of a line or after the stars of a currently
19101 empty headline, then the yank is handled specially. How exactly depends
19102 on the value of the following variables, both set by default.
19104 org-yank-folded-subtrees
19105 When set, the subtree(s) will be folded after insertion, but only
19106 if doing so would now swallow text after the yanked text.
19108 org-yank-adjusted-subtrees
19109 When set, the subtree will be promoted or demoted in order to
19110 fit into the local outline tree structure, which means that the level
19111 will be adjusted so that it becomes the smaller one of the two
19112 *visible* surrounding headings.
19114 Any prefix to this command will cause `yank' to be called directly with
19115 no special treatment. In particular, a simple \\[universal-argument] prefix \
19117 plainly yank the text as it is.
19119 \[1] The test checks if the first non-white line is a heading
19120 and if there are no other headings with fewer stars."
19122 (org-yank-generic 'yank arg))
19124 (defun org-yank-generic (command arg)
19125 "Perform some yank-like command.
19127 This function implements the behavior described in the `org-yank'
19128 documentation. However, it has been generalized to work for any
19129 interactive command with similar behavior."
19131 ;; pretend to be command COMMAND
19132 (setq this-command command)
19135 (call-interactively command)
19137 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
19138 (and (org-kill-is-subtree-p)
19140 (and (looking-at "[ \t]*$")
19143 (buffer-substring (point-at-bol) (point)))))))
19146 ((and subtreep org-yank-folded-subtrees)
19147 (let ((beg (point))
19149 (if (and subtreep org-yank-adjusted-subtrees)
19150 (org-paste-subtree nil nil 'for-yank)
19151 (call-interactively command))
19155 (when (and (bolp) subtreep
19156 (not (setq swallowp
19157 (org-yank-folding-would-swallow-text beg end))))
19158 (or (looking-at outline-regexp)
19159 (re-search-forward (concat "^" outline-regexp) end t))
19160 (while (and (< (point) end) (looking-at outline-regexp))
19162 (org-cycle-show-empty-lines 'folded)
19163 (condition-case nil
19164 (outline-forward-same-level 1)
19165 (error (goto-char end)))))
19168 "Inserted text not folded because that would swallow text"))
19171 (skip-chars-forward " \t\n\r")
19172 (beginning-of-line 1)
19173 (push-mark beg 'nomsg)))
19174 ((and subtreep org-yank-adjusted-subtrees)
19175 (let ((beg (point-at-bol)))
19176 (org-paste-subtree nil nil 'for-yank)
19177 (push-mark beg 'nomsg)))
19179 (call-interactively command))))))
19181 (defun org-yank-folding-would-swallow-text (beg end)
19182 "Would hide-subtree at BEG swallow any text after END?"
19186 (when (or (looking-at outline-regexp)
19187 (re-search-forward (concat "^" outline-regexp) end t))
19188 (setq level (org-outline-level)))
19190 (skip-chars-forward " \t\r\n\v\f")
19192 (and (bolp) (looking-at org-outline-regexp)
19193 (<= (org-outline-level) level)))
19194 nil ; Nothing would be swallowed
19195 t)))) ; something would swallow
19197 (define-key org-mode-map "\C-y" 'org-yank)
19199 (defun org-truely-invisible-p ()
19200 "Check if point is at a character currently not visible.
19201 This version does not only check the character property, but also
19203 ;; Early versions of noutline don't have `outline-invisible-p'.
19204 (if (org-bound-and-true-p visible-mode)
19206 (outline-invisible-p)))
19208 (defun org-invisible-p2 ()
19209 "Check if point is at a character currently not visible."
19211 (if (and (eolp) (not (bobp))) (backward-char 1))
19212 ;; Early versions of noutline don't have `outline-invisible-p'.
19213 (outline-invisible-p)))
19215 (defun org-back-to-heading (&optional invisible-ok)
19216 "Call `outline-back-to-heading', but provide a better error message."
19217 (condition-case nil
19218 (outline-back-to-heading invisible-ok)
19219 (error (error "Before first headline at position %d in buffer %s"
19220 (point) (current-buffer)))))
19222 (defun org-beginning-of-defun ()
19223 "Go to the beginning of the subtree, i.e. back to the heading."
19224 (org-back-to-heading))
19225 (defun org-end-of-defun ()
19226 "Go to the end of the subtree."
19227 (org-end-of-subtree nil t))
19229 (defun org-before-first-heading-p ()
19230 "Before first heading?"
19233 (null (re-search-backward "^\\*+ " nil t))))
19235 (defun org-on-heading-p (&optional ignored)
19236 (outline-on-heading-p t))
19237 (defun org-at-heading-p (&optional ignored)
19238 (outline-on-heading-p t))
19240 (defun org-point-at-end-of-empty-headline ()
19241 "If point is at the end of an empty headline, return t, else nil.
19242 If the heading only contains a TODO keyword, it is still still considered
19244 (and (looking-at "[ \t]*$")
19246 (beginning-of-line 1)
19247 (looking-at (concat "^\\(\\*+\\)[ \t]+\\(" org-todo-regexp
19249 (defun org-at-heading-or-item-p ()
19250 (or (org-on-heading-p) (org-at-item-p)))
19252 (defun org-on-target-p ()
19253 (or (org-in-regexp org-radio-target-regexp)
19254 (org-in-regexp org-target-regexp)))
19256 (defun org-up-heading-all (arg)
19257 "Move to the heading line of which the present line is a subheading.
19258 This function considers both visible and invisible heading lines.
19259 With argument, move up ARG levels."
19260 (if (fboundp 'outline-up-heading-all)
19261 (outline-up-heading-all arg) ; emacs 21 version of outline.el
19262 (outline-up-heading arg t))) ; emacs 22 version of outline.el
19264 (defun org-up-heading-safe ()
19265 "Move to the heading line of which the present line is a subheading.
19266 This version will not throw an error. It will return the level of the
19267 headline found, or nil if no higher level is found.
19269 Also, this function will be a lot faster than `outline-up-heading',
19270 because it relies on stars being the outline starters. This can really
19271 make a significant difference in outlines with very many siblings."
19272 (let (start-level re)
19273 (org-back-to-heading t)
19274 (setq start-level (funcall outline-level))
19275 (if (equal start-level 1)
19277 (setq re (concat "^\\*\\{1," (number-to-string (1- start-level)) "\\} "))
19278 (if (re-search-backward re nil t)
19279 (funcall outline-level)))))
19281 (defun org-first-sibling-p ()
19282 "Is this heading the first child of its parents?"
19284 (let ((re (concat "^" outline-regexp))
19286 (unless (org-at-heading-p t)
19287 (error "Not at a heading"))
19288 (setq level (funcall outline-level))
19290 (if (not (re-search-backward re nil t))
19292 (setq l (funcall outline-level))
19295 (defun org-goto-sibling (&optional previous)
19296 "Goto the next sibling, even if it is invisible.
19297 When PREVIOUS is set, go to the previous sibling instead. Returns t
19298 when a sibling was found. When none is found, return nil and don't
19300 (let ((fun (if previous 're-search-backward 're-search-forward))
19302 (re (concat "^" outline-regexp))
19304 (when (condition-case nil (org-back-to-heading t) (error nil))
19305 (setq level (funcall outline-level))
19307 (or previous (forward-char 1))
19308 (while (funcall fun re nil t)
19309 (setq l (funcall outline-level))
19310 (when (< l level) (goto-char pos) (throw 'exit nil))
19311 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
19315 (defun org-show-siblings ()
19316 "Show all siblings of the current headline."
19318 (while (org-goto-sibling) (org-flag-heading nil)))
19320 (while (org-goto-sibling 'previous)
19321 (org-flag-heading nil))))
19323 (defun org-goto-first-child ()
19324 "Goto the first child, even if it is invisible.
19325 Return t when a child was found. Otherwise don't move point and
19327 (let (level (pos (point)) (re (concat "^" outline-regexp)))
19328 (when (condition-case nil (org-back-to-heading t) (error nil))
19329 (setq level (outline-level))
19331 (if (and (re-search-forward re nil t) (> (outline-level) level))
19332 (progn (goto-char (match-beginning 0)) t)
19333 (goto-char pos) nil))))
19335 (defun org-show-hidden-entry ()
19336 "Show an entry where even the heading is hidden."
19340 (defun org-flag-heading (flag &optional entry)
19341 "Flag the current heading. FLAG non-nil means make invisible.
19342 When ENTRY is non-nil, show the entire entry."
19344 (org-back-to-heading t)
19345 ;; Check if we should show the entire entry
19350 (and (outline-next-heading)
19351 (org-flag-heading nil))))
19352 (outline-flag-region (max (point-min) (1- (point)))
19353 (save-excursion (outline-end-of-heading) (point))
19356 (defun org-get-next-sibling ()
19357 "Move to next heading of the same level, and return point.
19358 If there is no such heading, return nil.
19359 This is like outline-next-sibling, but invisible headings are ok."
19360 (let ((level (funcall outline-level)))
19361 (outline-next-heading)
19362 (while (and (not (eobp)) (> (funcall outline-level) level))
19363 (outline-next-heading))
19364 (if (or (eobp) (< (funcall outline-level) level))
19368 (defun org-get-last-sibling ()
19369 "Move to previous heading of the same level, and return point.
19370 If there is no such heading, return nil."
19371 (let ((opoint (point))
19372 (level (funcall outline-level)))
19373 (outline-previous-heading)
19374 (when (and (/= (point) opoint) (outline-on-heading-p t))
19375 (while (and (> (funcall outline-level) level)
19377 (outline-previous-heading))
19378 (if (< (funcall outline-level) level)
19382 (defun org-end-of-subtree (&optional invisible-OK to-heading)
19383 ;; This contains an exact copy of the original function, but it uses
19384 ;; `org-back-to-heading', to make it work also in invisible
19385 ;; trees. And is uses an invisible-OK argument.
19386 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
19387 ;; Furthermore, when used inside Org, finding the end of a large subtree
19388 ;; with many children and grandchildren etc, this can be much faster
19389 ;; than the outline version.
19390 (org-back-to-heading invisible-OK)
19392 (level (funcall outline-level)))
19393 (if (and (org-mode-p) (< level 1000))
19394 ;; A true heading (not a plain list item), in Org-mode
19395 ;; This means we can easily find the end by looking
19396 ;; only for the right number of stars. Using a regexp to do
19397 ;; this is so much faster than using a Lisp loop.
19398 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
19400 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
19401 ;; something else, do it the slow way
19402 (while (and (not (eobp))
19403 (or first (> (funcall outline-level) level)))
19405 (outline-next-heading)))
19407 (if (memq (preceding-char) '(?\n ?\^M))
19409 ;; Go to end of line before heading
19411 (if (memq (preceding-char) '(?\n ?\^M))
19412 ;; leave blank line before heading
19413 (forward-char -1))))))
19416 (defadvice outline-end-of-subtree (around prefer-org-version activate compile)
19417 "Use Org version in org-mode, for dramatic speed-up."
19418 (if (eq major-mode 'org-mode)
19420 (org-end-of-subtree nil t)
19421 (unless (eobp) (backward-char 1)))
19424 (defun org-forward-same-level (arg &optional invisible-ok)
19425 "Move forward to the arg'th subheading at same level as this one.
19426 Stop at the first and last subheadings of a superior heading.
19427 Normally this only looks at visible headings, but when INVISIBLE-OK is non-nil
19428 it wil also look at invisible ones."
19430 (org-back-to-heading invisible-ok)
19432 (let* ((level (- (match-end 0) (match-beginning 0) 1))
19433 (re (format "^\\*\\{1,%d\\} " level))
19437 (while (and (re-search-forward re nil 'move)
19438 (setq l (- (match-end 0) (match-beginning 0) 1))
19441 (progn (backward-char 1) (outline-invisible-p)))
19442 (if (< l level) (setq arg 1)))
19443 (setq arg (1- arg)))
19444 (beginning-of-line 1)))
19446 (defun org-backward-same-level (arg &optional invisible-ok)
19447 "Move backward to the arg'th subheading at same level as this one.
19448 Stop at the first and last subheadings of a superior heading."
19450 (org-back-to-heading)
19452 (let* ((level (- (match-end 0) (match-beginning 0) 1))
19453 (re (format "^\\*\\{1,%d\\} " level))
19456 (while (and (re-search-backward re nil 'move)
19457 (setq l (- (match-end 0) (match-beginning 0) 1))
19460 (outline-invisible-p))
19461 (if (< l level) (setq arg 1)))
19462 (setq arg (1- arg)))))
19464 (defun org-show-subtree ()
19465 "Show everything after this heading at deeper levels."
19466 (outline-flag-region
19469 (org-end-of-subtree t t))
19472 (defun org-show-entry ()
19473 "Show the body directly following this heading.
19474 Show the heading too, if it is currently invisible."
19477 (condition-case nil
19479 (org-back-to-heading t)
19480 (outline-flag-region
19481 (max (point-min) (1- (point)))
19483 (if (re-search-forward
19484 (concat "[\r\n]\\(" outline-regexp "\\)") nil t)
19485 (match-beginning 1)
19488 (org-cycle-hide-drawers 'children))
19491 (defun org-make-options-regexp (kwds &optional extra)
19492 "Make a regular expression for keyword lines."
19496 (mapconcat 'regexp-quote kwds "\\|")
19497 (if extra (concat "\\|" extra))
19501 ;; Make isearch reveal the necessary context
19502 (defun org-isearch-end ()
19503 "Reveal context after isearch exits."
19504 (when isearch-success ; only if search was successful
19505 (if (featurep 'xemacs)
19506 ;; Under XEmacs, the hook is run in the correct place,
19507 ;; we directly show the context.
19508 (org-show-context 'isearch)
19509 ;; In Emacs the hook runs *before* restoring the overlays.
19510 ;; So we have to use a one-time post-command-hook to do this.
19511 ;; (Emacs 22 has a special variable, see function `org-mode')
19512 (unless (and (boundp 'isearch-mode-end-hook-quit)
19513 isearch-mode-end-hook-quit)
19514 ;; Only when the isearch was not quitted.
19515 (org-add-hook 'post-command-hook 'org-isearch-post-command
19516 'append 'local)))))
19518 (defun org-isearch-post-command ()
19519 "Remove self from hook, and show context."
19520 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
19521 (org-show-context 'isearch))
19524 ;;;; Integration with and fixes for other packages
19528 (defvar org-imenu-markers nil
19529 "All markers currently used by Imenu.")
19530 (make-variable-buffer-local 'org-imenu-markers)
19532 (defun org-imenu-new-marker (&optional pos)
19533 "Return a new marker for use by Imenu, and remember the marker."
19534 (let ((m (make-marker)))
19535 (move-marker m (or pos (point)))
19536 (push m org-imenu-markers)
19539 (defun org-imenu-get-tree ()
19540 "Produce the index for Imenu."
19541 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
19542 (setq org-imenu-markers nil)
19543 (let* ((n org-imenu-depth)
19544 (re (concat "^" outline-regexp))
19545 (subs (make-vector (1+ n) nil))
19551 (goto-char (point-max))
19552 (while (re-search-backward re nil t)
19553 (setq level (org-reduced-level (funcall outline-level)))
19555 (looking-at org-complex-heading-regexp)
19556 (setq head (org-link-display-format
19557 (org-match-string-no-properties 4))
19558 m (org-imenu-new-marker))
19559 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
19560 (if (>= level last-level)
19561 (push (cons head m) (aref subs level))
19562 (push (cons head (aref subs (1+ level))) (aref subs level))
19563 (loop for i from (1+ level) to n do (aset subs i nil)))
19564 (setq last-level level)))))
19567 (eval-after-load "imenu"
19569 (add-hook 'imenu-after-jump-hook
19571 (if (eq major-mode 'org-mode)
19572 (org-show-context 'org-goto))))))
19574 (defun org-link-display-format (link)
19575 "Replace a link with either the description, or the link target
19576 if no description is present"
19578 (if (string-match org-bracket-link-analytic-regexp link)
19579 (replace-match (if (match-end 5)
19580 (match-string 5 link)
19581 (concat (match-string 1 link)
19582 (match-string 3 link)))
19586 ;; Speedbar support
19588 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
19589 "Overlay marking the agenda restriction line in speedbar.")
19590 (overlay-put org-speedbar-restriction-lock-overlay
19591 'face 'org-agenda-restriction-lock)
19592 (overlay-put org-speedbar-restriction-lock-overlay
19593 'help-echo "Agendas are currently limited to this item.")
19594 (org-detach-overlay org-speedbar-restriction-lock-overlay)
19596 (defun org-speedbar-set-agenda-restriction ()
19597 "Restrict future agenda commands to the location at point in speedbar.
19598 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
19600 (require 'org-agenda)
19601 (let (p m tp np dir txt)
19603 ((setq p (text-property-any (point-at-bol) (point-at-eol)
19605 (setq m (get-text-property p 'org-imenu-marker))
19606 (with-current-buffer (marker-buffer m)
19608 (org-agenda-set-restriction-lock 'subtree)))
19609 ((setq p (text-property-any (point-at-bol) (point-at-eol)
19610 'speedbar-function 'speedbar-find-file))
19611 (setq tp (previous-single-property-change
19612 (1+ p) 'speedbar-function)
19613 np (next-single-property-change
19614 tp 'speedbar-function)
19615 dir (speedbar-line-directory)
19616 txt (buffer-substring-no-properties (or tp (point-min))
19617 (or np (point-max))))
19618 (with-current-buffer (find-file-noselect
19619 (let ((default-directory dir))
19620 (expand-file-name txt)))
19621 (unless (org-mode-p)
19622 (error "Cannot restrict to non-Org-mode file"))
19623 (org-agenda-set-restriction-lock 'file)))
19624 (t (error "Don't know how to restrict Org-mode's agenda")))
19625 (move-overlay org-speedbar-restriction-lock-overlay
19626 (point-at-bol) (point-at-eol))
19627 (setq current-prefix-arg nil)
19628 (org-agenda-maybe-redo)))
19630 (eval-after-load "speedbar"
19632 (speedbar-add-supported-extension ".org")
19633 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
19634 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
19635 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
19636 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19637 (add-hook 'speedbar-visiting-tag-hook
19638 (lambda () (and (org-mode-p) (org-show-context 'org-goto))))))
19640 ;;; Fixes and Hacks for problems with other packages
19642 ;; Make flyspell not check words in links, to not mess up our keymap
19643 (defun org-mode-flyspell-verify ()
19644 "Don't let flyspell put overlays at active buttons."
19645 (and (not (get-text-property (max (1- (point)) (point-min)) 'keymap))
19646 (not (get-text-property (max (1- (point)) (point-min)) 'org-no-flyspell))))
19648 (defun org-remove-flyspell-overlays-in (beg end)
19649 "Remove flyspell overlays in region."
19650 (and (org-bound-and-true-p flyspell-mode)
19651 (fboundp 'flyspell-delete-region-overlays)
19652 (flyspell-delete-region-overlays beg end))
19653 (add-text-properties beg end '(org-no-flyspell t)))
19655 ;; Make `bookmark-jump' shows the jump location if it was hidden.
19656 (eval-after-load "bookmark"
19657 '(if (boundp 'bookmark-after-jump-hook)
19658 ;; We can use the hook
19659 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
19660 ;; Hook not available, use advice
19661 (defadvice bookmark-jump (after org-make-visible activate)
19662 "Make the position visible."
19663 (org-bookmark-jump-unhide))))
19665 ;; Make sure saveplace shows the location if it was hidden
19666 (eval-after-load "saveplace"
19667 '(defadvice save-place-find-file-hook (after org-make-visible activate)
19668 "Make the position visible."
19669 (org-bookmark-jump-unhide)))
19671 ;; Make sure ecb shows the location if it was hidden
19672 (eval-after-load "ecb"
19673 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
19674 "Make hierarchy visible when jumping into location from ECB tree buffer."
19675 (if (eq major-mode 'org-mode)
19676 (org-show-context))))
19678 (defun org-bookmark-jump-unhide ()
19679 "Unhide the current position, to show the bookmark location."
19681 (or (outline-invisible-p)
19682 (save-excursion (goto-char (max (point-min) (1- (point))))
19683 (outline-invisible-p)))
19684 (org-show-context 'bookmark-jump)))
19686 ;; Make session.el ignore our circular variable
19687 (eval-after-load "session"
19688 '(add-to-list 'session-globals-exclude 'org-mark-ring))
19690 ;;;; Experimental code
19692 (defun org-closed-in-range ()
19693 "Sparse tree of items closed in a certain time range.
19694 Still experimental, may disappear in the future."
19696 ;; Get the time interval from the user.
19697 (let* ((time1 (org-float-time
19698 (org-read-date nil 'to-time nil "Starting date: ")))
19699 (time2 (org-float-time
19700 (org-read-date nil 'to-time nil "End date:")))
19701 ;; callback function
19702 (callback (lambda ()
19705 (apply 'encode-time
19706 (org-parse-time-string
19707 (match-string 1))))))
19708 ;; check if time in interval
19709 (and (>= time time1) (<= time time2))))))
19710 ;; make tree, check each match with the callback
19711 (org-occur "CLOSED: +\\[\\(.*?\\)\\]" nil callback)))
19717 (run-hooks 'org-load-hook)
19719 ;; arch-tag: e77da1a7-acc7-4336-b19e-efa25af3f9fd
19721 ;;; org.el ends here