1 ;;; org.el --- Outline-based notes management and organizer
2 ;; Carstens outline-mode for keeping track of everything.
3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 ;; Free Software Foundation, Inc.
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
)
106 (declare-function org-inlinetask-at-task-p
"org-inlinetask" ())
107 (declare-function org-inlinetask-outline-regexp
"org-inlinetask" ())
108 (declare-function org-inlinetask-toggle-visibility
"org-inlinetask" ())
119 ;; load languages based on value of `org-babel-load-languages'
120 (defvar org-babel-load-languages
)
122 (defun org-babel-do-load-languages (sym value
)
123 "Load the languages defined in `org-babel-load-languages'."
124 (set-default sym value
)
126 (let ((active (cdr pair
)) (lang (symbol-name (car pair
))))
129 (require (intern (concat "ob-" lang
))))
131 (funcall 'fmakunbound
132 (intern (concat "org-babel-execute:" lang
)))
133 (funcall 'fmakunbound
134 (intern (concat "org-babel-expand-body:" lang
)))))))
135 org-babel-load-languages
))
137 (defcustom org-babel-load-languages
'((emacs-lisp . t
))
138 "Languages which can be evaluated in Org-mode buffers.
139 This list can be used to load support for any of the languages
140 below, note that each language will depend on a different set of
141 system executables and/or Emacs modes. When a language is
142 \"loaded\", then code blocks in that language can be evaluated
143 with `org-babel-execute-src-block' bound by default to C-c
144 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
145 be set to remove code block evaluation from the C-c C-c
146 keybinding. By default only Emacs Lisp (which has no
147 requirements) is loaded."
149 :set
'org-babel-do-load-languages
150 :type
'(alist :tag
"Babel Languages"
155 (const :tag
"Asymptote" asymptote
)
156 (const :tag
"Calc" calc
)
157 (const :tag
"Clojure" clojure
)
158 (const :tag
"CSS" css
)
159 (const :tag
"Ditaa" ditaa
)
160 (const :tag
"Dot" dot
)
161 (const :tag
"Emacs Lisp" emacs-lisp
)
162 (const :tag
"Gnuplot" gnuplot
)
163 (const :tag
"Haskell" haskell
)
164 (const :tag
"Javascript" js
)
165 (const :tag
"Latex" latex
)
166 (const :tag
"Ledger" ledger
)
167 (const :tag
"Maxima" maxima
)
168 (const :tag
"Matlab" matlab
)
169 (const :tag
"Mscgen" mscgen
)
170 (const :tag
"Ocaml" ocaml
)
171 (const :tag
"Octave" octave
)
172 (const :tag
"Org" org
)
173 (const :tag
"Perl" perl
)
174 (const :tag
"PlantUML" plantuml
)
175 (const :tag
"Python" python
)
176 (const :tag
"Ruby" ruby
)
177 (const :tag
"Sass" sass
)
178 (const :tag
"Scheme" scheme
)
179 (const :tag
"Screen" screen
)
180 (const :tag
"Shell Script" sh
)
181 (const :tag
"Sql" sql
)
182 (const :tag
"Sqlite" sqlite
))
183 :value-type
(boolean :tag
"Activate" :value t
)))
185 ;;;; Customization variables
186 (defcustom org-clone-delete-id nil
187 "Remove ID property of clones of a subtree.
188 When non-nil, clones of a subtree don't inherit the ID property.
189 Otherwise they inherit the ID property with a new unique
196 (defconst org-version
"7.5"
197 "The version number of the file org.el.")
199 (defun org-version (&optional here
)
200 "Show the org-mode version in the echo area.
201 With prefix arg HERE, insert it at point."
203 (let* ((origin default-directory
)
204 (version org-version
)
206 (dir (concat (file-name-directory (locate-library "org")) "../" )))
207 (when (and (file-exists-p (expand-file-name ".git" dir
))
208 (executable-find "git"))
212 (when (eql 0 (shell-command "git describe --abbrev=4 HEAD"))
213 (with-current-buffer "*Shell Command Output*"
214 (goto-char (point-min))
215 (setq git-version
(buffer-substring (point) (point-at-eol))))
216 (subst-char-in-string ?- ?. git-version t
)
217 (when (string-match "\\S-"
218 (shell-command-to-string
219 "git diff-index --name-only HEAD --"))
220 (setq git-version
(concat git-version
".dirty")))
221 (setq version
(concat version
" (" git-version
")"))))
223 (setq version
(format "Org-mode version %s" version
))
224 (if here
(insert version
))
227 ;;; Compatibility constants
229 ;;; The custom variables
232 "Outline-based notes management and organizer."
237 (defcustom org-mode-hook nil
238 "Mode hook for Org-mode, run after the mode was turned on."
242 (defcustom org-load-hook nil
243 "Hook that is run after org.el has been loaded."
247 (defvar org-modules
) ; defined below
248 (defvar org-modules-loaded nil
249 "Have the modules been loaded already?")
251 (defun org-load-modules-maybe (&optional force
)
252 "Load all extensions listed in `org-modules'."
253 (when (or force
(not org-modules-loaded
))
255 (condition-case nil
(require ext
)
256 (error (message "Problems while trying to load feature `%s'" ext
))))
258 (setq org-modules-loaded t
)))
260 (defun org-set-modules (var value
)
261 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
263 (when (featurep 'org
)
264 (org-load-modules-maybe 'force
)))
266 (when (org-bound-and-true-p org-modules
)
267 (let ((a (member 'org-infojs org-modules
)))
268 (and a
(setcar a
'org-jsinfo
))))
270 (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
)
271 "Modules that should always be loaded together with org.el.
272 If a description starts with <C>, the file is not part of Emacs
273 and loading it will require that you have downloaded and properly installed
274 the org-mode distribution.
276 You can also use this system to load external packages (i.e. neither Org
277 core modules, nor modules from the CONTRIB directory). Just add symbols
278 to the end of the list. If the package is called org-xyz.el, then you need
279 to add the symbol `xyz', and the package must have a call to
283 :set
'org-set-modules
286 (const :tag
" bbdb: Links to BBDB entries" org-bbdb
)
287 (const :tag
" bibtex: Links to BibTeX entries" org-bibtex
)
288 (const :tag
" crypt: Encryption of subtrees" org-crypt
)
289 (const :tag
" ctags: Access to Emacs tags with links" org-ctags
)
290 (const :tag
" docview: Links to doc-view buffers" org-docview
)
291 (const :tag
" gnus: Links to GNUS folders/messages" org-gnus
)
292 (const :tag
" id: Global IDs for identifying entries" org-id
)
293 (const :tag
" info: Links to Info nodes" org-info
)
294 (const :tag
" jsinfo: Set up Sebastian Rose's JavaScript org-info.js" org-jsinfo
)
295 (const :tag
" habit: Track your consistency with habits" org-habit
)
296 (const :tag
" inlinetask: Tasks independent of outline hierarchy" org-inlinetask
)
297 (const :tag
" irc: Links to IRC/ERC chat sessions" org-irc
)
298 (const :tag
" mac-message: Links to messages in Apple Mail" org-mac-message
)
299 (const :tag
" mew Links to Mew folders/messages" org-mew
)
300 (const :tag
" mhe: Links to MHE folders/messages" org-mhe
)
301 (const :tag
" protocol: Intercept calls from emacsclient" org-protocol
)
302 (const :tag
" rmail: Links to RMAIL folders/messages" org-rmail
)
303 (const :tag
" special-blocks: Turn blocks into LaTeX envs and HTML divs" org-special-blocks
)
304 (const :tag
" vm: Links to VM folders/messages" org-vm
)
305 (const :tag
" wl: Links to Wanderlust folders/messages" org-wl
)
306 (const :tag
" w3m: Special cut/paste from w3m to Org-mode." org-w3m
)
307 (const :tag
" mouse: Additional mouse support" org-mouse
)
308 (const :tag
" TaskJuggler: Export tasks to a TaskJuggler project" org-taskjuggler
)
310 (const :tag
"C annotate-file: Annotate a file with org syntax" org-annotate-file
)
311 (const :tag
"C bookmark: Org-mode links to bookmarks" org-bookmark
)
312 (const :tag
"C checklist: Extra functions for checklists in repeated tasks" org-checklist
)
313 (const :tag
"C choose: Use TODO keywords to mark decisions states" org-choose
)
314 (const :tag
"C collector: Collect properties into tables" org-collector
)
315 (const :tag
"C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend
)
316 (const :tag
"C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol
)
317 (const :tag
"C eshell Support for links to working directories in eshell" org-eshell
)
318 (const :tag
"C eval: Include command output as text" org-eval
)
319 (const :tag
"C eval-light: Evaluate inbuffer-code on demand" org-eval-light
)
320 (const :tag
"C expiry: Expiry mechanism for Org-mode entries" org-expiry
)
321 (const :tag
"C exp-bibtex: Export citations using BibTeX" org-exp-bibtex
)
322 (const :tag
"C git-link: Provide org links to specific file version" org-git-link
)
323 (const :tag
"C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query
)
325 (const :tag
"C invoice: Help manage client invoices in Org-mode" org-invoice
)
327 (const :tag
"C jira: Add a jira:ticket protocol to Org-mode" org-jira
)
328 (const :tag
"C learn: SuperMemo's incremental learning algorithm" org-learn
)
329 (const :tag
"C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix
)
330 (const :tag
"C notmuch: Provide org links to notmuch searches or messages" org-notmuch
)
331 (const :tag
"C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal
)
332 (const :tag
"C mac-link-grabber Grab links and URLs from various Mac applications" org-mac-link-grabber
)
333 (const :tag
"C man: Support for links to manpages in Org-mode" org-man
)
334 (const :tag
"C mtags: Support for muse-like tags" org-mtags
)
335 (const :tag
"C panel: Simple routines for us with bad memory" org-panel
)
336 (const :tag
"C registry: A registry for Org-mode links" org-registry
)
337 (const :tag
"C org2rem: Convert org appointments into reminders" org2rem
)
338 (const :tag
"C screen: Visit screen sessions through Org-mode links" org-screen
)
339 (const :tag
"C secretary: Team management with org-mode" org-secretary
)
340 (const :tag
"C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert
)
341 (const :tag
"C toc: Table of contents for Org-mode buffer" org-toc
)
342 (const :tag
"C track: Keep up with Org-mode development" org-track
)
343 (const :tag
"C velocity Something like Notational Velocity for Org" org-velocity
)
344 (const :tag
"C wikinodes: CamelCase wiki-like links" org-wikinodes
)
345 (repeat :tag
"External packages" :inline t
(symbol :tag
"Package"))))
347 (defcustom org-support-shift-select nil
348 "Non-nil means make shift-cursor commands select text when possible.
350 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys start
351 selecting a region, or enlarge regions started in this way.
352 In Org-mode, in special contexts, these same keys are used for other
353 purposes, important enough to compete with shift selection. Org tries
354 to balance these needs by supporting `shift-select-mode' outside these
355 special contexts, under control of this variable.
357 The default of this variable is nil, to avoid confusing behavior. Shifted
358 cursor keys will then execute Org commands in the following contexts:
359 - on a headline, changing TODO state (left/right) and priority (up/down)
360 - on a time stamp, changing the time
361 - in a plain list item, changing the bullet type
362 - in a property definition line, switching between allowed values
363 - in the BEGIN line of a clock table (changing the time block).
364 Outside these contexts, the commands will throw an error.
366 When this variable is t and the cursor is not in a special context,
367 Org-mode will support shift-selection for making and enlarging regions.
368 To make this more effective, the bullet cycling will no longer happen
369 anywhere in an item line, but only if the cursor is exactly on the bullet.
371 If you set this variable to the symbol `always', then the keys
372 will not be special in headlines, property lines, and item lines, to make
373 shift selection work there as well. If this is what you want, you can
374 use the following alternative commands: `C-c C-t' and `C-c ,' to
375 change TODO state and priority, `C-u C-u C-c C-t' can be used to switch
376 TODO sets, `C-c -' to cycle item bullet types, and properties can be
377 edited by hand or in column view.
379 However, when the cursor is on a timestamp, shift-cursor commands
380 will still edit the time stamp - this is just too good to give up.
382 XEmacs user should have this variable set to nil, because shift-select-mode
386 (const :tag
"Never" nil
)
387 (const :tag
"When outside special context" t
)
388 (const :tag
"Everywhere except timestamps" always
)))
390 (defgroup org-startup nil
391 "Options concerning startup of Org-mode."
395 (defcustom org-startup-folded t
396 "Non-nil means entering Org-mode will switch to OVERVIEW.
397 This can also be configured on a per-file basis by adding one of
398 the following lines anywhere in the buffer:
400 #+STARTUP: fold (or `overview', this is equivalent)
401 #+STARTUP: nofold (or `showall', this is equivalent)
403 #+STARTUP: showeverything"
406 (const :tag
"nofold: show all" nil
)
407 (const :tag
"fold: overview" t
)
408 (const :tag
"content: all headlines" content
)
409 (const :tag
"show everything, even drawers" showeverything
)))
411 (defcustom org-startup-truncated t
412 "Non-nil means entering Org-mode will set `truncate-lines'.
413 This is useful since some lines containing links can be very long and
414 uninteresting. Also tables look terrible when wrapped."
418 (defcustom org-startup-indented nil
419 "Non-nil means turn on `org-indent-mode' on startup.
420 This can also be configured on a per-file basis by adding one of
421 the following lines anywhere in the buffer:
425 :group
'org-structure
427 (const :tag
"Not" nil
)
428 (const :tag
"Globally (slow on startup in large files)" t
)))
430 (defcustom org-use-sub-superscripts t
431 "Non-nil means interpret \"_\" and \"^\" for export.
432 When this option is turned on, you can use TeX-like syntax for sub- and
433 superscripts. Several characters after \"_\" or \"^\" will be
434 considered as a single item - so grouping with {} is normally not
435 needed. For example, the following things will be parsed as single
436 sub- or superscripts.
438 10^24 or 10^tau several digits will be considered 1 item.
439 10^-12 or 10^-tau a leading sign with digits or a word
440 x^2-y^3 will be read as x^2 - y^3, because items are
441 terminated by almost any nonword/nondigit char.
442 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
444 Still, ambiguity is possible - so when in doubt use {} to enclose the
445 sub/superscript. If you set this variable to the symbol `{}',
446 the braces are *required* in order to trigger interpretations as
447 sub/superscript. This can be helpful in documents that need \"_\"
448 frequently in plain text.
450 Not all export backends support this, but HTML does.
452 This option can also be set with the +OPTIONS line, e.g. \"^:nil\"."
454 :group
'org-export-translation
456 (const :tag
"Always interpret" t
)
457 (const :tag
"Only with braces" {})
458 (const :tag
"Never interpret" nil
)))
460 (if (fboundp 'defvaralias
)
461 (defvaralias 'org-export-with-sub-superscripts
'org-use-sub-superscripts
))
464 (defcustom org-startup-with-beamer-mode nil
465 "Non-nil means turn on `org-beamer-mode' on startup.
466 This can also be configured on a per-file basis by adding one of
467 the following lines anywhere in the buffer:
473 (defcustom org-startup-align-all-tables nil
474 "Non-nil means align all tables when visiting a file.
475 This is useful when the column width in tables is forced with <N> cookies
476 in table fields. Such tables will look correct only after the first re-align.
477 This can also be configured on a per-file basis by adding one of
478 the following lines anywhere in the buffer:
484 (defcustom org-startup-with-inline-images nil
485 "Non-nil means show inline images when loading a new Org file.
486 This can also be configured on a per-file basis by adding one of
487 the following lines anywhere in the buffer:
488 #+STARTUP: inlineimages
489 #+STARTUP: noinlineimages"
493 (defcustom org-insert-mode-line-in-empty-file nil
494 "Non-nil means insert the first line setting Org-mode in empty files.
495 When the function `org-mode' is called interactively in an empty file, this
496 normally means that the file name does not automatically trigger Org-mode.
497 To ensure that the file will always be in Org-mode in the future, a
498 line enforcing Org-mode will be inserted into the buffer, if this option
503 (defcustom org-replace-disputed-keys nil
504 "Non-nil means use alternative key bindings for some keys.
505 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
506 These keys are also used by other packages like shift-selection-mode'
507 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
508 If you want to use Org-mode together with one of these other modes,
509 or more generally if you would like to move some Org-mode commands to
510 other keys, set this variable and configure the keys with the variable
513 This option is only relevant at load-time of Org-mode, and must be set
514 *before* org.el is loaded. Changing it requires a restart of Emacs to
519 (defcustom org-use-extra-keys nil
520 "Non-nil means use extra key sequence definitions for certain commands.
521 This happens automatically if you run XEmacs or if `window-system'
522 is nil. This variable lets you do the same manually. You must
523 set it before loading org.
525 Example: on Carbon Emacs 22 running graphically, with an external
526 keyboard on a Powerbook, the default way of setting M-left might
527 not work for either Alt or ESC. Setting this variable will make
532 (if (fboundp 'defvaralias
)
533 (defvaralias 'org-CUA-compatible
'org-replace-disputed-keys
))
535 (defcustom org-disputed-keys
536 '(([(shift up
)] .
[(meta p
)])
537 ([(shift down
)] .
[(meta n
)])
538 ([(shift left
)] .
[(meta -
)])
539 ([(shift right
)] .
[(meta +)])
540 ([(control shift right
)] .
[(meta shift
+)])
541 ([(control shift left
)] .
[(meta shift -
)]))
542 "Keys for which Org-mode and other modes compete.
543 This is an alist, cars are the default keys, second element specifies
544 the alternative to use when `org-replace-disputed-keys' is t.
546 Keys can be specified in any syntax supported by `define-key'.
547 The value of this option takes effect only at Org-mode's startup,
548 therefore you'll have to restart Emacs to apply it after changing."
553 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
554 Or return the original if not disputed.
555 Also apply the translations defined in `org-xemacs-key-equivalents'."
556 (when org-replace-disputed-keys
557 (let* ((nkey (key-description key
))
558 (x (org-find-if (lambda (x)
559 (equal (key-description (car x
)) nkey
))
561 (setq key
(if x
(cdr x
) key
))))
562 (when (featurep 'xemacs
)
563 (setq key
(or (cdr (assoc key org-xemacs-key-equivalents
)) key
)))
566 (defun org-find-if (predicate seq
)
569 (if (funcall predicate
(car seq
))
570 (throw 'exit
(car seq
))
573 (defun org-defkey (keymap key def
)
574 "Define a key, possibly translated, as returned by `org-key'."
575 (define-key keymap
(org-key key
) def
))
577 (defcustom org-ellipsis nil
578 "The ellipsis to use in the Org-mode outline.
579 When nil, just use the standard three dots. When a string, use that instead,
580 When a face, use the standard 3 dots, but with the specified face.
581 The change affects only Org-mode (which will then use its own display table).
582 Changing this requires executing `M-x org-mode' in a buffer to become
585 :type
'(choice (const :tag
"Default" nil
)
586 (face :tag
"Face" :value org-warning
)
587 (string :tag
"String" :value
"...#")))
589 (defvar org-display-table nil
590 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
592 (defgroup org-keywords nil
593 "Keywords in Org-mode."
597 (defcustom org-deadline-string
"DEADLINE:"
598 "String to mark deadline entries.
599 A deadline is this string, followed by a time stamp. Should be a word,
600 terminated by a colon. You can insert a schedule keyword and
601 a timestamp with \\[org-deadline].
602 Changes become only effective after restarting Emacs."
606 (defcustom org-scheduled-string
"SCHEDULED:"
607 "String to mark scheduled TODO entries.
608 A schedule is this string, followed by a time stamp. Should be a word,
609 terminated by a colon. You can insert a schedule keyword and
610 a timestamp with \\[org-schedule].
611 Changes become only effective after restarting Emacs."
615 (defcustom org-closed-string
"CLOSED:"
616 "String used as the prefix for timestamps logging closing a TODO entry."
620 (defcustom org-clock-string
"CLOCK:"
621 "String used as prefix for timestamps clocking work hours on an item."
625 (defcustom org-comment-string
"COMMENT"
626 "Entries starting with this keyword will never be exported.
627 An entry can be toggled between COMMENT and normal with
628 \\[org-toggle-comment].
629 Changes become only effective after restarting Emacs."
633 (defcustom org-quote-string
"QUOTE"
634 "Entries starting with this keyword will be exported in fixed-width font.
635 Quoting applies only to the text in the entry following the headline, and does
636 not extend beyond the next headline, even if that is lower level.
637 An entry can be toggled between QUOTE and normal with
638 \\[org-toggle-fixed-width-section]."
642 (defconst org-repeat-re
643 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)"
644 "Regular expression for specifying repeated events.
645 After a match, group 1 contains the repeat expression.")
647 (defgroup org-structure nil
648 "Options concerning the general structure of Org-mode files."
652 (defgroup org-reveal-location nil
653 "Options about how to make context of a location visible."
654 :tag
"Org Reveal Location"
655 :group
'org-structure
)
657 (defconst org-context-choice
659 (const :tag
"Always" t
)
660 (const :tag
"Never" nil
)
661 (repeat :greedy t
:tag
"Individual contexts"
663 (choice :tag
"Context"
670 (const bookmark-jump
)
674 "Contexts for the reveal options.")
676 (defcustom org-show-hierarchy-above
'((default . t
))
677 "Non-nil means show full hierarchy when revealing a location.
678 Org-mode often shows locations in an org-mode file which might have
679 been invisible before. When this is set, the hierarchy of headings
680 above the exposed location is shown.
681 Turning this off for example for sparse trees makes them very compact.
682 Instead of t, this can also be an alist specifying this option for different
683 contexts. Valid contexts are
684 agenda when exposing an entry from the agenda
685 org-goto when using the command `org-goto' on key C-c C-j
686 occur-tree when using the command `org-occur' on key C-c /
687 tags-tree when constructing a sparse tree based on tags matches
688 link-search when exposing search matches associated with a link
689 mark-goto when exposing the jump goal of a mark
690 bookmark-jump when exposing a bookmark location
691 isearch when exiting from an incremental search
692 default default for all contexts not set explicitly"
693 :group
'org-reveal-location
694 :type org-context-choice
)
696 (defcustom org-show-following-heading
'((default . nil
))
697 "Non-nil means show following heading when revealing a location.
698 Org-mode often shows locations in an org-mode file which might have
699 been invisible before. When this is set, the heading following the
701 Turning this off for example for sparse trees makes them very compact,
702 but makes it harder to edit the location of the match. In such a case,
703 use the command \\[org-reveal] to show more context.
704 Instead of t, this can also be an alist specifying this option for different
705 contexts. See `org-show-hierarchy-above' for valid contexts."
706 :group
'org-reveal-location
707 :type org-context-choice
)
709 (defcustom org-show-siblings
'((default . nil
) (isearch t
))
710 "Non-nil means show all sibling heading when revealing a location.
711 Org-mode often shows locations in an org-mode file which might have
712 been invisible before. When this is set, the sibling of the current entry
713 heading are all made visible. If `org-show-hierarchy-above' is t,
714 the same happens on each level of the hierarchy above the current entry.
716 By default this is on for the isearch context, off for all other contexts.
717 Turning this off for example for sparse trees makes them very compact,
718 but makes it harder to edit the location of the match. In such a case,
719 use the command \\[org-reveal] to show more context.
720 Instead of t, this can also be an alist specifying this option for different
721 contexts. See `org-show-hierarchy-above' for valid contexts."
722 :group
'org-reveal-location
723 :type org-context-choice
)
725 (defcustom org-show-entry-below
'((default . nil
))
726 "Non-nil means show the entry below a headline when revealing a location.
727 Org-mode often shows locations in an org-mode file which might have
728 been invisible before. When this is set, the text below the headline that is
729 exposed is also shown.
731 By default this is off for all contexts.
732 Instead of t, this can also be an alist specifying this option for different
733 contexts. See `org-show-hierarchy-above' for valid contexts."
734 :group
'org-reveal-location
735 :type org-context-choice
)
737 (defcustom org-indirect-buffer-display
'other-window
738 "How should indirect tree buffers be displayed?
739 This applies to indirect buffers created with the commands
740 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
742 current-window Display in the current window
743 other-window Just display in another window.
744 dedicated-frame Create one new frame, and re-use it each time.
745 new-frame Make a new frame each time. Note that in this case
746 previously-made indirect buffers are kept, and you need to
747 kill these buffers yourself."
748 :group
'org-structure
749 :group
'org-agenda-windows
751 (const :tag
"In current window" current-window
)
752 (const :tag
"In current frame, other window" other-window
)
753 (const :tag
"Each time a new frame" new-frame
)
754 (const :tag
"One dedicated frame" dedicated-frame
)))
756 (defcustom org-use-speed-commands nil
757 "Non-nil means activate single letter commands at beginning of a headline.
758 This may also be a function to test for appropriate locations where speed
759 commands should be active."
760 :group
'org-structure
762 (const :tag
"Never" nil
)
763 (const :tag
"At beginning of headline stars" t
)
766 (defcustom org-speed-commands-user nil
767 "Alist of additional speed commands.
768 This list will be checked before `org-speed-commands-default'
769 when the variable `org-use-speed-commands' is non-nil
770 and when the cursor is at the beginning of a headline.
771 The car if each entry is a string with a single letter, which must
772 be assigned to `self-insert-command' in the global map.
773 The cdr is either a command to be called interactively, a function
774 to be called, or a form to be evaluated.
775 An entry that is just a list with a single string will be interpreted
776 as a descriptive headline that will be added when listing the speed
777 commands in the Help buffer using the `?' speed command."
778 :group
'org-structure
779 :type
'(repeat :value
("k" . ignore
)
780 (choice :value
("k" . ignore
)
781 (list :tag
"Descriptive Headline" (string :tag
"Headline"))
782 (cons :tag
"Letter and Command"
783 (string :tag
"Command letter")
788 (defgroup org-cycle nil
789 "Options concerning visibility cycling in Org-mode."
791 :group
'org-structure
)
793 (defcustom org-cycle-skip-children-state-if-no-children t
794 "Non-nil means skip CHILDREN state in entries that don't have any."
798 (defcustom org-cycle-max-level nil
799 "Maximum level which should still be subject to visibility cycling.
800 Levels higher than this will, for cycling, be treated as text, not a headline.
801 When `org-odd-levels-only' is set, a value of N in this variable actually
802 means 2N-1 stars as the limiting headline.
803 When nil, cycle all levels.
804 Note that the limiting level of cycling is also influenced by
805 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
806 `org-inlinetask-min-level' is, cycling will be limited to levels one less
810 (const :tag
"No limit" nil
)
811 (integer :tag
"Maximum level")))
813 (defcustom org-drawers
'("PROPERTIES" "CLOCK" "LOGBOOK")
814 "Names of drawers. Drawers are not opened by cycling on the headline above.
815 Drawers only open with a TAB on the drawer line itself. A drawer looks like
820 The drawer \"PROPERTIES\" is special for capturing properties through
823 Drawers can be defined on the per-file basis with a line like:
825 #+DRAWERS: HIDDEN STATE PROPERTIES"
826 :group
'org-structure
828 :type
'(repeat (string :tag
"Drawer Name")))
830 (defcustom org-hide-block-startup nil
831 "Non-nil means entering Org-mode will fold all blocks.
832 This can also be set in on a per-file basis with
834 #+STARTUP: hideblocks
835 #+STARTUP: showblocks"
840 (defcustom org-cycle-global-at-bob nil
841 "Cycle globally if cursor is at beginning of buffer and not at a headline.
842 This makes it possible to do global cycling without having to use S-TAB or
843 \\[universal-argument] TAB. For this special case to work, the first line \
845 must not be a headline - it may be empty or some other text. When used in
846 this way, `org-cycle-hook' is disables temporarily, to make sure the
847 cursor stays at the beginning of the buffer.
848 When this option is nil, don't do anything special at the beginning
853 (defcustom org-cycle-level-after-item
/entry-creation t
854 "Non-nil means cycle entry level or item indentation in new empty entries.
856 When the cursor is at the end of an empty headline, i.e with only stars
857 and maybe a TODO keyword, TAB will then switch the entry to become a child,
858 and then all possible ancestor states, before returning to the original state.
859 This makes data entry extremely fast: M-RET to create a new headline,
860 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
862 When the cursor is at the end of an empty plain list item, one TAB will
863 make it a subitem, two or more tabs will back up to make this an item
864 higher up in the item hierarchy."
868 (defcustom org-cycle-emulate-tab t
869 "Where should `org-cycle' emulate TAB.
871 white Only in completely white lines
872 whitestart Only at the beginning of lines, before the first non-white char
873 t Everywhere except in headlines
874 exc-hl-bol Everywhere except at the start of a headline
875 If TAB is used in a place where it does not emulate TAB, the current subtree
876 visibility is cycled."
878 :type
'(choice (const :tag
"Never" nil
)
879 (const :tag
"Only in completely white lines" white
)
880 (const :tag
"Before first char in a line" whitestart
)
881 (const :tag
"Everywhere except in headlines" t
)
882 (const :tag
"Everywhere except at bol in headlines" exc-hl-bol
)
885 (defcustom org-cycle-separator-lines
2
886 "Number of empty lines needed to keep an empty line between collapsed trees.
887 If you leave an empty line between the end of a subtree and the following
888 headline, this empty line is hidden when the subtree is folded.
889 Org-mode will leave (exactly) one empty line visible if the number of
890 empty lines is equal or larger to the number given in this variable.
891 So the default 2 means at least 2 empty lines after the end of a subtree
892 are needed to produce free space between a collapsed subtree and the
895 If the number is negative, and the number of empty lines is at least -N,
896 all empty lines are shown.
898 Special case: when 0, never leave empty lines in collapsed view."
901 (put 'org-cycle-separator-lines
'safe-local-variable
'integerp
)
903 (defcustom org-pre-cycle-hook nil
904 "Hook that is run before visibility cycling is happening.
905 The function(s) in this hook must accept a single argument which indicates
906 the new state that will be set right after running this hook. The
907 argument is a symbol. Before a global state change, it can have the values
908 `overview', `content', or `all'. Before a local state change, it can have
909 the values `folded', `children', or `subtree'."
913 (defcustom org-cycle-hook
'(org-cycle-hide-archived-subtrees
914 org-cycle-hide-drawers
915 org-cycle-show-empty-lines
916 org-optimize-window-after-visibility-change
)
917 "Hook that is run after `org-cycle' has changed the buffer visibility.
918 The function(s) in this hook must accept a single argument which indicates
919 the new state that was set by the most recent `org-cycle' command. The
920 argument is a symbol. After a global state change, it can have the values
921 `overview', `content', or `all'. After a local state change, it can have
922 the values `folded', `children', or `subtree'."
926 (defgroup org-edit-structure nil
927 "Options concerning structure editing in Org-mode."
928 :tag
"Org Edit Structure"
929 :group
'org-structure
)
931 (defcustom org-odd-levels-only nil
932 "Non-nil means skip even levels and only use odd levels for the outline.
933 This has the effect that two stars are being added/taken away in
934 promotion/demotion commands. It also influences how levels are
935 handled by the exporters.
936 Changing it requires restart of `font-lock-mode' to become effective
937 for fontification also in regions already fontified.
938 You may also set this on a per-file basis by adding one of the following
943 :group
'org-edit-structure
944 :group
'org-appearance
947 (defcustom org-adapt-indentation t
948 "Non-nil means adapt indentation to outline node level.
950 When this variable is set, Org assumes that you write outlines by
951 indenting text in each node to align with the headline (after the stars).
952 The following issues are influenced by this variable:
954 - When this is set and the *entire* text in an entry is indented, the
955 indentation is increased by one space in a demotion command, and
956 decreased by one in a promotion command. If any line in the entry
957 body starts with text at column 0, indentation is not changed at all.
959 - Property drawers and planning information is inserted indented when
960 this variable s set. When nil, they will not be indented.
962 - TAB indents a line relative to context. The lines below a headline
963 will be indented when this variable is set.
965 Note that this is all about true indentation, by adding and removing
966 space characters. See also `org-indent.el' which does level-dependent
967 indentation in a virtual way, i.e. at display time in Emacs."
968 :group
'org-edit-structure
971 (defcustom org-special-ctrl-a
/e nil
972 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
974 When t, `C-a' will bring back the cursor to the beginning of the
975 headline text, i.e. after the stars and after a possible TODO keyword.
976 In an item, this will be the position after the bullet.
977 When the cursor is already at that position, another `C-a' will bring
978 it to the beginning of the line.
980 `C-e' will jump to the end of the headline, ignoring the presence of tags
981 in the headline. A second `C-e' will then jump to the true end of the
982 line, after any tags. This also means that, when this variable is
983 non-nil, `C-e' also will never jump beyond the end of the heading of a
984 folded section, i.e. not after the ellipses.
986 When set to the symbol `reversed', the first `C-a' or `C-e' works normally,
987 going to the true line boundary first. Only a directly following, identical
988 keypress will bring the cursor to the special positions.
990 This may also be a cons cell where the behavior for `C-a' and `C-e' is
992 :group
'org-edit-structure
994 (const :tag
"off" nil
)
995 (const :tag
"on: after stars/bullet and before tags first" t
)
996 (const :tag
"reversed: true line boundary first" reversed
)
997 (cons :tag
"Set C-a and C-e separately"
998 (choice :tag
"Special C-a"
999 (const :tag
"off" nil
)
1000 (const :tag
"on: after stars/bullet first" t
)
1001 (const :tag
"reversed: before stars/bullet first" reversed
))
1002 (choice :tag
"Special C-e"
1003 (const :tag
"off" nil
)
1004 (const :tag
"on: before tags first" t
)
1005 (const :tag
"reversed: after tags first" reversed
)))))
1006 (if (fboundp 'defvaralias
)
1007 (defvaralias 'org-special-ctrl-a
'org-special-ctrl-a
/e
))
1009 (defcustom org-special-ctrl-k nil
1010 "Non-nil means `C-k' will behave specially in headlines.
1011 When nil, `C-k' will call the default `kill-line' command.
1012 When t, the following will happen while the cursor is in the headline:
1014 - When the cursor is at the beginning of a headline, kill the entire
1015 line and possible the folded subtree below the line.
1016 - When in the middle of the headline text, kill the headline up to the tags.
1017 - When after the headline text, kill the tags."
1018 :group
'org-edit-structure
1021 (defcustom org-ctrl-k-protect-subtree nil
1022 "Non-nil means, do not delete a hidden subtree with C-k.
1023 When set to the symbol `error', simply throw an error when C-k is
1024 used to kill (part-of) a headline that has hidden text behind it.
1025 Any other non-nil value will result in a query to the user, if it is
1026 OK to kill that hidden subtree. When nil, kill without remorse."
1027 :group
'org-edit-structure
1029 (const :tag
"Do not protect hidden subtrees" nil
)
1030 (const :tag
"Protect hidden subtrees with a security query" t
)
1031 (const :tag
"Never kill a hidden subtree with C-k" error
)))
1033 (defcustom org-yank-folded-subtrees t
1034 "Non-nil means when yanking subtrees, fold them.
1035 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1036 it starts with a heading and all other headings in it are either children
1037 or siblings, then fold all the subtrees. However, do this only if no
1038 text after the yank would be swallowed into a folded tree by this action."
1039 :group
'org-edit-structure
1042 (defcustom org-yank-adjusted-subtrees nil
1043 "Non-nil means when yanking subtrees, adjust the level.
1044 With this setting, `org-paste-subtree' is used to insert the subtree, see
1045 this function for details."
1046 :group
'org-edit-structure
1049 (defcustom org-M-RET-may-split-line
'((default . t
))
1050 "Non-nil means M-RET will split the line at the cursor position.
1051 When nil, it will go to the end of the line before making a
1053 You may also set this option in a different way for different
1054 contexts. Valid contexts are:
1056 headline when creating a new headline
1057 item when creating a new item
1058 table in a table field
1059 default the value to be used for all contexts not explicitly
1061 :group
'org-structure
1064 (const :tag
"Always" t
)
1065 (const :tag
"Never" nil
)
1066 (repeat :greedy t
:tag
"Individual contexts"
1068 (choice :tag
"Context"
1076 (defcustom org-insert-heading-respect-content nil
1077 "Non-nil means insert new headings after the current subtree.
1078 When nil, the new heading is created directly after the current line.
1079 The commands \\[org-insert-heading-respect-content] and
1080 \\[org-insert-todo-heading-respect-content] turn this variable on
1081 for the duration of the command."
1082 :group
'org-structure
1085 (defcustom org-blank-before-new-entry
'((heading . auto
)
1086 (plain-list-item . auto
))
1087 "Should `org-insert-heading' leave a blank line before new heading/item?
1088 The value is an alist, with `heading' and `plain-list-item' as car,
1089 and a boolean flag as cdr. The cdr may also be the symbol `auto', and then
1090 Org will look at the surrounding headings/items and try to make an
1091 intelligent decision whether to insert a blank line or not.
1093 For plain lists, if the variable `org-empty-line-terminates-plain-lists' is
1094 set, the setting here is ignored and no empty line is inserted, to avoid
1095 breaking the list structure."
1096 :group
'org-edit-structure
1098 (cons (const heading
)
1099 (choice (const :tag
"Never" nil
)
1100 (const :tag
"Always" t
)
1101 (const :tag
"Auto" auto
)))
1102 (cons (const plain-list-item
)
1103 (choice (const :tag
"Never" nil
)
1104 (const :tag
"Always" t
)
1105 (const :tag
"Auto" auto
)))))
1107 (defcustom org-insert-heading-hook nil
1108 "Hook being run after inserting a new heading."
1109 :group
'org-edit-structure
1112 (defcustom org-enable-fixed-width-editor t
1113 "Non-nil means lines starting with \":\" are treated as fixed-width.
1114 This currently only means they are never auto-wrapped.
1115 When nil, such lines will be treated like ordinary lines.
1116 See also the QUOTE keyword."
1117 :group
'org-edit-structure
1120 (defcustom org-goto-auto-isearch t
1121 "Non-nil means typing characters in `org-goto' starts incremental search."
1122 :group
'org-edit-structure
1125 (defgroup org-sparse-trees nil
1126 "Options concerning sparse trees in Org-mode."
1127 :tag
"Org Sparse Trees"
1128 :group
'org-structure
)
1130 (defcustom org-highlight-sparse-tree-matches t
1131 "Non-nil means highlight all matches that define a sparse tree.
1132 The highlights will automatically disappear the next time the buffer is
1133 changed by an edit command."
1134 :group
'org-sparse-trees
1137 (defcustom org-remove-highlights-with-change t
1138 "Non-nil means any change to the buffer will remove temporary highlights.
1139 Such highlights are created by `org-occur' and `org-clock-display'.
1140 When nil, `C-c C-c needs to be used to get rid of the highlights.
1141 The highlights created by `org-preview-latex-fragment' always need
1142 `C-c C-c' to be removed."
1143 :group
'org-sparse-trees
1148 (defcustom org-occur-hook
'(org-first-headline-recenter)
1149 "Hook that is run after `org-occur' has constructed a sparse tree.
1150 This can be used to recenter the window to show as much of the structure
1152 :group
'org-sparse-trees
1155 (defgroup org-imenu-and-speedbar nil
1156 "Options concerning imenu and speedbar in Org-mode."
1157 :tag
"Org Imenu and Speedbar"
1158 :group
'org-structure
)
1160 (defcustom org-imenu-depth
2
1161 "The maximum level for Imenu access to Org-mode headlines.
1162 This also applied for speedbar access."
1163 :group
'org-imenu-and-speedbar
1166 (defgroup org-table nil
1167 "Options concerning tables in Org-mode."
1171 (defcustom org-enable-table-editor
'optimized
1172 "Non-nil means lines starting with \"|\" are handled by the table editor.
1173 When nil, such lines will be treated like ordinary lines.
1175 When equal to the symbol `optimized', the table editor will be optimized to
1177 - Automatic overwrite mode in front of whitespace in table fields.
1178 This makes the structure of the table stay in tact as long as the edited
1179 field does not exceed the column width.
1180 - Minimize the number of realigns. Normally, the table is aligned each time
1181 TAB or RET are pressed to move to another field. With optimization this
1182 happens only if changes to a field might have changed the column width.
1183 Optimization requires replacing the functions `self-insert-command',
1184 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1185 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1186 very good at guessing when a re-align will be necessary, but you can always
1187 force one with \\[org-ctrl-c-ctrl-c].
1189 If you would like to use the optimized version in Org-mode, but the
1190 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1192 This variable can be used to turn on and off the table editor during a session,
1193 but in order to toggle optimization, a restart is required.
1195 See also the variable `org-table-auto-blank-field'."
1198 (const :tag
"off" nil
)
1200 (const :tag
"on, optimized" optimized
)))
1202 (defcustom org-self-insert-cluster-for-undo t
1203 "Non-nil means cluster self-insert commands for undo when possible.
1204 If this is set, then, like in the Emacs command loop, 20 consecutive
1205 characters will be undone together.
1206 This is configurable, because there is some impact on typing performance."
1210 (defcustom org-table-tab-recognizes-table.el t
1211 "Non-nil means TAB will automatically notice a table.el table.
1212 When it sees such a table, it moves point into it and - if necessary -
1213 calls `table-recognize-table'."
1214 :group
'org-table-editing
1217 (defgroup org-link nil
1218 "Options concerning links in Org-mode."
1222 (defvar org-link-abbrev-alist-local nil
1223 "Buffer-local version of `org-link-abbrev-alist', which see.
1224 The value of this is taken from the #+LINK lines.")
1225 (make-variable-buffer-local 'org-link-abbrev-alist-local
)
1227 (defcustom org-link-abbrev-alist nil
1228 "Alist of link abbreviations.
1229 The car of each element is a string, to be replaced at the start of a link.
1230 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1231 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1233 [[linkkey:tag][description]]
1235 The 'linkkey' must be a word word, starting with a letter, followed
1236 by letters, numbers, '-' or '_'.
1238 If REPLACE is a string, the tag will simply be appended to create the link.
1239 If the string contains \"%s\", the tag will be inserted there. Alternatively,
1240 the placeholder \"%h\" will cause a url-encoded version of the tag to
1241 be inserted at that point (see the function `url-hexify-string').
1243 REPLACE may also be a function that will be called with the tag as the
1244 only argument to create the link, which should be returned as a string.
1246 See the manual for examples."
1250 (string :tag
"Protocol")
1252 (string :tag
"Format")
1255 (defcustom org-descriptive-links t
1256 "Non-nil means hide link part and only show description of bracket links.
1257 Bracket links are like [[link][description]]. This variable sets the initial
1258 state in new org-mode buffers. The setting can then be toggled on a
1259 per-buffer basis from the Org->Hyperlinks menu."
1263 (defcustom org-link-file-path-type
'adaptive
1264 "How the path name in file links should be stored.
1267 relative Relative to the current directory, i.e. the directory of the file
1268 into which the link is being inserted.
1269 absolute Absolute path, if possible with ~ for home directory.
1270 noabbrev Absolute path, no abbreviation of home directory.
1271 adaptive Use relative path for files in the current directory and sub-
1272 directories of it. For other files, use an absolute path."
1280 (defcustom org-activate-links
'(bracket angle plain radio tag date footnote
)
1281 "Types of links that should be activated in Org-mode files.
1282 This is a list of symbols, each leading to the activation of a certain link
1283 type. In principle, it does not hurt to turn on most link types - there may
1284 be a small gain when turning off unused link types. The types are:
1286 bracket The recommended [[link][description]] or [[link]] links with hiding.
1287 angle Links in angular brackets that may contain whitespace like
1288 <bbdb:Carsten Dominik>.
1289 plain Plain links in normal text, no whitespace, like http://google.com.
1290 radio Text that is matched by a radio target, see manual for details.
1291 tag Tag settings in a headline (link to tag search).
1292 date Time stamps (link to calendar).
1293 footnote Footnote labels.
1295 Changing this variable requires a restart of Emacs to become effective."
1297 :type
'(set :greedy t
1298 (const :tag
"Double bracket links" bracket
)
1299 (const :tag
"Angular bracket links" angle
)
1300 (const :tag
"Plain text links" plain
)
1301 (const :tag
"Radio target matches" radio
)
1302 (const :tag
"Tags" tag
)
1303 (const :tag
"Timestamps" date
)
1304 (const :tag
"Footnotes" footnote
)))
1306 (defcustom org-make-link-description-function nil
1307 "Function to use to generate link descriptions from links.
1308 If nil the link location will be used. This function must take
1309 two parameters; the first is the link and the second the
1310 description `org-insert-link' has generated, and should return the
1311 description to use."
1315 (defgroup org-link-store nil
1316 "Options concerning storing links in Org-mode."
1317 :tag
"Org Store Link"
1320 (defcustom org-email-link-description-format
"Email %c: %.30s"
1321 "Format of the description part of a link to an email or usenet message.
1322 The following %-escapes will be replaced by corresponding information:
1324 %F full \"From\" field
1325 %f name, taken from \"From\" field, address if no name
1326 %T full \"To\" field
1327 %t first name in \"To\" field, address if no name
1328 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1329 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1334 You may use normal field width specification between the % and the letter.
1335 This is for example useful to limit the length of the subject.
1337 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1338 :group
'org-link-store
1341 (defcustom org-from-is-user-regexp
1343 (when (and user-mail-address
(not (string= user-mail-address
"")))
1344 (setq r1
(concat "\\<" (regexp-quote user-mail-address
) "\\>")))
1345 (when (and user-full-name
(not (string= user-full-name
"")))
1346 (setq r2
(concat "\\<" (regexp-quote user-full-name
) "\\>")))
1347 (if (and r1 r2
) (concat r1
"\\|" r2
) (or r1 r2
)))
1348 "Regexp matched against the \"From:\" header of an email or usenet message.
1349 It should match if the message is from the user him/herself."
1350 :group
'org-link-store
1353 (defcustom org-link-to-org-use-id
'create-if-interactive-and-no-custom-id
1354 "Non-nil means storing a link to an Org file will use entry IDs.
1356 Note that before this variable is even considered, org-id must be loaded,
1357 so please customize `org-modules' and turn it on.
1359 The variable can have the following values:
1361 t Create an ID if needed to make a link to the current entry.
1363 create-if-interactive
1364 If `org-store-link' is called directly (interactively, as a user
1365 command), do create an ID to support the link. But when doing the
1366 job for remember, only use the ID if it already exists. The
1367 purpose of this setting is to avoid proliferation of unwanted
1368 IDs, just because you happen to be in an Org file when you
1369 call `org-remember' that automatically and preemptively
1370 creates a link. If you do want to get an ID link in a remember
1371 template to an entry not having an ID, create it first by
1372 explicitly creating a link to it, using `C-c C-l' first.
1374 create-if-interactive-and-no-custom-id
1375 Like create-if-interactive, but do not create an ID if there is
1376 a CUSTOM_ID property defined in the entry. This is the default.
1379 Use existing ID, do not create one.
1381 nil Never use an ID to make a link, instead link using a text search for
1383 :group
'org-link-store
1385 (const :tag
"Create ID to make link" t
)
1386 (const :tag
"Create if storing link interactively"
1387 create-if-interactive
)
1388 (const :tag
"Create if storing link interactively and no CUSTOM_ID is present"
1389 create-if-interactive-and-no-custom-id
)
1390 (const :tag
"Only use existing" use-existing
)
1391 (const :tag
"Do not use ID to create link" nil
)))
1393 (defcustom org-context-in-file-links t
1394 "Non-nil means file links from `org-store-link' contain context.
1395 A search string will be added to the file name with :: as separator and
1396 used to find the context when the link is activated by the command
1397 `org-open-at-point'. When this option is t, the entire active region
1398 will be placed in the search string of the file link. If set to a
1399 positive integer, only the first n lines of context will be stored.
1401 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1402 negates this setting for the duration of the command."
1403 :group
'org-link-store
1404 :type
'(choice boolean integer
))
1406 (defcustom org-keep-stored-link-after-insertion nil
1407 "Non-nil means keep link in list for entire session.
1409 The command `org-store-link' adds a link pointing to the current
1410 location to an internal list. These links accumulate during a session.
1411 The command `org-insert-link' can be used to insert links into any
1412 Org-mode file (offering completion for all stored links). When this
1413 option is nil, every link which has been inserted once using \\[org-insert-link]
1414 will be removed from the list, to make completing the unused links
1416 :group
'org-link-store
1419 (defgroup org-link-follow nil
1420 "Options concerning following links in Org-mode."
1421 :tag
"Org Follow Link"
1424 (defcustom org-link-translation-function nil
1425 "Function to translate links with different syntax to Org syntax.
1426 This can be used to translate links created for example by the Planner
1427 or emacs-wiki packages to Org syntax.
1428 The function must accept two parameters, a TYPE containing the link
1429 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1430 which is everything after the link protocol. It should return a cons
1431 with possibly modified values of type and path.
1432 Org contains a function for this, so if you set this variable to
1433 `org-translate-link-from-planner', you should be able follow many
1434 links created by planner."
1435 :group
'org-link-follow
1438 (defcustom org-follow-link-hook nil
1439 "Hook that is run after a link has been followed."
1440 :group
'org-link-follow
1443 (defcustom org-tab-follows-link nil
1444 "Non-nil means on links TAB will follow the link.
1445 Needs to be set before org.el is loaded.
1446 This really should not be used, it does not make sense, and the
1447 implementation is bad."
1448 :group
'org-link-follow
1451 (defcustom org-return-follows-link nil
1452 "Non-nil means on links RET will follow the link."
1453 :group
'org-link-follow
1456 (defcustom org-mouse-1-follows-link
1457 (if (boundp 'mouse-1-click-follows-link
) mouse-1-click-follows-link t
)
1458 "Non-nil means mouse-1 on a link will follow the link.
1459 A longer mouse click will still set point. Does not work on XEmacs.
1460 Needs to be set before org.el is loaded."
1461 :group
'org-link-follow
1464 (defcustom org-mark-ring-length
4
1465 "Number of different positions to be recorded in the ring.
1466 Changing this requires a restart of Emacs to work correctly."
1467 :group
'org-link-follow
1470 (defcustom org-link-search-must-match-exact-headline
'query-to-create
1471 "Non-nil means internal links in Org files must exactly match a headline.
1472 When nil, the link search tries to match a phrase with all words
1473 in the search text."
1474 :group
'org-link-follow
1476 (const :tag
"Use fuzy text search" nil
)
1477 (const :tag
"Match only exact headline" t
)
1478 (const :tag
"Match extact headline or query to create it"
1481 (defcustom org-link-frame-setup
1482 '((vm . vm-visit-folder-other-frame
)
1483 (gnus . org-gnus-no-new-news
)
1484 (file . find-file-other-window
)
1485 (wl . wl-other-frame
))
1486 "Setup the frame configuration for following links.
1487 When following a link with Emacs, it may often be useful to display
1488 this link in another window or frame. This variable can be used to
1489 set this up for the different types of links.
1492 `vm-visit-folder-other-window'
1493 `vm-visit-folder-other-frame'
1494 For Gnus, use any of
1497 `org-gnus-no-new-news'
1498 For FILE, use any of
1500 `find-file-other-window'
1501 `find-file-other-frame'
1502 For Wanderlust use any of
1505 For the calendar, use the variable `calendar-setup'.
1506 For BBDB, it is currently only possible to display the matches in
1508 :group
'org-link-follow
1512 (const vm-visit-folder
)
1513 (const vm-visit-folder-other-window
)
1514 (const vm-visit-folder-other-frame
)))
1518 (const gnus-other-frame
)
1519 (const org-gnus-no-new-news
)))
1523 (const find-file-other-window
)
1524 (const find-file-other-frame
)))
1528 (const wl-other-frame
)))))
1530 (defcustom org-display-internal-link-with-indirect-buffer nil
1531 "Non-nil means use indirect buffer to display infile links.
1532 Activating internal links (from one location in a file to another location
1533 in the same file) normally just jumps to the location. When the link is
1534 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
1536 another window. When this option is set, the other window actually displays
1537 an indirect buffer clone of the current buffer, to avoid any visibility
1538 changes to the current buffer."
1539 :group
'org-link-follow
1542 (defcustom org-open-non-existing-files nil
1543 "Non-nil means `org-open-file' will open non-existing files.
1544 When nil, an error will be generated.
1545 This variable applies only to external applications because they
1546 might choke on non-existing files. If the link is to a file that
1547 will be opened in Emacs, the variable is ignored."
1548 :group
'org-link-follow
1551 (defcustom org-open-directory-means-index-dot-org nil
1552 "Non-nil means a link to a directory really means to index.org.
1553 When nil, following a directory link will run dired or open a finder/explorer
1554 window on that directory."
1555 :group
'org-link-follow
1558 (defcustom org-link-mailto-program
'(browse-url "mailto:%a?subject=%s")
1559 "Function and arguments to call for following mailto links.
1560 This is a list with the first element being a Lisp function, and the
1561 remaining elements being arguments to the function. In string arguments,
1562 %a will be replaced by the address, and %s will be replaced by the subject
1563 if one was given like in <mailto:arthur@galaxy.org::this subject>."
1564 :group
'org-link-follow
1566 (const :tag
"browse-url" (browse-url-mail "mailto:%a?subject=%s"))
1567 (const :tag
"compose-mail" (compose-mail "%a" "%s"))
1568 (const :tag
"message-mail" (message-mail "%a" "%s"))
1569 (cons :tag
"other" (function) (repeat :tag
"argument" sexp
))))
1571 (defcustom org-confirm-shell-link-function
'yes-or-no-p
1572 "Non-nil means ask for confirmation before executing shell links.
1573 Shell links can be dangerous: just think about a link
1575 [[shell:rm -rf ~/*][Google Search]]
1577 This link would show up in your Org-mode document as \"Google Search\",
1578 but really it would remove your entire home directory.
1579 Therefore we advise against setting this variable to nil.
1580 Just change it to `y-or-n-p' if you want to confirm with a
1581 single keystroke rather than having to type \"yes\"."
1582 :group
'org-link-follow
1584 (const :tag
"with yes-or-no (safer)" yes-or-no-p
)
1585 (const :tag
"with y-or-n (faster)" y-or-n-p
)
1586 (const :tag
"no confirmation (dangerous)" nil
)))
1587 (put 'org-confirm-shell-link-function
1588 'safe-local-variable
1589 '(lambda (x) (member x
'(yes-or-no-p y-or-n-p
))))
1591 (defcustom org-confirm-shell-link-not-regexp
""
1592 "A regexp to skip confirmation for shell links."
1593 :group
'org-link-follow
1596 (defcustom org-confirm-elisp-link-function
'yes-or-no-p
1597 "Non-nil means ask for confirmation before executing Emacs Lisp links.
1598 Elisp links can be dangerous: just think about a link
1600 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
1602 This link would show up in your Org-mode document as \"Google Search\",
1603 but really it would remove your entire home directory.
1604 Therefore we advise against setting this variable to nil.
1605 Just change it to `y-or-n-p' if you want to confirm with a
1606 single keystroke rather than having to type \"yes\"."
1607 :group
'org-link-follow
1609 (const :tag
"with yes-or-no (safer)" yes-or-no-p
)
1610 (const :tag
"with y-or-n (faster)" y-or-n-p
)
1611 (const :tag
"no confirmation (dangerous)" nil
)))
1612 (put 'org-confirm-shell-link-function
1613 'safe-local-variable
1614 '(lambda (x) (member x
'(yes-or-no-p y-or-n-p
))))
1616 (defcustom org-confirm-elisp-link-not-regexp
""
1617 "A regexp to skip confirmation for Elisp links."
1618 :group
'org-link-follow
1621 (defconst org-file-apps-defaults-gnu
1625 "Default file applications on a UNIX or GNU/Linux system.
1626 See `org-file-apps'.")
1628 (defconst org-file-apps-defaults-macosx
1631 (system .
"open %s")
1633 ("eps.gz" .
"gv %s")
1635 ("fig" .
"xfig %s"))
1636 "Default file applications on a MacOS X system.
1637 The system \"open\" is known as a default, but we use X11 applications
1638 for some files for which the OS does not have a good default.
1639 See `org-file-apps'.")
1641 (defconst org-file-apps-defaults-windowsnt
1645 (list (if (featurep 'xemacs
)
1646 'mswindows-shell-execute
1650 (list (if (featurep 'xemacs
)
1651 'mswindows-shell-execute
1654 "Default file applications on a Windows NT system.
1655 The system \"open\" is used for most files.
1656 See `org-file-apps'.")
1658 (defcustom org-file-apps
1661 ("\\.mm\\'" . default
)
1662 ("\\.x?html?\\'" . default
)
1663 ("\\.pdf\\'" . default
)
1665 "External applications for opening `file:path' items in a document.
1666 Org-mode uses system defaults for different file types, but
1667 you can use this variable to set the application for a given file
1668 extension. The entries in this list are cons cells where the car identifies
1669 files and the cdr the corresponding command. Possible values for the
1671 \"string\" A string as a file identifier can be interpreted in different
1672 ways, depending on its contents:
1674 - Alphanumeric characters only:
1675 Match links with this file extension.
1676 Example: (\"pdf\" . \"evince %s\")
1677 to open PDFs with evince.
1679 - Regular expression: Match links where the
1680 filename matches the regexp. If you want to
1681 use groups here, use shy groups.
1683 Example: (\"\\.x?html\\'\" . \"firefox %s\")
1684 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
1685 to open *.html and *.xhtml with firefox.
1687 - Regular expression which contains (non-shy) groups:
1688 Match links where the whole link, including \"::\", and
1689 anything after that, matches the regexp.
1690 In a custom command string, %1, %2, etc. are replaced with
1691 the parts of the link that were matched by the groups.
1692 For backwards compatibility, if a command string is given
1693 that does not use any of the group matches, this case is
1694 handled identically to the second one (i.e. match against
1696 In a custom lisp form, you can access the group matches with
1697 (match-string n link).
1699 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
1700 to open [[file:document.pdf::5]] with evince at page 5.
1702 `directory' Matches a directory
1703 `remote' Matches a remote file, accessible through tramp or efs.
1704 Remote files most likely should be visited through Emacs
1705 because external applications cannot handle such paths.
1706 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
1707 so all files Emacs knows how to handle. Using this with
1708 command `emacs' will open most files in Emacs. Beware that this
1709 will also open html files inside Emacs, unless you add
1710 (\"html\" . default) to the list as well.
1711 t Default for files not matched by any of the other options.
1712 `system' The system command to open files, like `open' on Windows
1713 and Mac OS X, and mailcap under GNU/Linux. This is the command
1714 that will be selected if you call `C-c C-o' with a double
1715 \\[universal-argument] \\[universal-argument] prefix.
1717 Possible values for the command are:
1718 `emacs' The file will be visited by the current Emacs process.
1719 `default' Use the default application for this file type, which is the
1720 association for t in the list, most likely in the system-specific
1722 This can be used to overrule an unwanted setting in the
1723 system-specific variable.
1724 `system' Use the system command for opening files, like \"open\".
1725 This command is specified by the entry whose car is `system'.
1726 Most likely, the system-specific version of this variable
1727 does define this command, but you can overrule/replace it
1729 string A command to be executed by a shell; %s will be replaced
1730 by the path to the file.
1731 sexp A Lisp form which will be evaluated. The file path will
1732 be available in the Lisp variable `file'.
1733 For more examples, see the system specific constants
1734 `org-file-apps-defaults-macosx'
1735 `org-file-apps-defaults-windowsnt'
1736 `org-file-apps-defaults-gnu'."
1737 :group
'org-link-follow
1739 (cons (choice :value
""
1740 (string :tag
"Extension")
1741 (const :tag
"System command to open files" system
)
1742 (const :tag
"Default for unrecognized files" t
)
1743 (const :tag
"Remote file" remote
)
1744 (const :tag
"Links to a directory" directory
)
1745 (const :tag
"Any files that have Emacs modes"
1748 (const :tag
"Visit with Emacs" emacs
)
1749 (const :tag
"Use default" default
)
1750 (const :tag
"Use the system command" system
)
1751 (string :tag
"Command")
1752 (sexp :tag
"Lisp form")))))
1756 (defgroup org-refile nil
1757 "Options concerning refiling entries in Org-mode."
1761 (defcustom org-directory
"~/org"
1762 "Directory with org files.
1763 This is just a default location to look for Org files. There is no need
1764 at all to put your files into this directory. It is only used in the
1765 following situations:
1767 1. When a remember template specifies a target file that is not an
1768 absolute path. The path will then be interpreted relative to
1770 2. When a remember note is filed away in an interactive way (when exiting the
1771 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
1772 with `org-directory' as the default path."
1774 :group
'org-remember
1777 (defcustom org-default-notes-file
(convert-standard-filename "~/.notes")
1778 "Default target for storing notes.
1779 Used as a fall back file for org-remember.el and org-capture.el, for
1780 templates that do not specify a target file."
1782 :group
'org-remember
1784 (const :tag
"Default from remember-data-file" nil
)
1787 (defcustom org-goto-interface
'outline
1788 "The default interface to be used for `org-goto'.
1790 outline The interface shows an outline of the relevant file
1791 and the correct heading is found by moving through
1792 the outline or by searching with incremental search.
1793 outline-path-completion Headlines in the current buffer are offered via
1794 completion. This is the interface also used by
1795 the refile command."
1798 (const :tag
"Outline" outline
)
1799 (const :tag
"Outline-path-completion" outline-path-completion
)))
1801 (defcustom org-goto-max-level
5
1802 "Maximum target level when running `org-goto' with refile interface."
1806 (defcustom org-reverse-note-order nil
1807 "Non-nil means store new notes at the beginning of a file or entry.
1808 When nil, new notes will be filed to the end of a file or entry.
1809 This can also be a list with cons cells of regular expressions that
1810 are matched against file names, and values."
1811 :group
'org-remember
1814 (const :tag
"Reverse always" t
)
1815 (const :tag
"Reverse never" nil
)
1816 (repeat :tag
"By file name regexp"
1817 (cons regexp boolean
))))
1819 (defcustom org-log-refile nil
1820 "Information to record when a task is refiled.
1822 Possible values are:
1824 nil Don't add anything
1825 time Add a time stamp to the task
1826 note Prompt for a note and add it with template `org-log-note-headings'
1828 This option can also be set with on a per-file-basis with
1830 #+STARTUP: nologrefile
1831 #+STARTUP: logrefile
1832 #+STARTUP: lognoterefile
1834 You can have local logging settings for a subtree by setting the LOGGING
1835 property to one or more of these keywords.
1837 When bulk-refiling from the agenda, the value `note' is forbidden and
1838 will temporarily be changed to `time'."
1840 :group
'org-progress
1842 (const :tag
"No logging" nil
)
1843 (const :tag
"Record timestamp" time
)
1844 (const :tag
"Record timestamp with note." note
)))
1846 (defcustom org-refile-targets nil
1847 "Targets for refiling entries with \\[org-refile].
1848 This is list of cons cells. Each cell contains:
1849 - a specification of the files to be considered, either a list of files,
1850 or a symbol whose function or variable value will be used to retrieve
1851 a file name or a list of file names. If you use `org-agenda-files' for
1852 that, all agenda files will be scanned for targets. Nil means consider
1853 headings in the current buffer.
1854 - A specification of how to find candidate refile targets. This may be
1856 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
1857 This tag has to be present in all target headlines, inheritance will
1859 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
1861 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
1862 headlines that are refiling targets.
1863 - a cons cell (:level . N). Any headline of level N is considered a target.
1864 Note that, when `org-odd-levels-only' is set, level corresponds to
1865 order in hierarchy, not to the number of stars.
1866 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
1867 Note that, when `org-odd-levels-only' is set, level corresponds to
1868 order in hierarchy, not to the number of stars.
1870 You can set the variable `org-refile-target-verify-function' to a function
1871 to verify each headline found by the simple criteria above.
1873 When this variable is nil, all top-level headlines in the current buffer
1874 are used, equivalent to the value `((nil . (:level . 1))'."
1878 (choice :value org-agenda-files
1879 (const :tag
"All agenda files" org-agenda-files
)
1880 (const :tag
"Current buffer" nil
)
1881 (function) (variable) (file))
1882 (choice :tag
"Identify target headline by"
1883 (cons :tag
"Specific tag" (const :value
:tag
) (string))
1884 (cons :tag
"TODO keyword" (const :value
:todo
) (string))
1885 (cons :tag
"Regular expression" (const :value
:regexp
) (regexp))
1886 (cons :tag
"Level number" (const :value
:level
) (integer))
1887 (cons :tag
"Max Level number" (const :value
:maxlevel
) (integer))))))
1889 (defcustom org-refile-target-verify-function nil
1890 "Function to verify if the headline at point should be a refile target.
1891 The function will be called without arguments, with point at the
1892 beginning of the headline. It should return t and leave point
1893 where it is if the headline is a valid target for refiling.
1895 If the target should not be selected, the function must return nil.
1896 In addition to this, it may move point to a place from where the search
1897 should be continued. For example, the function may decide that the entire
1898 subtree of the current entry should be excluded and move point to the end
1903 (defcustom org-refile-use-cache nil
1904 "Non-nil means cache refile targets to speed up the process.
1905 The cache for a particular file will be updated automatically when
1906 the buffer has been killed, or when any of the marker used for flagging
1907 refile targets no longer points at a live buffer.
1908 If you have added new entries to a buffer that might themselves be targets,
1909 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
1910 find that easier, `C-u C-u C-u C-c C-w'."
1914 (defcustom org-refile-use-outline-path nil
1915 "Non-nil means provide refile targets as paths.
1916 So a level 3 headline will be available as level1/level2/level3.
1918 When the value is `file', also include the file name (without directory)
1919 into the path. In this case, you can also stop the completion after
1920 the file name, to get entries inserted as top level in the file.
1922 When `full-file-path', include the full file path."
1925 (const :tag
"Not" nil
)
1926 (const :tag
"Yes" t
)
1927 (const :tag
"Start with file name" file
)
1928 (const :tag
"Start with full file path" full-file-path
)))
1930 (defcustom org-outline-path-complete-in-steps t
1931 "Non-nil means complete the outline path in hierarchical steps.
1932 When Org-mode uses the refile interface to select an outline path
1933 \(see variable `org-refile-use-outline-path'), the completion of
1934 the path can be done is a single go, or if can be done in steps down
1935 the headline hierarchy. Going in steps is probably the best if you
1936 do not use a special completion package like `ido' or `icicles'.
1937 However, when using these packages, going in one step can be very
1938 fast, while still showing the whole path to the entry."
1942 (defcustom org-refile-allow-creating-parent-nodes nil
1943 "Non-nil means allow to create new nodes as refile targets.
1944 New nodes are then created by adding \"/new node name\" to the completion
1945 of an existing node. When the value of this variable is `confirm',
1946 new node creation must be confirmed by the user (recommended)
1947 When nil, the completion must match an existing entry.
1949 Note that, if the new heading is not seen by the criteria
1950 listed in `org-refile-targets', multiple instances of the same
1951 heading would be created by trying again to file under the new
1955 (const :tag
"Never" nil
)
1956 (const :tag
"Always" t
)
1957 (const :tag
"Prompt for confirmation" confirm
)))
1959 (defgroup org-todo nil
1960 "Options concerning TODO items in Org-mode."
1964 (defgroup org-progress nil
1965 "Options concerning Progress logging in Org-mode."
1969 (defvar org-todo-interpretation-widgets
1971 (:tag
"Sequence (cycling hits every state)" sequence
)
1972 (:tag
"Type (cycling directly to DONE)" type
))
1973 "The available interpretation symbols for customizing `org-todo-keywords'.
1974 Interested libraries should add to this list.")
1976 (defcustom org-todo-keywords
'((sequence "TODO" "DONE"))
1977 "List of TODO entry keyword sequences and their interpretation.
1978 \\<org-mode-map>This is a list of sequences.
1980 Each sequence starts with a symbol, either `sequence' or `type',
1981 indicating if the keywords should be interpreted as a sequence of
1982 action steps, or as different types of TODO items. The first
1983 keywords are states requiring action - these states will select a headline
1984 for inclusion into the global TODO list Org-mode produces. If one of
1985 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
1986 signify that no further action is necessary. If \"|\" is not found,
1987 the last keyword is treated as the only DONE state of the sequence.
1989 The command \\[org-todo] cycles an entry through these states, and one
1990 additional state where no keyword is present. For details about this
1991 cycling, see the manual.
1993 TODO keywords and interpretation can also be set on a per-file basis with
1994 the special #+SEQ_TODO and #+TYP_TODO lines.
1996 Each keyword can optionally specify a character for fast state selection
1997 \(in combination with the variable `org-use-fast-todo-selection')
1998 and specifiers for state change logging, using the same syntax
1999 that is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says
2000 that the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2001 indicates to record a time stamp each time this state is selected.
2003 Each keyword may also specify if a timestamp or a note should be
2004 recorded when entering or leaving the state, by adding additional
2005 characters in the parenthesis after the keyword. This looks like this:
2006 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2007 record only the time of the state change. With X and Y being either
2008 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2009 Y when leaving the state if and only if the *target* state does not
2010 define X. You may omit any of the fast-selection key or X or /Y,
2011 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2013 For backward compatibility, this variable may also be just a list
2014 of keywords - in this case the interpretation (sequence or type) will be
2015 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2017 :group
'org-keywords
2019 (repeat :tag
"Old syntax, just keywords"
2020 (string :tag
"Keyword"))
2021 (repeat :tag
"New syntax"
2024 :tag
"Interpretation"
2025 ;;Quick and dirty way to see
2026 ;;`org-todo-interpretations'. This takes the
2027 ;;place of item arguments
2035 org-todo-interpretation-widgets
))
2038 (string :tag
"Keyword"))))))
2040 (defvar org-todo-keywords-1 nil
2041 "All TODO and DONE keywords active in a buffer.")
2042 (make-variable-buffer-local 'org-todo-keywords-1
)
2043 (defvar org-todo-keywords-for-agenda nil
)
2044 (defvar org-done-keywords-for-agenda nil
)
2045 (defvar org-drawers-for-agenda nil
)
2046 (defvar org-todo-keyword-alist-for-agenda nil
)
2047 (defvar org-tag-alist-for-agenda nil
)
2048 (defvar org-agenda-contributing-files nil
)
2049 (defvar org-not-done-keywords nil
)
2050 (make-variable-buffer-local 'org-not-done-keywords
)
2051 (defvar org-done-keywords nil
)
2052 (make-variable-buffer-local 'org-done-keywords
)
2053 (defvar org-todo-heads nil
)
2054 (make-variable-buffer-local 'org-todo-heads
)
2055 (defvar org-todo-sets nil
)
2056 (make-variable-buffer-local 'org-todo-sets
)
2057 (defvar org-todo-log-states nil
)
2058 (make-variable-buffer-local 'org-todo-log-states
)
2059 (defvar org-todo-kwd-alist nil
)
2060 (make-variable-buffer-local 'org-todo-kwd-alist
)
2061 (defvar org-todo-key-alist nil
)
2062 (make-variable-buffer-local 'org-todo-key-alist
)
2063 (defvar org-todo-key-trigger nil
)
2064 (make-variable-buffer-local 'org-todo-key-trigger
)
2066 (defcustom org-todo-interpretation
'sequence
2067 "Controls how TODO keywords are interpreted.
2068 This variable is in principle obsolete and is only used for
2069 backward compatibility, if the interpretation of todo keywords is
2070 not given already in `org-todo-keywords'. See that variable for
2073 :group
'org-keywords
2074 :type
'(choice (const sequence
)
2077 (defcustom org-use-fast-todo-selection t
2078 "Non-nil means use the fast todo selection scheme with C-c C-t.
2079 This variable describes if and under what circumstances the cycling
2080 mechanism for TODO keywords will be replaced by a single-key, direct
2083 When nil, fast selection is never used.
2085 When the symbol `prefix', it will be used when `org-todo' is called with
2086 a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and `C-u t'
2087 in an agenda buffer.
2089 When t, fast selection is used by default. In this case, the prefix
2090 argument forces cycling instead.
2092 In all cases, the special interface is only used if access keys have actually
2093 been assigned by the user, i.e. if keywords in the configuration are followed
2094 by a letter in parenthesis, like TODO(t)."
2097 (const :tag
"Never" nil
)
2098 (const :tag
"By default" t
)
2099 (const :tag
"Only with C-u C-c C-t" prefix
)))
2101 (defcustom org-provide-todo-statistics t
2102 "Non-nil means update todo statistics after insert and toggle.
2103 ALL-HEADLINES means update todo statistics by including headlines
2104 with no TODO keyword as well, counting them as not done.
2105 A list of TODO keywords means the same, but skip keywords that are
2108 When this is set, todo statistics is updated in the parent of the
2109 current entry each time a todo state is changed."
2112 (const :tag
"Yes, only for TODO entries" t
)
2113 (const :tag
"Yes, including all entries" 'all-headlines
)
2114 (repeat :tag
"Yes, for TODOs in this list"
2115 (string :tag
"TODO keyword"))
2116 (other :tag
"No TODO statistics" nil
)))
2118 (defcustom org-hierarchical-todo-statistics t
2119 "Non-nil means TODO statistics covers just direct children.
2120 When nil, all entries in the subtree are considered.
2121 This has only an effect if `org-provide-todo-statistics' is set.
2122 To set this to nil for only a single subtree, use a COOKIE_DATA
2123 property and include the word \"recursive\" into the value."
2127 (defcustom org-after-todo-state-change-hook nil
2128 "Hook which is run after the state of a TODO item was changed.
2129 The new state (a string with a TODO keyword, or nil) is available in the
2130 Lisp variable `state'."
2134 (defvar org-blocker-hook nil
2135 "Hook for functions that are allowed to block a state change.
2137 Each function gets as its single argument a property list, see
2138 `org-trigger-hook' for more information about this list.
2140 If any of the functions in this hook returns nil, the state change
2143 (defvar org-trigger-hook nil
2144 "Hook for functions that are triggered by a state change.
2146 Each function gets as its single argument a property list with at least
2147 the following elements:
2149 (:type type-of-change :position pos-at-entry-start
2150 :from old-state :to new-state)
2152 Depending on the type, more properties may be present.
2154 This mechanism is currently implemented for:
2158 :type todo-state-change
2159 :from previous state (keyword as a string), or nil, or a symbol
2160 'todo' or 'done', to indicate the general type of state.
2161 :to new state, like in :from")
2163 (defcustom org-enforce-todo-dependencies nil
2164 "Non-nil means undone TODO entries will block switching the parent to DONE.
2165 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2166 be blocked if any prior sibling is not yet done.
2167 Finally, if the parent is blocked because of ordered siblings of its own,
2168 the child will also be blocked.
2169 This variable needs to be set before org.el is loaded, and you need to
2170 restart Emacs after a change to make the change effective. The only way
2171 to change is while Emacs is running is through the customize interface."
2172 :set
(lambda (var val
)
2175 (add-hook 'org-blocker-hook
2176 'org-block-todo-from-children-or-siblings-or-parent
)
2177 (remove-hook 'org-blocker-hook
2178 'org-block-todo-from-children-or-siblings-or-parent
)))
2182 (defcustom org-enforce-todo-checkbox-dependencies nil
2183 "Non-nil means unchecked boxes will block switching the parent to DONE.
2184 When this is nil, checkboxes have no influence on switching TODO states.
2185 When non-nil, you first need to check off all check boxes before the TODO
2186 entry can be switched to DONE.
2187 This variable needs to be set before org.el is loaded, and you need to
2188 restart Emacs after a change to make the change effective. The only way
2189 to change is while Emacs is running is through the customize interface."
2190 :set
(lambda (var val
)
2193 (add-hook 'org-blocker-hook
2194 'org-block-todo-from-checkboxes
)
2195 (remove-hook 'org-blocker-hook
2196 'org-block-todo-from-checkboxes
)))
2200 (defcustom org-treat-insert-todo-heading-as-state-change nil
2201 "Non-nil means inserting a TODO heading is treated as state change.
2202 So when the command \\[org-insert-todo-heading] is used, state change
2203 logging will apply if appropriate. When nil, the new TODO item will
2204 be inserted directly, and no logging will take place."
2208 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2209 "Non-nil means switching TODO states with S-cursor counts as state change.
2210 This is the default behavior. However, setting this to nil allows a
2211 convenient way to select a TODO state and bypass any logging associated
2216 (defcustom org-todo-state-tags-triggers nil
2217 "Tag changes that should be triggered by TODO state changes.
2218 This is a list. Each entry is
2220 (state-change (tag . flag) .......)
2222 State-change can be a string with a state, and empty string to indicate the
2223 state that has no TODO keyword, or it can be one of the symbols `todo'
2224 or `done', meaning any not-done or done state, respectively."
2228 (cons (choice :tag
"When changing to"
2229 (const :tag
"Not-done state" todo
)
2230 (const :tag
"Done state" done
)
2231 (string :tag
"State"))
2233 (cons :tag
"Tag action"
2235 (choice (const :tag
"Add" t
) (const :tag
"Remove" nil
)))))))
2237 (defcustom org-log-done nil
2238 "Information to record when a task moves to the DONE state.
2240 Possible values are:
2242 nil Don't add anything, just change the keyword
2243 time Add a time stamp to the task
2244 note Prompt for a note and add it with template `org-log-note-headings'
2246 This option can also be set with on a per-file-basis with
2248 #+STARTUP: nologdone
2250 #+STARTUP: lognotedone
2252 You can have local logging settings for a subtree by setting the LOGGING
2253 property to one or more of these keywords."
2255 :group
'org-progress
2257 (const :tag
"No logging" nil
)
2258 (const :tag
"Record CLOSED timestamp" time
)
2259 (const :tag
"Record CLOSED timestamp with note." note
)))
2261 ;; Normalize old uses of org-log-done.
2263 ((eq org-log-done t
) (setq org-log-done
'time
))
2264 ((and (listp org-log-done
) (memq 'done org-log-done
))
2265 (setq org-log-done
'note
)))
2267 (defcustom org-log-reschedule nil
2268 "Information to record when the scheduling date of a tasks is modified.
2270 Possible values are:
2272 nil Don't add anything, just change the date
2273 time Add a time stamp to the task
2274 note Prompt for a note and add it with template `org-log-note-headings'
2276 This option can also be set with on a per-file-basis with
2278 #+STARTUP: nologreschedule
2279 #+STARTUP: logreschedule
2280 #+STARTUP: lognotereschedule"
2282 :group
'org-progress
2284 (const :tag
"No logging" nil
)
2285 (const :tag
"Record timestamp" time
)
2286 (const :tag
"Record timestamp with note." note
)))
2288 (defcustom org-log-redeadline nil
2289 "Information to record when the deadline date of a tasks is modified.
2291 Possible values are:
2293 nil Don't add anything, just change the date
2294 time Add a time stamp to the task
2295 note Prompt for a note and add it with template `org-log-note-headings'
2297 This option can also be set with on a per-file-basis with
2299 #+STARTUP: nologredeadline
2300 #+STARTUP: logredeadline
2301 #+STARTUP: lognoteredeadline
2303 You can have local logging settings for a subtree by setting the LOGGING
2304 property to one or more of these keywords."
2306 :group
'org-progress
2308 (const :tag
"No logging" nil
)
2309 (const :tag
"Record timestamp" time
)
2310 (const :tag
"Record timestamp with note." note
)))
2312 (defcustom org-log-note-clock-out nil
2313 "Non-nil means record a note when clocking out of an item.
2314 This can also be configured on a per-file basis by adding one of
2315 the following lines anywhere in the buffer:
2317 #+STARTUP: lognoteclock-out
2318 #+STARTUP: nolognoteclock-out"
2320 :group
'org-progress
2323 (defcustom org-log-done-with-time t
2324 "Non-nil means the CLOSED time stamp will contain date and time.
2325 When nil, only the date will be recorded."
2326 :group
'org-progress
2329 (defcustom org-log-note-headings
2330 '((done .
"CLOSING NOTE %t")
2331 (state .
"State %-12s from %-12S %t")
2332 (note .
"Note taken on %t")
2333 (reschedule .
"Rescheduled from %S on %t")
2334 (delschedule .
"Not scheduled, was %S on %t")
2335 (redeadline .
"New deadline from %S on %t")
2336 (deldeadline .
"Removed deadline, was %S on %t")
2337 (refile .
"Refiled on %t")
2339 "Headings for notes added to entries.
2340 The value is an alist, with the car being a symbol indicating the note
2341 context, and the cdr is the heading to be used. The heading may also be the
2343 %t in the heading will be replaced by a time stamp.
2344 %T will be an active time stamp instead the default inactive one
2345 %s will be replaced by the new TODO state, in double quotes.
2346 %S will be replaced by the old TODO state, in double quotes.
2347 %u will be replaced by the user name.
2348 %U will be replaced by the full user name.
2350 In fact, it is not a good idea to change the `state' entry, because
2351 agenda log mode depends on the format of these entries."
2353 :group
'org-progress
2354 :type
'(list :greedy t
2355 (cons (const :tag
"Heading when closing an item" done
) string
)
2357 "Heading when changing todo state (todo sequence only)"
2359 (cons (const :tag
"Heading when just taking a note" note
) string
)
2360 (cons (const :tag
"Heading when clocking out" clock-out
) string
)
2361 (cons (const :tag
"Heading when an item is no longer scheduled" delschedule
) string
)
2362 (cons (const :tag
"Heading when rescheduling" reschedule
) string
)
2363 (cons (const :tag
"Heading when changing deadline" redeadline
) string
)
2364 (cons (const :tag
"Heading when deleting a deadline" deldeadline
) string
)
2365 (cons (const :tag
"Heading when refiling" refile
) string
)))
2367 (unless (assq 'note org-log-note-headings
)
2368 (push '(note .
"%t") org-log-note-headings
))
2370 (defcustom org-log-into-drawer nil
2371 "Non-nil means insert state change notes and time stamps into a drawer.
2372 When nil, state changes notes will be inserted after the headline and
2373 any scheduling and clock lines, but not inside a drawer.
2375 The value of this variable should be the name of the drawer to use.
2376 LOGBOOK is proposed at the default drawer for this purpose, you can
2377 also set this to a string to define the drawer of your choice.
2379 A value of t is also allowed, representing \"LOGBOOK\".
2381 If this variable is set, `org-log-state-notes-insert-after-drawers'
2384 You can set the property LOG_INTO_DRAWER to overrule this setting for
2387 :group
'org-progress
2389 (const :tag
"Not into a drawer" nil
)
2390 (const :tag
"LOGBOOK" t
)
2391 (string :tag
"Other")))
2393 (if (fboundp 'defvaralias
)
2394 (defvaralias 'org-log-state-notes-into-drawer
'org-log-into-drawer
))
2396 (defun org-log-into-drawer ()
2397 "Return the value of `org-log-into-drawer', but let properties overrule.
2398 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2399 used instead of the default value."
2400 (let ((p (org-entry-get nil
"LOG_INTO_DRAWER" 'inherit
)))
2402 ((or (not p
) (equal p
"nil")) org-log-into-drawer
)
2403 ((equal p
"t") "LOGBOOK")
2406 (defcustom org-log-state-notes-insert-after-drawers nil
2407 "Non-nil means insert state change notes after any drawers in entry.
2408 Only the drawers that *immediately* follow the headline and the
2409 deadline/scheduled line are skipped.
2410 When nil, insert notes right after the heading and perhaps the line
2411 with deadline/scheduling if present.
2413 This variable will have no effect if `org-log-into-drawer' is
2416 :group
'org-progress
2419 (defcustom org-log-states-order-reversed t
2420 "Non-nil means the latest state note will be directly after heading.
2421 When nil, the state change notes will be ordered according to time."
2423 :group
'org-progress
2426 (defcustom org-todo-repeat-to-state nil
2427 "The TODO state to which a repeater should return the repeating task.
2428 By default this is the first task in a TODO sequence, or the previous state
2429 in a TODO_TYP set. But you can specify another task here.
2430 alternatively, set the :REPEAT_TO_STATE: property of the entry."
2432 :type
'(choice (const :tag
"Head of sequence" nil
)
2433 (string :tag
"Specific state")))
2435 (defcustom org-log-repeat
'time
2436 "Non-nil means record moving through the DONE state when triggering repeat.
2437 An auto-repeating task is immediately switched back to TODO when
2438 marked DONE. If you are not logging state changes (by adding \"@\"
2439 or \"!\" to the TODO keyword definition), or set `org-log-done' to
2440 record a closing note, there will be no record of the task moving
2441 through DONE. This variable forces taking a note anyway.
2443 nil Don't force a record
2444 time Record a time stamp
2447 This option can also be set with on a per-file-basis with
2449 #+STARTUP: logrepeat
2450 #+STARTUP: lognoterepeat
2451 #+STARTUP: nologrepeat
2453 You can have local logging settings for a subtree by setting the LOGGING
2454 property to one or more of these keywords."
2456 :group
'org-progress
2458 (const :tag
"Don't force a record" nil
)
2459 (const :tag
"Force recording the DONE state" time
)
2460 (const :tag
"Force recording a note with the DONE state" note
)))
2463 (defgroup org-priorities nil
2464 "Priorities in Org-mode."
2465 :tag
"Org Priorities"
2468 (defcustom org-enable-priority-commands t
2469 "Non-nil means priority commands are active.
2470 When nil, these commands will be disabled, so that you never accidentally
2472 :group
'org-priorities
2475 (defcustom org-highest-priority ?A
2476 "The highest priority of TODO items. A character like ?A, ?B etc.
2477 Must have a smaller ASCII number than `org-lowest-priority'."
2478 :group
'org-priorities
2481 (defcustom org-lowest-priority ?C
2482 "The lowest priority of TODO items. A character like ?A, ?B etc.
2483 Must have a larger ASCII number than `org-highest-priority'."
2484 :group
'org-priorities
2487 (defcustom org-default-priority ?B
2488 "The default priority of TODO items.
2489 This is the priority an item get if no explicit priority is given."
2490 :group
'org-priorities
2493 (defcustom org-priority-start-cycle-with-default t
2494 "Non-nil means start with default priority when starting to cycle.
2495 When this is nil, the first step in the cycle will be (depending on the
2496 command used) one higher or lower that the default priority."
2497 :group
'org-priorities
2500 (defcustom org-get-priority-function nil
2501 "Function to extract the priority from a string.
2502 The string is normally the headline. If this is nil Org computes the
2503 priority from the priority cookie like [#A] in the headline. It returns
2504 an integer, increasing by 1000 for each priority level.
2505 The user can set a different function here, which should take a string
2506 as an argument and return the numeric priority."
2507 :group
'org-priorities
2510 (defgroup org-time nil
2511 "Options concerning time stamps and deadlines in Org-mode."
2515 (defcustom org-insert-labeled-timestamps-at-point nil
2516 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
2517 When nil, these labeled time stamps are forces into the second line of an
2518 entry, just after the headline. When scheduling from the global TODO list,
2519 the time stamp will always be forced into the second line."
2523 (defconst org-time-stamp-formats
'("<%Y-%m-%d %a>" .
"<%Y-%m-%d %a %H:%M>")
2524 "Formats for `format-time-string' which are used for time stamps.
2525 It is not recommended to change this constant.")
2527 (defcustom org-time-stamp-rounding-minutes
'(0 5)
2528 "Number of minutes to round time stamps to.
2529 These are two values, the first applies when first creating a time stamp.
2530 The second applies when changing it with the commands `S-up' and `S-down'.
2531 When changing the time stamp, this means that it will change in steps
2532 of N minutes, as given by the second value.
2534 When a setting is 0 or 1, insert the time unmodified. Useful rounding
2535 numbers should be factors of 60, so for example 5, 10, 15.
2537 When this is larger than 1, you can still force an exact time stamp by using
2538 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
2539 and by using a prefix arg to `S-up/down' to specify the exact number
2540 of minutes to shift."
2542 :get
'(lambda (var) ; Make sure both elements are there
2543 (if (integerp (default-value var
))
2544 (list (default-value var
) 5)
2545 (default-value var
)))
2547 (integer :tag
"when inserting times")
2548 (integer :tag
"when modifying times")))
2550 ;; Normalize old customizations of this variable.
2551 (when (integerp org-time-stamp-rounding-minutes
)
2552 (setq org-time-stamp-rounding-minutes
2553 (list org-time-stamp-rounding-minutes
2554 org-time-stamp-rounding-minutes
)))
2556 (defcustom org-display-custom-times nil
2557 "Non-nil means overlay custom formats over all time stamps.
2558 The formats are defined through the variable `org-time-stamp-custom-formats'.
2559 To turn this on on a per-file basis, insert anywhere in the file:
2560 #+STARTUP: customtime"
2564 (make-variable-buffer-local 'org-display-custom-times
)
2566 (defcustom org-time-stamp-custom-formats
2567 '("<%m/%d/%y %a>" .
"<%m/%d/%y %a %H:%M>") ; american
2568 "Custom formats for time stamps. See `format-time-string' for the syntax.
2569 These are overlayed over the default ISO format if the variable
2570 `org-display-custom-times' is set. Time like %H:%M should be at the
2571 end of the second format. The custom formats are also honored by export
2572 commands, if custom time display is turned on at the time of export."
2576 (defun org-time-stamp-format (&optional long inactive
)
2577 "Get the right format for a time string."
2578 (let ((f (if long
(cdr org-time-stamp-formats
)
2579 (car org-time-stamp-formats
))))
2581 (concat "[" (substring f
1 -
1) "]")
2584 (defcustom org-time-clocksum-format
"%d:%02d"
2585 "The format string used when creating CLOCKSUM lines.
2586 This is also used when org-mode generates a time duration."
2590 (defcustom org-time-clocksum-use-fractional nil
2591 "If non-nil, \\[org-clock-display] uses fractional times.
2592 org-mode generates a time duration."
2596 (defcustom org-time-clocksum-fractional-format
"%.2f"
2597 "The format string used when creating CLOCKSUM lines, or when
2598 org-mode generates a time duration."
2602 (defcustom org-deadline-warning-days
14
2603 "No. of days before expiration during which a deadline becomes active.
2604 This variable governs the display in sparse trees and in the agenda.
2605 When 0 or negative, it means use this number (the absolute value of it)
2606 even if a deadline has a different individual lead time specified.
2608 Custom commands can set this variable in the options section."
2610 :group
'org-agenda-daily
/weekly
2613 (defcustom org-read-date-prefer-future t
2614 "Non-nil means assume future for incomplete date input from user.
2615 This affects the following situations:
2616 1. The user gives a month but not a year.
2617 For example, if it is April and you enter \"feb 2\", this will be read
2618 as Feb 2, *next* year. \"May 5\", however, will be this year.
2619 2. The user gives a day, but no month.
2620 For example, if today is the 15th, and you enter \"3\", Org-mode will
2621 read this as the third of *next* month. However, if you enter \"17\",
2622 it will be considered as *this* month.
2624 If you set this variable to the symbol `time', then also the following
2627 3. If the user gives a time, but no day. If the time is before now,
2628 to will be interpreted as tomorrow.
2630 Currently none of this works for ISO week specifications.
2632 When this option is nil, the current day, month and year will always be
2635 See also `org-agenda-jump-prefer-future'."
2638 (const :tag
"Never" nil
)
2639 (const :tag
"Check month and day" t
)
2640 (const :tag
"Check month, day, and time" time
)))
2642 (defcustom org-agenda-jump-prefer-future
'org-read-date-prefer-future
2643 "Should the agenda jump command prefer the future for incomplete dates?
2644 The default is to do the same as configured in `org-read-date-prefer-future'.
2645 But you can also set a deviating value here.
2646 This may t or nil, or the symbol `org-read-date-prefer-future'."
2650 (const :tag
"Use org-read-date-prefer-future"
2651 org-read-date-prefer-future
)
2652 (const :tag
"Never" nil
)
2653 (const :tag
"Always" t
)))
2655 (defcustom org-read-date-force-compatible-dates t
2656 "Should date/time prompt force dates that are guaranteed to work in Emacs?
2658 Depending on the system Emacs is running on, certain dates cannot
2659 be represented with the type used internally to represent time.
2660 Dates between 1970-1-1 and 2038-1-1 can always be represented
2661 correctly. Some systems allow for earlier dates, some for later,
2662 some for both. One way to find out it to insert any date into an
2663 Org buffer, putting the cursor on the year and hitting S-up and
2664 S-down to test the range.
2666 When this variable is set to t, the date/time prompt will not let
2667 you specify dates outside the 1970-2037 range, so it is certain that
2668 these dates will work in whatever version of Emacs you are
2669 running, and also that you can move a file from one Emacs implementation
2670 to another. WHenever Org is forcing the year for you, it will display
2673 When this variable is nil, Org will check if the date is
2674 representable in the specific Emacs implementation you are using.
2675 If not, it will force a year, usually the current year, and beep
2676 to remind you. Currently this setting is not recommended because
2677 the likelihood that you will open your Org files in an Emacs that
2678 has limited date range is not negligible.
2680 A workaround for this problem is to use diary sexp dates for time
2681 stamps outside of this range."
2685 (defcustom org-read-date-display-live t
2686 "Non-nil means display current interpretation of date prompt live.
2687 This display will be in an overlay, in the minibuffer."
2691 (defcustom org-read-date-popup-calendar t
2692 "Non-nil means pop up a calendar when prompting for a date.
2693 In the calendar, the date can be selected with mouse-1. However, the
2694 minibuffer will also be active, and you can simply enter the date as well.
2695 When nil, only the minibuffer will be available."
2698 (if (fboundp 'defvaralias
)
2699 (defvaralias 'org-popup-calendar-for-date-prompt
2700 'org-read-date-popup-calendar
))
2702 (defcustom org-read-date-minibuffer-setup-hook nil
2703 "Hook to be used to set up keys for the date/time interface.
2704 Add key definitions to `minibuffer-local-map', which will be a temporary
2709 (defcustom org-extend-today-until
0
2710 "The hour when your day really ends. Must be an integer.
2711 This has influence for the following applications:
2712 - When switching the agenda to \"today\". It it is still earlier than
2713 the time given here, the day recognized as TODAY is actually yesterday.
2714 - When a date is read from the user and it is still before the time given
2715 here, the current date and time will be assumed to be yesterday, 23:59.
2716 Also, timestamps inserted in remember templates follow this rule.
2718 IMPORTANT: This is a feature whose implementation is and likely will
2719 remain incomplete. Really, it is only here because past midnight seems to
2720 be the favorite working time of John Wiegley :-)"
2724 (defcustom org-edit-timestamp-down-means-later nil
2725 "Non-nil means S-down will increase the time in a time stamp.
2726 When nil, S-up will increase."
2730 (defcustom org-calendar-follow-timestamp-change t
2731 "Non-nil means make the calendar window follow timestamp changes.
2732 When a timestamp is modified and the calendar window is visible, it will be
2733 moved to the new date."
2737 (defgroup org-tags nil
2738 "Options concerning tags in Org-mode."
2742 (defcustom org-tag-alist nil
2743 "List of tags allowed in Org-mode files.
2744 When this list is nil, Org-mode will base TAG input on what is already in the
2746 The value of this variable is an alist, the car of each entry must be a
2747 keyword as a string, the cdr may be a character that is used to select
2748 that tag through the fast-tag-selection interface.
2749 See the manual for details."
2753 (cons (string :tag
"Tag name")
2754 (character :tag
"Access char"))
2755 (list :tag
"Start radio group"
2757 (option (string :tag
"Group description")))
2758 (list :tag
"End radio group"
2760 (option (string :tag
"Group description")))
2761 (const :tag
"New line" (:newline
)))))
2763 (defcustom org-tag-persistent-alist nil
2764 "List of tags that will always appear in all Org-mode files.
2765 This is in addition to any in buffer settings or customizations
2767 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
2768 The value of this variable is an alist, the car of each entry must be a
2769 keyword as a string, the cdr may be a character that is used to select
2770 that tag through the fast-tag-selection interface.
2771 See the manual for details.
2772 To disable these tags on a per-file basis, insert anywhere in the file:
2777 (cons (string :tag
"Tag name")
2778 (character :tag
"Access char"))
2779 (const :tag
"Start radio group" (:startgroup
))
2780 (const :tag
"End radio group" (:endgroup
))
2781 (const :tag
"New line" (:newline
)))))
2783 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
2784 "If non-nil, always offer completion for all tags of all agenda files.
2785 Instead of customizing this variable directly, you might want to
2786 set it locally for capture buffers, because there no list of
2787 tags in that file can be created dynamically (there are none).
2789 (add-hook 'org-capture-mode-hook
2791 (set (make-local-variable
2792 'org-complete-tags-always-offer-all-agenda-tags)
2797 (defvar org-file-tags nil
2798 "List of tags that can be inherited by all entries in the file.
2799 The tags will be inherited if the variable `org-use-tag-inheritance'
2800 says they should be.
2801 This variable is populated from #+FILETAGS lines.")
2803 (defcustom org-use-fast-tag-selection
'auto
2804 "Non-nil means use fast tag selection scheme.
2805 This is a special interface to select and deselect tags with single keys.
2806 When nil, fast selection is never used.
2807 When the symbol `auto', fast selection is used if and only if selection
2808 characters for tags have been configured, either through the variable
2809 `org-tag-alist' or through a #+TAGS line in the buffer.
2810 When t, fast selection is always used and selection keys are assigned
2811 automatically if necessary."
2814 (const :tag
"Always" t
)
2815 (const :tag
"Never" nil
)
2816 (const :tag
"When selection characters are configured" 'auto
)))
2818 (defcustom org-fast-tag-selection-single-key nil
2819 "Non-nil means fast tag selection exits after first change.
2820 When nil, you have to press RET to exit it.
2821 During fast tag selection, you can toggle this flag with `C-c'.
2822 This variable can also have the value `expert'. In this case, the window
2823 displaying the tags menu is not even shown, until you press C-c again."
2826 (const :tag
"No" nil
)
2827 (const :tag
"Yes" t
)
2828 (const :tag
"Expert" expert
)))
2830 (defvar org-fast-tag-selection-include-todo nil
2831 "Non-nil means fast tags selection interface will also offer TODO states.
2832 This is an undocumented feature, you should not rely on it.")
2834 (defcustom org-tags-column
(if (featurep 'xemacs
) -
76 -
77)
2835 "The column to which tags should be indented in a headline.
2836 If this number is positive, it specifies the column. If it is negative,
2837 it means that the tags should be flushright to that column. For example,
2838 -80 works well for a normal 80 character screen."
2842 (defcustom org-auto-align-tags t
2843 "Non-nil means realign tags after pro/demotion of TODO state change.
2844 These operations change the length of a headline and therefore shift
2845 the tags around. With this options turned on, after each such operation
2846 the tags are again aligned to `org-tags-column'."
2850 (defcustom org-use-tag-inheritance t
2851 "Non-nil means tags in levels apply also for sublevels.
2852 When nil, only the tags directly given in a specific line apply there.
2853 This may also be a list of tags that should be inherited, or a regexp that
2854 matches tags that should be inherited. Additional control is possible
2855 with the variable `org-tags-exclude-from-inheritance' which gives an
2856 explicit list of tags to be excluded from inheritance., even if the value of
2857 `org-use-tag-inheritance' would select it for inheritance.
2859 If this option is t, a match early-on in a tree can lead to a large
2860 number of matches in the subtree when constructing the agenda or creating
2861 a sparse tree. If you only want to see the first match in a tree during
2862 a search, check out the variable `org-tags-match-list-sublevels'."
2865 (const :tag
"Not" nil
)
2866 (const :tag
"Always" t
)
2867 (repeat :tag
"Specific tags" (string :tag
"Tag"))
2868 (regexp :tag
"Tags matched by regexp")))
2870 (defcustom org-tags-exclude-from-inheritance nil
2871 "List of tags that should never be inherited.
2872 This is a way to exclude a few tags from inheritance. For way to do
2873 the opposite, to actively allow inheritance for selected tags,
2874 see the variable `org-use-tag-inheritance'."
2876 :type
'(repeat (string :tag
"Tag")))
2878 (defun org-tag-inherit-p (tag)
2879 "Check if TAG is one that should be inherited."
2881 ((member tag org-tags-exclude-from-inheritance
) nil
)
2882 ((eq org-use-tag-inheritance t
) t
)
2883 ((not org-use-tag-inheritance
) nil
)
2884 ((stringp org-use-tag-inheritance
)
2885 (string-match org-use-tag-inheritance tag
))
2886 ((listp org-use-tag-inheritance
)
2887 (member tag org-use-tag-inheritance
))
2888 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
2890 (defcustom org-tags-match-list-sublevels t
2891 "Non-nil means list also sublevels of headlines matching a search.
2892 This variable applies to tags/property searches, and also to stuck
2893 projects because this search is based on a tags match as well.
2895 When set to the symbol `indented', sublevels are indented with
2898 Because of tag inheritance (see variable `org-use-tag-inheritance'),
2899 the sublevels of a headline matching a tag search often also match
2900 the same search. Listing all of them can create very long lists.
2901 Setting this variable to nil causes subtrees of a match to be skipped.
2903 This variable is semi-obsolete and probably should always be true. It
2904 is better to limit inheritance to certain tags using the variables
2905 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
2908 (const :tag
"No, don't list them" nil
)
2909 (const :tag
"Yes, do list them" t
)
2910 (const :tag
"List them, indented with leading dots" indented
)))
2912 (defcustom org-tags-sort-function nil
2913 "When set, tags are sorted using this function as a comparator."
2916 (const :tag
"No sorting" nil
)
2917 (const :tag
"Alphabetical" string
<)
2918 (const :tag
"Reverse alphabetical" string
>)
2919 (function :tag
"Custom function" nil
)))
2921 (defvar org-tags-history nil
2922 "History of minibuffer reads for tags.")
2923 (defvar org-last-tags-completion-table nil
2924 "The last used completion table for tags.")
2925 (defvar org-after-tags-change-hook nil
2926 "Hook that is run after the tags in a line have changed.")
2928 (defgroup org-properties nil
2929 "Options concerning properties in Org-mode."
2930 :tag
"Org Properties"
2933 (defcustom org-property-format
"%-10s %s"
2934 "How property key/value pairs should be formatted by `indent-line'.
2935 When `indent-line' hits a property definition, it will format the line
2936 according to this format, mainly to make sure that the values are
2937 lined-up with respect to each other."
2938 :group
'org-properties
2941 (defcustom org-use-property-inheritance nil
2942 "Non-nil means properties apply also for sublevels.
2944 This setting is chiefly used during property searches. Turning it on can
2945 cause significant overhead when doing a search, which is why it is not
2948 When nil, only the properties directly given in the current entry count.
2949 When t, every property is inherited. The value may also be a list of
2950 properties that should have inheritance, or a regular expression matching
2951 properties that should be inherited.
2953 However, note that some special properties use inheritance under special
2954 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
2955 and the properties ending in \"_ALL\" when they are used as descriptor
2956 for valid values of a property.
2958 Note for programmers:
2959 When querying an entry with `org-entry-get', you can control if inheritance
2960 should be used. By default, `org-entry-get' looks only at the local
2961 properties. You can request inheritance by setting the inherit argument
2962 to t (to force inheritance) or to `selective' (to respect the setting
2964 :group
'org-properties
2966 (const :tag
"Not" nil
)
2967 (const :tag
"Always" t
)
2968 (repeat :tag
"Specific properties" (string :tag
"Property"))
2969 (regexp :tag
"Properties matched by regexp")))
2971 (defun org-property-inherit-p (property)
2972 "Check if PROPERTY is one that should be inherited."
2974 ((eq org-use-property-inheritance t
) t
)
2975 ((not org-use-property-inheritance
) nil
)
2976 ((stringp org-use-property-inheritance
)
2977 (string-match org-use-property-inheritance property
))
2978 ((listp org-use-property-inheritance
)
2979 (member property org-use-property-inheritance
))
2980 (t (error "Invalid setting of `org-use-property-inheritance'"))))
2982 (defcustom org-columns-default-format
"%25ITEM %TODO %3PRIORITY %TAGS"
2983 "The default column format, if no other format has been defined.
2984 This variable can be set on the per-file basis by inserting a line
2986 #+COLUMNS: %25ITEM ....."
2987 :group
'org-properties
2990 (defcustom org-columns-ellipses
".."
2991 "The ellipses to be used when a field in column view is truncated.
2992 When this is the empty string, as many characters as possible are shown,
2993 but then there will be no visual indication that the field has been truncated.
2994 When this is a string of length N, the last N characters of a truncated
2995 field are replaced by this string. If the column is narrower than the
2996 ellipses string, only part of the ellipses string will be shown."
2997 :group
'org-properties
3000 (defcustom org-columns-modify-value-for-display-function nil
3001 "Function that modifies values for display in column view.
3002 For example, it can be used to cut out a certain part from a time stamp.
3003 The function must take 2 arguments:
3005 column-title The title of the column (*not* the property name)
3006 value The value that should be modified.
3008 The function should return the value that should be displayed,
3009 or nil if the normal value should be used."
3010 :group
'org-properties
3013 (defcustom org-effort-property
"Effort"
3014 "The property that is being used to keep track of effort estimates.
3015 Effort estimates given in this property need to have the format H:MM."
3016 :group
'org-properties
3017 :group
'org-progress
3018 :type
'(string :tag
"Property"))
3020 (defconst org-global-properties-fixed
3021 '(("VISIBILITY_ALL" .
"folded children content all")
3022 ("CLOCK_MODELINE_TOTAL_ALL" .
"current today repeat all auto"))
3023 "List of property/value pairs that can be inherited by any entry.
3025 These are fixed values, for the preset properties. The user variable
3026 that can be used to add to this list is `org-global-properties'.
3028 The entries in this list are cons cells where the car is a property
3029 name and cdr is a string with the value. If the value represents
3030 multiple items like an \"_ALL\" property, separate the items by
3033 (defcustom org-global-properties nil
3034 "List of property/value pairs that can be inherited by any entry.
3036 This list will be combined with the constant `org-global-properties-fixed'.
3038 The entries in this list are cons cells where the car is a property
3039 name and cdr is a string with the value.
3041 You can set buffer-local values for the same purpose in the variable
3042 `org-file-properties' this by adding lines like
3044 #+PROPERTY: NAME VALUE"
3045 :group
'org-properties
3047 (cons (string :tag
"Property")
3048 (string :tag
"Value"))))
3050 (defvar org-file-properties nil
3051 "List of property/value pairs that can be inherited by any entry.
3052 Valid for the current buffer.
3053 This variable is populated from #+PROPERTY lines.")
3054 (make-variable-buffer-local 'org-file-properties
)
3056 (defgroup org-agenda nil
3057 "Options concerning agenda views in Org-mode."
3061 (defvar org-category nil
3062 "Variable used by org files to set a category for agenda display.
3063 Such files should use a file variable to set it, for example
3065 # -*- mode: org; org-category: \"ELisp\"
3067 or contain a special line
3071 If the file does not specify a category, then file's base name
3073 (make-variable-buffer-local 'org-category
)
3074 (put 'org-category
'safe-local-variable
'(lambda (x) (or (symbolp x
) (stringp x
))))
3076 (defcustom org-agenda-files nil
3077 "The files to be used for agenda display.
3078 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3079 \\[org-remove-file]. You can also use customize to edit the list.
3081 If an entry is a directory, all files in that directory that are matched by
3082 `org-agenda-file-regexp' will be part of the file list.
3084 If the value of the variable is not a list but a single file name, then
3085 the list of agenda files is actually stored and maintained in that file, one
3086 agenda file per line. In this file paths can be given relative to
3087 `org-directory'. Tilde expansion and environment variable substitution
3091 (repeat :tag
"List of files and directories" file
)
3092 (file :tag
"Store list in a file\n" :value
"~/.agenda_files")))
3094 (defcustom org-agenda-file-regexp
"\\`[^.].*\\.org\\'"
3095 "Regular expression to match files for `org-agenda-files'.
3096 If any element in the list in that variable contains a directory instead
3097 of a normal file, all files in that directory that are matched by this
3098 regular expression will be included."
3102 (defcustom org-agenda-text-search-extra-files nil
3103 "List of extra files to be searched by text search commands.
3104 These files will be search in addition to the agenda files by the
3105 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3106 Note that these files will only be searched for text search commands,
3107 not for the other agenda views like todo lists, tag searches or the weekly
3108 agenda. This variable is intended to list notes and possibly archive files
3109 that should also be searched by these two commands.
3110 In fact, if the first element in the list is the symbol `agenda-archives',
3111 than all archive files of all agenda files will be added to the search
3114 :type
'(set :greedy t
3115 (const :tag
"Agenda Archives" agenda-archives
)
3116 (repeat :inline t
(file))))
3118 (if (fboundp 'defvaralias
)
3119 (defvaralias 'org-agenda-multi-occur-extra-files
3120 'org-agenda-text-search-extra-files
))
3122 (defcustom org-agenda-skip-unavailable-files nil
3123 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3124 A nil value means to remove them, after a query, from the list."
3128 (defcustom org-calendar-to-agenda-key
[?c
]
3129 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3130 The command `org-calendar-goto-agenda' will be bound to this key. The
3131 default is the character `c' because then `c' can be used to switch back and
3132 forth between agenda and calendar."
3136 (defcustom org-calendar-agenda-action-key
[?k
]
3137 "The key to be installed in `calendar-mode-map' for agenda-action.
3138 The command `org-agenda-action' will be bound to this key. The
3139 default is the character `k' because we use the same key in the agenda."
3143 (defcustom org-calendar-insert-diary-entry-key
[?i
]
3144 "The key to be installed in `calendar-mode-map' for adding diary entries.
3145 This option is irrelevant until `org-agenda-diary-file' has been configured
3146 to point to an Org-mode file. When that is the case, the command
3147 `org-agenda-diary-entry' will be bound to the key given here, by default
3148 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3149 if you want to continue doing this, you need to change this to a different
3154 (defcustom org-agenda-diary-file
'diary-file
3155 "File to which to add new entries with the `i' key in agenda and calendar.
3156 When this is the symbol `diary-file', the functionality in the Emacs
3157 calendar will be used to add entries to the `diary-file'. But when this
3158 points to a file, `org-agenda-diary-entry' will be used instead."
3161 (const :tag
"The standard Emacs diary file" diary-file
)
3162 (file :tag
"Special Org file diary entries")))
3164 (eval-after-load "calendar"
3166 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3167 'org-calendar-goto-agenda
)
3168 (org-defkey calendar-mode-map org-calendar-agenda-action-key
3170 (add-hook 'calendar-mode-hook
3172 (unless (eq org-agenda-diary-file
'diary-file
)
3173 (define-key calendar-mode-map
3174 org-calendar-insert-diary-entry-key
3175 'org-agenda-diary-entry
))))))
3177 (defgroup org-latex nil
3178 "Options for embedding LaTeX code into Org-mode."
3182 (defcustom org-format-latex-options
3183 '(:foreground default
:background default
:scale
1.0
3184 :html-foreground
"Black" :html-background
"Transparent"
3185 :html-scale
1.0 :matchers
("begin" "$1" "$" "$$" "\\(" "\\["))
3186 "Options for creating images from LaTeX fragments.
3187 This is a property list with the following properties:
3188 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3189 `default' means use the foreground of the default face.
3190 :background the background color, or \"Transparent\".
3191 `default' means use the background of the default face.
3192 :scale a scaling factor for the size of the images, to get more pixels
3193 :html-foreground, :html-background, :html-scale
3194 the same numbers for HTML export.
3195 :matchers a list indicating which matchers should be used to
3196 find LaTeX fragments. Valid members of this list are:
3197 \"begin\" find environments
3198 \"$1\" find single characters surrounded by $.$
3199 \"$\" find math expressions surrounded by $...$
3200 \"$$\" find math expressions surrounded by $$....$$
3201 \"\\(\" find math expressions surrounded by \\(...\\)
3202 \"\\ [\" find math expressions surrounded by \\ [...\\]"
3206 (defcustom org-format-latex-signal-error t
3207 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3208 When nil, just push out a message."
3212 (defcustom org-format-latex-header
"\\documentclass{article}
3213 \\usepackage[usenames]{color}
3214 \\usepackage{amsmath}
3215 \\usepackage[mathscr]{eucal}
3216 \\pagestyle{empty} % do not remove
3219 % The settings below are copied from fullpage.sty
3220 \\setlength{\\textwidth}{\\paperwidth}
3221 \\addtolength{\\textwidth}{-3cm}
3222 \\setlength{\\oddsidemargin}{1.5cm}
3223 \\addtolength{\\oddsidemargin}{-2.54cm}
3224 \\setlength{\\evensidemargin}{\\oddsidemargin}
3225 \\setlength{\\textheight}{\\paperheight}
3226 \\addtolength{\\textheight}{-\\headheight}
3227 \\addtolength{\\textheight}{-\\headsep}
3228 \\addtolength{\\textheight}{-\\footskip}
3229 \\addtolength{\\textheight}{-3cm}
3230 \\setlength{\\topmargin}{1.5cm}
3231 \\addtolength{\\topmargin}{-2.54cm}"
3232 "The document header used for processing LaTeX fragments.
3233 It is imperative that this header make sure that no page number
3234 appears on the page. The package defined in the variables
3235 `org-export-latex-default-packages-alist' and `org-export-latex-packages-alist'
3236 will either replace the placeholder \"[PACKAGES]\" in this header, or they
3241 (defvar org-format-latex-header-extra nil
)
3243 (defun org-set-packages-alist (var val
)
3244 "Set the packages alist and make sure it has 3 elements per entry."
3245 (set var
(mapcar (lambda (x)
3246 (if (and (consp x
) (= (length x
) 2))
3247 (list (car x
) (nth 1 x
) t
)
3251 (defun org-get-packages-alist (var)
3253 "Get the packages alist and make sure it has 3 elements per entry."
3255 (if (and (consp x
) (= (length x
) 2))
3256 (list (car x
) (nth 1 x
) t
)
3258 (default-value var
)))
3260 ;; The following variables are defined here because is it also used
3261 ;; when formatting latex fragments. Originally it was part of the
3262 ;; LaTeX exporter, which is why the name includes "export".
3263 (defcustom org-export-latex-default-packages-alist
3264 '(("AUTO" "inputenc" t
)
3268 ("" "longtable" nil
)
3280 "Alist of default packages to be inserted in the header.
3281 Change this only if one of the packages here causes an incompatibility
3282 with another package you are using.
3283 The packages in this list are needed by one part or another of Org-mode
3284 to function properly.
3286 - inputenc, fontenc: for basic font and character selection
3287 - textcomp, marvosymb, wasysym, latexsym, amssym: for various symbols used
3288 for interpreting the entities in `org-entities'. You can skip some of these
3289 packages if you don't use any of the symbols in it.
3290 - graphicx: for including images
3291 - float, wrapfig: for figure placement
3292 - longtable: for long tables
3293 - hyperref: for cross references
3295 Therefore you should not modify this variable unless you know what you
3296 are doing. The one reason to change it anyway is that you might be loading
3297 some other package that conflicts with one of the default packages.
3298 Each cell is of the format \( \"options\" \"package\" snippet-flag\).
3299 If SNIPPET-FLAG is t, the package also needs to be included when
3300 compiling LaTeX snippets into images for inclusion into HTML."
3301 :group
'org-export-latex
3302 :set
'org-set-packages-alist
3303 :get
'org-get-packages-alist
3306 (list :tag
"options/package pair"
3307 (string :tag
"options")
3308 (string :tag
"package")
3309 (boolean :tag
"Snippet"))
3310 (string :tag
"A line of LaTeX"))))
3312 (defcustom org-export-latex-packages-alist nil
3313 "Alist of packages to be inserted in every LaTeX header.
3314 These will be inserted after `org-export-latex-default-packages-alist'.
3315 Each cell is of the format \( \"options\" \"package\" snippet-flag \).
3316 SNIPPET-FLAG, when t, indicates that this package is also needed when
3317 turning LaTeX snippets into images for inclusion into HTML.
3318 Make sure that you only list packages here which:
3319 - you want in every file
3320 - do not conflict with the default packages in
3321 `org-export-latex-default-packages-alist'
3322 - do not conflict with the setup in `org-format-latex-header'."
3323 :group
'org-export-latex
3324 :set
'org-set-packages-alist
3325 :get
'org-get-packages-alist
3328 (list :tag
"options/package pair"
3329 (string :tag
"options")
3330 (string :tag
"package")
3331 (boolean :tag
"Snippet"))
3332 (string :tag
"A line of LaTeX"))))
3335 (defgroup org-appearance nil
3336 "Settings for Org-mode appearance."
3337 :tag
"Org Appearance"
3340 (defcustom org-level-color-stars-only nil
3341 "Non-nil means fontify only the stars in each headline.
3342 When nil, the entire headline is fontified.
3343 Changing it requires restart of `font-lock-mode' to become effective
3344 also in regions already fontified."
3345 :group
'org-appearance
3348 (defcustom org-hide-leading-stars nil
3349 "Non-nil means hide the first N-1 stars in a headline.
3350 This works by using the face `org-hide' for these stars. This
3351 face is white for a light background, and black for a dark
3352 background. You may have to customize the face `org-hide' to
3354 Changing it requires restart of `font-lock-mode' to become effective
3355 also in regions already fontified.
3356 You may also set this on a per-file basis by adding one of the following
3357 lines to the buffer:
3359 #+STARTUP: hidestars
3360 #+STARTUP: showstars"
3361 :group
'org-appearance
3364 (defcustom org-hidden-keywords nil
3365 "List of symbols corresponding to keywords to be hidden the org buffer.
3366 For example, a value '(title) for this list will make the document's title
3367 appear in the buffer without the initial #+TITLE: keyword."
3368 :group
'org-appearance
3369 :type
'(set (const :tag
"#+AUTHOR" author
)
3370 (const :tag
"#+DATE" date
)
3371 (const :tag
"#+EMAIL" email
)
3372 (const :tag
"#+TITLE" title
)))
3374 (defcustom org-fontify-done-headline nil
3375 "Non-nil means change the face of a headline if it is marked DONE.
3376 Normally, only the TODO/DONE keyword indicates the state of a headline.
3377 When this is non-nil, the headline after the keyword is set to the
3378 `org-headline-done' as an additional indication."
3379 :group
'org-appearance
3382 (defcustom org-fontify-emphasized-text t
3383 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
3384 Changing this variable requires a restart of Emacs to take effect."
3385 :group
'org-appearance
3388 (defcustom org-fontify-whole-heading-line nil
3389 "Non-nil means fontify the whole line for headings.
3390 This is useful when setting a background color for the
3392 :group
'org-appearance
3395 (defcustom org-highlight-latex-fragments-and-specials nil
3396 "Non-nil means fontify what is treated specially by the exporters."
3397 :group
'org-appearance
3400 (defcustom org-hide-emphasis-markers nil
3401 "Non-nil mean font-lock should hide the emphasis marker characters."
3402 :group
'org-appearance
3405 (defcustom org-pretty-entities nil
3406 "Non-nil means show entities as UTF8 characters.
3407 When nil, the \\name form remains in the buffer."
3408 :group
'org-appearance
3411 (defcustom org-pretty-entities-include-sub-superscripts t
3412 "Non-nil means, pretty entity display includes formatting sub/superscripts."
3413 :group
'org-appearance
3416 (defvar org-emph-re nil
3417 "Regular expression for matching emphasis.
3418 After a match, the match groups contain these elements:
3419 0 The match of the full regular expression, including the characters
3420 before and after the proper match
3421 1 The character before the proper match, or empty at beginning of line
3422 2 The proper match, including the leading and trailing markers
3423 3 The leading marker like * or /, indicating the type of highlighting
3424 4 The text between the emphasis markers, not including the markers
3425 5 The character after the match, empty at the end of a line")
3426 (defvar org-verbatim-re nil
3427 "Regular expression for matching verbatim text.")
3428 (defvar org-emphasis-regexp-components
) ; defined just below
3429 (defvar org-emphasis-alist
) ; defined just below
3430 (defun org-set-emph-re (var val
)
3431 "Set variable and compute the emphasis regular expression."
3433 (when (and (boundp 'org-emphasis-alist
)
3434 (boundp 'org-emphasis-regexp-components
)
3435 org-emphasis-alist org-emphasis-regexp-components
)
3436 (let* ((e org-emphasis-regexp-components
)
3442 (body1 (concat body
"*?"))
3443 (markers (mapconcat 'car org-emphasis-alist
""))
3444 (vmarkers (mapconcat
3445 (lambda (x) (if (eq (nth 4 x
) 'verbatim
) (car x
) ""))
3446 org-emphasis-alist
"")))
3447 ;; make sure special characters appear at the right position in the class
3448 (if (string-match "\\^" markers
)
3449 (setq markers
(concat (replace-match "" t t markers
) "^")))
3450 (if (string-match "-" markers
)
3451 (setq markers
(concat (replace-match "" t t markers
) "-")))
3452 (if (string-match "\\^" vmarkers
)
3453 (setq vmarkers
(concat (replace-match "" t t vmarkers
) "^")))
3454 (if (string-match "-" vmarkers
)
3455 (setq vmarkers
(concat (replace-match "" t t vmarkers
) "-")))
3457 (setq body1
(concat body1
"\\(?:\n" body
"*?\\)\\{0,"
3458 (int-to-string nl
) "\\}")))
3461 (concat "\\([" pre
"]\\|^\\)"
3463 "\\([" markers
"]\\)"
3471 "\\([" post
"]\\|$\\)"))
3472 (setq org-verbatim-re
3473 (concat "\\([" pre
"]\\|^\\)"
3475 "\\([" vmarkers
"]\\)"
3483 "\\([" post
"]\\|$\\)")))))
3485 (defcustom org-emphasis-regexp-components
3486 '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r\n,\"'" "." 1)
3487 "Components used to build the regular expression for emphasis.
3488 This is a list with five entries. Terminology: In an emphasis string
3489 like \" *strong word* \", we call the initial space PREMATCH, the final
3490 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
3491 and \"trong wor\" is the body. The different components in this variable
3492 specify what is allowed/forbidden in each part:
3494 pre Chars allowed as prematch. Beginning of line will be allowed too.
3495 post Chars allowed as postmatch. End of line will be allowed too.
3496 border The chars *forbidden* as border characters.
3497 body-regexp A regexp like \".\" to match a body character. Don't use
3498 non-shy groups here, and don't allow newline here.
3499 newline The maximum number of newlines allowed in an emphasis exp.
3501 Use customize to modify this, or restart Emacs after changing it."
3502 :group
'org-appearance
3503 :set
'org-set-emph-re
3505 (sexp :tag
"Allowed chars in pre ")
3506 (sexp :tag
"Allowed chars in post ")
3507 (sexp :tag
"Forbidden chars in border ")
3508 (sexp :tag
"Regexp for body ")
3509 (integer :tag
"number of newlines allowed")
3510 (option (boolean :tag
"Please ignore this button"))))
3512 (defcustom org-emphasis-alist
3513 `(("*" bold
"<b>" "</b>")
3514 ("/" italic
"<i>" "</i>")
3515 ("_" underline
"<span style=\"text-decoration:underline;\">" "</span>")
3516 ("=" org-code
"<code>" "</code>" verbatim
)
3517 ("~" org-verbatim
"<code>" "</code>" verbatim
)
3518 ("+" ,(if (featurep 'xemacs
) 'org-table
'(:strike-through t
))
3521 "Special syntax for emphasized text.
3522 Text starting and ending with a special character will be emphasized, for
3523 example *bold*, _underlined_ and /italic/. This variable sets the marker
3524 characters, the face to be used by font-lock for highlighting in Org-mode
3525 Emacs buffers, and the HTML tags to be used for this.
3526 For LaTeX export, see the variable `org-export-latex-emphasis-alist'.
3527 For DocBook export, see the variable `org-export-docbook-emphasis-alist'.
3528 Use customize to modify this, or restart Emacs after changing it."
3529 :group
'org-appearance
3530 :set
'org-set-emph-re
3533 (string :tag
"Marker character")
3535 (face :tag
"Font-lock-face")
3536 (plist :tag
"Face property list"))
3537 (string :tag
"HTML start tag")
3538 (string :tag
"HTML end tag")
3539 (option (const verbatim
)))))
3541 (defvar org-protecting-blocks
3542 '("src" "example" "latex" "ascii" "html" "docbook" "ditaa" "dot" "r" "R")
3543 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
3544 This is needed for font-lock setup.")
3546 ;;; Miscellaneous options
3548 (defgroup org-completion nil
3549 "Completion in Org-mode."
3550 :tag
"Org Completion"
3553 (defcustom org-completion-use-ido nil
3554 "Non-nil means use ido completion wherever possible.
3555 Note that `ido-mode' must be active for this variable to be relevant.
3556 If you decide to turn this variable on, you might well want to turn off
3557 `org-outline-path-complete-in-steps'.
3558 See also `org-completion-use-iswitchb'."
3559 :group
'org-completion
3562 (defcustom org-completion-use-iswitchb nil
3563 "Non-nil means use iswitchb completion wherever possible.
3564 Note that `iswitchb-mode' must be active for this variable to be relevant.
3565 If you decide to turn this variable on, you might well want to turn off
3566 `org-outline-path-complete-in-steps'.
3567 Note that this variable has only an effect if `org-completion-use-ido' is nil."
3568 :group
'org-completion
3571 (defcustom org-completion-fallback-command
'hippie-expand
3572 "The expansion command called by \\[pcomplete] in normal context.
3573 Normal means, no org-mode-specific context."
3574 :group
'org-completion
3577 ;;; Functions and variables from their packages
3578 ;; Declared here to avoid compiler warnings
3581 (defvar outline-mode-menu-heading
)
3582 (defvar outline-mode-menu-show
)
3583 (defvar outline-mode-menu-hide
)
3584 (defvar zmacs-regions
) ; XEmacs regions
3587 (defvar mark-active
)
3590 (declare-function calendar-absolute-from-iso
"cal-iso" (date))
3591 (declare-function calendar-forward-day
"cal-move" (arg))
3592 (declare-function calendar-goto-date
"cal-move" (date))
3593 (declare-function calendar-goto-today
"cal-move" ())
3594 (declare-function calendar-iso-from-absolute
"cal-iso" (date))
3595 (defvar calc-embedded-close-formula
)
3596 (defvar calc-embedded-open-formula
)
3597 (declare-function cdlatex-tab
"ext:cdlatex" ())
3598 (declare-function dired-get-filename
"dired" (&optional localp no-error-if-not-filep
))
3599 (defvar font-lock-unfontify-region-function
)
3600 (declare-function iswitchb-read-buffer
"iswitchb"
3601 (prompt &optional default require-match start matches-set
))
3602 (defvar iswitchb-temp-buflist
)
3603 (declare-function org-gnus-follow-link
"org-gnus" (&optional group article
))
3604 (defvar org-agenda-tags-todo-honor-ignore-options
)
3605 (declare-function org-agenda-skip
"org-agenda" ())
3607 org-format-agenda-item
"org-agenda"
3608 (extra txt
&optional category tags dotime noprefix remove-re habitp
))
3609 (declare-function org-agenda-new-marker
"org-agenda" (&optional pos
))
3610 (declare-function org-agenda-change-all-lines
"org-agenda"
3611 (newhead hdmarker
&optional fixface just-this
))
3612 (declare-function org-agenda-set-restriction-lock
"org-agenda" (&optional type
))
3613 (declare-function org-agenda-maybe-redo
"org-agenda" ())
3614 (declare-function org-agenda-save-markers-for-cut-and-paste
"org-agenda"
3616 (declare-function org-agenda-copy-local-variable
"org-agenda" (var))
3617 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
3618 "org-agenda" (&optional end
))
3619 (declare-function org-inlinetask-remove-END-maybe
"org-inlinetask" ())
3620 (declare-function org-inlinetask-in-task-p
"org-inlinetask" ())
3621 (declare-function org-inlinetask-goto-beginning
"org-inlinetask" ())
3622 (declare-function org-inlinetask-goto-end
"org-inlinetask" ())
3623 (declare-function org-indent-mode
"org-indent" (&optional arg
))
3624 (declare-function parse-time-string
"parse-time" (string))
3625 (declare-function org-attach-reveal
"org-attach" (&optional if-exists
))
3626 (declare-function org-export-latex-fix-inputenc
"org-latex" ())
3627 (declare-function orgtbl-send-table
"org-table" (&optional maybe
))
3628 (defvar remember-data-file
)
3629 (defvar texmathp-why
)
3630 (declare-function speedbar-line-directory
"speedbar" (&optional depth
))
3631 (declare-function table--at-cell-p
"table" (position &optional object at-column
))
3633 (defvar w3m-current-url
)
3634 (defvar w3m-current-title
)
3636 (defvar org-latex-regexps
)
3638 ;;; Autoload and prepare some org modules
3640 ;; Some table stuff that needs to be defined here, because it is used
3641 ;; by the functions setting up org-mode or checking for table context.
3643 (defconst org-table-any-line-regexp
"^[ \t]*\\(|\\|\\+-[-+]\\)"
3644 "Detect an org-type or table-type table.")
3645 (defconst org-table-line-regexp
"^[ \t]*|"
3646 "Detect an org-type table line.")
3647 (defconst org-table-dataline-regexp
"^[ \t]*|[^-]"
3648 "Detect an org-type table line.")
3649 (defconst org-table-hline-regexp
"^[ \t]*|-"
3650 "Detect an org-type table hline.")
3651 (defconst org-table1-hline-regexp
"^[ \t]*\\+-[-+]"
3652 "Detect a table-type table hline.")
3653 (defconst org-table-any-border-regexp
"^[ \t]*[^|+ \t]"
3654 "Detect the first line outside a table when searching from within it.
3655 This works for both table types.")
3657 ;; Autoload the functions in org-table.el that are needed by functions here.
3660 (org-autoload "org-table"
3661 '(org-table-align org-table-begin org-table-blank-field
3662 org-table-convert org-table-convert-region org-table-copy-down
3663 org-table-copy-region org-table-create
3664 org-table-create-or-convert-from-region
3665 org-table-create-with-table.el org-table-current-dline
3666 org-table-cut-region org-table-delete-column org-table-edit-field
3667 org-table-edit-formulas org-table-end org-table-eval-formula
3668 org-table-export org-table-field-info
3669 org-table-get-stored-formulas org-table-goto-column
3670 org-table-hline-and-move org-table-import org-table-insert-column
3671 org-table-insert-hline org-table-insert-row org-table-iterate
3672 org-table-justify-field-maybe org-table-kill-row
3673 org-table-maybe-eval-formula org-table-maybe-recalculate-line
3674 org-table-move-column org-table-move-column-left
3675 org-table-move-column-right org-table-move-row
3676 org-table-move-row-down org-table-move-row-up
3677 org-table-next-field org-table-next-row org-table-paste-rectangle
3678 org-table-previous-field org-table-recalculate
3679 org-table-rotate-recalc-marks org-table-sort-lines org-table-sum
3680 org-table-toggle-coordinate-overlays
3681 org-table-toggle-formula-debugger org-table-wrap-region
3682 orgtbl-mode turn-on-orgtbl org-table-to-lisp
3683 orgtbl-to-generic orgtbl-to-tsv orgtbl-to-csv orgtbl-to-latex
3684 orgtbl-to-orgtbl orgtbl-to-html orgtbl-to-texinfo
)))
3686 (defun org-at-table-p (&optional table-type
)
3687 "Return t if the cursor is inside an org-type table.
3688 If TABLE-TYPE is non-nil, also check for table.el-type tables."
3689 (if org-enable-table-editor
3691 (beginning-of-line 1)
3692 (looking-at (if table-type org-table-any-line-regexp
3693 org-table-line-regexp
)))
3695 (defsubst org-table-p
() (org-at-table-p))
3697 (defun org-at-table.el-p
()
3698 "Return t if and only if we are at a table.el table."
3699 (and (org-at-table-p 'any
)
3701 (goto-char (org-table-begin 'any
))
3702 (looking-at org-table1-hline-regexp
))))
3703 (defun org-table-recognize-table.el
()
3704 "If there is a table.el table nearby, recognize it and move into it."
3705 (if org-table-tab-recognizes-table.el
3706 (if (org-at-table.el-p
)
3708 (beginning-of-line 1)
3709 (if (looking-at org-table-dataline-regexp
)
3711 (if (looking-at org-table1-hline-regexp
)
3713 (beginning-of-line 2)
3714 (if (looking-at org-table-any-border-regexp
)
3715 (beginning-of-line -
1)))))
3716 (if (re-search-forward "|" (org-table-end t
) t
)
3719 (if (table--at-cell-p (point))
3721 (message "recognizing table.el table...")
3722 (table-recognize-table)
3723 (message "recognizing table.el table...done")))
3724 (error "This should not happen"))
3729 (defun org-at-table-hline-p ()
3730 "Return t if the cursor is inside a hline in a table."
3731 (if org-enable-table-editor
3733 (beginning-of-line 1)
3734 (looking-at org-table-hline-regexp
))
3737 (defvar org-table-clean-did-remove-column nil
)
3739 (defun org-table-map-tables (function &optional quietly
)
3740 "Apply FUNCTION to the start of all tables in the buffer."
3744 (goto-char (point-min))
3745 (while (re-search-forward org-table-any-line-regexp nil t
)
3747 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
3748 (beginning-of-line 1)
3749 (when (looking-at org-table-line-regexp
)
3750 (save-excursion (funcall function
))
3751 (or (looking-at org-table-line-regexp
)
3753 (re-search-forward org-table-any-border-regexp nil
1))))
3754 (unless quietly
(message "Mapping tables: done")))
3756 ;; Declare and autoload functions from org-exp.el & Co
3758 (declare-function org-default-export-plist
"org-exp")
3759 (declare-function org-infile-export-plist
"org-exp")
3760 (declare-function org-get-current-options
"org-exp")
3762 (org-autoload "org-exp"
3763 '(org-export org-export-visible
3764 org-insert-export-options-template
3765 org-table-clean-before-export
))
3766 (org-autoload "org-ascii"
3767 '(org-export-as-ascii org-export-ascii-preprocess
3768 org-export-as-ascii-to-buffer org-replace-region-by-ascii
3769 org-export-region-as-ascii
))
3770 (org-autoload "org-latex"
3771 '(org-export-as-latex-batch org-export-as-latex-to-buffer
3772 org-replace-region-by-latex org-export-region-as-latex
3773 org-export-as-latex org-export-as-pdf
3774 org-export-as-pdf-and-open
))
3775 (org-autoload "org-html"
3776 '(org-export-as-html-and-open
3777 org-export-as-html-batch org-export-as-html-to-buffer
3778 org-replace-region-by-html org-export-region-as-html
3779 org-export-as-html
))
3780 (org-autoload "org-docbook"
3781 '(org-export-as-docbook-batch org-export-as-docbook-to-buffer
3782 org-replace-region-by-docbook org-export-region-as-docbook
3783 org-export-as-docbook-pdf org-export-as-docbook-pdf-and-open
3784 org-export-as-docbook
))
3785 (org-autoload "org-icalendar"
3786 '(org-export-icalendar-this-file
3787 org-export-icalendar-all-agenda-files
3788 org-export-icalendar-combine-agenda-files
))
3789 (org-autoload "org-xoxo" '(org-export-as-xoxo))
3790 (org-autoload "org-beamer" '(org-beamer-mode org-beamer-sectioning
)))
3792 ;; Declare and autoload functions from org-agenda.el
3795 (org-autoload "org-agenda"
3796 '(org-agenda org-agenda-list org-search-view
3797 org-todo-list org-tags-view org-agenda-list-stuck-projects
3798 org-diary org-agenda-to-appt
3799 org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
)))
3801 ;; Autoload org-remember
3804 (org-autoload "org-remember"
3805 '(org-remember-insinuate org-remember-annotation
3806 org-remember-apply-template org-remember org-remember-handler
)))
3809 (org-autoload "org-capture"
3810 '(org-capture org-capture-insert-template-here
3811 org-capture-import-remember-templates
)))
3813 ;; Autoload org-clock.el
3815 (declare-function org-clock-save-markers-for-cut-and-paste
"org-clock"
3817 (declare-function org-clock-update-mode-line
"org-clock" ())
3818 (declare-function org-resolve-clocks
"org-clock"
3819 (&optional also-non-dangling-p prompt last-valid
))
3820 (defvar org-clock-start-time
)
3821 (defvar org-clock-marker
(make-marker)
3822 "Marker recording the last clock-in.")
3823 (defvar org-clock-hd-marker
(make-marker)
3824 "Marker recording the last clock-in, but the headline position.")
3825 (defvar org-clock-heading
""
3826 "The heading of the current clock entry.")
3827 (defun org-clock-is-active ()
3828 "Return non-nil if clock is currently running.
3829 The return value is actually the clock marker."
3830 (marker-buffer org-clock-marker
))
3835 '(org-clock-in org-clock-out org-clock-cancel
3836 org-clock-goto org-clock-sum org-clock-display
3837 org-clock-remove-overlays org-clock-report
3838 org-clocktable-shift org-dblock-write
:clocktable
3839 org-get-clocktable org-resolve-clocks
)))
3841 (defun org-clock-update-time-maybe ()
3842 "If this is a CLOCK line, update it and return t.
3843 Otherwise, return nil."
3846 (beginning-of-line 1)
3847 (skip-chars-forward " \t")
3848 (when (looking-at org-clock-string
)
3849 (let ((re (concat "[ \t]*" org-clock-string
3850 " *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
3851 "\\([ \t]*=>.*\\)?\\)?"))
3854 ((not (looking-at re
))
3856 ((not (match-end 2))
3857 (when (and (equal (marker-buffer org-clock-marker
) (current-buffer))
3858 (> org-clock-marker
(point))
3859 (<= org-clock-marker
(point-at-eol)))
3860 ;; The clock is running here
3861 (setq org-clock-start-time
3863 (org-parse-time-string (match-string 1))))
3864 (org-clock-update-mode-line)))
3866 (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
3868 (setq ts
(match-string 1)
3869 te
(match-string 3))
3870 (setq s
(- (org-float-time
3871 (apply 'encode-time
(org-parse-time-string te
)))
3873 (apply 'encode-time
(org-parse-time-string ts
))))
3876 h
(floor (/ s
3600))
3880 (insert " => " (format (if neg
"-%d:%02d" "%2d:%02d") h m
))
3883 (defun org-check-running-clock ()
3884 "Check if the current buffer contains the running clock.
3885 If yes, offer to stop it and to save the buffer with the changes."
3886 (when (and (equal (marker-buffer org-clock-marker
) (current-buffer))
3887 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
3890 (when (y-or-n-p "Save changed buffer?")
3893 (defun org-clocktable-try-shift (dir n
)
3894 "Check if this line starts a clock table, if yes, shift the time block."
3895 (when (org-match-line "#\\+BEGIN: clocktable\\>")
3896 (org-clocktable-shift dir n
)))
3898 ;; Autoload org-timer.el
3903 '(org-timer-start org-timer org-timer-item
3904 org-timer-change-times-in-region
3906 org-timer-reset-timers
3907 org-timer-show-remaining-time
)))
3909 ;; Autoload org-feed.el
3914 '(org-feed-update org-feed-update-all org-feed-goto-inbox
)))
3917 ;; Autoload org-indent.el
3919 ;; Define the variable already here, to make sure we have it.
3920 (defvar org-indent-mode nil
3921 "Non-nil if Org-Indent mode is enabled.
3922 Use the command `org-indent-mode' to change this variable.")
3927 '(org-indent-mode)))
3929 ;; Autoload org-mobile.el
3934 '(org-mobile-push org-mobile-pull org-mobile-create-sumo-agenda
)))
3936 ;; Autoload archiving code
3937 ;; The stuff that is needed for cycling and tags has to be defined here.
3939 (defgroup org-archive nil
3940 "Options concerning archiving in Org-mode."
3942 :group
'org-structure
)
3944 (defcustom org-archive-location
"%s_archive::"
3945 "The location where subtrees should be archived.
3947 The value of this variable is a string, consisting of two parts,
3948 separated by a double-colon. The first part is a filename and
3949 the second part is a headline.
3951 When the filename is omitted, archiving happens in the same file.
3952 %s in the filename will be replaced by the current file
3953 name (without the directory part). Archiving to a different file
3954 is useful to keep archived entries from contributing to the
3957 The archived entries will be filed as subtrees of the specified
3958 headline. When the headline is omitted, the subtrees are simply
3959 filed away at the end of the file, as top-level entries. Also in
3960 the heading you can use %s to represent the file name, this can be
3961 useful when using the same archive for a number of different files.
3963 Here are a few examples:
3965 If the current file is Projects.org, archive in file
3966 Projects.org_archive, as top-level trees. This is the default.
3968 \"::* Archived Tasks\"
3969 Archive in the current file, under the top-level headline
3970 \"* Archived Tasks\".
3972 \"~/org/archive.org::\"
3973 Archive in file ~/org/archive.org (absolute path), as top-level trees.
3975 \"~/org/archive.org::From %s\"
3976 Archive in file ~/org/archive.org (absolute path), under headlines
3977 \"From FILENAME\" where file name is the current file name.
3979 \"basement::** Finished Tasks\"
3980 Archive in file ./basement (relative path), as level 3 trees
3981 below the level 2 heading \"** Finished Tasks\".
3983 You may set this option on a per-file basis by adding to the buffer a
3986 #+ARCHIVE: basement::** Finished Tasks
3988 You may also define it locally for a subtree by setting an ARCHIVE property
3989 in the entry. If such a property is found in an entry, or anywhere up
3990 the hierarchy, it will be used."
3994 (defcustom org-archive-tag
"ARCHIVE"
3995 "The tag that marks a subtree as archived.
3996 An archived subtree does not open during visibility cycling, and does
3997 not contribute to the agenda listings.
3998 After changing this, font-lock must be restarted in the relevant buffers to
3999 get the proper fontification."
4001 :group
'org-keywords
4004 (defcustom org-agenda-skip-archived-trees t
4005 "Non-nil means the agenda will skip any items located in archived trees.
4006 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4007 variable is no longer recommended, you should leave it at the value t.
4008 Instead, use the key `v' to cycle the archives-mode in the agenda."
4010 :group
'org-agenda-skip
4013 (defcustom org-columns-skip-archived-trees t
4014 "Non-nil means ignore archived trees when creating column view."
4016 :group
'org-properties
4019 (defcustom org-cycle-open-archived-trees nil
4020 "Non-nil means `org-cycle' will open archived trees.
4021 An archived tree is a tree marked with the tag ARCHIVE.
4022 When nil, archived trees will stay folded. You can still open them with
4023 normal outline commands like `show-all', but not with the cycling commands."
4028 (defcustom org-sparse-tree-open-archived-trees nil
4029 "Non-nil means sparse tree construction shows matches in archived trees.
4030 When nil, matches in these trees are highlighted, but the trees are kept in
4033 :group
'org-sparse-trees
4036 (defun org-cycle-hide-archived-subtrees (state)
4037 "Re-hide all archived subtrees after a visibility state change."
4038 (when (and (not org-cycle-open-archived-trees
)
4039 (not (memq state
'(overview folded
))))
4041 (let* ((globalp (memq state
'(contents all
)))
4042 (beg (if globalp
(point-min) (point)))
4043 (end (if globalp
(point-max) (org-end-of-subtree t
))))
4044 (org-hide-archived-subtrees beg end
)
4046 (if (looking-at (concat ".*:" org-archive-tag
":"))
4047 (message "%s" (substitute-command-keys
4048 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4050 (defun org-force-cycle-archived ()
4051 "Cycle subtree even if it is archived."
4053 (setq this-command
'org-cycle
)
4054 (let ((org-cycle-open-archived-trees t
))
4055 (call-interactively 'org-cycle
)))
4057 (defun org-hide-archived-subtrees (beg end
)
4058 "Re-hide all archived subtrees after a visibility state change."
4060 (let* ((re (concat ":" org-archive-tag
":")))
4062 (while (re-search-forward re end t
)
4063 (when (org-on-heading-p)
4064 (org-flag-subtree t
)
4065 (org-end-of-subtree t
))))))
4067 (defun org-flag-subtree (flag)
4069 (org-back-to-heading t
)
4070 (outline-end-of-heading)
4071 (outline-flag-region (point)
4072 (progn (org-end-of-subtree t
) (point))
4075 (defalias 'org-advertized-archive-subtree
'org-archive-subtree
)
4078 (org-autoload "org-archive"
4079 '(org-add-archive-files org-archive-subtree
4080 org-archive-to-archive-sibling org-toggle-archive-tag
4081 org-archive-subtree-default
4082 org-archive-subtree-default-with-confirmation
)))
4084 ;; Autoload Column View Code
4086 (declare-function org-columns-number-to-string
"org-colview")
4087 (declare-function org-columns-get-format-and-top-level
"org-colview")
4088 (declare-function org-columns-compute
"org-colview")
4090 (org-autoload (if (featurep 'xemacs
) "org-colview-xemacs" "org-colview")
4091 '(org-columns-number-to-string org-columns-get-format-and-top-level
4092 org-columns-compute org-agenda-columns org-columns-remove-overlays
4093 org-columns org-insert-columns-dblock org-dblock-write
:columnview
))
4097 (declare-function org-id-store-link
"org-id")
4098 (declare-function org-id-locations-load
"org-id")
4099 (declare-function org-id-locations-save
"org-id")
4100 (defvar org-id-track-globally
)
4101 (org-autoload "org-id"
4102 '(org-id-get-create org-id-new org-id-copy org-id-get
4103 org-id-get-with-outline-path-completion
4104 org-id-get-with-outline-drilling org-id-store-link
4105 org-id-goto org-id-find org-id-store-link
))
4107 ;; Autoload Plotting Code
4109 (org-autoload "org-plot"
4110 '(org-plot/gnuplot
))
4112 ;;; Variables for pre-computed regular expressions, all buffer local
4114 (defvar org-drawer-regexp nil
4115 "Matches first line of a hidden block.")
4116 (make-variable-buffer-local 'org-drawer-regexp
)
4117 (defvar org-todo-regexp nil
4118 "Matches any of the TODO state keywords.")
4119 (make-variable-buffer-local 'org-todo-regexp
)
4120 (defvar org-not-done-regexp nil
4121 "Matches any of the TODO state keywords except the last one.")
4122 (make-variable-buffer-local 'org-not-done-regexp
)
4123 (defvar org-not-done-heading-regexp nil
4124 "Matches a TODO headline that is not done.")
4125 (make-variable-buffer-local 'org-not-done-regexp
)
4126 (defvar org-todo-line-regexp nil
4127 "Matches a headline and puts TODO state into group 2 if present.")
4128 (make-variable-buffer-local 'org-todo-line-regexp
)
4129 (defvar org-complex-heading-regexp nil
4130 "Matches a headline and puts everything into groups:
4132 group 2: The todo keyword, maybe
4133 group 3: Priority cookie
4134 group 4: True headline
4136 (make-variable-buffer-local 'org-complex-heading-regexp
)
4137 (defvar org-complex-heading-regexp-format nil
4138 "Printf format to make regexp to match an exact headline.
4139 This regexp will match the headline of any node which hase the exact
4140 headline text that is put into the format, but may have any TODO state,
4141 priority and tags.")
4142 (make-variable-buffer-local 'org-complex-heading-regexp-format
)
4143 (defvar org-todo-line-tags-regexp nil
4144 "Matches a headline and puts TODO state into group 2 if present.
4145 Also put tags into group 4 if tags are present.")
4146 (make-variable-buffer-local 'org-todo-line-tags-regexp
)
4147 (defvar org-nl-done-regexp nil
4148 "Matches newline followed by a headline with the DONE keyword.")
4149 (make-variable-buffer-local 'org-nl-done-regexp
)
4150 (defvar org-looking-at-done-regexp nil
4151 "Matches the DONE keyword a point.")
4152 (make-variable-buffer-local 'org-looking-at-done-regexp
)
4153 (defvar org-ds-keyword-length
12
4154 "Maximum length of the Deadline and SCHEDULED keywords.")
4155 (make-variable-buffer-local 'org-ds-keyword-length
)
4156 (defvar org-deadline-regexp nil
4157 "Matches the DEADLINE keyword.")
4158 (make-variable-buffer-local 'org-deadline-regexp
)
4159 (defvar org-deadline-time-regexp nil
4160 "Matches the DEADLINE keyword together with a time stamp.")
4161 (make-variable-buffer-local 'org-deadline-time-regexp
)
4162 (defvar org-deadline-line-regexp nil
4163 "Matches the DEADLINE keyword and the rest of the line.")
4164 (make-variable-buffer-local 'org-deadline-line-regexp
)
4165 (defvar org-scheduled-regexp nil
4166 "Matches the SCHEDULED keyword.")
4167 (make-variable-buffer-local 'org-scheduled-regexp
)
4168 (defvar org-scheduled-time-regexp nil
4169 "Matches the SCHEDULED keyword together with a time stamp.")
4170 (make-variable-buffer-local 'org-scheduled-time-regexp
)
4171 (defvar org-closed-time-regexp nil
4172 "Matches the CLOSED keyword together with a time stamp.")
4173 (make-variable-buffer-local 'org-closed-time-regexp
)
4175 (defvar org-keyword-time-regexp nil
4176 "Matches any of the 4 keywords, together with the time stamp.")
4177 (make-variable-buffer-local 'org-keyword-time-regexp
)
4178 (defvar org-keyword-time-not-clock-regexp nil
4179 "Matches any of the 3 keywords, together with the time stamp.")
4180 (make-variable-buffer-local 'org-keyword-time-not-clock-regexp
)
4181 (defvar org-maybe-keyword-time-regexp nil
4182 "Matches a timestamp, possibly preceded by a keyword.")
4183 (make-variable-buffer-local 'org-maybe-keyword-time-regexp
)
4184 (defvar org-planning-or-clock-line-re nil
4185 "Matches a line with planning or clock info.")
4186 (make-variable-buffer-local 'org-planning-or-clock-line-re
)
4187 (defvar org-all-time-keywords nil
4188 "List of time keywords.")
4189 (make-variable-buffer-local 'org-all-time-keywords
)
4191 (defconst org-plain-time-of-day-regexp
4194 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4197 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4199 "Regular expression to match a plain time or time range.
4200 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4201 groups carry important information:
4203 1 the first time, range or not
4204 8 the second time, if it is a range.")
4206 (defconst org-plain-time-extension-regexp
4209 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4210 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4211 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4212 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4213 groups carry important information:
4216 9 minutes of duration")
4218 (defconst org-stamp-time-of-day-regexp
4220 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4221 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4223 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4224 "Regular expression to match a timestamp time or time range.
4225 After a match, the following groups carry important information:
4227 1 date plus weekday, for back referencing to make sure both times are on the same day
4228 2 the first time, range or not
4229 4 the second time, if it is a range.")
4231 (defconst org-startup-options
4232 '(("fold" org-startup-folded t
)
4233 ("overview" org-startup-folded t
)
4234 ("nofold" org-startup-folded nil
)
4235 ("showall" org-startup-folded nil
)
4236 ("showeverything" org-startup-folded showeverything
)
4237 ("content" org-startup-folded content
)
4238 ("indent" org-startup-indented t
)
4239 ("noindent" org-startup-indented nil
)
4240 ("hidestars" org-hide-leading-stars t
)
4241 ("showstars" org-hide-leading-stars nil
)
4242 ("odd" org-odd-levels-only t
)
4243 ("oddeven" org-odd-levels-only nil
)
4244 ("align" org-startup-align-all-tables t
)
4245 ("noalign" org-startup-align-all-tables nil
)
4246 ("inlineimages" org-startup-with-inline-images t
)
4247 ("noinlineimages" org-startup-with-inline-images nil
)
4248 ("customtime" org-display-custom-times t
)
4249 ("logdone" org-log-done time
)
4250 ("lognotedone" org-log-done note
)
4251 ("nologdone" org-log-done nil
)
4252 ("lognoteclock-out" org-log-note-clock-out t
)
4253 ("nolognoteclock-out" org-log-note-clock-out nil
)
4254 ("logrepeat" org-log-repeat state
)
4255 ("lognoterepeat" org-log-repeat note
)
4256 ("nologrepeat" org-log-repeat nil
)
4257 ("logreschedule" org-log-reschedule time
)
4258 ("lognotereschedule" org-log-reschedule note
)
4259 ("nologreschedule" org-log-reschedule nil
)
4260 ("logredeadline" org-log-redeadline time
)
4261 ("lognoteredeadline" org-log-redeadline note
)
4262 ("nologredeadline" org-log-redeadline nil
)
4263 ("logrefile" org-log-refile time
)
4264 ("lognoterefile" org-log-refile note
)
4265 ("nologrefile" org-log-refile nil
)
4266 ("fninline" org-footnote-define-inline t
)
4267 ("nofninline" org-footnote-define-inline nil
)
4268 ("fnlocal" org-footnote-section nil
)
4269 ("fnauto" org-footnote-auto-label t
)
4270 ("fnprompt" org-footnote-auto-label nil
)
4271 ("fnconfirm" org-footnote-auto-label confirm
)
4272 ("fnplain" org-footnote-auto-label plain
)
4273 ("fnadjust" org-footnote-auto-adjust t
)
4274 ("nofnadjust" org-footnote-auto-adjust nil
)
4275 ("constcgs" constants-unit-system cgs
)
4276 ("constSI" constants-unit-system SI
)
4277 ("noptag" org-tag-persistent-alist nil
)
4278 ("hideblocks" org-hide-block-startup t
)
4279 ("nohideblocks" org-hide-block-startup nil
)
4280 ("beamer" org-startup-with-beamer-mode t
)
4281 ("entitiespretty" org-pretty-entities t
)
4282 ("entitiesplain" org-pretty-entities nil
))
4283 "Variable associated with STARTUP options for org-mode.
4284 Each element is a list of three items: The startup options as written
4285 in the #+STARTUP line, the corresponding variable, and the value to
4286 set this variable to if the option is found. An optional forth element PUSH
4287 means to push this value onto the list in the variable.")
4289 (defun org-set-regexps-and-options ()
4290 "Precompute regular expressions for current buffer."
4292 (org-set-local 'org-todo-kwd-alist nil
)
4293 (org-set-local 'org-todo-key-alist nil
)
4294 (org-set-local 'org-todo-key-trigger nil
)
4295 (org-set-local 'org-todo-keywords-1 nil
)
4296 (org-set-local 'org-done-keywords nil
)
4297 (org-set-local 'org-todo-heads nil
)
4298 (org-set-local 'org-todo-sets nil
)
4299 (org-set-local 'org-todo-log-states nil
)
4300 (org-set-local 'org-file-properties nil
)
4301 (org-set-local 'org-file-tags nil
)
4302 (let ((re (org-make-options-regexp
4303 '("CATEGORY" "TODO" "COLUMNS"
4304 "STARTUP" "ARCHIVE" "FILETAGS" "TAGS" "LINK" "PRIORITIES"
4305 "CONSTANTS" "PROPERTY" "DRAWERS" "SETUPFILE" "LATEX_CLASS"
4307 "\\(?:[a-zA-Z][0-9a-zA-Z_]*_TODO\\)"))
4309 (scripts org-use-sub-superscripts
)
4310 kwds kws0 kwsa key log value cat arch tags const links hw dws
4311 tail sep kws1 prio props ftags drawers beamer-p
4312 ext-setup-or-nil setup-contents
(start 0))
4316 (goto-char (point-min))
4317 (while (or (and ext-setup-or-nil
4318 (string-match re ext-setup-or-nil start
)
4319 (setq start
(match-end 0)))
4320 (and (setq ext-setup-or-nil nil start
0)
4321 (re-search-forward re nil t
)))
4322 (setq key
(upcase (match-string 1 ext-setup-or-nil
))
4323 value
(org-match-string-no-properties 2 ext-setup-or-nil
))
4324 (if (stringp value
) (setq value
(org-trim value
)))
4326 ((equal key
"CATEGORY")
4328 ((member key
'("SEQ_TODO" "TODO"))
4329 (push (cons 'sequence
(org-split-string value splitre
)) kwds
))
4330 ((equal key
"TYP_TODO")
4331 (push (cons 'type
(org-split-string value splitre
)) kwds
))
4332 ((string-match "\\`\\([a-zA-Z][0-9a-zA-Z_]*\\)_TODO\\'" key
)
4333 ;; general TODO-like setup
4334 (push (cons (intern (downcase (match-string 1 key
)))
4335 (org-split-string value splitre
)) kwds
))
4337 (setq tags
(append tags
(if tags
'("\\n") nil
)
4338 (org-split-string value splitre
))))
4339 ((equal key
"COLUMNS")
4340 (org-set-local 'org-columns-default-format value
))
4342 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value
)
4343 (push (cons (match-string 1 value
)
4344 (org-trim (match-string 2 value
)))
4346 ((equal key
"PRIORITIES")
4347 (setq prio
(org-split-string value
" +")))
4348 ((equal key
"PROPERTY")
4349 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value
)
4350 (push (cons (match-string 1 value
) (match-string 2 value
))
4352 ((equal key
"FILETAGS")
4353 (when (string-match "\\S-" value
)
4358 (mapcar (lambda (x) (org-split-string x
":"))
4359 (org-split-string value
)))))))
4360 ((equal key
"DRAWERS")
4361 (setq drawers
(org-split-string value splitre
)))
4362 ((equal key
"CONSTANTS")
4363 (setq const
(append const
(org-split-string value splitre
))))
4364 ((equal key
"STARTUP")
4365 (let ((opts (org-split-string value splitre
))
4367 (while (setq l
(pop opts
))
4368 (when (setq l
(assoc l org-startup-options
))
4369 (setq var
(nth 1 l
) val
(nth 2 l
))
4371 (set (make-local-variable var
) val
)
4372 (if (not (listp (symbol-value var
)))
4373 (set (make-local-variable var
) nil
))
4374 (set (make-local-variable var
) (symbol-value var
))
4375 (add-to-list var val
))))))
4376 ((equal key
"ARCHIVE")
4378 (remove-text-properties 0 (length arch
)
4379 '(face t fontified t
) arch
))
4380 ((equal key
"LATEX_CLASS")
4381 (setq beamer-p
(equal value
"beamer")))
4382 ((equal key
"OPTIONS")
4383 (if (string-match "\\([ \t]\\|\\`\\)\\^:\\(t\\|nil\\|{}\\)" value
)
4384 (setq scripts
(read (match-string 2 value
)))))
4385 ((equal key
"SETUPFILE")
4386 (setq setup-contents
(org-file-contents
4388 (org-remove-double-quotes value
))
4390 (if (not ext-setup-or-nil
)
4391 (setq ext-setup-or-nil setup-contents start
0)
4392 (setq ext-setup-or-nil
4393 (concat (substring ext-setup-or-nil
0 start
)
4394 "\n" setup-contents
"\n"
4395 (substring ext-setup-or-nil start
)))))
4397 (org-set-local 'org-use-sub-superscripts scripts
)
4399 (org-set-local 'org-category
(intern cat
))
4400 (push (cons "CATEGORY" cat
) props
))
4402 (if (< (length prio
) 3) (setq prio
'("A" "C" "B")))
4403 (setq prio
(mapcar 'string-to-char prio
))
4404 (org-set-local 'org-highest-priority
(nth 0 prio
))
4405 (org-set-local 'org-lowest-priority
(nth 1 prio
))
4406 (org-set-local 'org-default-priority
(nth 2 prio
)))
4407 (and props
(org-set-local 'org-file-properties
(nreverse props
)))
4408 (and ftags
(org-set-local 'org-file-tags
4409 (mapcar 'org-add-prop-inherited ftags
)))
4410 (and drawers
(org-set-local 'org-drawers drawers
))
4411 (and arch
(org-set-local 'org-archive-location arch
))
4412 (and links
(setq org-link-abbrev-alist-local
(nreverse links
)))
4413 ;; Process the TODO keywords
4415 ;; Use the global values as if they had been given locally.
4416 (setq kwds
(default-value 'org-todo-keywords
))
4417 (if (stringp (car kwds
))
4418 (setq kwds
(list (cons org-todo-interpretation
4419 (default-value 'org-todo-keywords
)))))
4420 (setq kwds
(reverse kwds
)))
4421 (setq kwds
(nreverse kwds
))
4423 (while (setq kws
(pop kwds
))
4425 (run-hook-with-args-until-success
4426 'org-todo-setup-filter-hook kws
)
4428 (setq inter
(pop kws
) sep
(member "|" kws
)
4429 kws0
(delete "|" (copy-sequence kws
))
4434 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x
)
4436 (setq kw
(match-string 1 x
)
4437 key
(and (match-end 2) (match-string 2 x
))
4438 log
(org-extract-log-state-settings x
))
4439 (push (cons kw
(and key
(string-to-char key
))) kwsa
)
4440 (and log
(push log org-todo-log-states
))
4442 (error "Invalid TODO keyword %s" x
)))
4444 kwsa
(if kwsa
(append '((:startgroup
))
4448 dws
(if sep
(org-remove-keyword-keys (cdr sep
)) (last kws1
))
4449 tail
(list inter hw
(car dws
) (org-last dws
))))
4450 (add-to-list 'org-todo-heads hw
'append
)
4451 (push kws1 org-todo-sets
)
4452 (setq org-done-keywords
(append org-done-keywords dws nil
))
4453 (setq org-todo-key-alist
(append org-todo-key-alist kwsa
))
4454 (mapc (lambda (x) (push (cons x tail
) org-todo-kwd-alist
)) kws1
)
4455 (setq org-todo-keywords-1
(append org-todo-keywords-1 kws1 nil
)))
4456 (setq org-todo-sets
(nreverse org-todo-sets
)
4457 org-todo-kwd-alist
(nreverse org-todo-kwd-alist
)
4458 org-todo-key-trigger
(delq nil
(mapcar 'cdr org-todo-key-alist
))
4459 org-todo-key-alist
(org-assign-fast-keys org-todo-key-alist
)))
4460 ;; Process the constants
4463 (while (setq e
(pop const
))
4464 (if (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)" e
)
4465 (push (cons (match-string 1 e
) (match-string 2 e
)) cst
)))
4466 (setq org-table-formula-constants-local cst
)))
4468 ;; Process the tags.
4471 (while (setq e
(pop tags
))
4473 ((equal e
"{") (push '(:startgroup
) tgs
))
4474 ((equal e
"}") (push '(:endgroup
) tgs
))
4475 ((equal e
"\\n") (push '(:newline
) tgs
))
4476 ((string-match (org-re "^\\([[:alnum:]_@#%]+\\)(\\(.\\))$") e
)
4477 (push (cons (match-string 1 e
)
4478 (string-to-char (match-string 2 e
)))
4480 (t (push (list e
) tgs
))))
4481 (org-set-local 'org-tag-alist nil
)
4482 (while (setq e
(pop tgs
))
4483 (or (and (stringp (car e
))
4484 (assoc (car e
) org-tag-alist
))
4485 (push e org-tag-alist
)))))
4487 ;; Compute the regular expressions and other local variables
4488 (if (not org-done-keywords
)
4489 (setq org-done-keywords
(and org-todo-keywords-1
4490 (list (org-last org-todo-keywords-1
)))))
4491 (setq org-ds-keyword-length
(+ 2 (max (length org-deadline-string
)
4492 (length org-scheduled-string
)
4493 (length org-clock-string
)
4494 (length org-closed-string
)))
4496 (concat "^[ \t]*:\\("
4497 (mapconcat 'regexp-quote org-drawers
"\\|")
4499 org-not-done-keywords
4500 (org-delete-all org-done-keywords
(copy-sequence org-todo-keywords-1
))
4502 (concat "\\<\\(" (mapconcat 'regexp-quote org-todo-keywords-1
4506 (mapconcat 'regexp-quote org-not-done-keywords
"\\|")
4508 org-not-done-heading-regexp
4509 (concat "^\\(\\*+\\)[ \t]+\\("
4510 (mapconcat 'regexp-quote org-not-done-keywords
"\\|")
4512 org-todo-line-regexp
4513 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4514 (mapconcat 'regexp-quote org-todo-keywords-1
"\\|")
4515 "\\)\\>\\)?[ \t]*\\(.*\\)")
4516 org-complex-heading-regexp
4517 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4518 (mapconcat 'regexp-quote org-todo-keywords-1
"\\|")
4519 "\\)\\>\\)?\\(?:[ \t]*\\(\\[#.\\]\\)\\)?[ \t]*\\(.*?\\)"
4520 "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?[ \t]*$")
4521 org-complex-heading-regexp-format
4522 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4523 (mapconcat 'regexp-quote org-todo-keywords-1
"\\|")
4525 "\\(?:[ \t]*\\(\\[#.\\]\\)\\)?"
4526 "\\(?:[ \t]*\\(?:\\[[0-9%%/]+\\]\\)\\)?" ;; stats cookie
4528 "\\(?:[ \t]*\\(?:\\[[0-9%%/]+\\]\\)\\)?" ;; stats cookie
4529 "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?[ \t]*$")
4531 (concat "\n\\*+[ \t]+"
4532 "\\(?:" (mapconcat 'regexp-quote org-done-keywords
"\\|")
4534 org-todo-line-tags-regexp
4535 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
4536 (mapconcat 'regexp-quote org-todo-keywords-1
"\\|")
4538 "\\)\\>\\)? *\\(.*?\\([ \t]:[[:alnum:]:_@#%]+:[ \t]*\\)?$\\)"))
4539 org-looking-at-done-regexp
4541 (mapconcat 'regexp-quote org-done-keywords
"\\|") "\\)"
4543 org-deadline-regexp
(concat "\\<" org-deadline-string
)
4544 org-deadline-time-regexp
4545 (concat "\\<" org-deadline-string
" *<\\([^>]+\\)>")
4546 org-deadline-line-regexp
4547 (concat "\\<\\(" org-deadline-string
"\\).*")
4548 org-scheduled-regexp
4549 (concat "\\<" org-scheduled-string
)
4550 org-scheduled-time-regexp
4551 (concat "\\<" org-scheduled-string
" *<\\([^>]+\\)>")
4552 org-closed-time-regexp
4553 (concat "\\<" org-closed-string
" *\\[\\([^]]+\\)\\]")
4554 org-keyword-time-regexp
4555 (concat "\\<\\(" org-scheduled-string
4556 "\\|" org-deadline-string
4557 "\\|" org-closed-string
4558 "\\|" org-clock-string
"\\)"
4559 " *[[<]\\([^]>]+\\)[]>]")
4560 org-keyword-time-not-clock-regexp
4561 (concat "\\<\\(" org-scheduled-string
4562 "\\|" org-deadline-string
4563 "\\|" org-closed-string
4565 " *[[<]\\([^]>]+\\)[]>]")
4566 org-maybe-keyword-time-regexp
4567 (concat "\\(\\<\\(" org-scheduled-string
4568 "\\|" org-deadline-string
4569 "\\|" org-closed-string
4570 "\\|" org-clock-string
"\\)\\)?"
4571 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^]\r\n>]*?[]>]\\|<%%([^\r\n>]*>\\)")
4572 org-planning-or-clock-line-re
4573 (concat "\\(?:^[ \t]*\\(" org-scheduled-string
4574 "\\|" org-deadline-string
4575 "\\|" org-closed-string
"\\|" org-clock-string
4577 org-all-time-keywords
4578 (mapcar (lambda (w) (substring w
0 -
1))
4579 (list org-scheduled-string org-deadline-string
4580 org-clock-string org-closed-string
))
4582 (org-compute-latex-and-specials-regexp)
4583 (org-set-font-lock-defaults))))
4585 (defun org-file-contents (file &optional noerror
)
4586 "Return the contents of FILE, as a string."
4588 (not (file-readable-p file
)))
4591 (message "Cannot read file \"%s\"" file
)
4594 (error "Cannot read file \"%s\"" file
))
4596 (insert-file-contents file
)
4599 (defun org-extract-log-state-settings (x)
4600 "Extract the log state setting from a TODO keyword string.
4601 This will extract info from a string like \"WAIT(w@/!)\"."
4602 (let (kw key log1 log2
)
4603 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x
)
4604 (setq kw
(match-string 1 x
)
4605 key
(and (match-end 2) (match-string 2 x
))
4606 log1
(and (match-end 3) (match-string 3 x
))
4607 log2
(and (match-end 4) (match-string 4 x
)))
4610 (and log1
(if (equal log1
"!") 'time
'note
))
4611 (and log2
(if (equal log2
"!") 'time
'note
)))))))
4613 (defun org-remove-keyword-keys (list)
4614 "Remove a pair of parenthesis at the end of each string in LIST."
4616 (if (string-match "(.*)$" x
)
4617 (substring x
0 (match-beginning 0))
4621 (defun org-assign-fast-keys (alist)
4622 "Assign fast keys to a keyword-key alist.
4623 Respect keys that are already there."
4624 (let (new e
(alt ?
0))
4625 (while (setq e
(pop alist
))
4626 (if (or (memq (car e
) '(:newline
:endgroup
:startgroup
))
4627 (cdr e
)) ;; Key already assigned.
4629 (let ((clist (string-to-list (downcase (car e
))))
4630 (used (append new alist
)))
4631 (when (= (car clist
) ?
@)
4633 (while (and clist
(rassoc (car clist
) used
))
4636 (while (rassoc alt used
)
4638 (push (cons (car e
) (or (car clist
) alt
)) new
))))
4641 ;;; Some variables used in various places
4643 (defvar org-window-configuration nil
4644 "Used in various places to store a window configuration.")
4645 (defvar org-selected-window nil
4646 "Used in various places to store a window configuration.")
4647 (defvar org-finish-function nil
4648 "Function to be called when `C-c C-c' is used.
4649 This is for getting out of special buffers like remember.")
4652 ;; FIXME: Occasionally check by commenting these, to make sure
4653 ;; no other functions uses these, forgetting to let-bind them.
4658 ;; Defined somewhere in this file, but used before definition.
4659 (defvar org-entities
) ;; defined in org-entities.el
4660 (defvar org-struct-menu
)
4661 (defvar org-org-menu
)
4662 (defvar org-tbl-menu
)
4664 ;;;; Define the Org-mode
4666 (if (and (not (keymapp outline-mode-map
)) (featurep 'allout
))
4667 (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"))
4670 ;; We use a before-change function to check if a table might need
4672 (defvar org-table-may-need-update t
4673 "Indicates that a table might need an update.
4674 This variable is set by `org-before-change-function'.
4675 `org-table-align' sets it back to nil.")
4676 (defun org-before-change-function (beg end
)
4677 "Every change indicates that a table might need an update."
4678 (setq org-table-may-need-update t
))
4679 (defvar org-mode-map
)
4680 (defvar org-inhibit-startup nil
) ; Dynamically-scoped param.
4681 (defvar org-inhibit-startup-visibility-stuff nil
) ; Dynamically-scoped param.
4682 (defvar org-agenda-keep-modes nil
) ; Dynamically-scoped param.
4683 (defvar org-inhibit-logging nil
) ; Dynamically-scoped param.
4684 (defvar org-inhibit-blocking nil
) ; Dynamically-scoped param.
4685 (defvar org-table-buffer-is-an nil
)
4686 (defconst org-outline-regexp
"\\*+ ")
4689 (define-derived-mode org-mode outline-mode
"Org"
4690 "Outline-based notes management and organizer, alias
4691 \"Carsten's outline-mode for keeping track of everything.\"
4693 Org-mode develops organizational tasks around a NOTES file which
4694 contains information about projects as plain text. Org-mode is
4695 implemented on top of outline-mode, which is ideal to keep the content
4696 of large files well structured. It supports ToDo items, deadlines and
4697 time stamps, which magically appear in the diary listing of the Emacs
4698 calendar. Tables are easily created with a built-in table editor.
4699 Plain text URL-like links connect to websites, emails (VM), Usenet
4700 messages (Gnus), BBDB entries, and any files related to the project.
4701 For printing and sharing of notes, an Org-mode file (or a part of it)
4702 can be exported as a structured ASCII or HTML file.
4704 The following commands are available:
4708 ;; Get rid of Outline menus, they are not needed
4709 ;; Need to do this here because define-derived-mode sets up
4710 ;; the keymap so late. Still, it is a waste to call this each time
4711 ;; we switch another buffer into org-mode.
4712 (if (featurep 'xemacs
)
4713 (when (boundp 'outline-mode-menu-heading
)
4714 ;; Assume this is Greg's port, it uses easymenu
4715 (easy-menu-remove outline-mode-menu-heading
)
4716 (easy-menu-remove outline-mode-menu-show
)
4717 (easy-menu-remove outline-mode-menu-hide
))
4718 (define-key org-mode-map
[menu-bar headings
] 'undefined
)
4719 (define-key org-mode-map
[menu-bar hide
] 'undefined
)
4720 (define-key org-mode-map
[menu-bar show
] 'undefined
))
4722 (org-load-modules-maybe)
4723 (easy-menu-add org-org-menu
)
4724 (easy-menu-add org-tbl-menu
)
4725 (org-install-agenda-files-menu)
4726 (if org-descriptive-links
(add-to-invisibility-spec '(org-link)))
4727 (add-to-invisibility-spec '(org-cwidth))
4728 (add-to-invisibility-spec '(org-hide-block . t
))
4729 (when (featurep 'xemacs
)
4730 (org-set-local 'line-move-ignore-invisible t
))
4731 (org-set-local 'outline-regexp org-outline-regexp
)
4732 (org-set-local 'outline-level
'org-outline-level
)
4733 (when (and org-ellipsis
4734 (fboundp 'set-display-table-slot
) (boundp 'buffer-display-table
)
4735 (fboundp 'make-glyph-code
))
4736 (unless org-display-table
4737 (setq org-display-table
(make-display-table)))
4738 (set-display-table-slot
4741 (lambda (c) (make-glyph-code c
(and (not (stringp org-ellipsis
))
4743 (if (stringp org-ellipsis
) org-ellipsis
"..."))))
4744 (setq buffer-display-table org-display-table
))
4745 (org-set-regexps-and-options)
4746 (when (and org-tag-faces
(not org-tags-special-faces-re
))
4747 ;; tag faces set outside customize.... force initialization.
4748 (org-set-tag-faces 'org-tag-faces org-tag-faces
))
4750 (org-set-local 'calc-embedded-open-mode
"# ")
4751 (modify-syntax-entry ?
@ "w")
4752 (if org-startup-truncated
(setq truncate-lines t
))
4753 (org-set-local 'font-lock-unfontify-region-function
4754 'org-unfontify-region
)
4755 ;; Activate before-change-function
4756 (org-set-local 'org-table-may-need-update t
)
4757 (org-add-hook 'before-change-functions
'org-before-change-function nil
4759 ;; Check for running clock before killing a buffer
4760 (org-add-hook 'kill-buffer-hook
'org-check-running-clock nil
'local
)
4761 ;; Paragraphs and auto-filling
4762 (org-set-autofill-regexps)
4763 (setq indent-line-function
'org-indent-line-function
)
4764 (org-update-radio-target-regexp)
4765 ;; Beginning/end of defun
4766 (org-set-local 'beginning-of-defun-function
'org-beginning-of-defun
)
4767 (org-set-local 'end-of-defun-function
'org-end-of-defun
)
4768 ;; Next error for sparse trees
4769 (org-set-local 'next-error-function
'org-occur-next-match
)
4770 ;; Make sure dependence stuff works reliably, even for users who set it
4772 (if org-enforce-todo-dependencies
4773 (add-hook 'org-blocker-hook
4774 'org-block-todo-from-children-or-siblings-or-parent
)
4775 (remove-hook 'org-blocker-hook
4776 'org-block-todo-from-children-or-siblings-or-parent
))
4777 (if org-enforce-todo-checkbox-dependencies
4778 (add-hook 'org-blocker-hook
4779 'org-block-todo-from-checkboxes
)
4780 (remove-hook 'org-blocker-hook
4781 'org-block-todo-from-checkboxes
))
4783 ;; Comment characters
4784 (org-set-local 'comment-start
"#")
4785 (org-set-local 'comment-padding
" ")
4787 ;; Align options lines
4789 'align-mode-rules-list
4790 '((org-in-buffer-settings
4791 (regexp .
"^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
4792 (modes .
'(org-mode)))))
4795 (org-set-local 'imenu-create-index-function
4796 'org-imenu-get-tree
)
4798 ;; Make isearch reveal context
4799 (if (or (featurep 'xemacs
)
4800 (not (boundp 'outline-isearch-open-invisible-function
)))
4801 ;; Emacs 21 and XEmacs make use of the hook
4802 (org-add-hook 'isearch-mode-end-hook
'org-isearch-end
'append
'local
)
4803 ;; Emacs 22 deals with this through a special variable
4804 (org-set-local 'outline-isearch-open-invisible-function
4805 (lambda (&rest ignore
) (org-show-context 'isearch
))))
4807 ;; Turn on org-beamer-mode?
4808 (and org-startup-with-beamer-mode
(org-beamer-mode 1))
4810 ;; Setup the pcomplete hooks
4811 (set (make-local-variable 'pcomplete-command-completion-function
)
4812 'org-pcomplete-initial
)
4813 (set (make-local-variable 'pcomplete-command-name-function
)
4814 'org-command-at-point
)
4815 (set (make-local-variable 'pcomplete-default-completion-function
)
4817 (set (make-local-variable 'pcomplete-parse-arguments-function
)
4818 'org-parse-arguments
)
4819 (set (make-local-variable 'pcomplete-termination-string
) "")
4821 ;; If empty file that did not turn on org-mode automatically, make it to.
4822 (if (and org-insert-mode-line-in-empty-file
4824 (= (point-min) (point-max)))
4825 (insert "# -*- mode: org -*-\n\n"))
4826 (unless org-inhibit-startup
4827 (when org-startup-align-all-tables
4828 (let ((bmp (buffer-modified-p)))
4829 (org-table-map-tables 'org-table-align
'quietly
)
4830 (set-buffer-modified-p bmp
)))
4831 (when org-startup-with-inline-images
4832 (org-display-inline-images))
4833 (when org-startup-indented
4834 (require 'org-indent
)
4835 (org-indent-mode 1))
4836 (unless org-inhibit-startup-visibility-stuff
4837 (org-set-startup-visibility))))
4839 (when (fboundp 'abbrev-table-put
)
4840 (abbrev-table-put org-mode-abbrev-table
4841 :parents
(list text-mode-abbrev-table
)))
4843 (put 'org-mode
'flyspell-mode-predicate
'org-mode-flyspell-verify
)
4845 (defun org-current-time ()
4846 "Current time, possibly rounded to `org-time-stamp-rounding-minutes'."
4847 (if (> (car org-time-stamp-rounding-minutes
) 1)
4848 (let ((r (car org-time-stamp-rounding-minutes
))
4849 (time (decode-time)))
4851 (append (list 0 (* r
(floor (+ .5 (/ (float (nth 1 time
)) r
)))))
4856 "Return today date, considering `org-extend-today-until'."
4858 (time-subtract (current-time)
4859 (list 0 (* 3600 org-extend-today-until
) 0))))
4861 ;;;; Font-Lock stuff, including the activators
4863 (defvar org-mouse-map
(make-sparse-keymap))
4864 (org-defkey org-mouse-map
[mouse-2
] 'org-open-at-mouse
)
4865 (org-defkey org-mouse-map
[mouse-3
] 'org-find-file-at-mouse
)
4866 (when org-mouse-1-follows-link
4867 (org-defkey org-mouse-map
[follow-link
] 'mouse-face
))
4868 (when org-tab-follows-link
4869 (org-defkey org-mouse-map
[(tab)] 'org-open-at-point
)
4870 (org-defkey org-mouse-map
"\C-i" 'org-open-at-point
))
4872 (require 'font-lock
)
4874 (defconst org-non-link-chars
"]\t\n\r<>")
4875 (defvar org-link-types
'("http" "https" "ftp" "mailto" "file" "news"
4876 "shell" "elisp" "doi" "message"))
4877 (defvar org-link-types-re nil
4878 "Matches a link that has a url-like prefix like \"http:\"")
4879 (defvar org-link-re-with-space nil
4880 "Matches a link with spaces, optional angular brackets around it.")
4881 (defvar org-link-re-with-space2 nil
4882 "Matches a link with spaces, optional angular brackets around it.")
4883 (defvar org-link-re-with-space3 nil
4884 "Matches a link with spaces, only for internal part in bracket links.")
4885 (defvar org-angle-link-re nil
4886 "Matches link with angular brackets, spaces are allowed.")
4887 (defvar org-plain-link-re nil
4888 "Matches plain link, without spaces.")
4889 (defvar org-bracket-link-regexp nil
4890 "Matches a link in double brackets.")
4891 (defvar org-bracket-link-analytic-regexp nil
4892 "Regular expression used to analyze links.
4893 Here is what the match groups contain after a match:
4899 (defvar org-bracket-link-analytic-regexp
++ nil
4900 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
4901 (defvar org-any-link-re nil
4902 "Regular expression matching any link.")
4904 (defcustom org-match-sexp-depth
3
4905 "Number of stacked braces for sub/superscript matching.
4906 This has to be set before loading org.el to be effective."
4907 :group
'org-export-translation
; ??????????????????????????/
4910 (defun org-create-multibrace-regexp (left right n
)
4911 "Create a regular expression which will match a balanced sexp.
4912 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
4913 as single character strings.
4914 The regexp returned will match the entire expression including the
4915 delimiters. It will also define a single group which contains the
4916 match except for the outermost delimiters. The maximum depth of
4917 stacked delimiters is N. Escaping delimiters is not possible."
4918 (let* ((nothing (concat "[^" left right
"]*?"))
4921 (next (concat "\\(?:" nothing left nothing right
"\\)+" nothing
)))
4924 re
(concat re or next
)
4925 next
(concat "\\(?:" nothing left next right
"\\)+" nothing
)))
4926 (concat left
"\\(" re
"\\)" right
)))
4928 (defvar org-match-substring-regexp
4930 "\\([^\\]\\)\\([_^]\\)\\("
4931 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth
) "\\)"
4933 "\\(" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth
) "\\)"
4935 "\\(\\(?:\\*\\|[-+]?[^-+*!@#$%^_ \t\r\n,:\"?<>~;./{}=()]+\\)\\)\\)")
4936 "The regular expression matching a sub- or superscript.")
4938 (defvar org-match-substring-with-braces-regexp
4940 "\\([^\\]\\)\\([_^]\\)\\("
4941 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth
) "\\)"
4943 "The regular expression matching a sub- or superscript, forcing braces.")
4945 (defun org-make-link-regexps ()
4946 "Update the link regular expressions.
4947 This should be called after the variable `org-link-types' has changed."
4948 (setq org-link-types-re
4950 "\\`\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):")
4951 org-link-re-with-space
4953 "<?\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):"
4954 "\\([^" org-non-link-chars
" ]"
4955 "[^" org-non-link-chars
"]*"
4956 "[^" org-non-link-chars
" ]\\)>?")
4957 org-link-re-with-space2
4959 "<?\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):"
4960 "\\([^" org-non-link-chars
" ]"
4962 "[^" org-non-link-chars
" ]\\)>?")
4963 org-link-re-with-space3
4965 "<?\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):"
4966 "\\([^" org-non-link-chars
" ]"
4970 "<\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):"
4971 "\\([^" org-non-link-chars
" ]"
4972 "[^" org-non-link-chars
"]*"
4976 "\\<\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):"
4977 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
4978 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
4979 org-bracket-link-regexp
4980 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
4981 org-bracket-link-analytic-regexp
4984 "\\(\\(" (mapconcat 'regexp-quote org-link-types
"\\|") "\\):\\)?"
4987 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
4989 org-bracket-link-analytic-regexp
++
4992 "\\(\\(" (mapconcat 'regexp-quote
(cons "coderef" org-link-types
) "\\|") "\\):\\)?"
4995 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
4998 (concat "\\(" org-bracket-link-regexp
"\\)\\|\\("
4999 org-angle-link-re
"\\)\\|\\("
5000 org-plain-link-re
"\\)")))
5002 (org-make-link-regexps)
5004 (defconst org-ts-regexp
"<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^\r\n>]*?\\)>"
5005 "Regular expression for fast time stamp matching.")
5006 (defconst org-ts-regexp-both
"[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^]\r\n>]*?\\)[]>]"
5007 "Regular expression for fast time stamp matching.")
5008 (defconst org-ts-regexp0
"\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
5009 "Regular expression matching time strings for analysis.
5010 This one does not require the space after the date, so it can be used
5011 on a string that terminates immediately after the date.")
5012 (defconst org-ts-regexp1
"\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) +\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
5013 "Regular expression matching time strings for analysis.")
5014 (defconst org-ts-regexp2
(concat "<" org-ts-regexp1
"[^>\n]\\{0,16\\}>")
5015 "Regular expression matching time stamps, with groups.")
5016 (defconst org-ts-regexp3
(concat "[[<]" org-ts-regexp1
"[^]>\n]\\{0,16\\}[]>]")
5017 "Regular expression matching time stamps (also [..]), with groups.")
5018 (defconst org-tr-regexp
(concat org-ts-regexp
"--?-?" org-ts-regexp
)
5019 "Regular expression matching a time stamp range.")
5020 (defconst org-tr-regexp-both
5021 (concat org-ts-regexp-both
"--?-?" org-ts-regexp-both
)
5022 "Regular expression matching a time stamp range.")
5023 (defconst org-tsr-regexp
(concat org-ts-regexp
"\\(--?-?"
5024 org-ts-regexp
"\\)?")
5025 "Regular expression matching a time stamp or time stamp range.")
5026 (defconst org-tsr-regexp-both
(concat org-ts-regexp-both
"\\(--?-?"
5027 org-ts-regexp-both
"\\)?")
5028 "Regular expression matching a time stamp or time stamp range.
5029 The time stamps may be either active or inactive.")
5031 (defvar org-emph-face nil
)
5033 (defun org-do-emphasis-faces (limit)
5034 "Run through the buffer and add overlays to links."
5036 (while (and (not rtn
) (re-search-forward org-emph-re limit t
))
5037 (if (not (= (char-after (match-beginning 3))
5038 (char-after (match-beginning 4))))
5041 (setq a
(assoc (match-string 3) org-emphasis-alist
))
5042 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5046 (org-remove-flyspell-overlays-in
5047 (match-beginning 0) (match-end 0)))
5048 (add-text-properties (match-beginning 2) (match-end 2)
5049 '(font-lock-multiline t org-emphasis t
))
5050 (when org-hide-emphasis-markers
5051 (add-text-properties (match-end 4) (match-beginning 5)
5052 '(invisible org-link
))
5053 (add-text-properties (match-beginning 3) (match-end 3)
5054 '(invisible org-link
)))))
5058 (defun org-emphasize (&optional char
)
5059 "Insert or change an emphasis, i.e. a font like bold or italic.
5060 If there is an active region, change that region to a new emphasis.
5061 If there is no region, just insert the marker characters and position
5062 the cursor between them.
5063 CHAR should be either the marker character, or the first character of the
5064 HTML tag associated with that emphasis. If CHAR is a space, the means
5065 to remove the emphasis of the selected region.
5066 If char is not given (for example in an interactive call) it
5067 will be prompted for."
5069 (let ((eal org-emphasis-alist
) e det
5070 (erc org-emphasis-regexp-components
)
5072 (string "") beg end move tag c s
)
5073 (if (org-region-active-p)
5074 (setq beg
(region-beginning) end
(region-end)
5075 string
(buffer-substring beg end
))
5078 (while (setq e
(pop eal
))
5079 (setq tag
(car (org-split-string (nth 2 e
) "[ <>/]+"))
5081 (push (cons c
(string-to-char (car e
))) det
)
5082 (setq prompt
(concat prompt
(format " [%s%c]%s" (car e
) c
5083 (substring tag
1)))))
5084 (setq det
(nreverse det
))
5086 (message "%s" (concat "Emphasis marker or tag:" prompt
))
5087 (setq char
(read-char-exclusive)))
5088 (setq char
(or (cdr (assoc char det
)) char
))
5089 (if (equal char ?\
)
5090 (setq s
"" move nil
)
5091 (unless (assoc (char-to-string char
) org-emphasis-alist
)
5092 (error "No such emphasis marker: \"%c\"" char
))
5093 (setq s
(char-to-string char
)))
5094 (while (and (> (length string
) 1)
5095 (equal (substring string
0 1) (substring string -
1))
5096 (assoc (substring string
0 1) org-emphasis-alist
))
5097 (setq string
(substring string
1 -
1)))
5098 (setq string
(concat s string s
))
5099 (if beg
(delete-region beg end
))
5101 (string-match (concat "[" (nth 0 erc
) "\n]")
5102 (char-to-string (char-before (point)))))
5105 (string-match (concat "[" (nth 1 erc
) "\n]")
5106 (char-to-string (char-after (point)))))
5107 (insert " ") (backward-char 1))
5109 (and move
(backward-char 1))))
5111 (defconst org-nonsticky-props
5112 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text
))
5114 (defsubst org-rear-nonsticky-at
(pos)
5115 (add-text-properties (1- pos
) pos
(list 'rear-nonsticky org-nonsticky-props
)))
5117 (defun org-activate-plain-links (limit)
5118 "Run through the buffer and add overlays to links."
5121 (if (re-search-forward org-plain-link-re limit t
)
5123 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5124 (setq f
(get-text-property (match-beginning 0) 'face
))
5125 (if (or (eq f
'org-tag
)
5126 (and (listp f
) (memq 'org-tag f
)))
5128 (add-text-properties (match-beginning 0) (match-end 0)
5129 (list 'mouse-face
'highlight
5131 'keymap org-mouse-map
))
5132 (org-rear-nonsticky-at (match-end 0)))
5135 (defun org-activate-code (limit)
5136 (if (re-search-forward "^[ \t]*\\(: .*\n?\\)" limit t
)
5138 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5139 (remove-text-properties (match-beginning 0) (match-end 0)
5140 '(display t invisible t intangible t
))
5143 (defcustom org-src-fontify-natively nil
5144 "When non-nil, fontify code in code blocks."
5146 :group
'org-appearance
5149 (defun org-fontify-meta-lines-and-blocks (limit)
5150 "Fontify #+ lines and blocks, in the correct ways."
5151 (let ((case-fold-search t
))
5152 (if (re-search-forward
5153 "^\\([ \t]*#\\+\\(\\([a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5155 (let ((beg (match-beginning 0))
5156 (block-start (match-end 0))
5158 (lang (match-string 7))
5159 (beg1 (line-beginning-position 2))
5160 (dc1 (downcase (match-string 2)))
5161 (dc3 (downcase (match-string 3)))
5162 end end1 quoting block-type ovl
)
5164 ((member dc1
'("html:" "ascii:" "latex:" "docbook:"))
5165 ;; a single line of backend-specific content
5166 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5167 (remove-text-properties (match-beginning 0) (match-end 0)
5168 '(display t invisible t intangible t
))
5169 (add-text-properties (match-beginning 1) (match-end 3)
5170 '(font-lock-fontified t face org-meta-line
))
5171 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5172 '(font-lock-fontified t face org-block
))
5173 ; for backend-specific code
5175 ((and (match-end 4) (equal dc3
"begin"))
5177 (setq block-type
(downcase (match-string 5))
5178 quoting
(member block-type org-protecting-blocks
))
5179 (when (re-search-forward
5180 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5181 nil t
) ;; on purpose, we look further than LIMIT
5182 (setq end
(match-end 0) end1
(1- (match-beginning 0)))
5183 (setq block-end
(match-beginning 0))
5185 (remove-text-properties beg end
5186 '(display t invisible t intangible t
)))
5187 (add-text-properties
5189 '(font-lock-fontified t font-lock-multiline t
))
5190 (add-text-properties beg beg1
'(face org-meta-line
))
5191 (add-text-properties end1
(+ end
1) '(face org-meta-line
))
5194 ((and lang org-src-fontify-natively
)
5195 (org-src-font-lock-fontify-block lang block-start block-end
)
5196 ;; remove old background overlays
5198 (if (eq (overlay-get ov
'face
) 'org-block-background
)
5199 (delete-overlay ov
)))
5200 (overlays-at (/ (+ beg1 block-end
) 2)))
5201 ;; add a background overlay
5202 (setq ovl
(make-overlay beg1 block-end
))
5203 (overlay-put ovl
'face
'org-block-background
)
5204 (overlay-put ovl
'evaporate t
)) ;; make it go away when empty
5206 (add-text-properties beg1
(+ end1
1) '(face org-block
)))
5207 ; end of source block
5208 ((not org-fontify-quote-and-verse-blocks
))
5209 ((string= block-type
"quote")
5210 (add-text-properties beg1
(1+ end1
) '(face org-quote
)))
5211 ((string= block-type
"verse")
5212 (add-text-properties beg1
(1+ end1
) '(face org-verse
))))
5213 (add-text-properties beg beg1
'(face org-block-begin-line
))
5214 (add-text-properties (1+ end
) (1+ end1
) '(face org-block-end-line
))
5216 ((member dc1
'("title:" "author:" "email:" "date:"))
5217 (add-text-properties
5219 (if (member (intern (substring dc1
0 -
1)) org-hidden-keywords
)
5220 '(font-lock-fontified t invisible t
)
5221 '(font-lock-fontified t face org-document-info-keyword
)))
5222 (add-text-properties
5223 (match-beginning 6) (match-end 6)
5224 (if (string-equal dc1
"title:")
5225 '(font-lock-fontified t face org-document-title
)
5226 '(font-lock-fontified t face org-document-info
))))
5227 ((not (member (char-after beg
) '(?\ ?
\t)))
5228 ;; just any other in-buffer setting, but not indented
5229 (add-text-properties
5230 beg
(1+ (match-end 0))
5231 '(font-lock-fontified t face org-meta-line
))
5233 ((or (member dc1
'("begin:" "end:" "caption:" "label:"
5234 "orgtbl:" "tblfm:" "tblname:" "result:"
5235 "results:" "source:" "srcname:" "call:"))
5236 (and (match-end 4) (equal dc3
"attr")))
5237 (add-text-properties
5239 '(font-lock-fontified t face org-meta-line
))
5241 ((member dc3
'(" " ""))
5242 (add-text-properties
5244 '(font-lock-fontified t face font-lock-comment-face
)))
5247 (defun org-activate-angle-links (limit)
5248 "Run through the buffer and add overlays to links."
5249 (if (re-search-forward org-angle-link-re limit t
)
5251 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5252 (add-text-properties (match-beginning 0) (match-end 0)
5253 (list 'mouse-face
'highlight
5254 'keymap org-mouse-map
))
5255 (org-rear-nonsticky-at (match-end 0))
5258 (defun org-activate-footnote-links (limit)
5259 "Run through the buffer and add overlays to links."
5260 (if (re-search-forward "\\(^\\|[^][]\\)\\(\\[\\([0-9]+\\]\\|fn:[^ \t\r\n:]+?[]:]\\)\\)"
5263 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5264 (add-text-properties (match-beginning 2) (match-end 2)
5265 (list 'mouse-face
'highlight
5266 'keymap org-mouse-map
5268 (if (= (point-at-bol) (match-beginning 2))
5269 "Footnote definition"
5270 "Footnote reference")
5272 (org-rear-nonsticky-at (match-end 2))
5275 (defun org-activate-bracket-links (limit)
5276 "Run through the buffer and add overlays to bracketed links."
5277 (if (re-search-forward org-bracket-link-regexp limit t
)
5278 (let* ((help (concat "LINK: "
5279 (org-match-string-no-properties 1)))
5280 ;; FIXME: above we should remove the escapes.
5281 ;; but that requires another match, protecting match data,
5282 ;; a lot of overhead for font-lock.
5283 (ip (org-maybe-intangible
5284 (list 'invisible
'org-link
5285 'keymap org-mouse-map
'mouse-face
'highlight
5286 'font-lock-multiline t
'help-echo help
)))
5287 (vp (list 'keymap org-mouse-map
'mouse-face
'highlight
5288 'font-lock-multiline t
'help-echo help
)))
5289 ;; We need to remove the invisible property here. Table narrowing
5290 ;; may have made some of this invisible.
5291 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5292 (remove-text-properties (match-beginning 0) (match-end 0)
5296 (add-text-properties (match-beginning 0) (match-beginning 3) ip
)
5297 (org-rear-nonsticky-at (match-beginning 3))
5298 (add-text-properties (match-beginning 3) (match-end 3) vp
)
5299 (org-rear-nonsticky-at (match-end 3))
5300 (add-text-properties (match-end 3) (match-end 0) ip
)
5301 (org-rear-nonsticky-at (match-end 0)))
5302 (add-text-properties (match-beginning 0) (match-beginning 1) ip
)
5303 (org-rear-nonsticky-at (match-beginning 1))
5304 (add-text-properties (match-beginning 1) (match-end 1) vp
)
5305 (org-rear-nonsticky-at (match-end 1))
5306 (add-text-properties (match-end 1) (match-end 0) ip
)
5307 (org-rear-nonsticky-at (match-end 0)))
5310 (defun org-activate-dates (limit)
5311 "Run through the buffer and add overlays to dates."
5312 (if (re-search-forward org-tsr-regexp-both limit t
)
5314 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5315 (add-text-properties (match-beginning 0) (match-end 0)
5316 (list 'mouse-face
'highlight
5317 'keymap org-mouse-map
))
5318 (org-rear-nonsticky-at (match-end 0))
5319 (when org-display-custom-times
5321 (org-display-custom-time (match-beginning 3) (match-end 3)))
5322 (org-display-custom-time (match-beginning 1) (match-end 1)))
5325 (defvar org-target-link-regexp nil
5326 "Regular expression matching radio targets in plain text.")
5327 (make-variable-buffer-local 'org-target-link-regexp
)
5328 (defvar org-target-regexp
"<<\\([^<>\n\r]+\\)>>"
5329 "Regular expression matching a link target.")
5330 (defvar org-radio-target-regexp
"<<<\\([^<>\n\r]+\\)>>>"
5331 "Regular expression matching a radio target.")
5332 (defvar org-any-target-regexp
"<<<?\\([^<>\n\r]+\\)>>>?" ; FIXME, not exact, would match <<<aaa>> as a radio target.
5333 "Regular expression matching any target.")
5335 (defun org-activate-target-links (limit)
5336 "Run through the buffer and add overlays to target matches."
5337 (when org-target-link-regexp
5338 (let ((case-fold-search t
))
5339 (if (re-search-forward org-target-link-regexp limit t
)
5341 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5342 (add-text-properties (match-beginning 0) (match-end 0)
5343 (list 'mouse-face
'highlight
5344 'keymap org-mouse-map
5345 'help-echo
"Radio target link"
5346 'org-linked-text t
))
5347 (org-rear-nonsticky-at (match-end 0))
5350 (defun org-update-radio-target-regexp ()
5351 "Find all radio targets in this file and update the regular expression."
5353 (when (memq 'radio org-activate-links
)
5354 (setq org-target-link-regexp
5355 (org-make-target-link-regexp (org-all-targets 'radio
)))
5356 (org-restart-font-lock)))
5358 (defun org-hide-wide-columns (limit)
5360 (setq s
(text-property-any (point) (or limit
(point-max))
5363 (setq e
(next-single-property-change s
'org-cwidth
))
5364 (add-text-properties s e
(org-maybe-intangible '(invisible org-cwidth
)))
5368 (defvar org-latex-and-specials-regexp nil
5369 "Regular expression for highlighting export special stuff.")
5370 (defvar org-match-substring-regexp
)
5371 (defvar org-match-substring-with-braces-regexp
)
5373 ;; This should be with the exporter code, but we also use if for font-locking
5374 (defconst org-export-html-special-string-regexps
5375 '(("\\\\-" .
"­")
5376 ("---\\([^-]\\)" .
"—\\1")
5377 ("--\\([^-]\\)" .
"–\\1")
5378 ("\\.\\.\\." .
"…"))
5379 "Regular expressions for special string conversion.")
5382 (defun org-compute-latex-and-specials-regexp ()
5383 "Compute regular expression for stuff treated specially by exporters."
5384 (if (not org-highlight-latex-fragments-and-specials
)
5385 (org-set-local 'org-latex-and-specials-regexp nil
)
5388 ((matchers (plist-get org-format-latex-options
:matchers
))
5389 (latexs (delq nil
(mapcar (lambda (x) (if (member (car x
) matchers
) x
))
5390 org-latex-regexps
)))
5391 (org-export-allow-BIND nil
)
5392 (options (org-combine-plists (org-default-export-plist)
5393 (org-infile-export-plist)))
5394 (org-export-with-sub-superscripts (plist-get options
:sub-superscript
))
5395 (org-export-with-LaTeX-fragments (plist-get options
:LaTeX-fragments
))
5396 (org-export-with-TeX-macros (plist-get options
:TeX-macros
))
5397 (org-export-html-expand (plist-get options
:expand-quoted-html
))
5398 (org-export-with-special-strings (plist-get options
:special-strings
))
5401 ((equal org-export-with-sub-superscripts
'{})
5402 (list org-match-substring-with-braces-regexp
))
5403 (org-export-with-sub-superscripts
5404 (list org-match-substring-regexp
))
5407 (if org-export-with-LaTeX-fragments
5408 (mapcar (lambda (x) (nth 1 x
)) latexs
)))
5410 (if org-export-with-TeX-macros
5411 (list (concat "\\\\"
5417 (append org-entities-user
5419 (if (boundp 'org-latex-entities
)
5421 (or (car-safe x
) x
))
5426 ;; (list "\\\\\\(?:[a-zA-Z]+\\)")))
5427 (re-special (if org-export-with-special-strings
5428 (mapcar (lambda (x) (car x
))
5429 org-export-html-special-string-regexps
)))
5433 (if org-export-html-expand
"@<[^>\n]+>")
5436 'org-latex-and-specials-regexp
5437 (mapconcat 'identity
(append re-latex re-sub re-macros re-special
5440 (defun org-do-latex-and-special-faces (limit)
5441 "Run through the buffer and add overlays to links."
5442 (when org-latex-and-specials-regexp
5444 (while (and (not rtn
) (re-search-forward org-latex-and-specials-regexp
5446 (if (not (memq (car-safe (get-text-property (1+ (match-beginning 0))
5448 '(org-code org-verbatim underline
)))
5451 d
(cond ((member (char-after (1+ (match-beginning 0)))
5454 (font-lock-prepend-text-property
5455 (+ d
(match-beginning 0)) (match-end 0)
5456 'face
'org-latex-and-export-specials
)
5457 (add-text-properties (+ d
(match-beginning 0)) (match-end 0)
5458 '(font-lock-multiline t
)))))
5461 (defun org-restart-font-lock ()
5462 "Restart `font-lock-mode', to force refontification."
5463 (when (and (boundp 'font-lock-mode
) font-lock-mode
)
5465 (font-lock-mode 1)))
5467 (defun org-all-targets (&optional radio
)
5468 "Return a list of all targets in this file.
5469 With optional argument RADIO, only find radio targets."
5470 (let ((re (if radio org-radio-target-regexp org-target-regexp
))
5473 (goto-char (point-min))
5474 (while (re-search-forward re nil t
)
5475 (add-to-list 'rtn
(downcase (org-match-string-no-properties 1))))
5478 (defun org-make-target-link-regexp (targets)
5479 "Make regular expression matching all strings in TARGETS.
5480 The regular expression finds the targets also if there is a line break
5487 (setq x
(regexp-quote x
))
5488 (while (string-match " +" x
)
5489 (setq x
(replace-match "\\s-+" t t x
)))
5495 (defun org-activate-tags (limit)
5496 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t
)
5498 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
5499 (add-text-properties (match-beginning 1) (match-end 1)
5500 (list 'mouse-face
'highlight
5501 'keymap org-mouse-map
))
5502 (org-rear-nonsticky-at (match-end 1))
5505 (defun org-outline-level ()
5506 "Compute the outline level of the heading at point.
5507 This function assumes that the cursor is at the beginning of a line matched
5508 by `outline-regexp'. Otherwise it returns garbage.
5509 If this is called at a normal headline, the level is the number of stars.
5510 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
5512 (looking-at outline-regexp
)
5513 (1- (- (match-end 0) (match-beginning 0)))))
5515 (defvar org-font-lock-keywords nil
)
5517 (defconst org-property-re
(org-re "^[ \t]*\\(:\\([-[:alnum:]_]+\\):\\)[ \t]*\\([^ \t\r\n].*\\)")
5518 "Regular expression matching a property line.")
5520 (defvar org-font-lock-hook nil
5521 "Functions to be called for special font lock stuff.")
5523 (defvar org-font-lock-set-keywords-hook nil
5524 "Functions that can manipulate `org-font-lock-extra-keywords'.
5525 This is calles after `org-font-lock-extra-keywords' is defined, but before
5526 it is installed to be used by font lock. This can be useful if something
5527 needs to be inserted at a specific position in the font-lock sequence.")
5529 (defun org-font-lock-hook (limit)
5530 (run-hook-with-args 'org-font-lock-hook limit
))
5532 (defun org-set-font-lock-defaults ()
5533 (let* ((em org-fontify-emphasized-text
)
5534 (lk org-activate-links
)
5535 (org-font-lock-extra-keywords
5538 '(org-font-lock-hook)
5540 `(,(if org-fontify-whole-heading-line
5541 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
5542 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
5543 (1 (org-get-level-face 1))
5544 (2 (org-get-level-face 2))
5545 (3 (org-get-level-face 3)))
5547 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
5550 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t
))
5551 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t
))
5552 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t
))
5553 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t
))
5555 (list org-drawer-regexp
'(0 'org-special-keyword t
))
5556 (list "^[ \t]*:END:" '(0 'org-special-keyword t
))
5558 (list org-property-re
5559 '(1 'org-special-keyword t
)
5560 '(3 'org-property-value t
))
5562 (if (memq 'tag lk
) '(org-activate-tags (1 'org-tag prepend
)))
5563 (if (memq 'angle lk
) '(org-activate-angle-links (0 'org-link t
)))
5564 (if (memq 'plain lk
) '(org-activate-plain-links))
5565 (if (memq 'bracket lk
) '(org-activate-bracket-links (0 'org-link t
)))
5566 (if (memq 'radio lk
) '(org-activate-target-links (0 'org-link t
)))
5567 (if (memq 'date lk
) '(org-activate-dates (0 'org-date t
)))
5568 (if (memq 'footnote lk
) '(org-activate-footnote-links
5569 (2 'org-footnote t
)))
5570 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t
))
5571 '(org-hide-wide-columns (0 nil append
))
5573 (list (concat "^\\*+[ \t]+" org-todo-regexp
"\\([ \t]\\|$\\)")
5574 '(1 (org-get-todo-face 1) t
))
5576 (if org-fontify-done-headline
5577 (list (concat "^[*]+ +\\<\\("
5578 (mapconcat 'regexp-quote org-done-keywords
"\\|")
5580 '(2 'org-headline-done t
))
5583 '(org-font-lock-add-priority-faces)
5585 '(org-font-lock-add-tag-faces)
5587 (list (concat "\\<" org-deadline-string
) '(0 'org-special-keyword t
))
5588 (list (concat "\\<" org-scheduled-string
) '(0 'org-special-keyword t
))
5589 (list (concat "\\<" org-closed-string
) '(0 'org-special-keyword t
))
5590 (list (concat "\\<" org-clock-string
) '(0 'org-special-keyword t
))
5593 (if (featurep 'xemacs
)
5594 '(org-do-emphasis-faces (0 nil append
))
5595 '(org-do-emphasis-faces)))
5597 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
5598 1 'org-checkbox prepend
)
5599 (if (cdr (assq 'checkbox org-list-automatic-rules
))
5600 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
5601 (0 (org-get-checkbox-statistics-face) t
)))
5602 ;; Description list items
5603 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
5605 ;; ARCHIVEd headings
5606 (list (concat "^\\*+ \\(.*:" org-archive-tag
":.*\\)")
5607 '(1 'org-archived prepend
))
5609 '(org-do-latex-and-special-faces)
5610 '(org-fontify-entities)
5611 '(org-raise-scripts)
5613 '(org-activate-code (1 'org-code t
))
5615 (list (concat "^\\*+[ \t]+\\<\\(" org-comment-string
5616 "\\|" org-quote-string
"\\)\\>")
5617 '(1 'org-special-keyword t
))
5618 '("^#.*" (0 'font-lock-comment-face t
))
5619 ;; Blocks and meta lines
5620 '(org-fontify-meta-lines-and-blocks)
5622 (setq org-font-lock-extra-keywords
(delq nil org-font-lock-extra-keywords
))
5623 (run-hooks 'org-font-lock-set-keywords-hook
)
5624 ;; Now set the full font-lock-keywords
5625 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords
)
5626 (org-set-local 'font-lock-defaults
5627 '(org-font-lock-keywords t nil nil backward-paragraph
))
5628 (kill-local-variable 'font-lock-keywords
) nil
))
5630 (defun org-toggle-pretty-entities ()
5631 "Toggle the composition display of entities as UTF8 characters."
5633 (org-set-local 'org-pretty-entities
(not org-pretty-entities
))
5634 (org-restart-font-lock)
5635 (if org-pretty-entities
5636 (message "Entities are displayed as UTF8 characers")
5639 (org-decompose-region (point-min) (point-max))
5640 (message "Entities are displayed plain"))))
5642 (defun org-fontify-entities (limit)
5643 "Find an entity to fontify."
5645 (when org-pretty-entities
5647 (while (re-search-forward
5648 "\\\\\\([a-zA-Z][a-zA-Z0-9]*\\)\\($\\|[^[:alnum:]\n]\\)"
5650 (if (and (not (org-in-indented-comment-line))
5651 (setq ee
(org-entity-get (match-string 1)))
5652 (= (length (nth 6 ee
)) 1))
5654 (add-text-properties
5655 (match-beginning 0) (match-end 1)
5656 (list 'font-lock-fontified t
))
5657 (compose-region (match-beginning 0) (match-end 1)
5663 (defun org-fontify-like-in-org-mode (s &optional odd-levels
)
5664 "Fontify string S like in Org-mode."
5667 (let ((org-odd-levels-only odd-levels
))
5669 (font-lock-fontify-buffer)
5675 (defun org-get-level-face (n)
5676 "Get the right face for match N in font-lock matching of headlines."
5677 (setq org-l
(- (match-end 2) (match-beginning 1) 1))
5678 (if org-odd-levels-only
(setq org-l
(1+ (/ org-l
2))))
5679 (if org-cycle-level-faces
5680 (setq org-f
(nth (%
(1- org-l
) org-n-level-faces
) org-level-faces
))
5681 (setq org-f
(nth (1- (min org-l org-n-level-faces
)) org-level-faces
)))
5683 ((eq n
1) (if org-hide-leading-stars
'org-hide org-f
))
5685 (t (if org-level-color-stars-only nil org-f
))))
5688 (defun org-get-todo-face (kwd)
5689 "Get the right face for a TODO keyword KWD.
5690 If KWD is a number, get the corresponding match group."
5691 (if (numberp kwd
) (setq kwd
(match-string kwd
)))
5692 (or (org-face-from-face-or-color
5693 'todo
'org-todo
(cdr (assoc kwd org-todo-keyword-faces
)))
5694 (and (member kwd org-done-keywords
) 'org-done
)
5697 (defun org-face-from-face-or-color (context inherit face-or-color
)
5698 "Create a face list that inherits INHERIT, but sets the foreground color.
5699 When FACE-OR-COLOR is not a string, just return it."
5700 (if (stringp face-or-color
)
5701 (list :inherit inherit
5702 (cdr (assoc context org-faces-easy-properties
))
5706 (defun org-font-lock-add-tag-faces (limit)
5707 "Add the special tag faces."
5708 (when (and org-tag-faces org-tags-special-faces-re
)
5709 (while (re-search-forward org-tags-special-faces-re limit t
)
5710 (add-text-properties (match-beginning 1) (match-end 1)
5711 (list 'face
(org-get-tag-face 1)
5712 'font-lock-fontified t
))
5713 (backward-char 1))))
5715 (defun org-font-lock-add-priority-faces (limit)
5716 "Add the special priority faces."
5717 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t
)
5718 (add-text-properties
5719 (match-beginning 0) (match-end 0)
5720 (list 'face
(or (org-face-from-face-or-color
5721 'priority
'org-special-keyword
5722 (cdr (assoc (char-after (match-beginning 1))
5723 org-priority-faces
)))
5724 'org-special-keyword
)
5725 'font-lock-fontified t
))))
5727 (defun org-get-tag-face (kwd)
5728 "Get the right face for a TODO keyword KWD.
5729 If KWD is a number, get the corresponding match group."
5730 (if (numberp kwd
) (setq kwd
(match-string kwd
)))
5731 (or (org-face-from-face-or-color
5732 'tag
'org-tag
(cdr (assoc kwd org-tag-faces
)))
5735 (defun org-unfontify-region (beg end
&optional maybe_loudly
)
5736 "Remove fontification and activation overlays from links."
5737 (font-lock-default-unfontify-region beg end
)
5738 (let* ((buffer-undo-list t
)
5739 (inhibit-read-only t
) (inhibit-point-motion-hooks t
)
5740 (inhibit-modification-hooks t
)
5741 deactivate-mark buffer-file-name buffer-file-truename
)
5742 (org-decompose-region beg end
)
5743 (remove-text-properties
5746 ;; also remove line-prefix and wrap-prefix properties
5747 '(mouse-face t keymap t org-linked-text t
5748 invisible t intangible t
5749 line-prefix t wrap-prefix t
5750 org-no-flyspell t org-emphasis t
)
5751 '(mouse-face t keymap t org-linked-text t
5752 invisible t intangible t
5753 org-no-flyspell t org-emphasis t
)))
5754 (org-remove-font-lock-display-properties beg end
)))
5756 (defconst org-script-display
'(((raise -
0.3) (height 0.7))
5757 ((raise 0.3) (height 0.7))
5760 "Display properties for showing superscripts and subscripts.")
5762 (defun org-remove-font-lock-display-properties (beg end
)
5763 "Remove specific display properties that have been added by font lock.
5764 The will remove the raise properties that are used to show superscripts
5768 (setq next
(next-single-property-change beg
'display nil end
)
5769 prop
(get-text-property beg
'display
))
5770 (if (member prop org-script-display
)
5771 (put-text-property beg next
'display nil
))
5774 (defun org-raise-scripts (limit)
5775 "Add raise properties to sub/superscripts."
5776 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts
)
5777 (if (re-search-forward
5778 (if (eq org-use-sub-superscripts t
)
5779 org-match-substring-regexp
5780 org-match-substring-with-braces-regexp
)
5782 (let* ((pos (point)) table-p comment-p
5783 (mpos (match-beginning 3))
5784 (emph-p (get-text-property mpos
'org-emphasis
))
5785 (link-p (get-text-property mpos
'mouse-face
))
5786 (keyw-p (eq 'org-special-keyword
(get-text-property mpos
'face
))))
5787 (goto-char (point-at-bol))
5788 (setq table-p
(org-looking-at-p org-table-dataline-regexp
)
5789 comment-p
(org-looking-at-p "[ \t]*#"))
5791 ;; FIXME: Should we go back one character here, for a_b^c
5792 ;; (goto-char (1- pos)) ;????????????????????
5793 (if (or comment-p emph-p link-p keyw-p
)
5795 (put-text-property (match-beginning 3) (match-end 0)
5797 (if (equal (char-after (match-beginning 2)) ?^
)
5798 (nth (if table-p
3 1) org-script-display
)
5799 (nth (if table-p
2 0) org-script-display
)))
5800 (add-text-properties (match-beginning 2) (match-end 2)
5802 'org-dwidth t
'org-dwidth-n
1))
5803 (if (and (eq (char-after (match-beginning 3)) ?
{)
5804 (eq (char-before (match-end 3)) ?
}))
5806 (add-text-properties
5807 (match-beginning 3) (1+ (match-beginning 3))
5808 (list 'invisible t
'org-dwidth t
'org-dwidth-n
1))
5809 (add-text-properties
5810 (1- (match-end 3)) (match-end 3)
5811 (list 'invisible t
'org-dwidth t
'org-dwidth-n
1))))
5814 ;;;; Visibility cycling, including org-goto and indirect buffer
5818 (defvar org-cycle-global-status nil
)
5819 (make-variable-buffer-local 'org-cycle-global-status
)
5820 (defvar org-cycle-subtree-status nil
)
5821 (make-variable-buffer-local 'org-cycle-subtree-status
)
5825 (defvar org-inlinetask-min-level
)
5827 (defun org-cycle (&optional arg
)
5828 "TAB-action and visibility cycling for Org-mode.
5830 This is the command invoked in Org-mode by the TAB key. Its main purpose
5831 is outline visibility cycling, but it also invokes other actions
5832 in special contexts.
5834 - When this function is called with a prefix argument, rotate the entire
5835 buffer through 3 states (global cycling)
5836 1. OVERVIEW: Show only top-level headlines.
5837 2. CONTENTS: Show all headlines of all levels, but no body text.
5838 3. SHOW ALL: Show everything.
5839 When called with two `C-u C-u' prefixes, switch to the startup visibility,
5840 determined by the variable `org-startup-folded', and by any VISIBILITY
5841 properties in the buffer.
5842 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
5843 including any drawers.
5845 - When inside a table, re-align the table and move to the next field.
5847 - When point is at the beginning of a headline, rotate the subtree started
5848 by this line through 3 different states (local cycling)
5849 1. FOLDED: Only the main headline is shown.
5850 2. CHILDREN: The main headline and the direct children are shown.
5851 From this state, you can move to one of the children
5852 and zoom in further.
5853 3. SUBTREE: Show the entire subtree, including body text.
5854 If there is no subtree, switch directly from CHILDREN to FOLDED.
5856 - When point is at the beginning of an empty headline and the variable
5857 `org-cycle-level-after-item/entry-creation' is set, cycle the level
5858 of the headline by demoting and promoting it to likely levels. This
5859 speeds up creation document structure by pressing TAB once or several
5860 times right after creating a new headline.
5862 - When there is a numeric prefix, go up to a heading with level ARG, do
5863 a `show-subtree' and return to the previous cursor position. If ARG
5864 is negative, go up that many levels.
5866 - When point is not at the beginning of a headline, execute the global
5867 binding for TAB, which is re-indenting the line. See the option
5868 `org-cycle-emulate-tab' for details.
5870 - Special case: if point is at the beginning of the buffer and there is
5871 no headline in line 1, this function will act as if called with prefix arg
5872 (C-u TAB, same as S-TAB) also when called without prefix arg.
5873 But only if also the variable `org-cycle-global-at-bob' is t."
5875 (org-load-modules-maybe)
5876 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook
)
5877 (and org-cycle-level-after-item
/entry-creation
5878 (or (org-cycle-level)
5879 (org-cycle-item-indentation))))
5881 (or org-cycle-max-level
5882 (and (boundp 'org-inlinetask-min-level
)
5883 org-inlinetask-min-level
5884 (1- org-inlinetask-min-level
))))
5885 (nstars (and limit-level
5886 (if org-odd-levels-only
5887 (and limit-level
(1- (* limit-level
2)))
5890 (if (not (org-mode-p))
5892 (concat "\\*" (if nstars
(format "\\{1,%d\\} " nstars
) "+ "))))
5893 (bob-special (and org-cycle-global-at-bob
(not arg
) (bobp)
5894 (not (looking-at outline-regexp
))))
5897 (delq 'org-optimize-window-after-visibility-change
5898 (copy-sequence org-cycle-hook
))
5902 (if (or bob-special
(equal arg
'(4)))
5903 ;; special case: use global cycling
5909 (setq last-command
'dummy
)
5910 (org-set-startup-visibility)
5911 (message "Startup visibility, plus VISIBILITY properties"))
5915 (message "Entire buffer visible, including drawers"))
5917 ;; Table: enter it or move to the next field.
5918 ((org-at-table-p 'any
)
5919 (if (org-at-table.el-p
)
5920 (message "Use C-c ' to edit table.el tables")
5921 (if arg
(org-table-edit-field t
)
5922 (org-table-justify-field-maybe)
5923 (call-interactively 'org-table-next-field
))))
5925 ((run-hook-with-args-until-success
5926 'org-tab-after-check-for-table-hook
))
5928 ;; Global cycling: delegate to `org-cycle-internal-global'.
5929 ((eq arg t
) (org-cycle-internal-global))
5931 ;; Drawers: delegate to `org-flag-drawer'.
5932 ((and org-drawers org-drawer-regexp
5934 (beginning-of-line 1)
5935 (looking-at org-drawer-regexp
)))
5936 (org-flag-drawer ; toggle block visibility
5937 (not (get-char-property (match-end 0) 'invisible
))))
5939 ;; Show-subtree, ARG levels up from here.
5942 (org-back-to-heading)
5943 (outline-up-heading (if (< arg
0) (- arg
)
5944 (- (funcall outline-level
) arg
)))
5945 (org-show-subtree)))
5947 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
5948 ((and (featurep 'org-inlinetask
)
5949 (org-inlinetask-at-task-p)
5950 (or (bolp) (not (eq org-cycle-emulate-tab
'exc-hl-bol
))))
5951 (org-inlinetask-toggle-visibility))
5953 ;; At an item/headline: delegate to `org-cycle-internal-local'.
5954 ((and (or (and org-cycle-include-plain-lists
(org-at-item-p))
5955 (save-excursion (beginning-of-line 1)
5956 (looking-at outline-regexp
)))
5957 (or (bolp) (not (eq org-cycle-emulate-tab
'exc-hl-bol
))))
5958 (org-cycle-internal-local))
5960 ;; From there: TAB emulation and template completion.
5961 (buffer-read-only (org-back-to-heading))
5963 ((run-hook-with-args-until-success
5964 'org-tab-after-check-for-cycling-hook
))
5966 ((org-try-structure-completion))
5968 ((org-try-cdlatex-tab))
5970 ((run-hook-with-args-until-success
5971 'org-tab-before-tab-emulation-hook
))
5973 ((and (eq org-cycle-emulate-tab
'exc-hl-bol
)
5975 (not (looking-at outline-regexp
))))
5976 (call-interactively (global-key-binding "\t")))
5978 ((if (and (memq org-cycle-emulate-tab
'(white whitestart
))
5979 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
5980 (or (and (eq org-cycle-emulate-tab
'white
)
5981 (= (match-end 0) (point-at-eol)))
5982 (and (eq org-cycle-emulate-tab
'whitestart
)
5983 (>= (match-end 0) pos
))))
5985 (eq org-cycle-emulate-tab t
))
5986 (call-interactively (global-key-binding "\t")))
5989 (org-back-to-heading)
5992 (defun org-cycle-internal-global ()
5993 "Do the global cycling action."
5995 ((and (eq last-command this-command
)
5996 (eq org-cycle-global-status
'overview
))
5997 ;; We just created the overview - now do table of contents
5998 ;; This can be slow in very large buffers, so indicate action
5999 (run-hook-with-args 'org-pre-cycle-hook
'contents
)
6000 (message "CONTENTS...")
6002 (message "CONTENTS...done")
6003 (setq org-cycle-global-status
'contents
)
6004 (run-hook-with-args 'org-cycle-hook
'contents
))
6006 ((and (eq last-command this-command
)
6007 (eq org-cycle-global-status
'contents
))
6008 ;; We just showed the table of contents - now show everything
6009 (run-hook-with-args 'org-pre-cycle-hook
'all
)
6011 (message "SHOW ALL")
6012 (setq org-cycle-global-status
'all
)
6013 (run-hook-with-args 'org-cycle-hook
'all
))
6016 ;; Default action: go to overview
6017 (run-hook-with-args 'org-pre-cycle-hook
'overview
)
6019 (message "OVERVIEW")
6020 (setq org-cycle-global-status
'overview
)
6021 (run-hook-with-args 'org-cycle-hook
'overview
))))
6023 (defun org-cycle-internal-local ()
6024 "Do the local cycling action."
6025 (let ((goal-column 0) eoh eol eos has-children children-skipped struct
)
6026 ;; First, determine end of headline (EOH), end of subtree or item
6027 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6032 (setq struct
(org-list-struct))
6033 (setq eoh
(point-at-eol))
6034 (setq eos
(org-list-get-item-end-before-blank (point) struct
))
6035 (setq has-children
(org-list-has-child-p (point) struct
)))
6036 (org-back-to-heading)
6037 (setq eoh
(save-excursion (outline-end-of-heading) (point)))
6038 (setq eos
(save-excursion
6039 (org-end-of-subtree t
)
6041 (skip-chars-forward " \t\n"))
6042 (if (eobp) (point) (1- (point)))))
6045 (let ((level (funcall outline-level
)))
6046 (outline-next-heading)
6047 (and (org-at-heading-p t
)
6048 (> (funcall outline-level
) level
))))
6050 (org-list-search-forward (org-item-beginning-re) eos t
)))))
6051 ;; Determine end invisible part of buffer (EOL)
6052 (beginning-of-line 2)
6053 ;; XEmacs doesn't have `next-single-char-property-change'
6054 (if (featurep 'xemacs
)
6055 (while (and (not (eobp)) ;; this is like `next-line'
6056 (get-char-property (1- (point)) 'invisible
))
6057 (beginning-of-line 2))
6058 (while (and (not (eobp)) ;; this is like `next-line'
6059 (get-char-property (1- (point)) 'invisible
))
6060 (goto-char (next-single-char-property-change (point) 'invisible
))
6061 (and (eolp) (beginning-of-line 2))))
6063 ;; Find out what to do next and set `this-command'
6066 ;; Nothing is hidden behind this heading
6067 (run-hook-with-args 'org-pre-cycle-hook
'empty
)
6068 (message "EMPTY ENTRY")
6069 (setq org-cycle-subtree-status nil
)
6072 (outline-next-heading)
6073 (if (outline-invisible-p) (org-flag-heading nil
))))
6074 ((and (or (>= eol eos
)
6075 (not (string-match "\\S-" (buffer-substring eol eos
))))
6077 (not (setq children-skipped
6078 org-cycle-skip-children-state-if-no-children
))))
6079 ;; Entire subtree is hidden in one line: children view
6080 (run-hook-with-args 'org-pre-cycle-hook
'children
)
6082 (org-list-set-item-visibility (point-at-bol) struct
'children
)
6085 ;; Fold every list in subtree to top-level items.
6086 (when (eq org-cycle-include-plain-lists
'integrate
)
6088 (org-back-to-heading)
6089 (while (org-list-search-forward (org-item-beginning-re) eos t
)
6090 (beginning-of-line 1)
6091 (let* ((struct (org-list-struct))
6092 (prevs (org-list-prevs-alist struct
))
6093 (end (org-list-get-bottom-point struct
)))
6094 (mapc (lambda (e) (org-list-set-item-visibility e struct
'folded
))
6095 (org-list-get-all-items (point) struct prevs
))
6096 (goto-char end
))))))
6097 (message "CHILDREN")
6100 (outline-next-heading)
6101 (if (outline-invisible-p) (org-flag-heading nil
)))
6102 (setq org-cycle-subtree-status
'children
)
6103 (run-hook-with-args 'org-cycle-hook
'children
))
6104 ((or children-skipped
6105 (and (eq last-command this-command
)
6106 (eq org-cycle-subtree-status
'children
)))
6107 ;; We just showed the children, or no children are there,
6108 ;; now show everything.
6109 (run-hook-with-args 'org-pre-cycle-hook
'subtree
)
6110 (outline-flag-region eoh eos nil
)
6111 (message (if children-skipped
"SUBTREE (NO CHILDREN)" "SUBTREE"))
6112 (setq org-cycle-subtree-status
'subtree
)
6113 (run-hook-with-args 'org-cycle-hook
'subtree
))
6115 ;; Default action: hide the subtree.
6116 (run-hook-with-args 'org-pre-cycle-hook
'folded
)
6117 (outline-flag-region eoh eos t
)
6119 (setq org-cycle-subtree-status
'folded
)
6120 (run-hook-with-args 'org-cycle-hook
'folded
)))))
6123 (defun org-global-cycle (&optional arg
)
6124 "Cycle the global visibility. For details see `org-cycle'.
6125 With \\[universal-argument] prefix arg, switch to startup visibility.
6126 With a numeric prefix, show all headlines up to that level."
6128 (let ((org-cycle-include-plain-lists
6129 (if (org-mode-p) org-cycle-include-plain-lists nil
)))
6133 (hide-sublevels arg
)
6134 (setq org-cycle-global-status
'contents
))
6136 (org-set-startup-visibility)
6137 (message "Startup visibility, plus VISIBILITY properties."))
6139 (org-cycle '(4))))))
6141 (defun org-set-startup-visibility ()
6142 "Set the visibility required by startup options and properties."
6144 ((eq org-startup-folded t
)
6146 ((eq org-startup-folded
'content
)
6147 (let ((this-command 'org-cycle
) (last-command 'org-cycle
))
6148 (org-cycle '(4)) (org-cycle '(4)))))
6149 (unless (eq org-startup-folded
'showeverything
)
6150 (if org-hide-block-startup
(org-hide-block-all))
6151 (org-set-visibility-according-to-property 'no-cleanup
)
6152 (org-cycle-hide-archived-subtrees 'all
)
6153 (org-cycle-hide-drawers 'all
)
6154 (org-cycle-show-empty-lines t
)))
6156 (defun org-set-visibility-according-to-property (&optional no-cleanup
)
6157 "Switch subtree visibilities according to :VISIBILITY: property."
6159 (let (org-show-entry-below state
)
6161 (goto-char (point-min))
6162 (while (re-search-forward
6163 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6165 (setq state
(match-string 1))
6167 (org-back-to-heading t
)
6171 ((equal state
'("fold" "folded"))
6173 ((equal state
"children")
6174 (org-show-hidden-entry)
6176 ((equal state
"content")
6179 (org-narrow-to-subtree)
6181 ((member state
'("all" "showall"))
6184 (org-cycle-hide-archived-subtrees 'all
)
6185 (org-cycle-hide-drawers 'all
)
6186 (org-cycle-show-empty-lines 'all
)))))
6188 (defun org-overview ()
6189 "Switch to overview mode, showing only top-level headlines.
6190 Really, this shows all headlines with level equal or greater than the level
6191 of the first headline in the buffer. This is important, because if the
6192 first headline is not level one, then (hide-sublevels 1) gives confusing
6195 (let ((level (save-excursion
6196 (goto-char (point-min))
6197 (if (re-search-forward (concat "^" outline-regexp
) nil t
)
6199 (goto-char (match-beginning 0))
6200 (funcall outline-level
))))))
6201 (and level
(hide-sublevels level
))))
6203 (defun org-content (&optional arg
)
6204 "Show all headlines in the buffer, like a table of contents.
6205 With numerical argument N, show content up to level N."
6208 ;; Visit all headings and show their offspring
6209 (and (integerp arg
) (org-overview))
6210 (goto-char (point-max))
6212 (while (and (progn (condition-case nil
6213 (outline-previous-visible-heading 1)
6214 (error (goto-char (point-min))))
6216 (looking-at outline-regexp
))
6218 (show-children (1- arg
))
6220 (if (bobp) (throw 'exit nil
))))))
6223 (defun org-optimize-window-after-visibility-change (state)
6224 "Adjust the window after a change in outline visibility.
6225 This function is the default value of the hook `org-cycle-hook'."
6226 (when (get-buffer-window (current-buffer))
6228 ((eq state
'content
) nil
)
6229 ((eq state
'all
) nil
)
6230 ((eq state
'folded
) nil
)
6231 ((eq state
'children
) (or (org-subtree-end-visible-p) (recenter 1)))
6232 ((eq state
'subtree
) (or (org-subtree-end-visible-p) (recenter 1))))))
6234 (defun org-remove-empty-overlays-at (pos)
6235 "Remove outline overlays that do not contain non-white stuff."
6238 (and (eq 'outline
(overlay-get o
'invisible
))
6239 (not (string-match "\\S-" (buffer-substring (overlay-start o
)
6241 (delete-overlay o
)))
6244 (defun org-clean-visibility-after-subtree-move ()
6245 "Fix visibility issues after moving a subtree."
6246 ;; First, find a reasonable region to look at:
6247 ;; Start two siblings above, end three below
6248 (let* ((beg (save-excursion
6249 (and (org-get-last-sibling)
6250 (org-get-last-sibling))
6252 (end (save-excursion
6253 (and (org-get-next-sibling)
6254 (org-get-next-sibling)
6255 (org-get-next-sibling))
6256 (if (org-at-heading-p)
6259 (level (looking-at "\\*+"))
6260 (re (if level
(concat "^" (regexp-quote (match-string 0)) " "))))
6263 (narrow-to-region beg end
)
6265 ;; Properly fold already folded siblings
6266 (goto-char (point-min))
6267 (while (re-search-forward re nil t
)
6268 (if (and (not (outline-invisible-p))
6270 (goto-char (point-at-eol)) (outline-invisible-p)))
6272 (org-cycle-show-empty-lines 'overview
)
6273 (org-cycle-hide-drawers 'overview
)))))
6275 (defun org-cycle-show-empty-lines (state)
6276 "Show empty lines above all visible headlines.
6277 The region to be covered depends on STATE when called through
6278 `org-cycle-hook'. Lisp program can use t for STATE to get the
6279 entire buffer covered. Note that an empty line is only shown if there
6280 are at least `org-cycle-separator-lines' empty lines before the headline."
6281 (when (not (= org-cycle-separator-lines
0))
6283 (let* ((n (abs org-cycle-separator-lines
))
6285 ((= n
1) "\\(\n[ \t]*\n\\*+\\) ")
6286 ((= n
2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
6287 (t (let ((ns (number-to-string (- n
2))))
6288 (concat "^\\(?:[ \t]*\n\\)\\{" ns
"," ns
"\\}"
6289 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
6292 ((memq state
'(overview contents t
))
6293 (setq beg
(point-min) end
(point-max)))
6294 ((memq state
'(children folded
))
6295 (setq beg
(point) end
(progn (org-end-of-subtree t t
)
6296 (beginning-of-line 2)
6300 (while (re-search-forward re end t
)
6301 (unless (get-char-property (match-end 1) 'invisible
)
6302 (setq e
(match-end 1))
6303 (if (< org-cycle-separator-lines
0)
6304 (setq b
(save-excursion
6305 (goto-char (match-beginning 0))
6306 (org-back-over-empty-lines)
6308 (goto-char (max (point-min) (1- (point))))
6312 (setq b
(match-beginning 1)))
6313 (outline-flag-region b e nil
)))))))
6314 ;; Never hide empty lines at the end of the file.
6316 (goto-char (point-max))
6317 (outline-previous-heading)
6318 (outline-end-of-heading)
6319 (if (and (looking-at "[ \t\n]+")
6320 (= (match-end 0) (point-max)))
6321 (outline-flag-region (point) (match-end 0) nil
))))
6323 (defun org-show-empty-lines-in-parent ()
6324 "Move to the parent and re-show empty lines before visible headlines."
6326 (let ((context (if (org-up-heading-safe) 'children
'overview
)))
6327 (org-cycle-show-empty-lines context
))))
6329 (defun org-files-list ()
6330 "Return `org-agenda-files' list, plus all open org-mode files.
6331 This is useful for operations that need to scan all of a user's
6332 open and agenda-wise Org files."
6333 (let ((files (mapcar 'expand-file-name
(org-agenda-files))))
6334 (dolist (buf (buffer-list))
6335 (with-current-buffer buf
6336 (if (and (org-mode-p) (buffer-file-name))
6337 (let ((file (expand-file-name (buffer-file-name))))
6338 (unless (member file files
)
6339 (push file files
))))))
6342 (defsubst org-entry-beginning-position
()
6343 "Return the beginning position of the current entry."
6344 (save-excursion (outline-back-to-heading t
) (point)))
6346 (defsubst org-entry-end-position
()
6347 "Return the end position of the current entry."
6348 (save-excursion (outline-next-heading) (point)))
6350 (defun org-cycle-hide-drawers (state)
6351 "Re-hide all drawers after a visibility state change."
6352 (when (and (org-mode-p)
6353 (not (memq state
'(overview folded contents
))))
6355 (let* ((globalp (memq state
'(contents all
)))
6356 (beg (if globalp
(point-min) (point)))
6357 (end (if globalp
(point-max)
6358 (if (eq state
'children
)
6359 (save-excursion (outline-next-heading) (point))
6360 (org-end-of-subtree t
)))))
6362 (while (re-search-forward org-drawer-regexp end t
)
6363 (org-flag-drawer t
))))))
6365 (defun org-flag-drawer (flag)
6367 (beginning-of-line 1)
6368 (when (looking-at "^[ \t]*:[a-zA-Z][a-zA-Z0-9]*:")
6369 (let ((b (match-end 0))
6370 (outline-regexp org-outline-regexp
))
6371 (if (re-search-forward
6373 (save-excursion (outline-next-heading) (point)) t
)
6374 (outline-flag-region b
(point-at-eol) flag
)
6375 (error ":END: line missing at position %s" b
))))))
6377 (defun org-subtree-end-visible-p ()
6378 "Is the end of the current subtree visible?"
6379 (pos-visible-in-window-p
6380 (save-excursion (org-end-of-subtree t
) (point))))
6382 (defun org-first-headline-recenter (&optional N
)
6383 "Move cursor to the first headline and recenter the headline.
6384 Optional argument N means put the headline into the Nth line of the window."
6385 (goto-char (point-min))
6386 (when (re-search-forward (concat "^\\(" outline-regexp
"\\)") nil t
)
6388 (recenter (prefix-numeric-value N
))))
6390 ;;; Saving and restoring visibility
6392 (defun org-outline-overlay-data (&optional use-markers
)
6393 "Return a list of the locations of all outline overlays.
6394 These are overlays with the `invisible' property value `outline'.
6395 The return value is a list of cons cells, with start and stop
6396 positions for each overlay.
6397 If USE-MARKERS is set, return the positions as markers."
6404 (when (eq (overlay-get o
'invisible
) 'outline
)
6405 (setq beg
(overlay-start o
)
6406 end
(overlay-end o
))
6407 (and beg end
(> end beg
)
6409 (cons (move-marker (make-marker) beg
)
6410 (move-marker (make-marker) end
))
6412 (overlays-in (point-min) (point-max))))))))
6414 (defun org-set-outline-overlay-data (data)
6415 "Create visibility overlays for all positions in DATA.
6416 DATA should have been made by `org-outline-overlay-data'."
6423 (setq o
(make-overlay (car c
) (cdr c
)))
6424 (overlay-put o
'invisible
'outline
))
6427 ;;; Folding of blocks
6429 (defconst org-block-regexp
6430 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
6431 "Regular expression for hiding blocks.")
6433 (defvar org-hide-block-overlays nil
6434 "Overlays hiding blocks.")
6435 (make-variable-buffer-local 'org-hide-block-overlays
)
6437 (defun org-block-map (function &optional start end
)
6438 "Call FUNCTION at the head of all source blocks in the current buffer.
6439 Optional arguments START and END can be used to limit the range."
6440 (let ((start (or start
(point-min)))
6441 (end (or end
(point-max))))
6444 (while (and (< (point) end
) (re-search-forward org-block-regexp end t
))
6447 (goto-char (match-beginning 0))
6448 (funcall function
)))))))
6450 (defun org-hide-block-toggle-all ()
6451 "Toggle the visibility of all blocks in the current buffer."
6452 (org-block-map #'org-hide-block-toggle
))
6454 (defun org-hide-block-all ()
6455 "Fold all blocks in the current buffer."
6457 (org-show-block-all)
6458 (org-block-map #'org-hide-block-toggle-maybe
))
6460 (defun org-show-block-all ()
6461 "Unfold all blocks in the current buffer."
6463 (mapc 'delete-overlay org-hide-block-overlays
)
6464 (setq org-hide-block-overlays nil
))
6466 (defun org-hide-block-toggle-maybe ()
6467 "Toggle visibility of block at point."
6469 (let ((case-fold-search t
))
6471 (beginning-of-line 1)
6472 (looking-at org-block-regexp
))
6473 (progn (org-hide-block-toggle)
6474 t
) ;; to signal that we took action
6475 nil
))) ;; to signal that we did not
6477 (defun org-hide-block-toggle (&optional force
)
6478 "Toggle the visibility of the current block."
6482 (if (re-search-forward org-block-regexp nil t
)
6483 (let ((start (- (match-beginning 4) 1)) ;; beginning of body
6484 (end (match-end 0)) ;; end of entire body
6486 (if (memq t
(mapcar (lambda (overlay)
6487 (eq (overlay-get overlay
'invisible
)
6489 (overlays-at start
)))
6490 (if (or (not force
) (eq force
'off
))
6492 (when (member ov org-hide-block-overlays
)
6493 (setq org-hide-block-overlays
6494 (delq ov org-hide-block-overlays
)))
6495 (when (eq (overlay-get ov
'invisible
)
6497 (delete-overlay ov
)))
6498 (overlays-at start
)))
6499 (setq ov
(make-overlay start end
))
6500 (overlay-put ov
'invisible
'org-hide-block
)
6501 ;; make the block accessible to isearch
6503 ov
'isearch-open-invisible
6505 (when (member ov org-hide-block-overlays
)
6506 (setq org-hide-block-overlays
6507 (delq ov org-hide-block-overlays
)))
6508 (when (eq (overlay-get ov
'invisible
)
6510 (delete-overlay ov
))))
6511 (push ov org-hide-block-overlays
)))
6512 (error "Not looking at a source block"))))
6514 ;; org-tab-after-check-for-cycling-hook
6515 (add-hook 'org-tab-first-hook
'org-hide-block-toggle-maybe
)
6516 ;; Remove overlays when changing major mode
6517 (add-hook 'org-mode-hook
6518 (lambda () (org-add-hook 'change-major-mode-hook
6519 'org-show-block-all
'append
'local
)))
6523 (defvar org-goto-window-configuration nil
)
6524 (defvar org-goto-marker nil
)
6525 (defvar org-goto-map
6526 (let ((map (make-sparse-keymap)))
6527 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command mouse-drag-region universal-argument org-occur
)) cmd
)
6528 (while (setq cmd
(pop cmds
))
6529 (substitute-key-definition cmd cmd map global-map
)))
6530 (suppress-keymap map
)
6531 (org-defkey map
"\C-m" 'org-goto-ret
)
6532 (org-defkey map
[(return)] 'org-goto-ret
)
6533 (org-defkey map
[(left)] 'org-goto-left
)
6534 (org-defkey map
[(right)] 'org-goto-right
)
6535 (org-defkey map
[(control ?g
)] 'org-goto-quit
)
6536 (org-defkey map
"\C-i" 'org-cycle
)
6537 (org-defkey map
[(tab)] 'org-cycle
)
6538 (org-defkey map
[(down)] 'outline-next-visible-heading
)
6539 (org-defkey map
[(up)] 'outline-previous-visible-heading
)
6540 (if org-goto-auto-isearch
6541 (if (fboundp 'define-key-after
)
6542 (define-key-after map
[t] 'org-goto-local-auto-isearch)
6544 (org-defkey map "q" 'org-goto-quit)
6545 (org-defkey map "n" 'outline-next-visible-heading)
6546 (org-defkey map "p" 'outline-previous-visible-heading)
6547 (org-defkey map "f" 'outline-forward-same-level)
6548 (org-defkey map "b" 'outline-backward-same-level)
6549 (org-defkey map "u" 'outline-up-heading))
6550 (org-defkey map "/" 'org-occur)
6551 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
6552 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
6553 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
6554 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
6555 (org-defkey map "\C-c\C-u" 'outline-up-heading)
6558 (defconst org-goto-help
6559 "Browse buffer copy, to find location or copy text. Just type for auto-isearch.
6560 RET=jump to location [Q]uit and return to previous location
6561 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
6563 (defvar org-goto-start-pos) ; dynamically scoped parameter
6565 ;; FIXME: Docstring does not mention both interfaces
6566 (defun org-goto (&optional alternative-interface)
6567 "Look up a different location in the current file, keeping current visibility.
6569 When you want look-up or go to a different location in a document, the
6570 fastest way is often to fold the entire buffer and then dive into the tree.
6571 This method has the disadvantage, that the previous location will be folded,
6572 which may not be what you want.
6574 This command works around this by showing a copy of the current buffer
6575 in an indirect buffer, in overview mode. You can dive into the tree in
6576 that copy, use org-occur and incremental search to find a location.
6577 When pressing RET or `Q', the command returns to the original buffer in
6578 which the visibility is still unchanged. After RET is will also jump to
6579 the location selected in the indirect buffer and expose the
6580 the headline hierarchy above."
6582 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
6583 (org-refile-use-outline-path t)
6584 (org-refile-target-verify-function nil)
6586 (if (not alternative-interface)
6588 (if (eq org-goto-interface 'outline)
6589 'outline-path-completion
6591 (org-goto-start-pos (point))
6593 (if (eq interface 'outline)
6594 (car (org-get-location (current-buffer) org-goto-help))
6595 (let ((pa (org-refile-get-location "Goto")))
6596 (org-refile-check-position pa)
6600 (org-mark-ring-push org-goto-start-pos)
6601 (goto-char selected-point)
6602 (if (or (outline-invisible-p) (org-invisible-p2))
6603 (org-show-context 'org-goto)))
6606 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
6607 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
6608 (defvar org-goto-local-auto-isearch-map) ; defined below
6610 (defun org-get-location (buf help)
6611 "Let the user select a location in the Org-mode buffer BUF.
6612 This function uses a recursive edit. It returns the selected position
6614 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
6615 (isearch-hide-immediately nil)
6616 (isearch-search-fun-function
6617 (lambda () 'org-goto-local-search-headings))
6618 (org-goto-selected-point org-goto-exit-command)
6620 (special-display-buffer-names nil)
6621 (special-display-regexps nil)
6622 (special-display-function nil))
6624 (save-window-excursion
6625 (delete-other-windows)
6626 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
6629 (make-indirect-buffer (current-buffer) "*org-goto*")
6630 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
6631 (with-output-to-temp-buffer "*Help*"
6633 (org-fit-window-to-buffer (get-buffer-window "*Help*"))
6634 (setq buffer-read-only nil)
6635 (let ((org-startup-truncated t)
6636 (org-startup-folded nil)
6637 (org-startup-align-all-tables nil))
6640 (setq buffer-read-only t)
6641 (if (and (boundp 'org-goto-start-pos)
6642 (integer-or-marker-p org-goto-start-pos))
6643 (let ((org-show-hierarchy-above t)
6644 (org-show-siblings t)
6645 (org-show-following-heading t))
6646 (goto-char org-goto-start-pos)
6647 (and (outline-invisible-p) (org-show-context)))
6648 (goto-char (point-min)))
6649 (let (org-special-ctrl-a/e) (org-beginning-of-line))
6650 (message "Select location and press RET")
6651 (use-local-map org-goto-map)
6654 (kill-buffer "*org-goto*")
6655 (cons org-goto-selected-point org-goto-exit-command)))
6657 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
6658 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
6659 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
6660 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char)
6662 (defun org-goto-local-search-headings (string bound noerror)
6663 "Search and make sure that any matches are in headlines."
6665 (while (if isearch-forward
6666 (search-forward string bound noerror)
6667 (search-backward string bound noerror))
6668 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
6669 (and (member :headline context)
6670 (not (member :tags context))))
6671 (throw 'return (point))))))
6673 (defun org-goto-local-auto-isearch ()
6676 (goto-char (point-min))
6677 (let ((keys (this-command-keys)))
6678 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
6680 (isearch-process-search-char (string-to-char keys)))))
6682 (defun org-goto-ret (&optional arg)
6683 "Finish `org-goto' by going to the new location."
6685 (setq org-goto-selected-point (point)
6686 org-goto-exit-command 'return)
6689 (defun org-goto-left ()
6690 "Finish `org-goto' by going to the new location."
6692 (if (org-on-heading-p)
6694 (beginning-of-line 1)
6695 (setq org-goto-selected-point (point)
6696 org-goto-exit-command 'left)
6698 (error "Not on a heading")))
6700 (defun org-goto-right ()
6701 "Finish `org-goto' by going to the new location."
6703 (if (org-on-heading-p)
6705 (setq org-goto-selected-point (point)
6706 org-goto-exit-command 'right)
6708 (error "Not on a heading")))
6710 (defun org-goto-quit ()
6711 "Finish `org-goto' without cursor motion."
6713 (setq org-goto-selected-point nil)
6714 (setq org-goto-exit-command 'quit)
6717 ;;; Indirect buffer display of subtrees
6719 (defvar org-indirect-dedicated-frame nil
6720 "This is the frame being used for indirect tree display.")
6721 (defvar org-last-indirect-buffer nil)
6723 (defun org-tree-to-indirect-buffer (&optional arg)
6724 "Create indirect buffer and narrow it to current subtree.
6725 With numerical prefix ARG, go up to this level and then take that tree.
6726 If ARG is negative, go up that many levels.
6727 If `org-indirect-buffer-display' is not `new-frame', the command removes the
6728 indirect buffer previously made with this command, to avoid proliferation of
6729 indirect buffers. However, when you call the command with a \
6730 \\[universal-argument] prefix, or
6731 when `org-indirect-buffer-display' is `new-frame', the last buffer
6732 is kept so that you can work with several indirect buffers at the same time.
6733 If `org-indirect-buffer-display' is `dedicated-frame', the \
6734 \\[universal-argument] prefix also
6735 requests that a new frame be made for the new buffer, so that the dedicated
6736 frame is not changed."
6738 (let ((cbuf (current-buffer))
6739 (cwin (selected-window))
6741 beg end level heading ibuf)
6743 (org-back-to-heading t)
6745 (setq level (org-outline-level))
6746 (if (< arg 0) (setq arg (+ level arg)))
6747 (while (> (setq level (org-outline-level)) arg)
6748 (outline-up-heading 1 t)))
6750 heading (org-get-heading))
6751 (org-end-of-subtree t t)
6752 (if (org-on-heading-p) (backward-char 1))
6754 (if (and (buffer-live-p org-last-indirect-buffer)
6755 (not (eq org-indirect-buffer-display 'new-frame))
6757 (kill-buffer org-last-indirect-buffer))
6758 (setq ibuf (org-get-indirect-buffer cbuf)
6759 org-last-indirect-buffer ibuf)
6761 ((or (eq org-indirect-buffer-display 'new-frame)
6762 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
6763 (select-frame (make-frame))
6764 (delete-other-windows)
6765 (switch-to-buffer ibuf)
6766 (org-set-frame-title heading))
6767 ((eq org-indirect-buffer-display 'dedicated-frame)
6769 (select-frame (or (and org-indirect-dedicated-frame
6770 (frame-live-p org-indirect-dedicated-frame)
6771 org-indirect-dedicated-frame)
6772 (setq org-indirect-dedicated-frame (make-frame)))))
6773 (delete-other-windows)
6774 (switch-to-buffer ibuf)
6775 (org-set-frame-title (concat "Indirect: " heading)))
6776 ((eq org-indirect-buffer-display 'current-window)
6777 (switch-to-buffer ibuf))
6778 ((eq org-indirect-buffer-display 'other-window)
6779 (pop-to-buffer ibuf))
6780 (t (error "Invalid value")))
6781 (if (featurep 'xemacs)
6782 (save-excursion (org-mode) (turn-on-font-lock)))
6783 (narrow-to-region beg end)
6786 (and (window-live-p cwin) (select-window cwin))))
6788 (defun org-get-indirect-buffer (&optional buffer)
6789 (setq buffer (or buffer (current-buffer)))
6790 (let ((n 1) (base (buffer-name buffer)) bname)
6791 (while (buffer-live-p
6792 (get-buffer (setq bname (concat base "-" (number-to-string n)))))
6795 (make-indirect-buffer buffer bname 'clone)
6796 (error (make-indirect-buffer buffer bname)))))
6798 (defun org-set-frame-title (title)
6799 "Set the title of the current frame to the string TITLE."
6800 ;; FIXME: how to name a single frame in XEmacs???
6801 (unless (featurep 'xemacs)
6802 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
6804 ;;;; Structure editing
6806 ;;; Inserting headlines
6808 (defun org-previous-line-empty-p ()
6811 (or (beginning-of-line 0) t)
6813 (looking-at "[ \t]*$")))))
6815 (defun org-insert-heading (&optional force-heading invisible-ok)
6816 "Insert a new heading or item with same depth at point.
6817 If point is in a plain list and FORCE-HEADING is nil, create a new list item.
6818 If point is at the beginning of a headline, insert a sibling before the
6819 current headline. If point is not at the beginning, split the line,
6820 create the new headline with the text in the current line after point
6821 \(but see also the variable `org-M-RET-may-split-line').
6823 When INVISIBLE-OK is set, stop at invisible headlines when going back.
6824 This is important for non-interactive uses of the command."
6826 (if (or (= (buffer-size) 0)
6827 (and (not (save-excursion
6828 (and (ignore-errors (org-back-to-heading invisible-ok))
6829 (org-on-heading-p))))
6830 (not (org-in-item-p))))
6833 (run-hooks 'org-insert-heading-hook))
6834 (when (or force-heading (not (org-insert-item)))
6835 (let* ((empty-line-p nil)
6837 (on-heading (org-on-heading-p))
6838 (head (save-excursion
6841 (org-back-to-heading invisible-ok)
6842 (when (and (not on-heading)
6843 (featurep 'org-inlinetask)
6844 (integerp org-inlinetask-min-level)
6845 (>= (length (match-string 0))
6846 org-inlinetask-min-level))
6847 ;; Find a heading level before the inline task
6848 (while (and (setq level (org-up-heading-safe))
6849 (>= level org-inlinetask-min-level)))
6850 (if (org-on-heading-p)
6851 (org-back-to-heading invisible-ok)
6852 (error "This should not happen")))
6853 (setq empty-line-p (org-previous-line-empty-p))
6856 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
6857 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
6858 pos hide-previous previous-pos)
6860 ((and (org-on-heading-p) (bolp)
6862 (save-excursion (backward-char 1) (not (outline-invisible-p)))))
6863 ;; insert before the current line
6864 (open-line (if blank 2 1)))
6866 (not org-insert-heading-respect-content)
6869 (backward-char 1) (not (outline-invisible-p)))))
6870 ;; insert right here
6873 ;; somewhere in the line
6875 (setq previous-pos (point-at-bol))
6877 (setq hide-previous (outline-invisible-p)))
6878 (and org-insert-heading-respect-content (org-show-subtree))
6880 (and (org-get-alist-option org-M-RET-may-split-line 'headline)
6883 (goto-char (point-at-bol))
6884 (and (looking-at org-complex-heading-regexp)
6885 (> p (match-beginning 4)))))))
6888 (org-insert-heading-respect-content
6889 (org-end-of-subtree nil t)
6890 (when (featurep 'org-inlinetask)
6891 (while (and (not (eobp))
6892 (looking-at "\\(\\*+\\)[ \t]+")
6893 (>= (length (match-string 1))
6894 org-inlinetask-min-level))
6895 (org-end-of-subtree nil t)))
6896 (or (bolp) (newline))
6897 (or (org-previous-line-empty-p)
6898 (and blank (newline)))
6904 (looking-at ".*?\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?[ \t]*$")
6905 (setq tags (and (match-end 2) (match-string 2)))
6907 (delete-region (match-beginning 1) (match-end 1)))
6908 (setq pos (point-at-bol))
6909 (or split (end-of-line 1))
6910 (delete-horizontal-space)
6911 (if (string-match "\\`\\*+\\'"
6912 (buffer-substring (point-at-bol) (point)))
6914 (newline (if blank 2 1))
6920 (org-set-tags nil 'align))))
6922 (or split (end-of-line 1))
6923 (newline (if blank 2 1)))))))
6924 (insert head) (just-one-space)
6927 (unless (= (point) pos) (just-one-space) (backward-delete-char 1))
6928 (when (and org-insert-heading-respect-content hide-previous)
6930 (goto-char previous-pos)
6932 (run-hooks 'org-insert-heading-hook)))))
6934 (defun org-get-heading (&optional no-tags)
6935 "Return the heading of the current entry, without the stars."
6937 (org-back-to-heading t)
6940 (org-re "\\*+[ \t]+\\([^\n\r]*?\\)\\([ \t]+:[[:alnum:]:_@#%]+:[ \t]*\\)?$")
6941 "\\*+[ \t]+\\([^\r\n]*\\)"))
6942 (match-string 1) "")))
6944 (defun org-heading-components ()
6945 "Return the components of the current heading.
6946 This is a list with the following elements:
6947 - the level as an integer
6948 - the reduced level, different if `org-odd-levels-only' is set.
6949 - the TODO keyword, or nil
6950 - the priority character, like ?A, or nil if no priority is given
6951 - the headline text itself, or the tags string if no headline text
6952 - the tags string, or nil."
6954 (org-back-to-heading t)
6955 (if (let (case-fold-search) (looking-at org-complex-heading-regexp))
6956 (list (length (match-string 1))
6957 (org-reduced-level (length (match-string 1)))
6958 (org-match-string-no-properties 2)
6959 (and (match-end 3) (aref (match-string 3) 2))
6960 (org-match-string-no-properties 4)
6961 (org-match-string-no-properties 5)))))
6963 (defun org-get-entry ()
6964 "Get the entry text, after heading, entire subtree."
6966 (org-back-to-heading t)
6967 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
6969 (defun org-insert-heading-after-current ()
6970 "Insert a new heading with same level as current, after current subtree."
6972 (org-back-to-heading)
6973 (org-insert-heading)
6974 (org-move-subtree-down)
6977 (defun org-insert-heading-respect-content ()
6979 (let ((org-insert-heading-respect-content t))
6980 (org-insert-heading t)))
6982 (defun org-insert-todo-heading-respect-content (&optional force-state)
6984 (let ((org-insert-heading-respect-content t))
6985 (org-insert-todo-heading force-state t)))
6987 (defun org-insert-todo-heading (arg &optional force-heading)
6988 "Insert a new heading with the same level and TODO state as current heading.
6989 If the heading has no TODO state, or if the state is DONE, use the first
6990 state (TODO by default). Also with prefix arg, force first state."
6992 (when (or force-heading (not (org-insert-item 'checkbox)))
6993 (org-insert-heading force-heading)
6995 (org-back-to-heading)
6996 (outline-previous-heading)
6997 (looking-at org-todo-line-regexp))
7001 (not (match-beginning 2))
7002 (member (match-string 2) org-done-keywords))
7003 (car org-todo-keywords-1)
7007 (run-hook-with-args-until-success
7008 'org-todo-get-default-hook new-mark-x nil)
7010 (beginning-of-line 1)
7011 (and (looking-at "\\*+ ") (goto-char (match-end 0))
7012 (if org-treat-insert-todo-heading-as-state-change
7014 (insert new-mark " "))))
7015 (when org-provide-todo-statistics
7016 (org-update-parent-todo-statistics))))
7018 (defun org-insert-subheading (arg)
7019 "Insert a new subheading and demote it.
7020 Works for outline headings and for plain lists alike."
7022 (org-insert-heading arg)
7024 ((org-on-heading-p) (org-do-demote))
7025 ((org-at-item-p) (org-indent-item))))
7027 (defun org-insert-todo-subheading (arg)
7028 "Insert a new subheading with TODO keyword or checkbox and demote it.
7029 Works for outline headings and for plain lists alike."
7031 (org-insert-todo-heading arg)
7033 ((org-on-heading-p) (org-do-demote))
7034 ((org-at-item-p) (org-indent-item))))
7036 ;;; Promotion and Demotion
7038 (defvar org-after-demote-entry-hook nil
7039 "Hook run after an entry has been demoted.
7040 The cursor will be at the beginning of the entry.
7041 When a subtree is being demoted, the hook will be called for each node.")
7043 (defvar org-after-promote-entry-hook nil
7044 "Hook run after an entry has been promoted.
7045 The cursor will be at the beginning of the entry.
7046 When a subtree is being promoted, the hook will be called for each node.")
7048 (defun org-promote-subtree ()
7049 "Promote the entire subtree.
7050 See also `org-promote'."
7053 (org-with-limited-levels (org-map-tree 'org-promote)))
7054 (org-fix-position-after-promote))
7056 (defun org-demote-subtree ()
7057 "Demote the entire subtree. See `org-demote'.
7058 See also `org-promote'."
7061 (org-with-limited-levels (org-map-tree 'org-demote)))
7062 (org-fix-position-after-promote))
7065 (defun org-do-promote ()
7066 "Promote the current heading higher up the tree.
7067 If the region is active in `transient-mark-mode', promote all headings
7071 (if (org-region-active-p)
7072 (org-map-region 'org-promote (region-beginning) (region-end))
7074 (org-fix-position-after-promote))
7076 (defun org-do-demote ()
7077 "Demote the current heading lower down the tree.
7078 If the region is active in `transient-mark-mode', demote all headings
7082 (if (org-region-active-p)
7083 (org-map-region 'org-demote (region-beginning) (region-end))
7085 (org-fix-position-after-promote))
7087 (defun org-fix-position-after-promote ()
7088 "Make sure that after pro/demotion cursor position is right."
7089 (let ((pos (point)))
7090 (when (save-excursion
7091 (beginning-of-line 1)
7092 (looking-at org-todo-line-regexp)
7093 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
7094 (cond ((eobp) (insert " "))
7095 ((eolp) (insert " "))
7096 ((equal (char-after) ?\ ) (forward-char 1))))))
7098 (defun org-current-level ()
7099 "Return the level of the current entry, or nil if before the first headline.
7100 The level is the number of stars at the beginning of the headline."
7102 (org-with-limited-levels
7104 (org-back-to-heading t)
7105 (funcall outline-level)))))
7107 (defun org-get-previous-line-level ()
7108 "Return the outline depth of the last headline before the current line.
7109 Returns 0 for the first headline in the buffer, and nil if before the
7111 (let ((current-level (org-current-level))
7112 (prev-level (when (> (line-number-at-pos) 1)
7114 (beginning-of-line 0)
7115 (org-current-level)))))
7116 (cond ((null current-level) nil) ; Before first headline
7117 ((null prev-level) 0) ; At first headline
7120 (defun org-reduced-level (l)
7121 "Compute the effective level of a heading.
7122 This takes into account the setting of `org-odd-levels-only'."
7123 (if org-odd-levels-only (1+ (floor (/ l 2))) l))
7125 (defun org-level-increment ()
7126 "Return the number of stars that will be added or removed at a
7127 time to headlines when structure editing, based on the value of
7128 `org-odd-levels-only'."
7129 (if org-odd-levels-only 2 1))
7131 (defun org-get-valid-level (level &optional change)
7132 "Rectify a level change under the influence of `org-odd-levels-only'
7133 LEVEL is a current level, CHANGE is by how much the level should be
7134 modified. Even if CHANGE is nil, LEVEL may be returned modified because
7135 even level numbers will become the next higher odd number."
7136 (if org-odd-levels-only
7137 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
7138 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
7139 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
7140 (max 1 (+ level (or change 0)))))
7142 (if (boundp 'define-obsolete-function-alias)
7143 (if (or (featurep 'xemacs) (< emacs-major-version 23))
7144 (define-obsolete-function-alias 'org-get-legal-level
7145 'org-get-valid-level)
7146 (define-obsolete-function-alias 'org-get-legal-level
7147 'org-get-valid-level "23.1")))
7149 (defun org-promote ()
7150 "Promote the current heading higher up the tree.
7151 If the region is active in `transient-mark-mode', promote all headings
7153 (org-back-to-heading t)
7154 (let* ((level (save-match-data (funcall outline-level)))
7155 (after-change-functions (remove 'flyspell-after-change-function
7156 after-change-functions))
7157 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
7158 (diff (abs (- level (length up-head) -1))))
7159 (if (= level 1) (error "Cannot promote to level 0. UNDO to recover if necessary"))
7160 (replace-match up-head nil t)
7161 ;; Fixup tag positioning
7162 (and org-auto-align-tags (org-set-tags nil t))
7163 (if org-adapt-indentation (org-fixup-indentation (- diff)))
7164 (run-hooks 'org-after-promote-entry-hook)))
7166 (defun org-demote ()
7167 "Demote the current heading lower down the tree.
7168 If the region is active in `transient-mark-mode', demote all headings
7170 (org-back-to-heading t)
7171 (let* ((level (save-match-data (funcall outline-level)))
7172 (after-change-functions (remove 'flyspell-after-change-function
7173 after-change-functions))
7174 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
7175 (diff (abs (- level (length down-head) -1))))
7176 (replace-match down-head nil t)
7177 ;; Fixup tag positioning
7178 (and org-auto-align-tags (org-set-tags nil t))
7179 (if org-adapt-indentation (org-fixup-indentation diff))
7180 (run-hooks 'org-after-demote-entry-hook)))
7182 (defun org-cycle-level ()
7183 "Cycle the level of an empty headline through possible states.
7184 This goes first to child, then to parent, level, then up the hierarchy.
7185 After top level, it switches back to sibling level."
7187 (let ((org-adapt-indentation nil))
7188 (when (org-point-at-end-of-empty-headline)
7189 (setq this-command 'org-cycle-level) ; Only needed for caching
7190 (let ((cur-level (org-current-level))
7191 (prev-level (org-get-previous-line-level)))
7193 ;; If first headline in file, promote to top-level.
7195 (loop repeat (/ (- cur-level 1) (org-level-increment))
7196 do (org-do-promote)))
7197 ;; If same level as prev, demote one.
7198 ((= prev-level cur-level)
7200 ;; If parent is top-level, promote to top level if not already.
7202 (loop repeat (/ (- cur-level 1) (org-level-increment))
7203 do (org-do-promote)))
7204 ;; If top-level, return to prev-level.
7206 (loop repeat (/ (- prev-level 1) (org-level-increment))
7207 do (org-do-demote)))
7208 ;; If less than prev-level, promote one.
7209 ((< cur-level prev-level)
7211 ;; If deeper than prev-level, promote until higher than
7213 ((> cur-level prev-level)
7214 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
7215 do (org-do-promote))))
7218 (defun org-map-tree (fun)
7219 "Call FUN for every heading underneath the current one."
7220 (org-back-to-heading)
7221 (let ((level (funcall outline-level)))
7225 (outline-next-heading)
7226 (> (funcall outline-level) level))
7230 (defun org-map-region (fun beg end)
7231 "Call FUN for every heading between BEG and END."
7232 (let ((org-ignore-region t))
7234 (setq end (copy-marker end))
7236 (if (and (re-search-forward (concat "^" outline-regexp) nil t)
7240 (outline-next-heading)
7245 (defun org-fixup-indentation (diff)
7246 "Change the indentation in the current entry by DIFF.
7247 However, if any line in the current entry has no indentation, or if it
7248 would end up with no indentation after the change, nothing at all is done."
7250 (let ((end (save-excursion (outline-next-heading)
7252 (prohibit (if (> diff 0)
7254 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
7256 (unless (save-excursion (end-of-line 1)
7257 (re-search-forward prohibit end t))
7258 (while (and (< (point) end)
7259 (re-search-forward "^[ \t]+" end t))
7260 (goto-char (match-end 0))
7261 (setq col (current-column))
7262 (if (< diff 0) (replace-match ""))
7263 (org-indent-to-column (+ diff col))))
7264 (move-marker end nil))))
7266 (defun org-convert-to-odd-levels ()
7267 "Convert an org-mode file with all levels allowed to one with odd levels.
7268 This will leave level 1 alone, convert level 2 to level 3, level 3 to
7271 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
7272 (let ((outline-regexp org-outline-regexp)
7273 (outline-level 'org-outline-level)
7274 (org-odd-levels-only nil) n)
7276 (goto-char (point-min))
7277 (while (re-search-forward "^\\*\\*+ " nil t)
7278 (setq n (- (length (match-string 0)) 2))
7279 (while (>= (setq n (1- n)) 0)
7281 (end-of-line 1))))))
7283 (defun org-convert-to-oddeven-levels ()
7284 "Convert an org-mode file with only odd levels to one with odd/even levels.
7285 This promotes level 3 to level 2, level 5 to level 3 etc. If the
7286 file contains a section with an even level, conversion would
7287 destroy the structure of the file. An error is signaled in this
7290 (goto-char (point-min))
7291 ;; First check if there are no even levels
7292 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
7293 (org-show-context t)
7294 (error "Not all levels are odd in this file. Conversion not possible"))
7295 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
7296 (let ((outline-regexp org-outline-regexp)
7297 (outline-level 'org-outline-level)
7298 (org-odd-levels-only nil) n)
7300 (goto-char (point-min))
7301 (while (re-search-forward "^\\*\\*+ " nil t)
7302 (setq n (/ (1- (length (match-string 0))) 2))
7303 (while (>= (setq n (1- n)) 0)
7305 (end-of-line 1))))))
7307 (defun org-tr-level (n)
7308 "Make N odd if required."
7309 (if org-odd-levels-only (1+ (/ n 2)) n))
7311 ;;; Vertical tree motion, cutting and pasting of subtrees
7313 (defun org-move-subtree-up (&optional arg)
7314 "Move the current subtree up past ARG headlines of the same level."
7316 (org-move-subtree-down (- (prefix-numeric-value arg))))
7318 (defun org-move-subtree-down (&optional arg)
7319 "Move the current subtree down past ARG headlines of the same level."
7321 (setq arg (prefix-numeric-value arg))
7322 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
7323 'org-get-last-sibling))
7324 (ins-point (make-marker))
7326 (col (current-column))
7327 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
7329 (org-back-to-heading)
7332 (setq ne-beg (org-back-over-empty-lines))
7335 (save-excursion (outline-end-of-heading)
7336 (setq folded (outline-invisible-p)))
7337 (outline-end-of-subtree))
7338 (outline-next-heading)
7339 (setq ne-end (org-back-over-empty-lines))
7342 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
7343 ;; include less whitespace
7346 (forward-line (- ne-beg ne-end))
7347 (setq beg (point))))
7348 ;; Find insertion point, with error handling
7350 (or (and (funcall movfunc) (looking-at outline-regexp))
7351 (progn (goto-char beg0)
7352 (error "Cannot move past superior level or buffer limit")))
7353 (setq cnt (1- cnt)))
7355 ;; Moving forward - still need to move over subtree
7356 (progn (org-end-of-subtree t t)
7358 (org-back-over-empty-lines)
7359 (or (bolp) (newline)))))
7360 (setq ne-ins (org-back-over-empty-lines))
7361 (move-marker ins-point (point))
7362 (setq txt (buffer-substring beg end))
7363 (org-save-markers-in-region beg end)
7364 (delete-region beg end)
7365 (org-remove-empty-overlays-at beg)
7366 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
7367 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
7368 (and (not (bolp)) (looking-at "\n") (forward-char 1))
7369 (let ((bbb (point)))
7370 (insert-before-markers txt)
7371 (org-reinstall-markers-in-region bbb)
7372 (move-marker ins-point bbb))
7373 (or (bolp) (insert "\n"))
7374 (setq ins-end (point))
7375 (goto-char ins-point)
7376 (org-skip-whitespace)
7377 (when (and (< arg 0)
7378 (org-first-sibling-p)
7380 ;; Move whitespace back to beginning
7383 (let ((kill-whole-line t))
7384 (kill-line (- ne-ins ne-beg)) (point)))
7385 (insert (make-string (- ne-ins ne-beg) ?\n)))
7386 (move-marker ins-point nil)
7391 (org-cycle-hide-drawers 'children))
7392 (org-clean-visibility-after-subtree-move)
7393 ;; move back to the initial column we were at
7394 (move-to-column col)))
7396 (defvar org-subtree-clip ""
7397 "Clipboard for cut and paste of subtrees.
7398 This is actually only a copy of the kill, because we use the normal kill
7399 ring. We need it to check if the kill was created by `org-copy-subtree'.")
7401 (defvar org-subtree-clip-folded nil
7402 "Was the last copied subtree folded?
7403 This is used to fold the tree back after pasting.")
7405 (defun org-cut-subtree (&optional n)
7406 "Cut the current subtree into the clipboard.
7407 With prefix arg N, cut this many sequential subtrees.
7408 This is a short-hand for marking the subtree and then cutting it."
7410 (org-copy-subtree n 'cut))
7412 (defun org-copy-subtree (&optional n cut force-store-markers)
7413 "Cut the current subtree into the clipboard.
7414 With prefix arg N, cut this many sequential subtrees.
7415 This is a short-hand for marking the subtree and then copying it.
7416 If CUT is non-nil, actually cut the subtree.
7417 If FORCE-STORE-MARKERS is non-nil, store the relative locations
7418 of some markers in the region, even if CUT is non-nil. This is
7419 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
7421 (let (beg end folded (beg0 (point)))
7423 (org-back-to-heading nil) ; take what looks like a subtree
7424 (org-back-to-heading t)) ; take what is really there
7425 (org-back-over-empty-lines)
7427 (skip-chars-forward " \t\r\n")
7429 (save-excursion (outline-end-of-heading)
7430 (setq folded (outline-invisible-p)))
7432 (org-forward-same-level (1- n) t)
7434 (org-end-of-subtree t t))
7435 (org-back-over-empty-lines)
7439 (setq org-subtree-clip-folded folded)
7440 (when (or cut force-store-markers)
7441 (org-save-markers-in-region beg end))
7442 (if cut (kill-region beg end) (copy-region-as-kill beg end))
7443 (setq org-subtree-clip (current-kill 0))
7444 (message "%s: Subtree(s) with %d characters"
7445 (if cut "Cut" "Copied")
7446 (length org-subtree-clip)))))
7448 (defun org-paste-subtree (&optional level tree for-yank)
7449 "Paste the clipboard as a subtree, with modification of headline level.
7450 The entire subtree is promoted or demoted in order to match a new headline
7453 If the cursor is at the beginning of a headline, the same level as
7454 that headline is used to paste the tree
7456 If not, the new level is derived from the *visible* headings
7457 before and after the insertion point, and taken to be the inferior headline
7458 level of the two. So if the previous visible heading is level 3 and the
7459 next is level 4 (or vice versa), level 4 will be used for insertion.
7460 This makes sure that the subtree remains an independent subtree and does
7461 not swallow low level entries.
7463 You can also force a different level, either by using a numeric prefix
7464 argument, or by inserting the heading marker by hand. For example, if the
7465 cursor is after \"*****\", then the tree will be shifted to level 5.
7467 If optional TREE is given, use this text instead of the kill ring.
7469 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
7470 move back over whitespace before inserting, and move point to the end of
7471 the inserted text when done."
7473 (setq tree (or tree (and kill-ring (current-kill 0))))
7474 (unless (org-kill-is-subtree-p tree)
7476 (substitute-command-keys
7477 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
7478 (let* ((visp (not (outline-invisible-p)))
7480 (^re (concat "^\\(" outline-regexp "\\)"))
7481 (re (concat "\\(" outline-regexp "\\)"))
7482 (^re_ (concat "\\(\\*+\\)[ \t]*"))
7484 (old-level (if (string-match ^re txt)
7485 (- (match-end 0) (match-beginning 0) 1)
7487 (force-level (cond (level (prefix-numeric-value level))
7488 ((and (looking-at "[ \t]*$")
7490 ^re_ (buffer-substring
7491 (point-at-bol) (point))))
7492 (- (match-end 1) (match-beginning 1)))
7494 (looking-at org-outline-regexp))
7495 (- (match-end 0) (point) 1))
7497 (previous-level (save-excursion
7500 (outline-previous-visible-heading 1)
7502 (- (match-end 0) (match-beginning 0) 1)
7505 (next-level (save-excursion
7508 (or (looking-at outline-regexp)
7509 (outline-next-visible-heading 1))
7511 (- (match-end 0) (match-beginning 0) 1)
7514 (new-level (or force-level (max previous-level next-level)))
7515 (shift (if (or (= old-level -1)
7517 (= old-level new-level))
7519 (- new-level old-level)))
7520 (delta (if (> shift 0) -1 1))
7521 (func (if (> shift 0) 'org-demote 'org-promote))
7522 (org-odd-levels-only nil)
7524 ;; Remove the forced level indicator
7526 (delete-region (point-at-bol) (point)))
7528 (beginning-of-line 1)
7529 (unless for-yank (org-back-over-empty-lines))
7531 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
7532 (insert-before-markers txt)
7533 (unless (string-match "\n\\'" txt) (insert "\n"))
7534 (setq newend (point))
7535 (org-reinstall-markers-in-region beg)
7538 (skip-chars-forward " \t\n\r")
7540 (if (and (outline-invisible-p) visp)
7541 (save-excursion (outline-show-heading)))
7542 ;; Shift if necessary
7545 (narrow-to-region beg end)
7546 (while (not (= shift 0))
7547 (org-map-region func (point-min) (point-max))
7548 (setq shift (+ delta shift)))
7549 (goto-char (point-min))
7550 (setq newend (point-max))))
7551 (when (or (interactive-p) for-yank)
7552 (message "Clipboard pasted as level %d subtree" new-level))
7553 (if (and (not for-yank) ; in this case, org-yank will decide about folding
7555 (eq org-subtree-clip (current-kill 0))
7556 org-subtree-clip-folded)
7557 ;; The tree was folded before it was killed/copied
7559 (and for-yank (goto-char newend))))
7561 (defun org-kill-is-subtree-p (&optional txt)
7562 "Check if the current kill is an outline subtree, or a set of trees.
7563 Returns nil if kill does not start with a headline, or if the first
7564 headline level is not the largest headline level in the tree.
7565 So this will actually accept several entries of equal levels as well,
7566 which is OK for `org-paste-subtree'.
7567 If optional TXT is given, check this string instead of the current kill."
7568 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
7569 (start-level (and kill
7570 (string-match (concat "\\`\\([ \t\n\r]*?\n\\)?\\("
7571 org-outline-regexp "\\)")
7573 (- (match-end 2) (match-beginning 2) 1)))
7574 (re (concat "^" org-outline-regexp))
7575 (start (1+ (or (match-beginning 2) -1))))
7576 (if (not start-level)
7578 nil) ;; does not even start with a heading
7580 (while (setq start (string-match re kill (1+ start)))
7581 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
7585 (defvar org-markers-to-move nil
7586 "Markers that should be moved with a cut-and-paste operation.
7587 Those markers are stored together with their positions relative to
7588 the start of the region.")
7590 (defun org-save-markers-in-region (beg end)
7591 "Check markers in region.
7592 If these markers are between BEG and END, record their position relative
7593 to BEG, so that after moving the block of text, we can put the markers back
7595 This function gets called just before an entry or tree gets cut from the
7596 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
7597 called immediately, to move the markers with the entries."
7598 (setq org-markers-to-move nil)
7599 (when (featurep 'org-clock)
7600 (org-clock-save-markers-for-cut-and-paste beg end))
7601 (when (featurep 'org-agenda)
7602 (org-agenda-save-markers-for-cut-and-paste beg end)))
7604 (defun org-check-and-save-marker (marker beg end)
7605 "Check if MARKER is between BEG and END.
7606 If yes, remember the marker and the distance to BEG."
7607 (when (and (marker-buffer marker)
7608 (equal (marker-buffer marker) (current-buffer)))
7609 (if (and (>= marker beg) (< marker end))
7610 (push (cons marker (- marker beg)) org-markers-to-move))))
7612 (defun org-reinstall-markers-in-region (beg)
7613 "Move all remembered markers to their position relative to BEG."
7615 (move-marker (car x) (+ beg (cdr x))))
7616 org-markers-to-move)
7617 (setq org-markers-to-move nil))
7619 (defun org-narrow-to-subtree ()
7620 "Narrow buffer to the current subtree."
7624 (org-with-limited-levels
7626 (progn (org-back-to-heading t) (point))
7627 (progn (org-end-of-subtree t t)
7628 (if (and (org-on-heading-p) (not (eobp))) (backward-char 1))
7631 (defun org-narrow-to-block ()
7632 "Narrow buffer to the current block."
7634 (let ((bstart "^[ \t]*#\\+begin")
7635 (bend "[ \t]*#\\+end")
7636 (case-fold-search t) ;; allow #+BEGIN
7638 (if (org-in-regexps-block-p bstart bend)
7640 (save-excursion (re-search-backward bstart nil t)
7641 (setq b_start (match-beginning 0)))
7642 (save-excursion (re-search-forward bend nil t)
7643 (setq b_end (match-end 0)))
7644 (narrow-to-region b_start b_end))
7645 (error "Not in a block"))))
7648 (defvar org-property-drawer-re))
7650 (defvar org-property-start-re) ;; defined below
7651 (defun org-clone-subtree-with-time-shift (n &optional shift)
7652 "Clone the task (subtree) at point N times.
7653 The clones will be inserted as siblings.
7655 In interactive use, the user will be prompted for the number of
7656 clones to be produced, and for a time SHIFT, which may be a
7657 repeater as used in time stamps, for example `+3d'.
7659 When a valid repeater is given and the entry contains any time
7660 stamps, the clones will become a sequence in time, with time
7661 stamps in the subtree shifted for each clone produced. If SHIFT
7662 is nil or the empty string, time stamps will be left alone. The
7663 ID property of the original subtree is removed.
7665 If the original subtree did contain time stamps with a repeater,
7666 the following will happen:
7667 - the repeater will be removed in each clone
7668 - an additional clone will be produced, with the current, unshifted
7669 date(s) in the entry.
7670 - the original entry will be placed *after* all the clones, with
7672 - the start days in the repeater in the original entry will be shifted
7673 to past the last clone.
7674 I this way you can spell out a number of instances of a repeating task,
7675 and still retain the repeater to cover future instances of the task."
7676 (interactive "nNumber of clones to produce: \nsDate shift per clone (e.g. +1w, empty to copy unchanged): ")
7677 (let (beg end template task idprop
7678 shift-n shift-what doshift nmin nmax (n-no-remove -1))
7679 (if (not (and (integerp n) (> n 0)))
7680 (error "Invalid number of replications %s" n))
7681 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
7682 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([dwmy]\\)[ \t]*\\'"
7684 (error "Invalid shift specification %s" shift))
7686 (setq shift-n (string-to-number (match-string 1 shift))
7687 shift-what (cdr (assoc (match-string 2 shift)
7688 '(("d" . day) ("w" . week)
7689 ("m" . month) ("y" . year))))))
7690 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
7691 (setq nmin 1 nmax n)
7692 (org-back-to-heading t)
7694 (setq idprop (org-entry-get nil "ID"))
7695 (org-end-of-subtree t t)
7696 (or (bolp) (insert "\n"))
7698 (setq template (buffer-substring beg end))
7700 (string-match "<[^<>\n]+ \\+[0-9]+[dwmy][^<>\n]*>" template))
7701 (delete-region beg end)
7703 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
7705 (loop for n from nmin to nmax do
7710 (goto-char (point-min))
7711 (and idprop (if org-clone-delete-id
7712 (org-entry-delete nil "ID")
7713 (org-id-get-create t)))
7714 (while (re-search-forward org-property-start-re nil t)
7715 (org-remove-empty-drawer-at "PROPERTIES" (point)))
7716 (goto-char (point-min))
7718 (while (re-search-forward org-ts-regexp-both nil t)
7719 (org-timestamp-change (* n shift-n) shift-what))
7720 (unless (= n n-no-remove)
7721 (goto-char (point-min))
7722 (while (re-search-forward org-ts-regexp nil t)
7724 (goto-char (match-beginning 0))
7725 (if (looking-at "<[^<>\n]+\\( +\\+[0-9]+[dwmy]\\)")
7726 (delete-region (match-beginning 1) (match-end 1)))))))
7727 (setq task (buffer-string)))
7733 (defun org-sort (with-case)
7734 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
7735 Optional argument WITH-CASE means sort case-sensitively.
7736 With a double prefix argument, also remove duplicate entries."
7739 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
7740 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
7742 (org-call-with-arg 'org-sort-entries with-case))))
7744 (defun org-sort-remove-invisible (s)
7745 (remove-text-properties 0 (length s) org-rm-props s)
7746 (while (string-match org-bracket-link-regexp s)
7747 (setq s (replace-match (if (match-end 2)
7749 (match-string 1 s)) t t s)))
7752 (defvar org-priority-regexp) ; defined later in the file
7754 (defvar org-after-sorting-entries-or-items-hook nil
7755 "Hook that is run after a bunch of entries or items have been sorted.
7756 When children are sorted, the cursor is in the parent line when this
7757 hook gets called. When a region or a plain list is sorted, the cursor
7758 will be in the first entry of the sorted region/list.")
7760 (defun org-sort-entries
7761 (&optional with-case sorting-type getkey-func compare-func property)
7762 "Sort entries on a certain level of an outline tree.
7763 If there is an active region, the entries in the region are sorted.
7764 Else, if the cursor is before the first entry, sort the top-level items.
7765 Else, the children of the entry at point are sorted.
7767 Sorting can be alphabetically, numerically, by date/time as given by
7768 a time stamp, by a property or by priority.
7770 The command prompts for the sorting type unless it has been given to the
7771 function through the SORTING-TYPE argument, which needs to be a character,
7772 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?r ?R ?f ?F). Here is the
7773 precise meaning of each character:
7775 n Numerically, by converting the beginning of the entry/item to a number.
7776 a Alphabetically, ignoring the TODO keyword and the priority, if any.
7777 t By date/time, either the first active time stamp in the entry, or, if
7778 none exist, by the first inactive one.
7779 s By the scheduled date/time.
7780 d By deadline date/time.
7781 c By creation time, which is assumed to be the first inactive time stamp
7782 at the beginning of a line.
7783 p By priority according to the cookie.
7784 r By the value of a property.
7786 Capital letters will reverse the sort order.
7788 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
7789 called with point at the beginning of the record. It must return either
7790 a string or a number that should serve as the sorting key for that record.
7792 Comparing entries ignores case by default. However, with an optional argument
7793 WITH-CASE, the sorting considers case as well."
7795 (let ((case-func (if with-case 'identity 'downcase))
7796 start beg end stars re re2
7798 ;; Find beginning and end of region to sort
7800 ((org-region-active-p)
7801 ;; we will sort the region
7802 (setq end (region-end)
7804 (goto-char (region-beginning))
7805 (if (not (org-on-heading-p)) (outline-next-heading))
7806 (setq start (point)))
7807 ((or (org-on-heading-p)
7808 (condition-case nil (progn (org-back-to-heading) t) (error nil)))
7809 ;; we will sort the children of the current headline
7810 (org-back-to-heading)
7812 end (progn (org-end-of-subtree t t)
7813 (or (bolp) (insert "\n"))
7814 (org-back-over-empty-lines)
7819 (outline-next-heading))
7821 ;; we will sort the top-level entries in this file
7822 (goto-char (point-min))
7823 (or (org-on-heading-p) (outline-next-heading))
7824 (setq start (point))
7825 (goto-char (point-max))
7826 (beginning-of-line 1)
7827 (when (looking-at ".*?\\S-")
7828 ;; File ends in a non-white line
7831 (setq end (point-max))
7832 (setq what "top-level")
7837 (if (>= beg end) (error "Nothing to sort"))
7839 (looking-at "\\(\\*+\\)")
7840 (setq stars (match-string 1)
7841 re (concat "^" (regexp-quote stars) " +")
7842 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
7843 txt (buffer-substring beg end))
7844 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
7845 (if (and (not (equal stars "*")) (string-match re2 txt))
7846 (error "Region to sort contains a level above the first entry"))
7848 (unless sorting-type
7850 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
7851 [t]ime
[s]cheduled [d]eadline [c]reated
7852 A/N/T/S/D/C/P/O/F means reversed:"
7854 (setq sorting-type (read-char-exclusive))
7856 (and (= (downcase sorting-type) ?f)
7858 (org-icompleting-read "Sort using function: "
7859 obarray 'fboundp t nil nil))
7860 (setq getkey-func (intern getkey-func)))
7862 (and (= (downcase sorting-type) ?r)
7864 (org-icompleting-read "Property: "
7865 (mapcar 'list (org-buffer-property-keys t))
7868 (message "Sorting entries...")
7871 (narrow-to-region start end)
7872 (let ((dcst (downcase sorting-type))
7873 (case-fold-search nil)
7874 (now (current-time)))
7876 (/= dcst sorting-type)
7877 ;; This function moves to the beginning character of the "record" to
7880 (if (re-search-forward re nil t)
7881 (goto-char (match-beginning 0))
7882 (goto-char (point-max))))
7883 ;; This function moves to the last character of the "record" being
7888 (outline-forward-same-level 1)
7890 (goto-char (point-max))))))
7891 ;; This function returns the value that gets sorted against.
7895 (if (looking-at org-complex-heading-regexp)
7896 (string-to-number (match-string 4))
7899 (if (looking-at org-complex-heading-regexp)
7900 (funcall case-func (match-string 4))
7903 (let ((end (save-excursion (outline-next-heading) (point))))
7904 (if (or (re-search-forward org-ts-regexp end t)
7905 (re-search-forward org-ts-regexp-both end t))
7906 (org-time-string-to-seconds (match-string 0))
7907 (org-float-time now))))
7909 (let ((end (save-excursion (outline-next-heading) (point))))
7910 (if (re-search-forward
7911 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
7913 (org-time-string-to-seconds (match-string 0))
7914 (org-float-time now))))
7916 (let ((end (save-excursion (outline-next-heading) (point))))
7917 (if (re-search-forward org-scheduled-time-regexp end t)
7918 (org-time-string-to-seconds (match-string 1))
7919 (org-float-time now))))
7921 (let ((end (save-excursion (outline-next-heading) (point))))
7922 (if (re-search-forward org-deadline-time-regexp end t)
7923 (org-time-string-to-seconds (match-string 1))
7924 (org-float-time now))))
7926 (if (re-search-forward org-priority-regexp (point-at-eol) t)
7927 (string-to-char (match-string 2))
7928 org-default-priority))
7930 (or (org-entry-get nil property) ""))
7932 (if (looking-at org-complex-heading-regexp)
7933 (- 9999 (length (member (match-string 2)
7934 org-todo-keywords-1)))))
7938 (setq tmp (funcall getkey-func))
7939 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
7941 (error "Invalid key function `%s'" getkey-func)))
7942 (t (error "Invalid sorting type `%c'" sorting-type))))
7945 ((= dcst ?a) 'string<)
7946 ((= dcst ?f) compare-func)
7947 ((member dcst '(?p ?t ?s ?d ?c)) '<)
7949 (run-hooks 'org-after-sorting-entries-or-items-hook)
7950 (message "Sorting entries...done")))
7952 (defun org-do-sort (table what &optional with-case sorting-type)
7953 "Sort TABLE of WHAT according to SORTING-TYPE.
7954 The user will be prompted for the SORTING-TYPE if the call to this
7955 function does not specify it. WHAT is only for the prompt, to indicate
7956 what is being sorted. The sorting key will be extracted from
7957 the car of the elements of the table.
7958 If WITH-CASE is non-nil, the sorting will be case-sensitive."
7959 (unless sorting-type
7961 "Sort %s: [a]lphabetic. [n]umeric. [t]ime. A/N/T means reversed:"
7963 (setq sorting-type (read-char-exclusive)))
7964 (let ((dcst (downcase sorting-type))
7965 extractfun comparefun)
7966 ;; Define the appropriate functions
7969 (setq extractfun 'string-to-number
7970 comparefun (if (= dcst sorting-type) '< '>)))
7972 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
7973 (lambda(x) (downcase (org-sort-remove-invisible x))))
7974 comparefun (if (= dcst sorting-type)
7976 (lambda (a b) (and (not (string< a b))
7977 (not (string= a b)))))))
7981 (if (or (string-match org-ts-regexp x)
7982 (string-match org-ts-regexp-both x))
7984 (org-time-string-to-time (match-string 0 x)))
7986 comparefun (if (= dcst sorting-type) '< '>)))
7987 (t (error "Invalid sorting type `%c'" sorting-type)))
7989 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
7991 (lambda (a b) (funcall comparefun (car a) (car b))))))
7994 ;;; The orgstruct minor mode
7996 ;; Define a minor mode which can be used in other modes in order to
7997 ;; integrate the org-mode structure editing commands.
7999 ;; This is really a hack, because the org-mode structure commands use
8000 ;; keys which normally belong to the major mode. Here is how it
8001 ;; works: The minor mode defines all the keys necessary to operate the
8002 ;; structure commands, but wraps the commands into a function which
8003 ;; tests if the cursor is currently at a headline or a plain list
8004 ;; item. If that is the case, the structure command is used,
8005 ;; temporarily setting many Org-mode variables like regular
8006 ;; expressions for filling etc. However, when any of those keys is
8007 ;; used at a different location, function uses `key-binding' to look
8008 ;; up if the key has an associated command in another currently active
8009 ;; keymap (minor modes, major mode, global), and executes that
8010 ;; command. There might be problems if any of the keys is otherwise
8011 ;; used as a prefix key.
8013 ;; Another challenge is that the key binding for TAB can be tab or \C-i,
8014 ;; likewise the binding for RET can be return or \C-m. Orgtbl-mode
8015 ;; addresses this by checking explicitly for both bindings.
8017 (defvar orgstruct-mode-map (make-sparse-keymap)
8018 "Keymap for the minor `orgstruct-mode'.")
8020 (defvar org-local-vars nil
8021 "List of local variables, for use by `orgstruct-mode'.")
8024 (define-minor-mode orgstruct-mode
8025 "Toggle the minor mode `orgstruct-mode'.
8026 This mode is for using Org-mode structure commands in other
8027 modes. The following keys behave as if Org-mode were active, if
8028 the cursor is on a headline, or on a plain list item (both as
8029 defined by Org-mode).
8031 M-up Move entry/item up
8032 M-down Move entry/item down
8035 M-S-up Move entry/item up
8036 M-S-down Move entry/item down
8037 M-S-left Promote subtree
8038 M-S-right Demote subtree
8039 M-q Fill paragraph and items like in Org-mode
8041 C-c - Cycle list bullet
8042 TAB Cycle item visibility
8043 M-RET Insert new heading/item
8044 S-M-RET Insert new TODO heading / Checkbox item
8045 C-c C-c Set tags / toggle checkbox"
8046 nil " OrgStruct" nil
8047 (org-load-modules-maybe)
8048 (and (orgstruct-setup) (defun orgstruct-setup () nil)))
8051 (defun turn-on-orgstruct ()
8052 "Unconditionally turn on `orgstruct-mode'."
8055 (defun orgstruct++-mode (&optional arg)
8056 "Toggle `orgstruct-mode', the enhanced version of it.
8057 In addition to setting orgstruct-mode, this also exports all indentation
8058 and autofilling variables from org-mode into the buffer. It will also
8059 recognize item context in multiline items.
8060 Note that turning off orgstruct-mode will *not* remove the
8061 indentation/paragraph settings. This can only be done by refreshing the
8062 major mode, for example with \\[normal-mode]."
8064 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
8072 "^\\(paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
8073 (symbol-name (car x)))
8074 (setq var (car x) val (nth 1 x))
8075 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
8077 (org-set-local 'orgstruct-is-++ t))))
8079 (defvar orgstruct-is-++ nil
8080 "Is `orgstruct-mode' in ++ version in the current-buffer?")
8081 (make-variable-buffer-local 'orgstruct-is-++)
8084 (defun turn-on-orgstruct++ ()
8085 "Unconditionally turn on `orgstruct++-mode'."
8086 (orgstruct++-mode 1))
8088 (defun orgstruct-error ()
8089 "Error when there is no default binding for a structure key."
8091 (error "This key has no function outside structure elements"))
8093 (defun orgstruct-setup ()
8094 "Setup orgstruct keymaps."
8098 '([(meta up)] org-metaup)
8099 '([(meta down)] org-metadown)
8100 '([(meta left)] org-metaleft)
8101 '([(meta right)] org-metaright)
8102 '([(meta shift up)] org-shiftmetaup)
8103 '([(meta shift down)] org-shiftmetadown)
8104 '([(meta shift left)] org-shiftmetaleft)
8105 '([(meta shift right)] org-shiftmetaright)
8106 '([?\e (up)] org-metaup)
8107 '([?\e (down)] org-metadown)
8108 '([?\e (left)] org-metaleft)
8109 '([?\e (right)] org-metaright)
8110 '([?\e (shift up)] org-shiftmetaup)
8111 '([?\e (shift down)] org-shiftmetadown)
8112 '([?\e (shift left)] org-shiftmetaleft)
8113 '([?\e (shift right)] org-shiftmetaright)
8114 '([(shift up)] org-shiftup)
8115 '([(shift down)] org-shiftdown)
8116 '([(shift left)] org-shiftleft)
8117 '([(shift right)] org-shiftright)
8118 '("\C-c\C-c" org-ctrl-c-ctrl-c)
8119 '("\M-q" fill-paragraph)
8121 '("\C-c-" org-cycle-list-bullet)))
8123 (while (setq elt (pop bindings))
8124 (setq nfunc (1+ nfunc))
8125 (setq key (org-key (car elt))
8127 cmd (orgstruct-make-binding fun nfunc key))
8128 (org-defkey orgstruct-mode-map key cmd))
8130 ;; Special treatment needed for TAB and RET
8131 (org-defkey orgstruct-mode-map [(tab)]
8132 (orgstruct-make-binding 'org-cycle 102 [(tab)] "\C-i"))
8133 (org-defkey orgstruct-mode-map "\C-i"
8134 (orgstruct-make-binding 'org-cycle 103 "\C-i" [(tab)]))
8136 (org-defkey orgstruct-mode-map "\M-\C-m"
8137 (orgstruct-make-binding 'org-insert-heading 105
8138 "\M-\C-m" [(meta return)]))
8139 (org-defkey orgstruct-mode-map [(meta return)]
8140 (orgstruct-make-binding 'org-insert-heading 106
8141 [(meta return)] "\M-\C-m"))
8143 (org-defkey orgstruct-mode-map [(shift meta return)]
8144 (orgstruct-make-binding 'org-insert-todo-heading 107
8145 [(meta return)] "\M-\C-m"))
8147 (org-defkey orgstruct-mode-map "\e\C-m"
8148 (orgstruct-make-binding 'org-insert-heading 108
8149 "\e\C-m" [?\e (return)]))
8150 (org-defkey orgstruct-mode-map [?\e (return)]
8151 (orgstruct-make-binding 'org-insert-heading 109
8152 [?\e (return)] "\e\C-m"))
8153 (org-defkey orgstruct-mode-map [?\e (shift return)]
8154 (orgstruct-make-binding 'org-insert-todo-heading 110
8155 [?\e (return)] "\e\C-m"))
8157 (unless org-local-vars
8158 (setq org-local-vars (org-get-local-variables)))
8162 (defun orgstruct-make-binding (fun n &rest keys)
8163 "Create a function for binding in the structure minor mode.
8164 FUN is the command to call inside a table. N is used to create a unique
8165 command name. KEYS are keys that should be checked in for a command
8166 to execute outside of tables."
8169 (intern (concat "orgstruct-hijacker-command-" (int-to-string n)))
8171 (concat "In Structure, run `" (symbol-name fun) "'.\n"
8172 "Outside of structure, run the binding of `"
8173 (mapconcat (lambda (x) (format "%s" x)) keys "' or `")
8177 `(org-context-p 'headline 'item
8178 (and orgstruct-is-++
8179 ,(and (memq fun '(org-insert-heading org-insert-todo-heading)) t)
8181 (list 'org-run-like-in-org-mode (list 'quote fun))
8182 (list 'let '(orgstruct-mode)
8183 (list 'call-interactively
8186 (list 'key-binding k))
8188 '('orgstruct-error))))))))
8190 (defun org-context-p (&rest contexts)
8191 "Check if local context is any of CONTEXTS.
8192 Possible values in the list of contexts are `table', `headline', and `item'."
8193 (let ((pos (point)))
8194 (goto-char (point-at-bol))
8195 (prog1 (or (and (memq 'table contexts)
8196 (looking-at "[ \t]*|"))
8197 (and (memq 'headline contexts)
8198 ;;????????? (looking-at "\\*+"))
8199 (looking-at outline-regexp))
8200 (and (memq 'item contexts)
8201 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
8202 (and (memq 'item-body contexts)
8206 (defun org-get-local-variables ()
8207 "Return a list of all local variables in an org-mode buffer."
8209 (with-current-buffer (get-buffer-create "*Org tmp*")
8212 (setq varlist (buffer-local-variables)))
8213 (kill-buffer "*Org tmp*")
8220 (list (car x) (list 'quote (cdr x)))))
8222 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
8223 (symbol-name (car x)))
8227 (defun org-clone-local-variables (from-buffer &optional regexp)
8228 "Clone local variables from FROM-BUFFER.
8229 Optional argument REGEXP selects variables to clone."
8232 (and (symbolp (car pair))
8234 (string-match regexp (symbol-name (car pair))))
8235 (set (make-local-variable (car pair))
8237 (buffer-local-variables from-buffer)))
8240 (defun org-run-like-in-org-mode (cmd)
8241 "Run a command, pretending that the current buffer is in Org-mode.
8242 This will temporarily bind local variables that are typically bound in
8243 Org-mode to the values they have in Org-mode, and then interactively
8245 (org-load-modules-maybe)
8246 (unless org-local-vars
8247 (setq org-local-vars (org-get-local-variables)))
8248 (eval (list 'let org-local-vars
8249 (list 'call-interactively (list 'quote cmd)))))
8253 (defun org-get-category (&optional pos force-refresh)
8254 "Get the category applying to position POS."
8255 (if force-refresh (org-refresh-category-properties))
8256 (let ((pos (or pos (point))))
8257 (or (get-text-property pos 'org-category)
8258 (progn (org-refresh-category-properties)
8259 (get-text-property pos 'org-category)))))
8261 (defun org-refresh-category-properties ()
8262 "Refresh category text properties in the buffer."
8263 (let ((def-cat (cond
8264 ((null org-category)
8265 (if buffer-file-name
8266 (file-name-sans-extension
8267 (file-name-nondirectory buffer-file-name))
8269 ((symbolp org-category) (symbol-name org-category))
8271 beg end cat pos optionp)
8276 (goto-char (point-min))
8277 (put-text-property (point) (point-max) 'org-category def-cat)
8278 (while (re-search-forward
8279 "^\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
8280 (setq pos (match-end 0)
8281 optionp (equal (char-after (match-beginning 0)) ?#)
8282 cat (org-trim (match-string 2)))
8284 (setq beg (point-at-bol) end (point-max))
8285 (org-back-to-heading t)
8286 (setq beg (point) end (org-end-of-subtree t t)))
8287 (put-text-property beg end 'org-category cat)
8288 (goto-char pos)))))))
8293 ;;; Link abbreviations
8295 (defun org-link-expand-abbrev (link)
8296 "Apply replacements as defined in `org-link-abbrev-alist."
8297 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
8298 (let* ((key (match-string 1 link))
8299 (as (or (assoc key org-link-abbrev-alist-local)
8300 (assoc key org-link-abbrev-alist)))
8301 (tag (and (match-end 2) (match-string 3 link)))
8307 ((symbolp rpl) (funcall rpl tag))
8308 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
8309 ((string-match "%h" rpl)
8310 (replace-match (url-hexify-string (or tag "")) t t rpl))
8311 (t (concat rpl tag)))))
8314 ;;; Storing and inserting links
8316 (defvar org-insert-link-history nil
8317 "Minibuffer history for links inserted with `org-insert-link'.")
8319 (defvar org-stored-links nil
8320 "Contains the links stored with `org-store-link'.")
8322 (defvar org-store-link-plist nil
8323 "Plist with info about the most recently link created with `org-store-link'.")
8325 (defvar org-link-protocols nil
8326 "Link protocols added to Org-mode using `org-add-link-type'.")
8328 (defvar org-store-link-functions nil
8329 "List of functions that are called to create and store a link.
8330 Each function will be called in turn until one returns a non-nil
8331 value. Each function should check if it is responsible for creating
8332 this link (for example by looking at the major mode).
8333 If not, it must exit and return nil.
8334 If yes, it should return a non-nil value after a calling
8335 `org-store-link-props' with a list of properties and values.
8336 Special properties are:
8338 :type The link prefix, like \"http\". This must be given.
8339 :link The link, like \"http://www.astro.uva.nl/~dominik\".
8340 This is obligatory as well.
8341 :description Optional default description for the second pair
8342 of brackets in an Org-mode link. The user can still change
8343 this when inserting this link into an Org-mode buffer.
8345 In addition to these, any additional properties can be specified
8346 and then used in remember templates.")
8348 (defun org-add-link-type (type &optional follow export)
8349 "Add TYPE to the list of `org-link-types'.
8350 Re-compute all regular expressions depending on `org-link-types'
8352 FOLLOW and EXPORT are two functions.
8354 FOLLOW should take the link path as the single argument and do whatever
8355 is necessary to follow the link, for example find a file or display
8358 EXPORT should format the link path for export to one of the export formats.
8359 It should be a function accepting three arguments:
8361 path the path of the link, the text after the prefix (like \"http:\")
8362 desc the description of the link, if any, or a description added by
8363 org-export-normalize-links if there is none
8364 format the export format, a symbol like `html' or `latex' or `ascii'..
8366 The function may use the FORMAT information to return different values
8367 depending on the format. The return value will be put literally into
8368 the exported file. If the return value is nil, this means Org should
8369 do what it normally does with links which do not have EXPORT defined.
8371 Org-mode has a built-in default for exporting links. If you are happy with
8372 this default, there is no need to define an export function for the link
8373 type. For a simple example of an export function, see `org-bbdb.el'."
8374 (add-to-list 'org-link-types type t)
8375 (org-make-link-regexps)
8376 (if (assoc type org-link-protocols)
8377 (setcdr (assoc type org-link-protocols) (list follow export))
8378 (push (list type follow export) org-link-protocols)))
8380 (defvar org-agenda-buffer-name)
8383 (defun org-store-link (arg)
8384 "\\<org-mode-map>Store an org-link to the current location.
8385 This link is added to `org-stored-links' and can later be inserted
8386 into an org-buffer with \\[org-insert-link].
8388 For some link types, a prefix arg is interpreted:
8389 For links to usenet articles, arg negates `org-gnus-prefer-web-links'.
8390 For file links, arg negates `org-context-in-file-links'."
8392 (org-load-modules-maybe)
8393 (setq org-store-link-plist nil) ; reset
8394 (org-with-limited-levels
8395 (let (link cpltxt desc description search txt custom-id agenda-link)
8398 ((run-hook-with-args-until-success 'org-store-link-functions)
8399 (setq link (plist-get org-store-link-plist :link)
8400 desc (or (plist-get org-store-link-plist :description) link)))
8402 ((equal (buffer-name) "*Org Edit Src Example*")
8404 (while (or (not label)
8408 (goto-char (point-min))
8410 (regexp-quote (format org-coderef-label-format label))
8412 (when label (message "Label exists already") (sit-for 2))
8413 (setq label (read-string "Code line label: " label)))
8415 (setq link (format org-coderef-label-format label))
8416 (setq gc (- 79 (length link)))
8417 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
8419 (setq link (concat "(" label ")") desc nil)))
8421 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
8422 ;; We are in the agenda, link to referenced location
8423 (let ((m (or (get-text-property (point) 'org-hd-marker)
8424 (get-text-property (point) 'org-marker))))
8426 (org-with-point-at m
8429 (call-interactively 'org-store-link)
8430 (org-store-link nil)))))))
8432 ((eq major-mode 'calendar-mode)
8433 (let ((cd (calendar-cursor-to-date)))
8436 (car org-time-stamp-formats)
8438 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
8440 (org-store-link-props :type "calendar" :date cd)))
8442 ((eq major-mode 'w3-mode)
8443 (setq cpltxt (if (and (buffer-name)
8444 (not (string-match "Untitled" (buffer-name))))
8447 link (org-make-link (url-view-url t)))
8448 (org-store-link-props :type "w3" :url (url-view-url t)))
8450 ((eq major-mode 'w3m-mode)
8451 (setq cpltxt (or w3m-current-title w3m-current-url)
8452 link (org-make-link w3m-current-url))
8453 (org-store-link-props :type "w3m" :url (url-view-url t)))
8455 ((setq search (run-hook-with-args-until-success
8456 'org-create-file-search-functions))
8457 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
8459 (setq cpltxt (or description link)))
8461 ((eq major-mode 'image-mode)
8462 (setq cpltxt (concat "file:"
8463 (abbreviate-file-name buffer-file-name))
8464 link (org-make-link cpltxt))
8465 (org-store-link-props :type "image" :file buffer-file-name))
8467 ((eq major-mode 'dired-mode)
8468 ;; link to the file in the current line
8469 (let ((file (dired-get-filename nil t)))
8471 (abbreviate-file-name
8472 (expand-file-name (dired-get-filename nil t)))
8473 ;; otherwise, no file so use current directory.
8475 (setq cpltxt (concat "file:" file)
8476 link (org-make-link cpltxt))))
8478 ((and (buffer-file-name (buffer-base-buffer)) (org-mode-p))
8479 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
8481 ((org-in-regexp "<<\\(.*?\\)>>")
8484 (abbreviate-file-name
8485 (buffer-file-name (buffer-base-buffer)))
8486 "::" (match-string 1))
8487 link (org-make-link cpltxt)))
8488 ((and (featurep 'org-id)
8489 (or (eq org-link-to-org-use-id t)
8490 (and (eq org-link-to-org-use-id 'create-if-interactive)
8492 (and (eq org-link-to-org-use-id 'create-if-interactive-and-no-custom-id)
8495 (and org-link-to-org-use-id
8496 (org-entry-get nil "ID"))))
8497 ;; We can make a link using the ID.
8498 (setq link (condition-case nil
8499 (prog1 (org-id-store-link)
8500 (setq desc (plist-get org-store-link-plist
8503 ;; probably before first headline, link to file only
8505 (abbreviate-file-name
8506 (buffer-file-name (buffer-base-buffer))))))))
8508 ;; Just link to current headline
8509 (setq cpltxt (concat "file:"
8510 (abbreviate-file-name
8511 (buffer-file-name (buffer-base-buffer)))))
8512 ;; Add a context search string
8513 (when (org-xor org-context-in-file-links arg)
8515 ((org-on-heading-p) nil)
8516 ((org-region-active-p)
8517 (buffer-substring (region-beginning) (region-end)))
8519 (when (or (null txt) (string-match "\\S-" txt))
8523 (org-make-org-heading-search-string txt)
8525 desc (or (nth 4 (ignore-errors
8526 (org-heading-components))) "NONE"))))
8527 (if (string-match "::\\'" cpltxt)
8528 (setq cpltxt (substring cpltxt 0 -2)))
8529 (setq link (org-make-link cpltxt)))))
8531 ((buffer-file-name (buffer-base-buffer))
8532 ;; Just link to this file here.
8533 (setq cpltxt (concat "file:"
8534 (abbreviate-file-name
8535 (buffer-file-name (buffer-base-buffer)))))
8536 ;; Add a context string
8537 (when (org-xor org-context-in-file-links arg)
8538 (setq txt (if (org-region-active-p)
8539 (buffer-substring (region-beginning) (region-end))
8540 (buffer-substring (point-at-bol) (point-at-eol))))
8541 ;; Only use search option if there is some text.
8542 (when (string-match "\\S-" txt)
8544 (concat cpltxt "::" (org-make-org-heading-search-string txt))
8546 (setq link (org-make-link cpltxt)))
8549 (error "Cannot link to a buffer which is not visiting a file"))
8551 (t (setq link nil)))
8553 (if (consp link) (setq cpltxt (car link) link (cdr link)))
8554 (setq link (or link cpltxt)
8555 desc (or desc cpltxt))
8556 (if (equal desc "NONE") (setq desc nil))
8558 (if (and (or (interactive-p) executing-kbd-macro) link)
8560 (setq org-stored-links
8561 (cons (list link desc) org-stored-links))
8562 (message "Stored: %s" (or desc link))
8564 (setq link (concat "file:" (abbreviate-file-name (buffer-file-name))
8566 (setq org-stored-links
8567 (cons (list link desc) org-stored-links))))
8568 (or agenda-link (and link (org-make-link-string link desc)))))))
8570 (defun org-store-link-props (&rest plist)
8571 "Store link properties, extract names and addresses."
8573 (when (setq x (plist-get plist :from))
8574 (setq adr (mail-extract-address-components x))
8575 (setq plist (plist-put plist :fromname (car adr)))
8576 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
8577 (when (setq x (plist-get plist :to))
8578 (setq adr (mail-extract-address-components x))
8579 (setq plist (plist-put plist :toname (car adr)))
8580 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
8581 (let ((from (plist-get plist :from))
8582 (to (plist-get plist :to)))
8583 (when (and from to org-from-is-user-regexp)
8585 (plist-put plist :fromto
8586 (if (string-match org-from-is-user-regexp from)
8588 (concat "from %f"))))))
8589 (setq org-store-link-plist plist))
8591 (defun org-add-link-props (&rest plist)
8592 "Add these properties to the link property list."
8595 (setq key (pop plist) value (pop plist))
8596 (setq org-store-link-plist
8597 (plist-put org-store-link-plist key value)))))
8599 (defun org-email-link-description (&optional fmt)
8600 "Return the description part of an email link.
8601 This takes information from `org-store-link-plist' and formats it
8602 according to FMT (default from `org-email-link-description-format')."
8603 (setq fmt (or fmt org-email-link-description-format))
8604 (let* ((p org-store-link-plist)
8605 (to (plist-get p :toaddress))
8606 (from (plist-get p :fromaddress))
8609 (cons "%c" (plist-get p :fromto))
8610 (cons "%F" (plist-get p :from))
8611 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
8612 (cons "%T" (plist-get p :to))
8613 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
8614 (cons "%s" (plist-get p :subject))
8615 (cons "%d" (plist-get p :date))
8616 (cons "%m" (plist-get p :message-id)))))
8617 (when (string-match "%c" fmt)
8618 ;; Check if the user wrote this message
8619 (if (and org-from-is-user-regexp from to
8620 (save-match-data (string-match org-from-is-user-regexp from)))
8621 (setq fmt (replace-match "to %t" t t fmt))
8622 (setq fmt (replace-match "from %f" t t fmt))))
8623 (org-replace-escapes fmt table)))
8625 (defun org-make-org-heading-search-string (&optional string heading)
8626 "Make search string for STRING or current headline."
8628 (let ((s (or string (org-get-heading)))
8629 (lines org-context-in-file-links))
8630 (unless (and string (not heading))
8631 ;; We are using a headline, clean up garbage in there.
8632 (if (string-match org-todo-regexp s)
8633 (setq s (replace-match "" t t s)))
8634 (if (string-match (org-re ":[[:alnum:]_@#%:]+:[ \t]*$") s)
8635 (setq s (replace-match "" t t s)))
8636 (setq s (org-trim s))
8637 (if (string-match (concat "^\\(" org-quote-string "\\|"
8638 org-comment-string "\\)") s)
8639 (setq s (replace-match "" t t s)))
8640 (while (string-match org-ts-regexp s)
8641 (setq s (replace-match "" t t s))))
8642 (or string (setq s (concat "*" s))) ; Add * for headlines
8643 (when (and string (integerp lines) (> lines 0))
8644 (let ((slines (org-split-string s "\n")))
8645 (when (< lines (length slines))
8648 (reverse (nthcdr (- (length slines) lines)
8649 (reverse slines))) "\n")))))
8650 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
8652 (defun org-make-link (&rest strings)
8653 "Concatenate STRINGS."
8654 (apply 'concat strings))
8656 (defun org-make-link-string (link &optional description)
8657 "Make a link with brackets, consisting of LINK and DESCRIPTION."
8658 (unless (string-match "\\S-" link)
8659 (error "Empty link"))
8660 (when (and description
8661 (stringp description)
8662 (not (string-match "\\S-" description)))
8663 (setq description nil))
8664 (when (stringp description)
8665 ;; Remove brackets from the description, they are fatal.
8666 (while (string-match "\\[" description)
8667 (setq description (replace-match "{" t t description)))
8668 (while (string-match "\\]" description)
8669 (setq description (replace-match "}" t t description))))
8670 (when (equal (org-link-escape link) description)
8671 ;; No description needed, it is identical
8672 (setq description nil))
8673 (when (and (not description)
8674 (not (equal link (org-link-escape link))))
8675 (setq description (org-extract-attributes link)))
8676 (setq link (if (string-match org-link-types-re link)
8677 (concat (match-string 1 link)
8678 (org-link-escape (substring link (match-end 1))))
8679 (org-link-escape link)))
8680 (concat "[[" link "]"
8681 (if description (concat "[" description "]") "")
8684 (defconst org-link-escape-chars
8685 '(?\ ?\[ ?\] ?\; ?\= ?\+)
8686 "List of characters that should be escaped in link.
8687 This is the list that is used for internal purposes.")
8689 (defvar org-url-encoding-use-url-hexify nil)
8691 (defconst org-link-escape-chars-browser
8693 "List of escapes for characters that are problematic in links.
8694 This is the list that is used before handing over to the browser.")
8696 (defun org-link-escape (text &optional table merge)
8697 "Return percent escaped representation of TEXT.
8698 TEXT is a string with the text to escape.
8699 Optional argument TABLE is a list with characters that should be
8700 escaped. When nil, `org-link-escape-chars' is used.
8701 If optional argument MERGE is set, merge TABLE into
8702 `org-link-escape-chars'."
8703 (if (and org-url-encoding-use-url-hexify (not table))
8704 (url-hexify-string text)
8707 (mapc (lambda (defchr)
8708 (unless (member defchr table)
8709 (setq table (cons defchr table)))) org-link-escape-chars))
8711 (setq table org-link-escape-chars)))
8714 (if (or (member char table)
8715 (< char 32) (= char 37) (> char 126))
8716 (mapconcat (lambda (sequence-element)
8717 (format "%%%.2X" sequence-element))
8718 (or (encode-coding-char char 'utf-8)
8719 (error "Unable to percent escape character: %s"
8720 (char-to-string char))) "")
8721 (char-to-string char))) text "")))
8723 (defun org-link-unescape (str)
8724 "Unhex hexified unicode strings as returned from the JavaScript function
8725 encodeURIComponent. E.g. `%C3%B6' is the german Umlaut `ö'."
8726 (unless (and (null str) (string= "" str))
8727 (let ((pos 0) (case-fold-search t) unhexed)
8728 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
8729 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
8730 (setq str (replace-match unhexed t t str))
8731 (setq pos (+ pos (length unhexed))))))
8734 (defun org-link-unescape-compound (hex)
8735 "Unhexify unicode hex-chars. E.g. `%C3%B6' is the German Umlaut `ö'.
8736 Note: this function also decodes single byte encodings like
8737 `%E1' (\"á\") if not followed by another `%[A-F0-9]{2}' group."
8739 (let* ((bytes (cdr (split-string hex "%")))
8744 (let* ((val (string-to-number (pop bytes) 16))
8748 ((>= val 252) (cons 6 252))
8749 ((>= val 248) (cons 5 248))
8750 ((>= val 240) (cons 4 240))
8751 ((>= val 224) (cons 3 224))
8752 ((>= val 192) (cons 2 192))
8755 (if (>= val 192) (setq eat (car shift-xor)))
8756 (setq val (logxor val (cdr shift-xor)))
8757 (setq sum (+ (lsh sum (car shift-xor)) val))
8758 (if (> eat 0) (setq eat (- eat 1)))
8760 ((= 0 eat) ;multi byte
8761 (setq ret (concat ret (org-char-to-string sum)))
8763 ((not bytes) ; single byte(s)
8764 (setq ret (org-link-unescape-single-byte-sequence hex))))
8765 )) ;; end (while bytes
8768 (defun org-link-unescape-single-byte-sequence (hex)
8769 "Unhexify hex-encoded single byte character sequences."
8770 (mapconcat (lambda (byte)
8771 (char-to-string (string-to-number byte 16)))
8772 (cdr (split-string hex "%")) ""))
8774 (defun org-xor (a b)
8778 (defun org-fixup-message-id-for-http (s)
8779 "Replace special characters in a message id, so it can be used in an http query."
8780 (when (string-match "%" s)
8781 (setq s (mapconcat (lambda (c)
8784 (char-to-string c)))
8786 (while (string-match "<" s)
8787 (setq s (replace-match "%3C" t t s)))
8788 (while (string-match ">" s)
8789 (setq s (replace-match "%3E" t t s)))
8790 (while (string-match "@" s)
8791 (setq s (replace-match "%40" t t s)))
8795 (defun org-insert-link-global ()
8796 "Insert a link like Org-mode does.
8797 This command can be called in any mode to insert a link in Org-mode syntax."
8799 (org-load-modules-maybe)
8800 (org-run-like-in-org-mode 'org-insert-link))
8802 (defun org-insert-link (&optional complete-file link-location)
8803 "Insert a link. At the prompt, enter the link.
8805 Completion can be used to insert any of the link protocol prefixes like
8808 The history can be used to select a link previously stored with
8809 `org-store-link'. When the empty string is entered (i.e. if you just
8810 press RET at the prompt), the link defaults to the most recently
8811 stored link. As SPC triggers completion in the minibuffer, you need to
8812 use M-SPC or C-q SPC to force the insertion of a space character.
8814 You will also be prompted for a description, and if one is given, it will
8815 be displayed in the buffer instead of the link.
8817 If there is already a link at point, this command will allow you to edit link
8818 and description parts.
8820 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
8821 be selected using completion. The path to the file will be relative to the
8822 current directory if the file is in the current directory or a subdirectory.
8823 Otherwise, the link will be the absolute path as completed in the minibuffer
8824 \(i.e. normally ~/path/to/file). You can configure this behavior using the
8825 option `org-link-file-path-type'.
8827 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
8828 the current directory or below.
8830 With three \\[universal-argument] prefixes, negate the meaning of
8831 `org-keep-stored-link-after-insertion'.
8833 If `org-make-link-description-function' is non-nil, this function will be
8834 called with the link target, and the result will be the default
8837 If the LINK-LOCATION parameter is non-nil, this value will be
8838 used as the link location instead of reading one interactively."
8840 (let* ((wcf (current-window-configuration))
8841 (region (if (org-region-active-p)
8842 (buffer-substring (region-beginning) (region-end))))
8843 (remove (and region (list (region-beginning) (region-end))))
8845 tmphist ; byte-compile incorrectly complains about this
8846 (link link-location)
8847 entry file all-prefixes)
8849 (link-location) ; specified by arg, just use it.
8850 ((org-in-regexp org-bracket-link-regexp 1)
8851 ;; We do have a link at point, and we are going to edit it.
8852 (setq remove (list (match-beginning 0) (match-end 0)))
8853 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
8854 (setq link (read-string "Link: "
8856 (org-match-string-no-properties 1)))))
8857 ((or (org-in-regexp org-angle-link-re)
8858 (org-in-regexp org-plain-link-re))
8859 ;; Convert to bracket link
8860 (setq remove (list (match-beginning 0) (match-end 0))
8861 link (read-string "Link: "
8862 (org-remove-angle-brackets (match-string 0)))))
8863 ((member complete-file '((4) (16)))
8864 ;; Completing read for file names.
8865 (setq link (org-file-complete-link complete-file)))
8867 ;; Read link, with completion for stored links.
8868 (with-output-to-temp-buffer "*Org Links*"
8869 (princ "Insert a link.
8870 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
8871 (when org-stored-links
8872 (princ "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
8875 (if (nth 1 x) (concat (car x) " (" (nth 1 x) ")") (car x)))
8876 (reverse org-stored-links) "\n"))))
8877 (let ((cw (selected-window)))
8878 (select-window (get-buffer-window "*Org Links*" 'visible))
8879 (setq truncate-lines t)
8880 (unless (pos-visible-in-window-p (point-max))
8881 (org-fit-window-to-buffer))
8882 (and (window-live-p cw) (select-window cw)))
8883 ;; Fake a link history, containing the stored links.
8884 (setq tmphist (append (mapcar 'car org-stored-links)
8885 org-insert-link-history))
8886 (setq all-prefixes (append (mapcar 'car org-link-abbrev-alist-local)
8887 (mapcar 'car org-link-abbrev-alist)
8892 (let ((org-completion-use-ido nil)
8893 (org-completion-use-iswitchb nil))
8894 (org-completing-read
8897 (mapcar (lambda (x) (list (concat x ":")))
8899 (mapcar 'car org-stored-links))
8902 (car (car org-stored-links)))))
8903 (if (not (string-match "\\S-" link))
8904 (error "No link selected"))
8905 (if (or (member link all-prefixes)
8906 (and (equal ":" (substring link -1))
8907 (member (substring link 0 -1) all-prefixes)
8908 (setq link (substring link 0 -1))))
8909 (setq link (org-link-try-special-completion link))))
8910 (set-window-configuration wcf)
8911 (kill-buffer "*Org Links*"))
8912 (setq entry (assoc link org-stored-links))
8913 (or entry (push link org-insert-link-history))
8914 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
8915 (not org-keep-stored-link-after-insertion))
8916 (setq org-stored-links (delq (assoc link org-stored-links)
8918 (setq desc (or desc (nth 1 entry)))))
8920 (if (string-match org-plain-link-re link)
8921 ;; URL-like link, normalize the use of angular brackets.
8922 (setq link (org-make-link (org-remove-angle-brackets link))))
8924 ;; Check if we are linking to the current file with a search option
8925 ;; If yes, simplify the link by using only the search option.
8926 (when (and buffer-file-name
8927 (string-match "^file:\\(.+?\\)::\\([^>]+\\)" link))
8928 (let* ((path (match-string 1 link))
8929 (case-fold-search nil)
8930 (search (match-string 2 link)))
8932 (if (equal (file-truename buffer-file-name) (file-truename path))
8933 ;; We are linking to this same file, with a search option
8934 (setq link search)))))
8936 ;; Check if we can/should use a relative path. If yes, simplify the link
8937 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
8938 (let* ((type (match-string 1 link))
8939 (path (match-string 2 link))
8941 (case-fold-search nil))
8943 ((or (eq org-link-file-path-type 'absolute)
8944 (equal complete-file '(16)))
8945 (setq path (abbreviate-file-name (expand-file-name path))))
8946 ((eq org-link-file-path-type 'noabbrev)
8947 (setq path (expand-file-name path)))
8948 ((eq org-link-file-path-type 'relative)
8949 (setq path (file-relative-name path)))
8952 (if (string-match (concat "^" (regexp-quote
8954 (file-name-as-directory
8955 default-directory))))
8956 (expand-file-name path))
8957 ;; We are linking a file with relative path name.
8958 (setq path (substring (expand-file-name path)
8960 (setq path (abbreviate-file-name (expand-file-name path)))))))
8961 (setq link (concat type path))
8962 (if (equal desc origpath)
8965 (if org-make-link-description-function
8966 (setq desc (funcall org-make-link-description-function link desc)))
8968 (setq desc (read-string "Description: " desc))
8969 (unless (string-match "\\S-" desc) (setq desc nil))
8970 (if remove (apply 'delete-region remove))
8971 (insert (org-make-link-string link desc))))
8973 (defun org-link-try-special-completion (type)
8974 "If there is completion support for link type TYPE, offer it."
8975 (let ((fun (intern (concat "org-" type "-complete-link"))))
8978 (read-string "Link (no completion support): " (concat type ":")))))
8980 (defun org-file-complete-link (&optional arg)
8981 "Create a file link using completion."
8983 (setq file (read-file-name "File: "))
8984 (let ((pwd (file-name-as-directory (expand-file-name ".")))
8985 (pwd1 (file-name-as-directory (abbreviate-file-name
8986 (expand-file-name ".")))))
8989 (setq link (org-make-link
8991 (abbreviate-file-name (expand-file-name file)))))
8992 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
8993 (setq link (org-make-link "file:" (match-string 1 file))))
8994 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
8995 (expand-file-name file))
8996 (setq link (org-make-link
8997 "file:" (match-string 1 (expand-file-name file)))))
8998 (t (setq link (org-make-link "file:" file)))))
9001 (defun org-completing-read (&rest args)
9002 "Completing-read with SPACE being a normal character."
9003 (let ((minibuffer-local-completion-map
9004 (copy-keymap minibuffer-local-completion-map)))
9005 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
9006 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
9007 (apply 'org-icompleting-read args)))
9009 (defun org-completing-read-no-i (&rest args)
9010 (let (org-completion-use-ido org-completion-use-iswitchb)
9011 (apply 'org-completing-read args)))
9013 (defun org-iswitchb-completing-read (prompt choices &rest args)
9014 "Use iswitch as a completing-read replacement to choose from choices.
9015 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
9017 (let* ((iswitchb-use-virtual-buffers nil)
9018 (iswitchb-make-buflist-hook
9020 (setq iswitchb-temp-buflist choices))))
9021 (iswitchb-read-buffer prompt)))
9023 (defun org-icompleting-read (&rest args)
9024 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
9025 (org-without-partial-completion
9026 (if (and org-completion-use-ido
9027 (fboundp 'ido-completing-read)
9028 (boundp 'ido-mode) ido-mode
9029 (listp (second args)))
9030 (let ((ido-enter-matching-directory nil))
9031 (apply 'ido-completing-read (concat (car args))
9032 (if (consp (car (nth 1 args)))
9033 (mapcar 'car (nth 1 args))
9036 (if (and org-completion-use-iswitchb
9037 (boundp 'iswitchb-mode) iswitchb-mode
9038 (listp (second args)))
9039 (apply 'org-iswitchb-completing-read (concat (car args))
9040 (if (consp (car (nth 1 args)))
9041 (mapcar 'car (nth 1 args))
9044 (apply 'completing-read args)))))
9046 (defun org-extract-attributes (s)
9047 "Extract the attributes cookie from a string and set as text property."
9048 (let (a attr (start 0) key value)
9050 (when (string-match "{{\\([^}]+\\)}}$" s)
9051 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
9052 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
9053 (setq key (match-string 1 a) value (match-string 2 a)
9055 attr (plist-put attr (intern key) value))))
9056 (org-add-props s nil 'org-attr attr))
9059 (defun org-extract-attributes-from-string (tag)
9060 (let (key value attr)
9061 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"\\s-?" tag)
9062 (setq key (match-string 1 tag) value (match-string 2 tag)
9063 tag (replace-match "" t t tag)
9064 attr (plist-put attr (intern key) value)))
9067 (defun org-attributes-to-string (plist)
9068 "Format a property list into an HTML attribute list."
9069 (let ((s "") key value)
9071 (setq key (pop plist) value (pop plist))
9073 (setq s (concat s " " (symbol-name key) "=\"" value "\""))))
9076 ;;; Opening/following a link
9078 (defvar org-link-search-failed nil)
9080 (defvar org-open-link-functions nil
9081 "Hook for functions finding a plain text link.
9082 These functions must take a single argument, the link content.
9083 They will be called for links that look like [[link text][description]]
9084 when LINK TEXT does not have a protocol like \"http:\" and does not look
9085 like a filename (e.g. \"./blue.png\").
9087 These functions will be called *before* Org attempts to resolve the
9088 link by doing text searches in the current buffer - so if you want a
9089 link \"[[target]]\" to still find \"<<target>>\", your function should
9090 handle this as a special case.
9092 When the function does handle the link, it must return a non-nil value.
9093 If it decides that it is not responsible for this link, it must return
9094 nil to indicate that that Org-mode can continue with other options
9095 like exact and fuzzy text search.")
9097 (defun org-next-link ()
9098 "Move forward to the next link.
9099 If the link is in hidden text, expose it."
9101 (when (and org-link-search-failed (eq this-command last-command))
9102 (goto-char (point-min))
9103 (message "Link search wrapped back to beginning of buffer"))
9104 (setq org-link-search-failed nil)
9105 (let* ((pos (point))
9107 (a (assoc :link ct)))
9108 (if a (goto-char (nth 2 a)))
9109 (if (re-search-forward org-any-link-re nil t)
9111 (goto-char (match-beginning 0))
9112 (if (outline-invisible-p) (org-show-context)))
9114 (setq org-link-search-failed t)
9115 (error "No further link found"))))
9117 (defun org-previous-link ()
9118 "Move backward to the previous link.
9119 If the link is in hidden text, expose it."
9121 (when (and org-link-search-failed (eq this-command last-command))
9122 (goto-char (point-max))
9123 (message "Link search wrapped back to end of buffer"))
9124 (setq org-link-search-failed nil)
9125 (let* ((pos (point))
9127 (a (assoc :link ct)))
9128 (if a (goto-char (nth 1 a)))
9129 (if (re-search-backward org-any-link-re nil t)
9131 (goto-char (match-beginning 0))
9132 (if (outline-invisible-p) (org-show-context)))
9134 (setq org-link-search-failed t)
9135 (error "No further link found"))))
9137 (defun org-translate-link (s)
9138 "Translate a link string if a translation function has been defined."
9139 (if (and org-link-translation-function
9140 (fboundp org-link-translation-function)
9141 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
9143 (setq s (funcall org-link-translation-function
9144 (match-string 1) (match-string 2)))
9145 (concat (car s) ":" (cdr s)))
9148 (defun org-translate-link-from-planner (type path)
9149 "Translate a link from Emacs Planner syntax so that Org can follow it.
9150 This is still an experimental function, your mileage may vary."
9152 ((member type '("http" "https" "news" "ftp"))
9153 ;; standard Internet links are the same.
9155 ((and (equal type "irc") (string-match "^//" path))
9156 ;; Planner has two / at the beginning of an irc link, we have 1.
9157 ;; We should have zero, actually....
9158 (setq path (substring path 1)))
9159 ((and (equal type "lisp") (string-match "^/" path))
9160 ;; Planner has a slash, we do not.
9161 (setq type "elisp" path (substring path 1)))
9162 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
9163 ;; A typical message link. Planner has the id after the final slash,
9164 ;; we separate it with a hash mark
9165 (setq path (concat (match-string 1 path) "#"
9166 (org-remove-angle-brackets (match-string 2 path)))))
9170 (defun org-find-file-at-mouse (ev)
9171 "Open file link or URL at mouse."
9173 (mouse-set-point ev)
9174 (org-open-at-point 'in-emacs))
9176 (defun org-open-at-mouse (ev)
9177 "Open file link or URL at mouse."
9179 (mouse-set-point ev)
9180 (if (eq major-mode 'org-agenda-mode)
9181 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
9182 (org-open-at-point))
9184 (defvar org-window-config-before-follow-link nil
9185 "The window configuration before following a link.
9186 This is saved in case the need arises to restore it.")
9188 (defvar org-open-link-marker (make-marker)
9189 "Marker pointing to the location where `org-open-at-point; was called.")
9192 (defun org-open-at-point-global ()
9193 "Follow a link like Org-mode does.
9194 This command can be called in any mode to follow a link that has
9197 (org-run-like-in-org-mode 'org-open-at-point))
9200 (defun org-open-link-from-string (s &optional arg reference-buffer)
9201 "Open a link in the string S, as if it was in Org-mode."
9202 (interactive "sLink: \nP")
9203 (let ((reference-buffer (or reference-buffer (current-buffer))))
9205 (let ((org-inhibit-startup t))
9208 (goto-char (point-min))
9209 (when reference-buffer
9210 (setq org-link-abbrev-alist-local
9211 (with-current-buffer reference-buffer
9212 org-link-abbrev-alist-local)))
9213 (org-open-at-point arg reference-buffer)))))
9215 (defvar org-open-at-point-functions nil
9216 "Hook that is run when following a link at point.
9218 Functions in this hook must return t if they identify and follow
9219 a link at point. If they don't find anything interesting at point,
9220 they must return nil.")
9222 (defun org-open-at-point (&optional arg reference-buffer)
9223 "Open link at or after point.
9224 If there is no link at point, this function will search forward up to
9225 the end of the current line.
9226 Normally, files will be opened by an appropriate application. If the
9227 optional prefix argument ARG is non-nil, Emacs will visit the file.
9228 With a double prefix argument, try to open outside of Emacs, in the
9229 application the system uses for this file type."
9231 ;; if in a code block, then open the block's results
9232 (unless (call-interactively #'org-babel-open-src-block-result)
9233 (org-load-modules-maybe)
9234 (move-marker org-open-link-marker (point))
9235 (setq org-window-config-before-follow-link (current-window-configuration))
9236 (org-remove-occur-highlights nil nil t)
9238 ((and (org-on-heading-p)
9240 (concat org-plain-link-re "\\|"
9241 org-bracket-link-regexp "\\|"
9242 org-angle-link-re "\\|"
9243 "[ \t]:[^ \t\n]+:[ \t]*$")))
9244 (not (get-text-property (point) 'org-linked-text)))
9245 (or (org-offer-links-in-entry arg)
9246 (progn (require 'org-attach) (org-attach-reveal 'if-exists))))
9247 ((run-hook-with-args-until-success 'org-open-at-point-functions))
9248 ((org-at-timestamp-p t) (org-follow-timestamp-link))
9249 ((and (or (org-footnote-at-reference-p) (org-footnote-at-definition-p))
9250 (not (org-in-regexp org-bracket-link-regexp)))
9251 (org-footnote-action))
9253 (let (type path link line search (pos (point)))
9256 (skip-chars-forward "^]\n\r")
9257 (when (org-in-regexp org-bracket-link-regexp 1)
9258 (setq link (org-extract-attributes
9259 (org-link-unescape (org-match-string-no-properties 1))))
9260 (while (string-match " *\n *" link)
9261 (setq link (replace-match " " t t link)))
9262 (setq link (org-link-expand-abbrev link))
9264 ((or (file-name-absolute-p link)
9265 (string-match "^\\.\\.?/" link))
9266 (setq type "file" path link))
9267 ((string-match org-link-re-with-space3 link)
9268 (setq type (match-string 1 link) path (match-string 2 link)))
9269 (t (setq type "thisfile" path link)))
9272 (when (get-text-property (point) 'org-linked-text)
9273 (setq type "thisfile"
9274 pos (if (get-text-property (1+ (point)) 'org-linked-text)
9275 (1+ (point)) (point))
9276 path (buffer-substring
9277 (or (previous-single-property-change pos 'org-linked-text)
9279 (or (next-single-property-change pos 'org-linked-text)
9284 (when (or (org-in-regexp org-angle-link-re)
9285 (org-in-regexp org-plain-link-re))
9286 (setq type (match-string 1) path (match-string 2))
9289 (when (org-in-regexp (org-re "\\(:[[:alnum:]_@#%:]+\\):[ \t]*$"))
9291 path (match-string 1))
9292 (while (string-match ":" path)
9293 (setq path (replace-match "+" t t path)))
9295 (when (org-in-regexp "<\\([^><\n]+\\)>")
9296 (setq type "tree-match"
9297 path (match-string 1))
9300 (error "No link found"))
9302 ;; switch back to reference buffer
9303 ;; needed when if called in a temporary buffer through
9304 ;; org-open-link-from-string
9305 (with-current-buffer (or reference-buffer (current-buffer))
9307 ;; Remove any trailing spaces in path
9308 (if (string-match " +\\'" path)
9309 (setq path (replace-match "" t t path)))
9310 (if (and org-link-translation-function
9311 (fboundp org-link-translation-function))
9312 ;; Check if we need to translate the link
9313 (let ((tmp (funcall org-link-translation-function type path)))
9314 (setq type (car tmp) path (cdr tmp))))
9318 ((assoc type org-link-protocols)
9319 (funcall (nth 1 (assoc type org-link-protocols)) path))
9321 ((equal type "mailto")
9322 (let ((cmd (car org-link-mailto-program))
9323 (args (cdr org-link-mailto-program)) args1
9324 (address path) (subject "") a)
9325 (if (string-match "\\(.*\\)::\\(.*\\)" path)
9326 (setq address (match-string 1 path)
9327 subject (org-link-escape (match-string 2 path))))
9330 ((not (stringp (car args))) (push (pop args) args1))
9331 (t (setq a (pop args))
9332 (if (string-match "%a" a)
9333 (setq a (replace-match address t t a)))
9334 (if (string-match "%s" a)
9335 (setq a (replace-match subject t t a)))
9337 (apply cmd (nreverse args1))))
9339 ((member type '("http" "https" "ftp" "news"))
9340 (browse-url (concat type ":" (org-link-escape
9341 path org-link-escape-chars-browser))))
9343 ((string= type "doi")
9344 (browse-url (concat "http://dx.doi.org/"
9346 path org-link-escape-chars-browser))))
9348 ((member type '("message"))
9349 (browse-url (concat type ":" path)))
9351 ((string= type "tags")
9352 (org-tags-view arg path))
9354 ((string= type "tree-match")
9355 (org-occur (concat "\\[" (regexp-quote path) "\\]")))
9357 ((string= type "file")
9358 (if (string-match "::\\([0-9]+\\)\\'" path)
9359 (setq line (string-to-number (match-string 1 path))
9360 path (substring path 0 (match-beginning 0)))
9361 (if (string-match "::\\(.+\\)\\'" path)
9362 (setq search (match-string 1 path)
9363 path (substring path 0 (match-beginning 0)))))
9364 (if (string-match "[*?{]" (file-name-nondirectory path))
9366 (org-open-file path arg line search)))
9368 ((string= type "shell")
9370 (if (or (and (not (string= org-confirm-shell-link-not-regexp ""))
9371 (string-match org-confirm-shell-link-not-regexp cmd))
9372 (not org-confirm-shell-link-function)
9373 (funcall org-confirm-shell-link-function
9374 (format "Execute \"%s\" in shell? "
9375 (org-add-props cmd nil
9376 'face 'org-warning))))
9378 (message "Executing %s" cmd)
9379 (shell-command cmd))
9382 ((string= type "elisp")
9384 (if (or (and (not (string= org-confirm-elisp-link-not-regexp ""))
9385 (string-match org-confirm-elisp-link-not-regexp cmd))
9386 (not org-confirm-elisp-link-function)
9387 (funcall org-confirm-elisp-link-function
9388 (format "Execute \"%s\" as elisp? "
9389 (org-add-props cmd nil
9390 'face 'org-warning))))
9391 (message "%s => %s" cmd
9392 (if (equal (string-to-char cmd) ?\()
9394 (call-interactively (read cmd))))
9397 ((and (string= type "thisfile")
9398 (run-hook-with-args-until-success
9399 'org-open-link-functions path)))
9401 ((string= type "thisfile")
9403 (switch-to-buffer-other-window
9404 (org-get-buffer-for-internal-link (current-buffer)))
9405 (org-mark-ring-push))
9406 (let ((cmd `(org-link-search
9408 ,(cond ((equal arg '(4)) ''occur)
9409 ((equal arg '(16)) ''org-occur)
9412 (condition-case nil (eval cmd)
9413 (error (progn (widen) (eval cmd))))))
9416 (browse-url-at-point)))))))
9417 (move-marker org-open-link-marker nil)
9418 (run-hook-with-args 'org-follow-link-hook)))
9420 (defun org-offer-links-in-entry (&optional nth zero)
9421 "Offer links in the current entry and follow the selected link.
9422 If there is only one link, follow it immediately as well.
9423 If NTH is an integer, immediately pick the NTH link found.
9424 If ZERO is a string, check also this string for a link, and if
9425 there is one, offer it as link number zero."
9426 (let ((re (concat "\\(" org-bracket-link-regexp "\\)\\|"
9427 "\\(" org-angle-link-re "\\)\\|"
9428 "\\(" org-plain-link-re "\\)"))
9430 (in-emacs (if (integerp nth) nil nth))
9431 have-zero end links link c)
9432 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
9433 (push (match-string 0 zero) links)
9434 (setq cnt (1- cnt) have-zero t))
9436 (org-back-to-heading t)
9437 (setq end (save-excursion (outline-next-heading) (point)))
9438 (while (re-search-forward re end t)
9439 (push (match-string 0) links))
9440 (setq links (org-uniquify (reverse links))))
9444 (message "No links"))
9445 ((equal (length links) 1)
9446 (setq link (list (car links))))
9447 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
9448 (setq link (nth (if have-zero nth (1- nth)) links)))
9449 (t ; we have to select a link
9451 (save-window-excursion
9452 (delete-other-windows)
9453 (with-output-to-temp-buffer "*Select Link*"
9455 (if (not (string-match org-bracket-link-regexp l))
9456 (princ (format "[%c] %s\n" (incf cnt)
9457 (org-remove-angle-brackets l)))
9459 (princ (format "[%c] %s (%s)\n" (incf cnt)
9460 (match-string 3 l) (match-string 1 l)))
9461 (princ (format "[%c] %s\n" (incf cnt)
9462 (match-string 1 l))))))
9464 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
9465 (message "Select link to open, RET to open all:")
9466 (setq c (read-char-exclusive))
9467 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
9468 (when (equal c ?q) (error "Abort"))
9472 (if have-zero (setq nth (1+ nth)))
9473 (unless (and (integerp nth) (>= (length links) nth))
9474 (error "Invalid link selection"))
9475 (setq link (list (nth (1- nth) links))))))
9477 (let ((buf (current-buffer)))
9479 (org-open-link-from-string l in-emacs buf))
9483 ;; Add special file links that specify the way of opening
9485 (org-add-link-type "file+sys" 'org-open-file-with-system)
9486 (org-add-link-type "file+emacs" 'org-open-file-with-emacs)
9487 (defun org-open-file-with-system (path)
9488 "Open file at PATH using the system way of opening it."
9489 (org-open-file path 'system))
9490 (defun org-open-file-with-emacs (path)
9491 "Open file at PATH in Emacs."
9492 (org-open-file path 'emacs))
9493 (defun org-remove-file-link-modifiers ()
9494 "Remove the file link modifiers in `file+sys:' and `file+emacs:' links."
9495 (goto-char (point-min))
9496 (while (re-search-forward "\\<file\\+\\(sys\\|emacs\\):" nil t)
9498 (replace-match "file:" t t))))
9499 (eval-after-load "org-exp"
9500 '(add-hook 'org-export-preprocess-before-normalizing-links-hook
9501 'org-remove-file-link-modifiers))
9505 (defun org-get-effort (&optional pom)
9506 "Get the effort estimate for the current entry."
9507 (org-entry-get pom org-effort-property))
9511 (defvar org-create-file-search-functions nil
9512 "List of functions to construct the right search string for a file link.
9513 These functions are called in turn with point at the location to
9514 which the link should point.
9516 A function in the hook should first test if it would like to
9517 handle this file type, for example by checking the `major-mode'
9518 or the file extension. If it decides not to handle this file, it
9519 should just return nil to give other functions a chance. If it
9520 does handle the file, it must return the search string to be used
9521 when following the link. The search string will be part of the
9522 file link, given after a double colon, and `org-open-at-point'
9523 will automatically search for it. If special measures must be
9524 taken to make the search successful, another function should be
9525 added to the companion hook `org-execute-file-search-functions',
9528 A function in this hook may also use `setq' to set the variable
9529 `description' to provide a suggestion for the descriptive text to
9530 be used for this link when it gets inserted into an Org-mode
9531 buffer with \\[org-insert-link].")
9533 (defvar org-execute-file-search-functions nil
9534 "List of functions to execute a file search triggered by a link.
9536 Functions added to this hook must accept a single argument, the
9537 search string that was part of the file link, the part after the
9538 double colon. The function must first check if it would like to
9539 handle this search, for example by checking the `major-mode' or
9540 the file extension. If it decides not to handle this search, it
9541 should just return nil to give other functions a chance. If it
9542 does handle the search, it must return a non-nil value to keep
9543 other functions from trying.
9545 Each function can access the current prefix argument through the
9546 variable `current-prefix-argument'. Note that a single prefix is
9547 used to force opening a link in Emacs, so it may be good to only
9548 use a numeric or double prefix to guide the search function.
9550 In case this is needed, a function in this hook can also restore
9551 the window configuration before `org-open-at-point' was called using:
9553 (set-window-configuration org-window-config-before-follow-link)")
9555 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
9556 (defun org-link-search (s &optional type avoid-pos)
9557 "Search for a link search option.
9558 If S is surrounded by forward slashes, it is interpreted as a
9559 regular expression. In org-mode files, this will create an `org-occur'
9560 sparse tree. In ordinary files, `occur' will be used to list matches.
9561 If the current buffer is in `dired-mode', grep will be used to search
9562 in all files. If AVOID-POS is given, ignore matches near that position."
9563 (let ((case-fold-search t)
9564 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
9565 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
9566 (append '(("") (" ") ("\t") ("\n"))
9570 (pre nil) (post nil)
9571 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
9573 ;; First check if there are any special search functions
9574 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
9575 ;; Now try the builtin stuff
9576 ((and (equal (string-to-char s0) ?#)
9579 (goto-char (point-min))
9582 (concat "^[ \t]*:CUSTOM_ID:[ \t]+" (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
9583 (setq type 'dedicated
9584 pos (match-beginning 0))))
9585 ;; There is an exact target for this
9587 (org-back-to-heading t)))
9589 (goto-char (point-min))
9592 (concat "<<" (regexp-quote s0) ">>") nil t)
9593 (setq type 'dedicated
9594 pos (match-beginning 0))))
9595 ;; There is an exact target for this
9597 ((and (string-match "^(\\(.*\\))$" s0)
9599 (goto-char (point-min))
9602 (concat "[^[]" (regexp-quote
9603 (format org-coderef-label-format
9604 (match-string 1 s0))))
9606 (setq type 'dedicated
9607 pos (1+ (match-beginning 0))))))
9608 ;; There is a coderef target for this
9610 ((string-match "^/\\(.*\\)/$" s)
9611 ;; A regular expression
9614 (org-occur (match-string 1 s)))
9615 ;;((eq major-mode 'dired-mode)
9616 ;; (grep (concat "grep -n -e '" (match-string 1 s) "' *")))
9617 (t (org-do-occur (match-string 1 s)))))
9618 ((and (org-mode-p) org-link-search-must-match-exact-headline)
9619 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
9620 (goto-char (point-min))
9622 ((let (case-fold-search)
9623 (re-search-forward (format org-complex-heading-regexp-format
9626 ;; OK, found a match
9627 (setq type 'dedicated)
9628 (goto-char (match-beginning 0)))
9629 ((and (not org-link-search-inhibit-query)
9630 (eq org-link-search-must-match-exact-headline 'query-to-create)
9631 (y-or-n-p "No match - create this as a new heading? "))
9632 (goto-char (point-max))
9633 (or (bolp) (newline))
9634 (insert "* " s "\n")
9635 (beginning-of-line 0))
9638 (error "No match"))))
9640 ;; A normal search string
9641 (when (equal (string-to-char s) ?*)
9642 ;; Anchor on headlines, post may include tags.
9643 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
9644 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
9646 (remove-text-properties
9648 '(face nil mouse-face nil keymap nil fontified nil) s)
9649 ;; Make a series of regular expressions to find a match
9650 (setq words (org-split-string s "[ \n\r\t]+")
9652 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
9653 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
9655 re2a_ (concat "\\(" (mapconcat 'downcase words "[ \t\r\n]+") "\\)[ \t\r\n]")
9656 re2a (concat "[ \t\r\n]" re2a_)
9657 re4_ (concat "\\(" (mapconcat 'downcase words "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
9658 re4 (concat "[^a-zA-Z_]" re4_)
9660 re1 (concat pre re2 post)
9661 re3 (concat pre (if pre re4_ re4) post)
9662 re5 (concat pre ".*" re4)
9663 re2 (concat pre re2)
9664 re2a (concat pre (if pre re2a_ re2a))
9665 re4 (concat pre (if pre re4_ re4))
9666 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
9667 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
9671 ((eq type 'org-occur) (org-occur reall))
9672 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
9673 (t (goto-char (point-min))
9675 (if (or (and (org-search-not-self 1 re0 nil t) (setq type 'dedicated))
9676 (org-search-not-self 1 re1 nil t)
9677 (org-search-not-self 1 re2 nil t)
9678 (org-search-not-self 1 re2a nil t)
9679 (org-search-not-self 1 re3 nil t)
9680 (org-search-not-self 1 re4 nil t)
9681 (org-search-not-self 1 re5 nil t)
9683 (goto-char (match-beginning 1))
9685 (error "No match"))))))
9686 (and (org-mode-p) (org-show-context 'link-search))
9689 (defun org-search-not-self (group &rest args)
9690 "Execute `re-search-forward', but only accept matches that do not
9691 enclose the position of `org-open-link-marker'."
9692 (let ((m org-open-link-marker))
9694 (while (apply 're-search-forward args)
9695 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
9696 (goto-char (match-end group))
9697 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
9698 (> (match-beginning 0) (marker-position m))
9699 (< (match-end 0) (marker-position m)))
9701 (or (not (org-in-regexp
9702 org-bracket-link-analytic-regexp 1))
9703 (not (match-end 4)) ; no description
9704 (and (<= (match-beginning 4) (point))
9705 (>= (match-end 4) (point))))))
9706 (throw 'exit (point))))))))
9708 (defun org-get-buffer-for-internal-link (buffer)
9709 "Return a buffer to be used for displaying the link target of internal links."
9711 ((not org-display-internal-link-with-indirect-buffer)
9713 ((string-match "(Clone)$" (buffer-name buffer))
9714 (message "Buffer is already a clone, not making another one")
9715 ;; we also do not modify visibility in this case
9717 (t ; make a new indirect buffer for displaying the link
9718 (let* ((bn (buffer-name buffer))
9719 (ibn (concat bn "(Clone)"))
9720 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
9721 (with-current-buffer ib (org-overview))
9724 (defun org-do-occur (regexp &optional cleanup)
9725 "Call the Emacs command `occur'.
9726 If CLEANUP is non-nil, remove the printout of the regular expression
9727 in the *Occur* buffer. This is useful if the regex is long and not useful
9731 (let ((cwin (selected-window)) win beg end)
9732 (when (setq win (get-buffer-window "*Occur*"))
9733 (select-window win))
9734 (goto-char (point-min))
9735 (when (re-search-forward "match[a-z]+" nil t)
9736 (setq beg (match-end 0))
9737 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
9738 (setq end (1- (match-beginning 0)))))
9739 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
9740 (goto-char (point-min))
9741 (select-window cwin))))
9743 ;;; The mark ring for links jumps
9745 (defvar org-mark-ring nil
9746 "Mark ring for positions before jumps in Org-mode.")
9747 (defvar org-mark-ring-last-goto nil
9748 "Last position in the mark ring used to go back.")
9749 ;; Fill and close the ring
9750 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
9751 (loop for i from 1 to org-mark-ring-length do
9752 (push (make-marker) org-mark-ring))
9753 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
9756 (defun org-mark-ring-push (&optional pos buffer)
9757 "Put the current position or POS into the mark ring and rotate it."
9759 (setq pos (or pos (point)))
9760 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
9761 (move-marker (car org-mark-ring)
9763 (or buffer (current-buffer)))
9765 (substitute-command-keys
9766 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
9768 (defun org-mark-ring-goto (&optional n)
9769 "Jump to the previous position in the mark ring.
9770 With prefix arg N, jump back that many stored positions. When
9771 called several times in succession, walk through the entire ring.
9772 Org-mode commands jumping to a different position in the current file,
9773 or to another Org-mode file, automatically push the old position
9777 (if (eq last-command this-command)
9778 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
9779 (setq p org-mark-ring))
9780 (setq org-mark-ring-last-goto p)
9782 (switch-to-buffer (marker-buffer m))
9784 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
9786 (defun org-remove-angle-brackets (s)
9787 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
9788 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
9790 (defun org-add-angle-brackets (s)
9791 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
9792 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
9794 (defun org-remove-double-quotes (s)
9795 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
9796 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
9799 ;;; Following specific links
9801 (defun org-follow-timestamp-link ()
9803 ((org-at-date-range-p t)
9804 (let ((org-agenda-start-on-weekday)
9805 (t1 (match-string 1))
9806 (t2 (match-string 2)))
9807 (setq t1 (time-to-days (org-time-string-to-time t1))
9808 t2 (time-to-days (org-time-string-to-time t2)))
9809 (org-agenda-list nil t1 (1+ (- t2 t1)))))
9810 ((org-at-timestamp-p t)
9811 (org-agenda-list nil (time-to-days (org-time-string-to-time
9812 (substring (match-string 1) 0 10)))
9814 (t (error "This should not happen"))))
9817 ;;; Following file links
9818 (defvar org-wait nil)
9819 (defun org-open-file (path &optional in-emacs line search)
9820 "Open the file at PATH.
9821 First, this expands any special file name abbreviations. Then the
9822 configuration variable `org-file-apps' is checked if it contains an
9823 entry for this file type, and if yes, the corresponding command is launched.
9825 If no application is found, Emacs simply visits the file.
9827 With optional prefix argument IN-EMACS, Emacs will visit the file.
9828 With a double \\[universal-argument] \\[universal-argument] \
9829 prefix arg, Org tries to avoid opening in Emacs
9830 and to use an external application to visit the file.
9832 Optional LINE specifies a line to go to, optional SEARCH a string
9833 to search for. If LINE or SEARCH is given, the file will be
9834 opened in Emacs, unless an entry from org-file-apps that makes
9835 use of groups in a regexp matches.
9836 If the file does not exist, an error is thrown."
9837 (let* ((file (if (equal path "")
9839 (substitute-in-file-name (expand-file-name path))))
9840 (file-apps (append org-file-apps (org-default-apps)))
9841 (apps (org-remove-if
9842 'org-file-apps-entry-match-against-dlink-p file-apps))
9843 (apps-dlink (org-remove-if-not
9844 'org-file-apps-entry-match-against-dlink-p file-apps))
9845 (remp (and (assq 'remote apps) (org-file-remote-p file)))
9846 (dirp (if remp nil (file-directory-p file)))
9847 (file (if (and dirp org-open-directory-means-index-dot-org)
9848 (concat (file-name-as-directory file) "index.org")
9850 (a-m-a-p (assq 'auto-mode apps))
9851 (dfile (downcase file))
9852 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
9853 (link (cond ((and (eq line nil)
9857 (concat file "::" (number-to-string line)))
9859 (concat file "::" search))))
9860 (dlink (downcase link))
9861 (old-buffer (current-buffer))
9863 (old-mode major-mode)
9864 ext cmd link-match-data)
9865 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
9866 (setq ext (match-string 1 dfile))
9867 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
9868 (setq ext (match-string 1 dfile))))
9870 ((member in-emacs '((16) system))
9871 (setq cmd (cdr (assoc 'system apps))))
9872 (in-emacs (setq cmd 'emacs))
9874 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
9875 (and dirp (cdr (assoc 'directory apps)))
9876 ; first, try matching against apps-dlink
9877 ; if we get a match here, store the match data for later
9878 (let ((match (assoc-default dlink apps-dlink
9881 (progn (setq link-match-data (match-data))
9883 (progn (setq in-emacs (or in-emacs line search))
9884 nil))) ; if we have no match in apps-dlink,
9885 ; always open the file in emacs if line or search
9886 ; is given (for backwards compatibility)
9887 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
9889 (cdr (assoc ext apps))
9890 (cdr (assoc t apps))))))
9891 (when (eq cmd 'system)
9892 (setq cmd (cdr (assoc 'system apps))))
9893 (when (eq cmd 'default)
9894 (setq cmd (cdr (assoc t apps))))
9895 (when (eq cmd 'mailcap)
9897 (mailcap-parse-mailcaps)
9898 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
9899 (command (mailcap-mime-info mime-type)))
9900 (if (stringp command)
9902 (setq cmd 'emacs))))
9903 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
9904 (not (file-exists-p file))
9905 (not org-open-non-existing-files))
9906 (error "No such file: %s" file))
9908 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
9909 ;; Remove quotes around the file name - we'll use shell-quote-argument.
9910 (while (string-match "['\"]%s['\"]" cmd)
9911 (setq cmd (replace-match "%s" t t cmd)))
9912 (while (string-match "%s" cmd)
9913 (setq cmd (replace-match
9915 (shell-quote-argument
9916 (convert-standard-filename file)))
9919 ;; Replace "%1", "%2" etc. in command with group matches from regex
9921 (let ((match-index 1)
9922 (number-of-groups (- (/ (length link-match-data) 2) 1)))
9923 (set-match-data link-match-data)
9924 (while (<= match-index number-of-groups)
9925 (let ((regex (concat "%" (number-to-string match-index)))
9926 (replace-with (match-string match-index dlink)))
9927 (while (string-match regex cmd)
9928 (setq cmd (replace-match replace-with t t cmd))))
9929 (setq match-index (+ match-index 1)))))
9931 (save-window-excursion
9932 (start-process-shell-command cmd nil cmd)
9933 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))
9937 (funcall (cdr (assq 'file org-link-frame-setup)) file)
9939 (if line (org-goto-line line)
9940 (if search (org-link-search search))))
9942 (let ((file (convert-standard-filename file)))
9944 (set-match-data link-match-data)
9946 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
9947 (and (org-mode-p) (eq old-mode 'org-mode)
9948 (or (not (equal old-buffer (current-buffer)))
9949 (not (equal old-pos (point))))
9950 (org-mark-ring-push old-pos old-buffer))))
9952 (defun org-file-apps-entry-match-against-dlink-p (entry)
9953 "This function returns non-nil if `entry' uses a regular
9954 expression which should be matched against the whole link by
9957 It assumes that is the case when the entry uses a regular
9958 expression which has at least one grouping construct and the
9959 action is either a lisp form or a command string containing
9960 '%1', i.e. using at least one subexpression match as a
9962 (let ((selector (car entry))
9963 (action (cdr entry)))
9964 (if (stringp selector)
9965 (and (> (regexp-opt-depth selector) 0)
9966 (or (and (stringp action)
9967 (string-match "%[0-9]" action))
9971 (defun org-default-apps ()
9972 "Return the default applications for this operating system."
9974 ((eq system-type 'darwin)
9975 org-file-apps-defaults-macosx)
9976 ((eq system-type 'windows-nt)
9977 org-file-apps-defaults-windowsnt)
9978 (t org-file-apps-defaults-gnu)))
9980 (defun org-apps-regexp-alist (list &optional add-auto-mode)
9981 "Convert extensions to regular expressions in the cars of LIST.
9982 Also, weed out any non-string entries, because the return value is used
9983 only for regexp matching.
9984 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
9985 point to the symbol `emacs', indicating that the file should
9986 be opened in Emacs."
9990 (if (not (stringp (car x)))
9992 (if (string-match "\\W" (car x))
9994 (cons (concat "\\." (car x) "\\'") (cdr x)))))
9997 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
9999 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
10000 (defun org-file-remote-p (file)
10001 "Test whether FILE specifies a location on a remote system.
10002 Return non-nil if the location is indeed remote.
10004 For example, the filename \"/user@host:/foo\" specifies a location
10005 on the system \"/user@host:\"."
10006 (cond ((fboundp 'file-remote-p)
10007 (file-remote-p file))
10008 ((fboundp 'tramp-handle-file-remote-p)
10009 (tramp-handle-file-remote-p file))
10010 ((and (boundp 'ange-ftp-name-format)
10011 (string-match (car ange-ftp-name-format) file))
10018 (defun org-get-org-file ()
10019 "Read a filename, with default directory `org-directory'."
10020 (let ((default (or org-default-notes-file remember-data-file)))
10021 (read-file-name (format "File name [%s]: " default)
10022 (file-name-as-directory org-directory)
10025 (defun org-notes-order-reversed-p ()
10026 "Check if the current file should receive notes in reversed order."
10028 ((not org-reverse-note-order) nil)
10029 ((eq t org-reverse-note-order) t)
10030 ((not (listp org-reverse-note-order)) nil)
10032 (let ((all org-reverse-note-order)
10034 (while (setq entry (pop all))
10035 (if (string-match (car entry) buffer-file-name)
10036 (throw 'exit (cdr entry))))
10039 (defvar org-refile-target-table nil
10040 "The list of refile targets, created by `org-refile'.")
10042 (defvar org-agenda-new-buffers nil
10043 "Buffers created to visit agenda files.")
10045 (defvar org-refile-cache nil
10046 "Cache for refile targets.")
10048 (defvar org-refile-markers nil
10049 "All the markers used for caching refile locations.")
10051 (defun org-refile-marker (pos)
10052 "Get a new refile marker, but only if caching is in use."
10053 (if (not org-refile-use-cache)
10055 (let ((m (make-marker)))
10056 (move-marker m pos)
10057 (push m org-refile-markers)
10060 (defun org-refile-cache-clear ()
10061 "Clear the refile cache and disable all the markers."
10062 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
10063 (setq org-refile-markers nil)
10064 (setq org-refile-cache nil)
10065 (message "Refile cache has been cleared"))
10067 (defun org-refile-cache-check-set (set)
10068 "Check if all the markers in the cache still have live buffers."
10071 (while (and set (setq marker (nth 3 (pop set))))
10072 ;; if org-refile-use-outline-path is 'file, marker may be nil
10073 (when (and marker (null (marker-buffer marker)))
10074 (message "not found") (sit-for 3)
10075 (throw 'exit nil)))
10078 (defun org-refile-cache-put (set &rest identifiers)
10079 "Push the refile targets SET into the cache, under IDENTIFIERS."
10080 (let* ((key (sha1 (prin1-to-string identifiers)))
10081 (entry (assoc key org-refile-cache)))
10084 (push (cons key set) org-refile-cache))))
10086 (defun org-refile-cache-get (&rest identifiers)
10087 "Retrieve the cached value for refile targets given by IDENTIFIERS."
10089 ((not org-refile-cache) nil)
10090 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
10092 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
10093 org-refile-cache))))
10094 (and set (org-refile-cache-check-set set) set)))))
10096 (defun org-refile-get-targets (&optional default-buffer)
10097 "Produce a table with refile targets."
10098 (let ((case-fold-search nil)
10099 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
10100 (entries (or org-refile-targets '((nil . (:level . 1)))))
10101 targets tgs txt re files f desc descre fast-path-p level pos0)
10102 (message "Getting targets...")
10103 (with-current-buffer (or default-buffer (current-buffer))
10104 (while (setq entry (pop entries))
10105 (setq files (car entry) desc (cdr entry))
10106 (setq fast-path-p nil)
10108 ((null files) (setq files (list (current-buffer))))
10109 ((eq files 'org-agenda-files)
10110 (setq files (org-agenda-files 'unrestricted)))
10111 ((and (symbolp files) (fboundp files))
10112 (setq files (funcall files)))
10113 ((and (symbolp files) (boundp files))
10114 (setq files (symbol-value files))))
10115 (if (stringp files) (setq files (list files)))
10117 ((eq (car desc) :tag)
10118 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
10119 ((eq (car desc) :todo)
10120 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
10121 ((eq (car desc) :regexp)
10122 (setq descre (cdr desc)))
10123 ((eq (car desc) :level)
10124 (setq descre (concat "^\\*\\{" (number-to-string
10125 (if org-odd-levels-only
10126 (1- (* 2 (cdr desc)))
10129 ((eq (car desc) :maxlevel)
10130 (setq fast-path-p t)
10131 (setq descre (concat "^\\*\\{1," (number-to-string
10132 (if org-odd-levels-only
10133 (1- (* 2 (cdr desc)))
10136 (t (error "Bad refiling target description %s" desc)))
10137 (while (setq f (pop files))
10138 (with-current-buffer
10139 (if (bufferp f) f (org-get-agenda-file-buffer f))
10141 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
10143 (if (bufferp f) (setq f (buffer-file-name
10144 (buffer-base-buffer f))))
10145 (setq f (and f (expand-file-name f)))
10146 (if (eq org-refile-use-outline-path 'file)
10147 (push (list (file-name-nondirectory f) f nil nil) tgs))
10151 (goto-char (point-min))
10152 (while (re-search-forward descre nil t)
10153 (goto-char (setq pos0 (point-at-bol)))
10155 (when org-refile-target-verify-function
10157 (or (funcall org-refile-target-verify-function)
10159 (when (looking-at org-complex-heading-regexp)
10160 (setq level (org-reduced-level
10161 (- (match-end 1) (match-beginning 1)))
10162 txt (org-link-display-format (match-string 4))
10163 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
10164 re (format org-complex-heading-regexp-format
10165 (regexp-quote (match-string 4))))
10166 (when org-refile-use-outline-path
10167 (setq txt (mapconcat
10170 (if (eq org-refile-use-outline-path
10172 (list (file-name-nondirectory
10174 (buffer-base-buffer))))
10175 (if (eq org-refile-use-outline-path
10177 (list (buffer-file-name
10178 (buffer-base-buffer)))))
10179 (org-get-outline-path fast-path-p
10183 (push (list txt f re (org-refile-marker (point)))
10185 (when (= (point) pos0)
10186 ;; verification function has not moved point
10187 (goto-char (point-at-eol))))))))
10188 (when org-refile-use-cache
10189 (org-refile-cache-put tgs (buffer-file-name) descre))
10190 (setq targets (append tgs targets))
10192 (message "Getting targets...done")
10193 (nreverse targets)))
10195 (defun org-protect-slash (s)
10196 (while (string-match "/" s)
10197 (setq s (replace-match "\\" t t s)))
10200 (defvar org-olpa (make-vector 20 nil))
10202 (defun org-get-outline-path (&optional fastp level heading)
10203 "Return the outline path to the current entry, as a list.
10205 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
10206 routine which makes outline path derivations for an entire file,
10207 avoiding backtracing. Refile target collection makes use of that."
10211 (error "Outline path failure, more than 19 levels"))
10212 (loop for i from level upto 19 do
10213 (aset org-olpa i nil))
10215 (delq nil (append org-olpa nil))
10216 (aset org-olpa level heading)))
10217 (let (rtn case-fold-search)
10221 (while (org-up-heading-safe)
10222 (when (looking-at org-complex-heading-regexp)
10223 (push (org-match-string-no-properties 4) rtn)))
10226 (defun org-format-outline-path (path &optional width prefix)
10227 "Format the outline path PATH for display.
10228 Width is the maximum number of characters that is available.
10229 Prefix is a prefix to be included in the returned string,
10230 such as the file name."
10231 (setq width (or width 79))
10232 (if prefix (setq width (- width (length prefix))))
10235 (let* ((nsteps (length path))
10236 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
10237 (maxwidth (if (<= total-width width)
10238 10000 ;; everything fits
10239 ;; we need to shorten the level headings
10240 (/ (- width nsteps) nsteps)))
10241 (org-odd-levels-only nil)
10243 (total (1+ (length prefix))))
10244 (setq maxwidth (max maxwidth 10))
10249 (if (and (= n nsteps) (< maxwidth 10000))
10250 (setq maxwidth (- total-width total)))
10251 (if (< (length h) maxwidth)
10252 (progn (setq total (+ total (length h) 1)) h)
10253 (setq h (substring h 0 (- maxwidth 2))
10254 total (+ total maxwidth 1))
10255 (if (string-match "[ \t]+\\'" h)
10256 (setq h (substring h 0 (match-beginning 0))))
10257 (setq h (concat h "..")))
10258 (org-add-props h nil 'face
10259 (nth (% (1- n) org-n-level-faces)
10264 (defun org-display-outline-path (&optional file current)
10265 "Display the current outline path in the echo area."
10267 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
10268 (case-fold-search nil)
10269 (path (and (org-mode-p) (org-get-outline-path))))
10270 (if current (setq path (append path
10272 (org-back-to-heading t)
10273 (if (looking-at org-complex-heading-regexp)
10274 (list (match-string 4)))))))
10276 (org-format-outline-path
10279 (and file bfn (concat (file-name-nondirectory bfn) "/"))))))
10281 (defvar org-refile-history nil
10282 "History for refiling operations.")
10284 (defvar org-after-refile-insert-hook nil
10285 "Hook run after `org-refile' has inserted its stuff at the new location.
10286 Note that this is still *before* the stuff will be removed from
10287 the *old* location.")
10289 (defvar org-capture-last-stored-marker)
10290 (defun org-refile (&optional goto default-buffer rfloc)
10291 "Move the entry at point to another heading.
10292 The list of target headings is compiled using the information in
10293 `org-refile-targets', which see. This list is created before each use
10294 and will therefore always be up-to-date.
10296 At the target location, the entry is filed as a subitem of the target heading.
10297 Depending on `org-reverse-note-order', the new subitem will either be the
10298 first or the last subitem.
10300 If there is an active region, all entries in that region will be moved.
10301 However, the region must fulfill the requirement that the first heading
10302 is the first one sets the top-level of the moved text - at most siblings
10303 below it are allowed.
10305 With prefix arg GOTO, the command will only visit the target location,
10306 not actually move anything.
10307 With a double prefix arg \\[universal-argument] \\[universal-argument], \
10308 go to the location where the last refiling
10309 operation has put the subtree.
10310 With a prefix argument of `2', refile to the running clock.
10312 RFLOC can be a refile location obtained in a different way.
10314 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
10316 If you are using target caching (see `org-refile-use-cache'),
10317 You have to clear the target cache in order to find new targets.
10318 This can be done with a 0 prefix: `C-0 C-c C-w'"
10320 (if (member goto '(0 (64)))
10321 (org-refile-cache-clear)
10322 (let* ((cbuf (current-buffer))
10323 (regionp (org-region-active-p))
10324 (region-start (and regionp (region-beginning)))
10325 (region-end (and regionp (region-end)))
10326 (region-length (and regionp (- region-end region-start)))
10327 (filename (buffer-file-name (buffer-base-buffer cbuf)))
10328 pos it nbuf file re level reversed)
10329 (setq last-command nil)
10331 (goto-char region-start)
10332 (or (bolp) (goto-char (point-at-bol)))
10333 (setq region-start (point))
10334 (unless (org-kill-is-subtree-p
10335 (buffer-substring region-start region-end))
10336 (error "The region is not a (sequence of) subtree(s)")))
10337 (if (equal goto '(16))
10338 (org-refile-goto-last-stored)
10340 (and (equal goto 2)
10341 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
10343 (setq it (list (or org-clock-heading "running clock")
10345 (marker-buffer org-clock-hd-marker))
10347 (marker-position org-clock-hd-marker)))
10351 (org-refile-get-location
10352 (if goto "Goto" "Refile to") default-buffer
10353 org-refile-allow-creating-parent-nodes)))))
10354 (setq file (nth 1 it)
10357 (if (and (not goto)
10359 (equal (buffer-file-name) file)
10361 (and (>= pos region-start)
10362 (<= pos region-end))
10363 (and (>= pos (point))
10364 (< pos (save-excursion
10365 (org-end-of-subtree t t))))))
10366 (error "Cannot refile to position inside the tree or region"))
10368 (setq nbuf (or (find-buffer-visiting file)
10369 (find-file-noselect file)))
10372 (switch-to-buffer nbuf)
10374 (org-show-context 'org-goto))
10377 (org-kill-new (buffer-substring region-start region-end))
10378 (org-save-markers-in-region region-start region-end))
10379 (org-copy-subtree 1 nil t))
10380 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
10381 (find-file-noselect file)))
10382 (setq reversed (org-notes-order-reversed-p))
10389 (looking-at outline-regexp)
10390 (setq level (org-get-valid-level (funcall outline-level) 1))
10393 (or (outline-next-heading) (point-max))
10394 (or (save-excursion (org-get-next-sibling))
10395 (org-end-of-subtree t t)
10399 (goto-char (point-max))
10400 (goto-char (point-min))
10401 (or (outline-next-heading) (goto-char (point-max)))))
10402 (if (not (bolp)) (newline))
10403 (org-paste-subtree level)
10404 (when org-log-refile
10405 (org-add-log-setup 'refile nil nil 'findpos
10407 (unless (eq org-log-refile 'note)
10408 (save-excursion (org-add-log-note))))
10409 (and org-auto-align-tags (org-set-tags nil t))
10410 (bookmark-set "org-refile-last-stored")
10411 ;; If we are refiling for capture, make sure that the
10412 ;; last-capture pointers point here
10413 (when (org-bound-and-true-p org-refile-for-capture)
10414 (bookmark-set "org-capture-last-stored-marker")
10415 (move-marker org-capture-last-stored-marker (point)))
10416 (if (fboundp 'deactivate-mark) (deactivate-mark))
10417 (run-hooks 'org-after-refile-insert-hook))))
10419 (delete-region (point) (+ (point) region-length))
10421 (when (featurep 'org-inlinetask)
10422 (org-inlinetask-remove-END-maybe))
10423 (setq org-markers-to-move nil)
10424 (message "Refiled to \"%s\" in file %s" (car it) file)))))))
10426 (defun org-refile-goto-last-stored ()
10427 "Go to the location where the last refile was stored."
10429 (bookmark-jump "org-refile-last-stored")
10430 (message "This is the location of the last refile"))
10432 (defun org-refile-get-location (&optional prompt default-buffer new-nodes)
10433 "Prompt the user for a refile location, using PROMPT.
10434 PROMPT should not be suffixed with a colon and a space, because
10435 this function appends the default value from
10436 `org-refile-history' automatically, if that is not empty."
10437 (let ((org-refile-targets org-refile-targets)
10438 (org-refile-use-outline-path org-refile-use-outline-path))
10439 (setq org-refile-target-table (org-refile-get-targets default-buffer)))
10440 (unless org-refile-target-table
10441 (error "No refile targets"))
10442 (let* ((prompt (concat prompt
10443 (and (car org-refile-history)
10444 (concat " (default " (car org-refile-history) ")"))
10446 (cbuf (current-buffer))
10447 (partial-completion-mode nil)
10448 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
10449 (cfunc (if (and org-refile-use-outline-path
10450 org-outline-path-complete-in-steps)
10451 'org-olpath-completing-read
10452 'org-icompleting-read))
10453 (extra (if org-refile-use-outline-path "/" ""))
10454 (filename (and cfn (expand-file-name cfn)))
10457 (if (and (not (member org-refile-use-outline-path
10458 '(file full-file-path)))
10459 (not (equal filename (nth 1 x))))
10460 (cons (concat (car x) extra " ("
10461 (file-name-nondirectory (nth 1 x)) ")")
10463 (cons (concat (car x) extra) (cdr x))))
10464 org-refile-target-table))
10465 (completion-ignore-case t)
10466 pa answ parent-target child parent old-hist)
10467 (setq old-hist org-refile-history)
10468 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
10469 nil 'org-refile-history (car org-refile-history)))
10470 (setq pa (or (assoc answ tbl) (assoc (concat answ "/") tbl)))
10471 (org-refile-check-position pa)
10474 (when (or (not org-refile-history)
10475 (not (eq old-hist org-refile-history))
10476 (not (equal (car pa) (car org-refile-history))))
10477 (setq org-refile-history
10478 (cons (car pa) (if (assoc (car org-refile-history) tbl)
10480 (cdr org-refile-history))))
10481 (if (equal (car org-refile-history) (nth 1 org-refile-history))
10482 (pop org-refile-history)))
10484 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
10486 (setq parent (match-string 1 answ)
10487 child (match-string 2 answ))
10488 (setq parent-target (or (assoc parent tbl)
10489 (assoc (concat parent "/") tbl)))
10490 (when (and parent-target
10491 (or (eq new-nodes t)
10492 (and (eq new-nodes 'confirm)
10493 (y-or-n-p (format "Create new node \"%s\"? "
10495 (org-refile-new-child parent-target child)))
10496 (error "Invalid target location")))))
10498 (defun org-refile-check-position (refile-pointer)
10499 "Check if the refile pointer matches the readline to which it points."
10500 (let* ((file (nth 1 refile-pointer))
10501 (re (nth 2 refile-pointer))
10502 (pos (nth 3 refile-pointer))
10504 (when (org-string-nw-p re)
10505 (setq buffer (if (markerp pos)
10506 (marker-buffer pos)
10507 (or (find-buffer-visiting file)
10508 (find-file-noselect file))))
10509 (with-current-buffer buffer
10514 (beginning-of-line 1)
10515 (unless (org-looking-at-p re)
10516 (error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling"))))))))
10518 (defun org-refile-new-child (parent-target child)
10519 "Use refile target PARENT-TARGET to add new CHILD below it."
10520 (unless parent-target
10521 (error "Cannot find parent for new node"))
10522 (let ((file (nth 1 parent-target))
10523 (pos (nth 3 parent-target))
10525 (with-current-buffer (or (find-buffer-visiting file)
10526 (find-file-noselect file))
10532 (goto-char (point-max))
10533 (if (not (bolp)) (newline)))
10534 (when (looking-at outline-regexp)
10535 (setq level (funcall outline-level))
10536 (org-end-of-subtree t t))
10537 (org-back-over-empty-lines)
10538 (insert "\n" (make-string
10539 (if pos (org-get-valid-level level 1) 1) ?*)
10541 (beginning-of-line 0)
10542 (list (concat (car parent-target) "/" child) file "" (point)))))))
10544 (defun org-olpath-completing-read (prompt collection &rest args)
10545 "Read an outline path like a file name."
10546 (let ((thetable collection)
10547 (org-completion-use-ido nil) ; does not work with ido.
10548 (org-completion-use-iswitchb nil)) ; or iswitchb
10550 'org-icompleting-read prompt
10551 (lambda (string predicate &optional flag)
10552 (let (rtn r f (l (length string)))
10556 (try-completion string thetable))
10559 (setq rtn (all-completions string thetable predicate))
10562 (setq r (substring x l))
10563 (if (string-match " ([^)]*)$" x)
10564 (setq f (match-string 0 x))
10566 (if (string-match "/" r)
10567 (concat string (substring r 0 (match-end 0)) f)
10572 (assoc string thetable)))
10576 ;;;; Dynamic blocks
10578 (defun org-find-dblock (name)
10579 "Find the first dynamic block with name NAME in the buffer.
10580 If not found, stay at current position and return nil."
10583 (goto-char (point-min))
10584 (setq pos (and (re-search-forward (concat "^#\\+BEGIN:[ \t]+" name "\\>")
10586 (match-beginning 0))))
10587 (if pos (goto-char pos))
10590 (defconst org-dblock-start-re
10591 "^[ \t]*#\\+BEGIN:[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
10592 "Matches the start line of a dynamic block, with parameters.")
10594 (defconst org-dblock-end-re "^[ \t]*#\\+END\\([: \t\r\n]\\|$\\)"
10595 "Matches the end of a dynamic block.")
10597 (defun org-create-dblock (plist)
10598 "Create a dynamic block section, with parameters taken from PLIST.
10599 PLIST must contain a :name entry which is used as name of the block."
10600 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
10603 (let ((col (current-column))
10604 (name (plist-get plist :name)))
10605 (insert "#+BEGIN: " name)
10607 (if (eq (car plist) :name)
10608 (setq plist (cddr plist))
10609 (insert " " (prin1-to-string (pop plist)))))
10610 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
10611 (beginning-of-line -2)))
10613 (defun org-prepare-dblock ()
10614 "Prepare dynamic block for refresh.
10615 This empties the block, puts the cursor at the insert position and returns
10616 the property list including an extra property :name with the block name."
10617 (unless (looking-at org-dblock-start-re)
10618 (error "Not at a dynamic block"))
10619 (let* ((begdel (1+ (match-end 0)))
10620 (name (org-no-properties (match-string 1)))
10621 (params (append (list :name name)
10622 (read (concat "(" (match-string 3) ")")))))
10624 (beginning-of-line 1)
10625 (skip-chars-forward " \t")
10626 (setq params (plist-put params :indentation-column (current-column))))
10627 (unless (re-search-forward org-dblock-end-re nil t)
10628 (error "Dynamic block not terminated"))
10631 (list :content (buffer-substring
10632 begdel (match-beginning 0)))))
10633 (delete-region begdel (match-beginning 0))
10638 (defun org-map-dblocks (&optional command)
10639 "Apply COMMAND to all dynamic blocks in the current buffer.
10640 If COMMAND is not given, use `org-update-dblock'."
10641 (let ((cmd (or command 'org-update-dblock)))
10643 (goto-char (point-min))
10644 (while (re-search-forward org-dblock-start-re nil t)
10645 (goto-char (match-beginning 0))
10647 (condition-case nil
10649 (error (message "Error during update of dynamic block"))))
10650 (unless (re-search-forward org-dblock-end-re nil t)
10651 (error "Dynamic block not terminated"))))))
10653 (defun org-dblock-update (&optional arg)
10654 "User command for updating dynamic blocks.
10655 Update the dynamic block at point. With prefix ARG, update all dynamic
10656 blocks in the buffer."
10659 (org-update-all-dblocks)
10660 (or (looking-at org-dblock-start-re)
10661 (org-beginning-of-dblock))
10662 (org-update-dblock)))
10664 (defun org-update-dblock ()
10665 "Update the dynamic block at point.
10666 This means to empty the block, parse for parameters and then call
10667 the correct writing function."
10669 (save-window-excursion
10670 (let* ((pos (point))
10671 (line (org-current-line))
10672 (params (org-prepare-dblock))
10673 (name (plist-get params :name))
10674 (indent (plist-get params :indentation-column))
10675 (cmd (intern (concat "org-dblock-write:" name))))
10676 (message "Updating dynamic block `%s' at line %d..." name line)
10677 (funcall cmd params)
10678 (message "Updating dynamic block `%s' at line %d...done" name line)
10680 (when (and indent (> indent 0))
10681 (setq indent (make-string indent ?\ ))
10683 (org-beginning-of-dblock)
10685 (while (not (looking-at org-dblock-end-re))
10687 (beginning-of-line 2))
10688 (when (looking-at org-dblock-end-re)
10689 (and (looking-at "[ \t]+")
10690 (replace-match ""))
10691 (insert indent)))))))
10693 (defun org-beginning-of-dblock ()
10694 "Find the beginning of the dynamic block at point.
10695 Error if there is no such block at point."
10696 (let ((pos (point))
10699 (if (and (re-search-backward org-dblock-start-re nil t)
10700 (setq beg (match-beginning 0))
10701 (re-search-forward org-dblock-end-re nil t)
10702 (> (match-end 0) pos))
10705 (error "Not in a dynamic block"))))
10707 (defun org-update-all-dblocks ()
10708 "Update all dynamic blocks in the buffer.
10709 This function can be used in a hook."
10712 (org-map-dblocks 'org-update-dblock)))
10717 (defconst org-additional-option-like-keywords
10718 '("BEGIN_HTML" "END_HTML" "HTML:" "ATTR_HTML:"
10719 "BEGIN_DocBook" "END_DocBook" "DocBook:" "ATTR_DocBook:"
10720 "BEGIN_LaTeX" "END_LaTeX" "LaTeX:" "LATEX_HEADER:"
10721 "LATEX_CLASS:" "LATEX_CLASS_OPTIONS:" "ATTR_LaTeX:"
10723 "ORGTBL" "TBLFM:" "TBLNAME:"
10724 "BEGIN_EXAMPLE" "END_EXAMPLE"
10725 "BEGIN_QUOTE" "END_QUOTE"
10726 "BEGIN_VERSE" "END_VERSE"
10727 "BEGIN_CENTER" "END_CENTER"
10728 "BEGIN_SRC" "END_SRC"
10729 "BEGIN_RESULT" "END_RESULT"
10730 "SOURCE:" "SRCNAME:" "FUNCTION:"
10732 "HEADER:" "HEADERS:"
10734 "CATEGORY:" "COLUMNS:" "PROPERTY:"
10735 "CAPTION:" "LABEL:"
10741 (defcustom org-structure-template-alist
10743 ("s" "#+begin_src ?\n\n#+end_src"
10744 "<src lang=\"?\">\n\n</src>")
10745 ("e" "#+begin_example\n?\n#+end_example"
10746 "<example>\n?\n</example>")
10747 ("q" "#+begin_quote\n?\n#+end_quote"
10748 "<quote>\n?\n</quote>")
10749 ("v" "#+begin_verse\n?\n#+end_verse"
10750 "<verse>\n?\n/verse>")
10751 ("c" "#+begin_center\n?\n#+end_center"
10752 "<center>\n?\n/center>")
10753 ("l" "#+begin_latex\n?\n#+end_latex"
10754 "<literal style=\"latex\">\n?\n</literal>")
10756 "<literal style=\"latex\">?</literal>")
10757 ("h" "#+begin_html\n?\n#+end_html"
10758 "<literal style=\"html\">\n?\n</literal>")
10760 "<literal style=\"html\">?</literal>")
10761 ("a" "#+begin_ascii\n?\n#+end_ascii")
10765 ("I" "#+include %file ?"
10766 "<include file=%file markup=\"?\">")
10768 "Structure completion elements.
10769 This is a list of abbreviation keys and values. The value gets inserted
10770 if you type `<' followed by the key and then press the completion key,
10771 usually `M-TAB'. %file will be replaced by a file name after prompting
10772 for the file using completion. The cursor will be placed at the position
10773 of the `?` in the template.
10774 There are two templates for each key, the first uses the original Org syntax,
10775 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
10776 the default when the /org-mtags.el/ module has been loaded. See also the
10777 variable `org-mtags-prefer-muse-templates'.
10778 This is an experimental feature, it is undecided if it is going to stay in."
10779 :group 'org-completion
10781 (string :tag "Key")
10782 (string :tag "Template")
10783 (string :tag "Muse Template")))
10785 (defun org-try-structure-completion ()
10786 "Try to complete a structure template before point.
10787 This looks for strings like \"<e\" on an otherwise empty line and
10789 (let ((l (buffer-substring (point-at-bol) (point)))
10791 (when (and (looking-at "[ \t]*$")
10792 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
10793 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
10794 (org-complete-expand-structure-template (+ -1 (point-at-bol)
10795 (match-beginning 1)) a)
10798 (defun org-complete-expand-structure-template (start cell)
10799 "Expand a structure template."
10800 (let* ((musep (org-bound-and-true-p org-mtags-prefer-muse-templates))
10801 (rpl (nth (if musep 2 1) cell))
10803 (delete-region start (point))
10804 (when (string-match "\\`#\\+" rpl)
10807 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
10808 (setq ind (buffer-substring (point-at-bol) (point))))
10810 (setq start (point))
10811 (if (string-match "%file" rpl)
10812 (setq rpl (replace-match
10816 (abbreviate-file-name (read-file-name "Include file: ")))
10819 (setq rpl (mapconcat 'identity (split-string rpl "\n")
10820 (concat "\n" ind)))
10822 (if (re-search-backward "\\?" start t) (delete-char 1))))
10824 ;;;; TODO, DEADLINE, Comments
10826 (defun org-toggle-comment ()
10827 "Change the COMMENT state of an entry."
10830 (org-back-to-heading)
10831 (let (case-fold-search)
10832 (if (looking-at (concat outline-regexp
10833 "\\( *\\<" org-comment-string "\\>[ \t]*\\)"))
10834 (replace-match "" t t nil 1)
10835 (if (looking-at outline-regexp)
10837 (goto-char (match-end 0))
10838 (insert org-comment-string " ")))))))
10840 (defvar org-last-todo-state-is-todo nil
10841 "This is non-nil when the last TODO state change led to a TODO state.
10842 If the last change removed the TODO tag or switched to DONE, then
10845 (defvar org-setting-tags nil) ; dynamically skipped
10847 (defvar org-todo-setup-filter-hook nil
10848 "Hook for functions that pre-filter todo specs.
10849 Each function takes a todo spec and returns either nil or the spec
10850 transformed into canonical form." )
10852 (defvar org-todo-get-default-hook nil
10853 "Hook for functions that get a default item for todo.
10854 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
10855 nil or a string to be used for the todo mark." )
10857 (defvar org-agenda-headline-snapshot-before-repeat)
10859 (defun org-todo (&optional arg)
10860 "Change the TODO state of an item.
10861 The state of an item is given by a keyword at the start of the heading,
10863 *** TODO Write paper
10866 The different keywords are specified in the variable `org-todo-keywords'.
10867 By default the available states are \"TODO\" and \"DONE\".
10868 So for this example: when the item starts with TODO, it is changed to DONE.
10869 When it starts with DONE, the DONE is removed. And when neither TODO nor
10870 DONE are present, add TODO at the beginning of the heading.
10872 With \\[universal-argument] prefix arg, use completion to determine the new \
10874 With numeric prefix arg, switch to that state.
10875 With a double \\[universal-argument] prefix, switch to the next set of TODO \
10876 keywords (nextset).
10877 With a triple \\[universal-argument] prefix, circumvent any state blocking.
10879 For calling through lisp, arg is also interpreted in the following way:
10880 'none -> empty state
10881 \"\"(empty string) -> switch to empty state
10882 'done -> switch to DONE
10883 'nextset -> switch to the next set of keywords
10884 'previousset -> switch to the previous set of keywords
10885 \"WAITING\" -> switch to the specified keyword, but only if it
10886 really is a member of `org-todo-keywords'."
10888 (if (equal arg '(16)) (setq arg 'nextset))
10889 (let ((org-blocker-hook org-blocker-hook)
10890 (case-fold-search nil))
10891 (when (equal arg '(64))
10892 (setq arg nil org-blocker-hook nil))
10893 (when (and org-blocker-hook
10894 (or org-inhibit-blocking
10895 (org-entry-get nil "NOBLOCKING")))
10896 (setq org-blocker-hook nil))
10899 (org-back-to-heading t)
10900 (if (looking-at outline-regexp) (goto-char (1- (match-end 0))))
10901 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|$\\)"))
10903 (let* ((match-data (match-data))
10904 (startpos (point-at-bol))
10905 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
10906 (org-log-done org-log-done)
10907 (org-log-repeat org-log-repeat)
10908 (org-todo-log-states org-todo-log-states)
10909 (this (match-string 1))
10910 (hl-pos (match-beginning 0))
10911 (head (org-get-todo-sequence-head this))
10912 (ass (assoc head org-todo-kwd-alist))
10913 (interpret (nth 1 ass))
10914 (done-word (nth 3 ass))
10915 (final-done-word (nth 4 ass))
10916 (last-state (or this ""))
10917 (completion-ignore-case t)
10918 (member (member this org-todo-keywords-1))
10919 (tail (cdr member))
10921 ((and org-todo-key-trigger
10922 (or (and (equal arg '(4))
10923 (eq org-use-fast-todo-selection 'prefix))
10924 (and (not arg) org-use-fast-todo-selection
10925 (not (eq org-use-fast-todo-selection
10927 ;; Use fast selection
10928 (org-fast-todo-selection))
10929 ((and (equal arg '(4))
10930 (or (not org-use-fast-todo-selection)
10931 (not org-todo-key-trigger)))
10932 ;; Read a state with completion
10933 (org-icompleting-read
10934 "State: " (mapcar (lambda(x) (list x))
10935 org-todo-keywords-1)
10939 (if tail (car tail) nil)
10940 (car org-todo-keywords-1)))
10942 (if (equal member org-todo-keywords-1)
10945 (nth (- (length org-todo-keywords-1)
10947 org-todo-keywords-1)
10948 (org-last org-todo-keywords-1))))
10949 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
10950 (setq arg nil))) ; hack to fall back to cycling
10952 ;; user or caller requests a specific state
10954 ((equal arg "") nil)
10955 ((eq arg 'none) nil)
10956 ((eq arg 'done) (or done-word (car org-done-keywords)))
10958 (or (car (cdr (member head org-todo-heads)))
10959 (car org-todo-heads)))
10960 ((eq arg 'previousset)
10961 (let ((org-todo-heads (reverse org-todo-heads)))
10962 (or (car (cdr (member head org-todo-heads)))
10963 (car org-todo-heads))))
10964 ((car (member arg org-todo-keywords-1)))
10966 (error "State `%s' not valid in this file" arg))
10967 ((nth (1- (prefix-numeric-value arg))
10968 org-todo-keywords-1))))
10969 ((null member) (or head (car org-todo-keywords-1)))
10970 ((equal this final-done-word) nil) ;; -> make empty
10971 ((null tail) nil) ;; -> first entry
10972 ((memq interpret '(type priority))
10973 (if (eq this-command last-command)
10975 (if (> (length tail) 0)
10976 (or done-word (car org-done-keywords))
10981 (run-hook-with-args-until-success
10982 'org-todo-get-default-hook state last-state)
10984 (next (if state (concat " " state " ") " "))
10985 (change-plist (list :type 'todo-state-change :from this :to state
10986 :position startpos))
10988 (when org-blocker-hook
10989 (setq org-last-todo-state-is-todo
10990 (not (member this org-done-keywords)))
10991 (unless (save-excursion
10993 (org-with-wide-buffer
10994 (run-hook-with-args-until-failure
10995 'org-blocker-hook change-plist))))
10996 (if (interactive-p)
10997 (error "TODO state change from %s to %s blocked" this state)
10999 (message "TODO state change from %s to %s blocked" this state)
11000 (throw 'exit nil))))
11001 (store-match-data match-data)
11002 (replace-match next t t)
11003 (unless (pos-visible-in-window-p hl-pos)
11004 (message "TODO state changed to %s" (org-trim next)))
11006 (setq head (org-get-todo-sequence-head state)
11007 ass (assoc head org-todo-kwd-alist)
11008 interpret (nth 1 ass)
11009 done-word (nth 3 ass)
11010 final-done-word (nth 4 ass)))
11011 (when (memq arg '(nextset previousset))
11012 (message "Keyword-Set %d/%d: %s"
11013 (- (length org-todo-sets) -1
11014 (length (memq (assoc state org-todo-sets) org-todo-sets)))
11015 (length org-todo-sets)
11016 (mapconcat 'identity (assoc state org-todo-sets) " ")))
11017 (setq org-last-todo-state-is-todo
11018 (not (member state org-done-keywords)))
11019 (setq now-done-p (and (member state org-done-keywords)
11020 (not (member this org-done-keywords))))
11021 (and logging (org-local-logging logging))
11022 (when (and (or org-todo-log-states org-log-done)
11023 (not (eq org-inhibit-logging t))
11024 (not (memq arg '(nextset previousset))))
11025 ;; we need to look at recording a time and note
11026 (setq dolog (or (nth 1 (assoc state org-todo-log-states))
11027 (nth 2 (assoc this org-todo-log-states))))
11028 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
11029 (setq dolog 'time))
11031 (member state org-not-done-keywords)
11032 (not (member this org-not-done-keywords)))
11033 ;; This is now a todo state and was not one before
11034 ;; If there was a CLOSED time stamp, get rid of it.
11035 (org-add-planning-info nil nil 'closed))
11036 (when (and now-done-p org-log-done)
11037 ;; It is now done, and it was not done before
11038 (org-add-planning-info 'closed (org-current-time))
11039 (if (and (not dolog) (eq 'note org-log-done))
11040 (org-add-log-setup 'done state this 'findpos 'note)))
11041 (when (and state dolog)
11042 ;; This is a non-nil state, and we need to log it
11043 (org-add-log-setup 'state state this 'findpos dolog)))
11044 ;; Fixup tag positioning
11045 (org-todo-trigger-tag-changes state)
11046 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
11047 (when org-provide-todo-statistics
11048 (org-update-parent-todo-statistics))
11049 (run-hooks 'org-after-todo-state-change-hook)
11050 (if (and arg (not (member state org-done-keywords)))
11051 (setq head (org-get-todo-sequence-head state)))
11052 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
11053 ;; Do we need to trigger a repeat?
11055 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
11056 ;; This is for the agenda, take a snapshot of the headline.
11058 (setq org-agenda-headline-snapshot-before-repeat
11059 (org-get-heading))))
11060 (org-auto-repeat-maybe state))
11061 ;; Fixup cursor location if close to the keyword
11062 (if (and (outline-on-heading-p)
11064 (save-excursion (beginning-of-line 1)
11065 (looking-at org-todo-line-regexp))
11066 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
11068 (goto-char (or (match-end 2) (match-end 1)))
11069 (and (looking-at " ") (just-one-space))))
11070 (when org-trigger-hook
11072 (run-hook-with-args 'org-trigger-hook change-plist))))))))
11074 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
11075 "Block turning an entry into a TODO, using the hierarchy.
11076 This checks whether the current task should be blocked from state
11077 changes. Such blocking occurs when:
11079 1. The task has children which are not all in a completed state.
11081 2. A task has a parent with the property :ORDERED:, and there
11082 are siblings prior to the current task with incomplete
11085 3. The parent of the task is blocked because it has siblings that should
11086 be done first, or is child of a block grandparent TODO entry."
11088 (if (not org-enforce-todo-dependencies)
11089 t ; if locally turned off don't block
11091 ;; If this is not a todo state change, or if this entry is already DONE,
11093 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
11094 (member (plist-get change-plist :from)
11095 (cons 'done org-done-keywords))
11096 (member (plist-get change-plist :to)
11097 (cons 'todo org-not-done-keywords))
11098 (not (plist-get change-plist :to)))
11099 (throw 'dont-block t))
11100 ;; If this task has children, and any are undone, it's blocked
11102 (org-back-to-heading t)
11103 (let ((this-level (funcall outline-level)))
11104 (outline-next-heading)
11105 (let ((child-level (funcall outline-level)))
11106 (while (and (not (eobp))
11107 (> child-level this-level))
11108 ;; this todo has children, check whether they are all
11110 (if (and (not (org-entry-is-done-p))
11111 (org-entry-is-todo-p))
11112 (throw 'dont-block nil))
11113 (outline-next-heading)
11114 (setq child-level (funcall outline-level))))))
11115 ;; Otherwise, if the task's parent has the :ORDERED: property, and
11116 ;; any previous siblings are undone, it's blocked
11118 (org-back-to-heading t)
11119 (let* ((pos (point))
11120 (parent-pos (and (org-up-heading-safe) (point))))
11121 (if (not parent-pos) (throw 'dont-block t)) ; no parent
11122 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
11124 (re-search-forward org-not-done-heading-regexp pos t))
11125 (throw 'dont-block nil)) ; block, there is an older sibling not done.
11126 ;; Search further up the hierarchy, to see if an anchestor is blocked
11128 (goto-char parent-pos)
11129 (if (not (looking-at org-not-done-heading-regexp))
11130 (throw 'dont-block t)) ; do not block, parent is not a TODO
11132 (setq parent-pos (and (org-up-heading-safe) (point)))
11133 (if (not parent-pos) (throw 'dont-block t)) ; no parent
11134 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
11136 (re-search-forward org-not-done-heading-regexp pos t))
11137 (throw 'dont-block nil)))))))) ; block, older sibling not done.
11139 (defcustom org-track-ordered-property-with-tag nil
11140 "Should the ORDERED property also be shown as a tag?
11141 The ORDERED property decides if an entry should require subtasks to be
11142 completed in sequence. Since a property is not very visible, setting
11143 this option means that toggling the ORDERED property with the command
11144 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
11145 not relevant for the behavior, but it makes things more visible.
11147 Note that toggling the tag with tags commands will not change the property
11148 and therefore not influence behavior!
11150 This can be t, meaning the tag ORDERED should be used, It can also be a
11151 string to select a different tag for this task."
11154 (const :tag "No tracking" nil)
11155 (const :tag "Track with ORDERED tag" t)
11156 (string :tag "Use other tag")))
11158 (defun org-toggle-ordered-property ()
11159 "Toggle the ORDERED property of the current entry.
11160 For better visibility, you can track the value of this property with a tag.
11161 See variable `org-track-ordered-property-with-tag'."
11163 (let* ((t1 org-track-ordered-property-with-tag)
11164 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
11166 (org-back-to-heading)
11167 (if (org-entry-get nil "ORDERED")
11169 (org-delete-property "ORDERED")
11170 (and tag (org-toggle-tag tag 'off))
11171 (message "Subtasks can be completed in arbitrary order"))
11172 (org-entry-put nil "ORDERED" "t")
11173 (and tag (org-toggle-tag tag 'on))
11174 (message "Subtasks must be completed in sequence")))))
11176 (defvar org-blocked-by-checkboxes) ; dynamically scoped
11177 (defun org-block-todo-from-checkboxes (change-plist)
11178 "Block turning an entry into a TODO, using checkboxes.
11179 This checks whether the current task should be blocked from state
11180 changes because there are unchecked boxes in this entry."
11181 (if (not org-enforce-todo-checkbox-dependencies)
11182 t ; if locally turned off don't block
11184 ;; If this is not a todo state change, or if this entry is already DONE,
11186 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
11187 (member (plist-get change-plist :from)
11188 (cons 'done org-done-keywords))
11189 (member (plist-get change-plist :to)
11190 (cons 'todo org-not-done-keywords))
11191 (not (plist-get change-plist :to)))
11192 (throw 'dont-block t))
11193 ;; If this task has checkboxes that are not checked, it's blocked
11195 (org-back-to-heading t)
11196 (let ((beg (point)) end)
11197 (outline-next-heading)
11200 (if (re-search-forward "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\)[ \t]+\\[[- ]\\]"
11203 (if (boundp 'org-blocked-by-checkboxes)
11204 (setq org-blocked-by-checkboxes t))
11205 (throw 'dont-block nil)))))
11206 t))) ; do not block
11208 (defun org-entry-blocked-p ()
11209 "Is the current entry blocked?"
11210 (if (org-entry-get nil "NOBLOCKING")
11211 nil ;; Never block this entry
11213 (run-hook-with-args-until-failure
11215 (list :type 'todo-state-change
11220 (defun org-update-statistics-cookies (all)
11221 "Update the statistics cookie, either from TODO or from checkboxes.
11222 This should be called with the cursor in a line with a statistics cookie."
11226 (org-update-checkbox-count 'all)
11227 (org-map-entries 'org-update-parent-todo-statistics))
11228 (if (not (org-on-heading-p))
11229 (org-update-checkbox-count)
11230 (let ((pos (move-marker (make-marker) (point)))
11232 (ignore-errors (org-back-to-heading t))
11233 (if (not (org-on-heading-p))
11234 (org-update-checkbox-count)
11235 (setq l1 (org-outline-level))
11236 (setq end (save-excursion
11237 (outline-next-heading)
11238 (if (org-on-heading-p) (setq l2 (org-outline-level)))
11240 (if (and (save-excursion
11242 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
11243 (not (save-excursion (re-search-forward
11244 ":COOKIE_DATA:.*\\<todo\\>" end t))))
11245 (org-update-checkbox-count)
11246 (if (and l2 (> l2 l1))
11249 (org-update-parent-todo-statistics))
11251 (beginning-of-line 1)
11252 (while (re-search-forward
11253 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
11255 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
11257 (move-marker pos nil)))))
11259 (defvar org-entry-property-inherited-from) ;; defined below
11260 (defun org-update-parent-todo-statistics ()
11261 "Update any statistics cookie in the parent of the current headline.
11262 When `org-hierarchical-todo-statistics' is nil, statistics will cover
11263 the entire subtree and this will travel up the hierarchy and update
11264 statistics everywhere."
11266 (let* ((lim 0) prop
11267 (recursive (or (not org-hierarchical-todo-statistics)
11270 (or (setq prop (org-entry-get
11271 nil "COOKIE_DATA" 'inherit)) ""))))
11272 (lim (or (and prop (marker-position
11273 org-entry-property-inherited-from))
11276 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
11277 level ltoggle l1 new ndel
11278 (cnt-all 0) (cnt-done 0) is-percent kwd
11279 checkbox-beg ov ovs ove cookie-present)
11282 (beginning-of-line 1)
11283 (if (org-at-heading-p)
11284 (setq ltoggle (funcall outline-level))
11285 (error "This should not happen"))
11286 (while (and (setq level (org-up-heading-safe))
11287 (or recursive first)
11289 (setq first nil cookie-present nil)
11298 (while (re-search-forward box-re (point-at-eol) t)
11299 (setq cnt-all 0 cnt-done 0 cookie-present t)
11300 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
11302 (unless (outline-next-heading) (throw 'exit nil))
11303 (while (and (looking-at org-complex-heading-regexp)
11304 (> (setq l1 (length (match-string 1))) level))
11305 (setq kwd (and (or recursive (= l1 ltoggle))
11307 (if (or (eq org-provide-todo-statistics 'all-headlines)
11308 (and (listp org-provide-todo-statistics)
11309 (or (member kwd org-provide-todo-statistics)
11310 (member kwd org-done-keywords))))
11311 (setq cnt-all (1+ cnt-all))
11312 (if (eq org-provide-todo-statistics t)
11313 (and kwd (setq cnt-all (1+ cnt-all)))))
11314 (and (member kwd org-done-keywords)
11315 (setq cnt-done (1+ cnt-done)))
11316 (outline-next-heading)))
11319 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
11320 (format "[%d/%d]" cnt-done cnt-all))
11321 ndel (- (match-end 0) checkbox-beg))
11322 ;; handle overlays when updating cookie from column view
11323 (when (setq ov (car (overlays-at checkbox-beg)))
11324 (setq ovs (overlay-start ov) ove (overlay-end ov))
11325 (delete-overlay ov))
11326 (goto-char checkbox-beg)
11328 (delete-region (point) (+ (point) ndel))
11329 (when ov (move-overlay ov ovs ove)))
11330 (when cookie-present
11331 (run-hook-with-args 'org-after-todo-statistics-hook
11332 cnt-done (- cnt-all cnt-done))))))
11333 (run-hooks 'org-todo-statistics-hook)))
11335 (defvar org-after-todo-statistics-hook nil
11336 "Hook that is called after a TODO statistics cookie has been updated.
11337 Each function is called with two arguments: the number of not-done entries
11338 and the number of done entries.
11340 For example, the following function, when added to this hook, will switch
11341 an entry to DONE when all children are done, and back to TODO when new
11342 entries are set to a TODO status. Note that this hook is only called
11343 when there is a statistics cookie in the headline!
11345 (defun org-summary-todo (n-done n-not-done)
11346 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
11347 (let (org-log-done org-log-states) ; turn off logging
11348 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
11351 (defvar org-todo-statistics-hook nil
11352 "Hook that is run whenever Org thinks TODO statistics should be updated.
11353 This hook runs even if there is no statistics cookie present, in which case
11354 `org-after-todo-statistics-hook' would not run.")
11356 (defun org-todo-trigger-tag-changes (state)
11357 "Apply the changes defined in `org-todo-state-tags-triggers'."
11358 (let ((l org-todo-state-tags-triggers)
11360 (when (or (not state) (equal state ""))
11361 (setq changes (append changes (cdr (assoc "" l)))))
11362 (when (and (stringp state) (> (length state) 0))
11363 (setq changes (append changes (cdr (assoc state l)))))
11364 (when (member state org-not-done-keywords)
11365 (setq changes (append changes (cdr (assoc 'todo l)))))
11366 (when (member state org-done-keywords)
11367 (setq changes (append changes (cdr (assoc 'done l)))))
11368 (dolist (c changes)
11369 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
11371 (defun org-local-logging (value)
11372 "Get logging settings from a property VALUE."
11374 ;; directly set the variables, they are already local.
11375 (setq org-log-done nil
11377 org-todo-log-states nil)
11378 (setq words (org-split-string value))
11379 (while (setq w (pop words))
11381 ((setq a (assoc w org-startup-options))
11382 (and (member (nth 1 a) '(org-log-done org-log-repeat))
11383 (set (nth 1 a) (nth 2 a))))
11384 ((setq a (org-extract-log-state-settings w))
11385 (and (member (car a) org-todo-keywords-1)
11386 (push a org-todo-log-states)))))))
11388 (defun org-get-todo-sequence-head (kwd)
11389 "Return the head of the TODO sequence to which KWD belongs.
11390 If KWD is not set, check if there is a text property remembering the
11395 (or (get-text-property (point-at-bol) 'org-todo-head)
11397 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
11398 nil (point-at-eol)))
11399 (get-text-property p 'org-todo-head))))
11400 ((not (member kwd org-todo-keywords-1))
11401 (car org-todo-keywords-1))
11402 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
11404 (defun org-fast-todo-selection ()
11405 "Fast TODO keyword selection with single keys.
11406 Returns the new TODO keyword, or nil if no state change should occur."
11407 (let* ((fulltable org-todo-key-alist)
11408 (done-keywords org-done-keywords) ;; needed for the faces.
11409 (maxlen (apply 'max (mapcar
11411 (if (stringp (car x)) (string-width (car x)) 0))
11414 (fwidth (+ maxlen 3 1 3))
11415 (ncol (/ (- (window-width) 4) fwidth))
11419 (save-window-excursion
11421 (set-buffer (get-buffer-create " *Org todo*"))
11422 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
11424 (org-set-local 'org-done-keywords done-keywords)
11425 (setq tbl fulltable cnt 0)
11426 (while (setq e (pop tbl))
11428 ((equal e '(:startgroup))
11429 (push '() groups) (setq ingroup t)
11430 (when (not (= cnt 0))
11434 ((equal e '(:endgroup))
11435 (setq ingroup nil cnt 0)
11437 ((equal e '(:newline))
11438 (when (not (= cnt 0))
11442 (while (equal (car tbl) '(:newline))
11444 (setq tbl (cdr tbl)))))
11446 (setq tg (car e) c (cdr e))
11447 (if ingroup (push tg (car groups)))
11448 (setq tg (org-add-props tg nil 'face
11449 (org-get-todo-face tg)))
11450 (if (and (= cnt 0) (not ingroup)) (insert " "))
11451 (insert "[" c "] " tg (make-string
11452 (- fwidth 4 (length tg)) ?\ ))
11453 (when (= (setq cnt (1+ cnt)) ncol)
11455 (if ingroup (insert " "))
11458 (goto-char (point-min))
11459 (if (not expert) (org-fit-window-to-buffer))
11460 (message "[a-z..]:Set [SPC]:clear")
11461 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
11464 (and (= c ?q) (not (rassoc c fulltable))))
11465 (setq quit-flag t))
11467 ((setq e (rassoc c fulltable) tg (car e))
11469 (t (setq quit-flag t)))))))
11471 (defun org-entry-is-todo-p ()
11472 (member (org-get-todo-state) org-not-done-keywords))
11474 (defun org-entry-is-done-p ()
11475 (member (org-get-todo-state) org-done-keywords))
11477 (defun org-get-todo-state ()
11479 (org-back-to-heading t)
11480 (and (looking-at org-todo-line-regexp)
11482 (match-string 2))))
11484 (defun org-at-date-range-p (&optional inactive-ok)
11485 "Is the cursor inside a date range?"
11489 (let ((pos (point)))
11490 (skip-chars-backward "^[<\r\n")
11491 (skip-chars-backward "<[")
11492 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
11493 (>= (match-end 0) pos)
11495 (skip-chars-backward "^<[\r\n")
11496 (skip-chars-backward "<[")
11497 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
11498 (>= (match-end 0) pos)
11502 (defun org-get-repeat (&optional tagline)
11503 "Check if there is a deadline/schedule with repeater in this entry."
11506 (org-back-to-heading t)
11507 (and (re-search-forward (if tagline
11508 (concat tagline "\\s-*" org-repeat-re)
11510 (org-entry-end-position) t)
11511 (match-string-no-properties 1)))))
11513 (defvar org-last-changed-timestamp)
11514 (defvar org-last-inserted-timestamp)
11515 (defvar org-log-post-message)
11516 (defvar org-log-note-purpose)
11517 (defvar org-log-note-how)
11518 (defvar org-log-note-extra)
11519 (defun org-auto-repeat-maybe (done-word)
11520 "Check if the current headline contains a repeated deadline/schedule.
11521 If yes, set TODO state back to what it was and change the base date
11522 of repeating deadline/scheduled time stamps to new date.
11523 This function is run automatically after each state change to a DONE state."
11524 ;; last-state is dynamically scoped into this function
11525 (let* ((repeat (org-get-repeat))
11526 (aa (assoc last-state org-todo-kwd-alist))
11527 (interpret (nth 1 aa))
11529 (whata '(("d" . day) ("m" . month) ("y" . year)))
11530 (msg "Entry repeats: ")
11532 (org-todo-log-states nil)
11533 re type n what ts time to-state)
11535 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
11536 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
11537 org-todo-repeat-to-state))
11538 (unless (and to-state (member to-state org-todo-keywords-1))
11539 (setq to-state (if (eq interpret 'type) last-state head)))
11540 (org-todo to-state)
11541 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
11542 (org-entry-put nil "LAST_REPEAT" (format-time-string
11543 (org-time-stamp-format t t))))
11544 (when org-log-repeat
11545 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
11546 (memq 'org-add-log-note post-command-hook))
11547 ;; OK, we are already setup for some record
11548 (if (eq org-log-repeat 'note)
11549 ;; make sure we take a note, not only a time stamp
11550 (setq org-log-note-how 'note))
11551 ;; Set up for taking a record
11552 (org-add-log-setup 'state (or done-word (car org-done-keywords))
11554 'findpos org-log-repeat)))
11555 (org-back-to-heading t)
11556 (org-add-planning-info nil nil 'closed)
11557 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
11558 org-deadline-time-regexp "\\)\\|\\("
11559 org-ts-regexp "\\)"))
11560 (while (re-search-forward
11561 re (save-excursion (outline-next-heading) (point)) t)
11562 (setq type (if (match-end 1) org-scheduled-string
11563 (if (match-end 3) org-deadline-string "Plain:"))
11564 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
11565 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts)
11566 (setq n (string-to-number (match-string 2 ts))
11567 what (match-string 3 ts))
11568 (if (equal what "w") (setq n (* n 7) what "d"))
11569 ;; Preparation, see if we need to modify the start date for the change
11570 (when (match-end 1)
11571 (setq time (save-match-data (org-time-string-to-time ts)))
11573 ((equal (match-string 1 ts) ".")
11574 ;; Shift starting date to today
11575 (org-timestamp-change
11576 (- (time-to-days (current-time)) (time-to-days time))
11578 ((equal (match-string 1 ts) "+")
11579 (let ((nshiftmax 10) (nshift 0))
11580 (while (or (= nshift 0)
11581 (<= (time-to-days time)
11582 (time-to-days (current-time))))
11583 (when (= (incf nshift) nshiftmax)
11584 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
11586 (org-timestamp-change n (cdr (assoc what whata)))
11587 (org-at-timestamp-p t)
11588 (setq ts (match-string 1))
11589 (setq time (save-match-data (org-time-string-to-time ts)))))
11590 (org-timestamp-change (- n) (cdr (assoc what whata)))
11591 ;; rematch, so that we have everything in place for the real shift
11592 (org-at-timestamp-p t)
11593 (setq ts (match-string 1))
11594 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts))))
11595 (org-timestamp-change n (cdr (assoc what whata)))
11596 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
11597 (setq org-log-post-message msg)
11598 (message "%s" msg))))
11600 (defun org-show-todo-tree (arg)
11601 "Make a compact tree which shows all headlines marked with TODO.
11602 The tree will show the lines where the regexp matches, and all higher
11603 headlines above the match.
11604 With a \\[universal-argument] prefix, prompt for a regexp to match.
11605 With a numeric prefix N, construct a sparse tree for the Nth element
11606 of `org-todo-keywords-1'."
11608 (let ((case-fold-search nil)
11610 (cond ((null arg) org-not-done-regexp)
11612 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
11613 (mapcar 'list org-todo-keywords-1))))
11615 (mapconcat 'identity (org-split-string kwd "|") "\\|")
11617 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
11618 (regexp-quote (nth (1- (prefix-numeric-value arg))
11619 org-todo-keywords-1)))
11620 (t (error "Invalid prefix argument: %s" arg)))))
11621 (message "%d TODO entries found"
11622 (org-occur (concat "^" outline-regexp " *" kwd-re )))))
11624 (defun org-deadline (&optional remove time)
11625 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
11626 With argument REMOVE, remove any deadline from the item.
11627 When TIME is set, it should be an internal time specification, and the
11628 scheduling will use the corresponding date."
11630 (let* ((old-date (org-entry-get nil "DEADLINE"))
11631 (repeater (and old-date
11633 "\\([.+]+[0-9]+[dwmy]\\(?:[/ ][-+]?[0-9]+[dwmy]\\)?\\) ?"
11635 (match-string 1 old-date))))
11638 (when (and old-date org-log-redeadline)
11639 (org-add-log-setup 'deldeadline nil old-date 'findpos
11640 org-log-redeadline))
11641 (org-remove-timestamp-with-keyword org-deadline-string)
11642 (message "Item no longer has a deadline."))
11643 (org-add-planning-info 'deadline time 'closed)
11644 (when (and old-date org-log-redeadline
11645 (not (equal old-date
11646 (substring org-last-inserted-timestamp 1 -1))))
11647 (org-add-log-setup 'redeadline nil old-date 'findpos
11648 org-log-redeadline))
11651 (org-back-to-heading t)
11652 (when (re-search-forward (concat org-deadline-string " "
11653 org-last-inserted-timestamp)
11655 (outline-next-heading) (point)) t)
11656 (goto-char (1- (match-end 0)))
11657 (insert " " repeater)
11658 (setq org-last-inserted-timestamp
11659 (concat (substring org-last-inserted-timestamp 0 -1)
11661 (substring org-last-inserted-timestamp -1))))))
11662 (message "Deadline on %s" org-last-inserted-timestamp))))
11664 (defun org-schedule (&optional remove time)
11665 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
11666 With argument REMOVE, remove any scheduling date from the item.
11667 When TIME is set, it should be an internal time specification, and the
11668 scheduling will use the corresponding date."
11670 (let* ((old-date (org-entry-get nil "SCHEDULED"))
11671 (repeater (and old-date
11673 "\\([.+]+[0-9]+[dwmy]\\(?:[/ ][-+]?[0-9]+[dwmy]\\)?\\) ?"
11675 (match-string 1 old-date))))
11678 (when (and old-date org-log-reschedule)
11679 (org-add-log-setup 'delschedule nil old-date 'findpos
11680 org-log-reschedule))
11681 (org-remove-timestamp-with-keyword org-scheduled-string)
11682 (message "Item is no longer scheduled."))
11683 (org-add-planning-info 'scheduled time 'closed)
11684 (when (and old-date org-log-reschedule
11685 (not (equal old-date
11686 (substring org-last-inserted-timestamp 1 -1))))
11687 (org-add-log-setup 'reschedule nil old-date 'findpos
11688 org-log-reschedule))
11691 (org-back-to-heading t)
11692 (when (re-search-forward (concat org-scheduled-string " "
11693 org-last-inserted-timestamp)
11695 (outline-next-heading) (point)) t)
11696 (goto-char (1- (match-end 0)))
11697 (insert " " repeater)
11698 (setq org-last-inserted-timestamp
11699 (concat (substring org-last-inserted-timestamp 0 -1)
11701 (substring org-last-inserted-timestamp -1))))))
11702 (message "Scheduled to %s" org-last-inserted-timestamp))))
11704 (defun org-get-scheduled-time (pom &optional inherit)
11705 "Get the scheduled time as a time tuple, of a format suitable
11706 for calling org-schedule with, or if there is no scheduling,
11708 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
11710 (apply 'encode-time (org-parse-time-string time)))))
11712 (defun org-get-deadline-time (pom &optional inherit)
11713 "Get the deadline as a time tuple, of a format suitable for
11714 calling org-deadline with, or if there is no scheduling, returns
11716 (let ((time (org-entry-get pom "DEADLINE" inherit)))
11718 (apply 'encode-time (org-parse-time-string time)))))
11720 (defun org-remove-timestamp-with-keyword (keyword)
11721 "Remove all time stamps with KEYWORD in the current entry."
11722 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
11725 (org-back-to-heading t)
11727 (outline-next-heading)
11728 (while (re-search-backward re beg t)
11730 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
11731 (equal (char-before) ?\ ))
11732 (backward-delete-char 1)
11733 (if (string-match "^[ \t]*$" (buffer-substring
11734 (point-at-bol) (point-at-eol)))
11735 (delete-region (point-at-bol)
11736 (min (point-max) (1+ (point-at-eol))))))))))
11738 (defun org-add-planning-info (what &optional time &rest remove)
11739 "Insert new timestamp with keyword in the line directly after the headline.
11740 WHAT indicates what kind of time stamp to add. TIME indicated the time to use.
11741 If non is given, the user is prompted for a date.
11742 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
11745 (let (org-time-was-given org-end-time-was-given ts
11746 end default-time default-input)
11749 (when (and (not time) (memq what '(scheduled deadline)))
11750 ;; Try to get a default date/time from existing timestamp
11752 (org-back-to-heading t)
11753 (setq end (save-excursion (outline-next-heading) (point)))
11754 (when (re-search-forward (if (eq what 'scheduled)
11755 org-scheduled-time-regexp
11756 org-deadline-time-regexp)
11758 (setq ts (match-string 1)
11760 (apply 'encode-time (org-parse-time-string ts))
11761 default-input (and ts (org-get-compact-tod ts))))))
11763 ;; If necessary, get the time from the user
11764 (setq time (or time (org-read-date nil 'to-time nil nil
11765 default-time default-input))))
11767 (when (and org-insert-labeled-timestamps-at-point
11768 (member what '(scheduled deadline)))
11770 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
11771 (org-insert-time-stamp time org-time-was-given
11772 nil nil nil (list org-end-time-was-given))
11776 (let (col list elt ts buffer-invisibility-spec)
11777 (org-back-to-heading t)
11778 (looking-at (concat outline-regexp "\\( *\\)[^\r\n]*"))
11779 (goto-char (match-end 1))
11780 (setq col (current-column))
11781 (goto-char (match-end 0))
11782 (if (eobp) (insert "\n") (forward-char 1))
11783 (when (and (not what)
11786 org-keyword-time-not-clock-regexp))))
11787 ;; Nothing to add, nothing to remove...... :-)
11789 (if (and (not (looking-at outline-regexp))
11790 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
11792 (not (equal (match-string 1) org-clock-string)))
11793 (narrow-to-region (match-beginning 0) (match-end 0))
11794 (insert-before-markers "\n")
11796 (narrow-to-region (point) (point))
11797 (and org-adapt-indentation (org-indent-to-column col)))
11798 ;; Check if we have to remove something.
11799 (setq list (cons what remove))
11801 (setq elt (pop list))
11802 (goto-char (point-min))
11803 (when (or (and (eq elt 'scheduled)
11804 (re-search-forward org-scheduled-time-regexp nil t))
11805 (and (eq elt 'deadline)
11806 (re-search-forward org-deadline-time-regexp nil t))
11807 (and (eq elt 'closed)
11808 (re-search-forward org-closed-time-regexp nil t)))
11810 (if (looking-at "--+<[^>]+>") (replace-match ""))
11811 (skip-chars-backward " ")
11812 (if (looking-at " +") (replace-match ""))))
11813 (goto-char (point-max))
11814 (and org-adapt-indentation (bolp) (org-indent-to-column col))
11817 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
11818 (cond ((eq what 'scheduled) org-scheduled-string)
11819 ((eq what 'deadline) org-deadline-string)
11820 ((eq what 'closed) org-closed-string))
11822 (setq ts (org-insert-time-stamp
11824 (or org-time-was-given
11825 (and (eq what 'closed) org-log-done-with-time))
11827 nil nil (list org-end-time-was-given)))
11829 (goto-char (point-min))
11831 (if (and (looking-at "[ \t]*\n")
11832 (equal (char-before) ?\n))
11833 (delete-region (1- (point)) (point-at-eol)))
11836 (defvar org-log-note-marker (make-marker))
11837 (defvar org-log-note-purpose nil)
11838 (defvar org-log-note-state nil)
11839 (defvar org-log-note-previous-state nil)
11840 (defvar org-log-note-how nil)
11841 (defvar org-log-note-extra nil)
11842 (defvar org-log-note-window-configuration nil)
11843 (defvar org-log-note-return-to (make-marker))
11844 (defvar org-log-post-message nil
11845 "Message to be displayed after a log note has been stored.
11846 The auto-repeater uses this.")
11848 (defun org-add-note ()
11849 "Add a note to the current entry.
11850 This is done in the same way as adding a state change note."
11852 (org-add-log-setup 'note nil nil 'findpos nil))
11854 (defvar org-property-end-re)
11855 (defun org-add-log-setup (&optional purpose state prev-state
11857 "Set up the post command hook to take a note.
11858 If this is about to TODO state change, the new state is expected in STATE.
11859 When FINDPOS is non-nil, find the correct position for the note in
11860 the current entry. If not, assume that it can be inserted at point.
11861 HOW is an indicator what kind of note should be created.
11862 EXTRA is additional text that will be inserted into the notes buffer."
11863 (let* ((org-log-into-drawer (org-log-into-drawer))
11864 (drawer (cond ((stringp org-log-into-drawer)
11865 org-log-into-drawer)
11866 (org-log-into-drawer "LOGBOOK")
11871 (org-back-to-heading t)
11872 (narrow-to-region (point) (save-excursion
11873 (outline-next-heading) (point)))
11874 (looking-at (concat outline-regexp "\\( *\\)[^\r\n]*"
11875 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
11877 (goto-char (match-end 0))
11880 (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*$")
11883 (goto-char (match-end 0))
11884 (or org-log-states-order-reversed
11885 (and (re-search-forward org-property-end-re nil t)
11886 (goto-char (1- (match-beginning 0))))))
11887 (insert "\n:" drawer ":\n:END:")
11888 (beginning-of-line 0)
11889 (org-indent-line-function)
11890 (beginning-of-line 2)
11891 (org-indent-line-function)
11893 ((and org-log-state-notes-insert-after-drawers
11895 (forward-line) (looking-at org-drawer-regexp)))
11897 (while (looking-at org-drawer-regexp)
11898 (goto-char (match-end 0))
11899 (re-search-forward org-property-end-re (point-max) t)
11901 (forward-line -1)))
11902 (unless org-log-states-order-reversed
11903 (and (= (char-after) ?\n) (forward-char 1))
11904 (org-skip-over-state-notes)
11905 (skip-chars-backward " \t\n\r")))
11906 (move-marker org-log-note-marker (point))
11907 (setq org-log-note-purpose purpose
11908 org-log-note-state state
11909 org-log-note-previous-state prev-state
11910 org-log-note-how how
11911 org-log-note-extra extra)
11912 (add-hook 'post-command-hook 'org-add-log-note 'append)))))
11914 (defun org-skip-over-state-notes ()
11915 "Skip past the list of State notes in an entry."
11916 (if (looking-at "\n[ \t]*- State") (forward-char 1))
11917 (when (ignore-errors (goto-char (org-in-item-p)))
11918 (let* ((struct (org-list-struct))
11919 (prevs (org-list-prevs-alist struct)))
11920 (while (looking-at "[ \t]*- State")
11921 (goto-char (or (org-list-get-next-item (point) struct prevs)
11922 (org-list-get-item-end (point) struct)))))))
11924 (defun org-add-log-note (&optional purpose)
11925 "Pop up a window for taking a note, and add this note later at point."
11926 (remove-hook 'post-command-hook 'org-add-log-note)
11927 (setq org-log-note-window-configuration (current-window-configuration))
11928 (delete-other-windows)
11929 (move-marker org-log-note-return-to (point))
11930 (switch-to-buffer (marker-buffer org-log-note-marker))
11931 (goto-char org-log-note-marker)
11932 (org-switch-to-buffer-other-window "*Org Note*")
11934 (if (memq org-log-note-how '(time state))
11935 (let (current-prefix-arg) (org-store-log-note))
11936 (let ((org-inhibit-startup t)) (org-mode))
11937 (insert (format "# Insert note for %s.
11938 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
11940 ((eq org-log-note-purpose 'clock-out) "stopped clock")
11941 ((eq org-log-note-purpose 'done) "closed todo item")
11942 ((eq org-log-note-purpose 'state)
11943 (format "state change from \"%s\" to \"%s\""
11944 (or org-log-note-previous-state "")
11945 (or org-log-note-state "")))
11946 ((eq org-log-note-purpose 'reschedule)
11948 ((eq org-log-note-purpose 'delschedule)
11949 "no longer scheduled")
11950 ((eq org-log-note-purpose 'redeadline)
11951 "changing deadline")
11952 ((eq org-log-note-purpose 'deldeadline)
11953 "removing deadline")
11954 ((eq org-log-note-purpose 'refile)
11956 ((eq org-log-note-purpose 'note)
11958 (t (error "This should not happen")))))
11959 (if org-log-note-extra (insert org-log-note-extra))
11960 (org-set-local 'org-finish-function 'org-store-log-note)))
11962 (defvar org-note-abort nil) ; dynamically scoped
11963 (defun org-store-log-note ()
11964 "Finish taking a log note, and insert it to where it belongs."
11965 (let ((txt (buffer-string))
11966 (note (cdr (assq org-log-note-purpose org-log-note-headings)))
11968 (kill-buffer (current-buffer))
11969 (while (string-match "\\`#.*\n[ \t\n]*" txt)
11970 (setq txt (replace-match "" t t txt)))
11971 (if (string-match "\\s-+\\'" txt)
11972 (setq txt (replace-match "" t t txt)))
11973 (setq lines (org-split-string txt "\n"))
11974 (when (and note (string-match "\\S-" note))
11976 (org-replace-escapes
11978 (list (cons "%u" (user-login-name))
11979 (cons "%U" user-full-name)
11980 (cons "%t" (format-time-string
11981 (org-time-stamp-format 'long 'inactive)
11983 (cons "%T" (format-time-string
11984 (org-time-stamp-format 'long nil)
11986 (cons "%s" (if org-log-note-state
11987 (concat "\"" org-log-note-state "\"")
11989 (cons "%S" (if org-log-note-previous-state
11990 (concat "\"" org-log-note-previous-state "\"")
11992 (if lines (setq note (concat note " \\\\")))
11994 (when (or current-prefix-arg org-note-abort)
11995 (when org-log-into-drawer
11996 (org-remove-empty-drawer-at
11997 (if (stringp org-log-into-drawer) org-log-into-drawer "LOGBOOK")
11998 org-log-note-marker))
12001 (with-current-buffer (marker-buffer org-log-note-marker)
12003 (goto-char org-log-note-marker)
12004 (move-marker org-log-note-marker nil)
12006 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
12007 (setq ind (save-excursion
12008 (if (ignore-errors (goto-char (org-in-item-p)))
12009 (let ((struct (org-list-struct)))
12011 (org-list-get-top-point struct) struct))
12012 (skip-chars-backward " \r\t\n")
12014 ((and (org-at-heading-p)
12015 org-adapt-indentation)
12016 (1+ (org-current-level)))
12017 ((org-at-heading-p) 0)
12018 (t (org-get-indentation))))))
12019 (setq bul (org-list-bullet-string "-"))
12020 (org-indent-line-to ind)
12021 (insert bul (pop lines))
12022 (let ((ind-body (+ (length bul) ind)))
12025 (org-indent-line-to ind-body)
12026 (insert (pop lines))))
12027 (message "Note stored")
12028 (org-back-to-heading t)
12029 (org-cycle-hide-drawers 'children)))))
12030 (set-window-configuration org-log-note-window-configuration)
12031 (with-current-buffer (marker-buffer org-log-note-return-to)
12032 (goto-char org-log-note-return-to))
12033 (move-marker org-log-note-return-to nil)
12034 (and org-log-post-message (message "%s" org-log-post-message)))
12036 (defun org-remove-empty-drawer-at (drawer pos)
12037 "Remove an empty drawer DRAWER at position POS.
12038 POS may also be a marker."
12039 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
12045 (concat "^[ \t]*:" drawer ":[ \t]*\n[ \t]*:END:[ \t]*\n?") 2)
12046 (replace-match ""))))))
12048 (defun org-sparse-tree (&optional arg)
12049 "Create a sparse tree, prompt for the details.
12050 This command can create sparse trees. You first need to select the type
12051 of match used to create the tree:
12053 t Show all TODO entries.
12054 T Show entries with a specific TODO keyword.
12055 m Show entries selected by a tags/property match.
12056 p Enter a property name and its value (both with completion on existing
12057 names/values) and show entries with that property.
12058 r Show entries matching a regular expression (`/' can be used as well)
12059 d Show deadlines due within `org-deadline-warning-days'.
12060 b Show deadlines and scheduled items before a date.
12061 a Show deadlines and scheduled items after a date."
12063 (let (ans kwd value)
12064 (message "Sparse tree: [r]egexp [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty\n [d]eadlines [b]efore-date [a]fter-date")
12065 (setq ans (read-char-exclusive))
12068 (call-interactively 'org-check-deadlines))
12070 (call-interactively 'org-check-before-date))
12072 (call-interactively 'org-check-after-date))
12074 (org-show-todo-tree nil))
12076 (org-show-todo-tree '(4)))
12077 ((member ans '(?T ?m))
12078 (call-interactively 'org-match-sparse-tree))
12079 ((member ans '(?p ?P))
12080 (setq kwd (org-icompleting-read "Property: "
12081 (mapcar 'list (org-buffer-property-keys))))
12082 (setq value (org-icompleting-read "Value: "
12083 (mapcar 'list (org-property-values kwd))))
12084 (unless (string-match "\\`{.*}\\'" value)
12085 (setq value (concat "\"" value "\"")))
12086 (org-match-sparse-tree arg (concat kwd "=" value)))
12087 ((member ans '(?r ?R ?/))
12088 (call-interactively 'org-occur))
12089 (t (error "No such sparse tree command \"%c\"" ans)))))
12091 (defvar org-occur-highlights nil
12092 "List of overlays used for occur matches.")
12093 (make-variable-buffer-local 'org-occur-highlights)
12094 (defvar org-occur-parameters nil
12095 "Parameters of the active org-occur calls.
12096 This is a list, each call to org-occur pushes as cons cell,
12097 containing the regular expression and the callback, onto the list.
12098 The list can contain several entries if `org-occur' has been called
12099 several time with the KEEP-PREVIOUS argument. Otherwise, this list
12100 will only contain one set of parameters. When the highlights are
12101 removed (for example with `C-c C-c', or with the next edit (depending
12102 on `org-remove-highlights-with-change'), this variable is emptied
12104 (make-variable-buffer-local 'org-occur-parameters)
12106 (defun org-occur (regexp &optional keep-previous callback)
12107 "Make a compact tree which shows all matches of REGEXP.
12108 The tree will show the lines where the regexp matches, and all higher
12109 headlines above the match. It will also show the heading after the match,
12110 to make sure editing the matching entry is easy.
12111 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
12112 call to `org-occur' will be kept, to allow stacking of calls to this
12114 If CALLBACK is non-nil, it is a function which is called to confirm
12115 that the match should indeed be shown."
12116 (interactive "sRegexp: \nP")
12117 (when (equal regexp "")
12118 (error "Regexp cannot be empty"))
12119 (unless keep-previous
12120 (org-remove-occur-highlights nil nil t))
12121 (push (cons regexp callback) org-occur-parameters)
12124 (goto-char (point-min))
12125 (if (or (not keep-previous) ; do not want to keep
12126 (not org-occur-highlights)) ; no previous matches
12129 (while (re-search-forward regexp nil t)
12130 (when (or (not callback)
12131 (save-match-data (funcall callback)))
12132 (setq cnt (1+ cnt))
12133 (when org-highlight-sparse-tree-matches
12134 (org-highlight-new-match (match-beginning 0) (match-end 0)))
12135 (org-show-context 'occur-tree))))
12136 (when org-remove-highlights-with-change
12137 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
12139 (unless org-sparse-tree-open-archived-trees
12140 (org-hide-archived-subtrees (point-min) (point-max)))
12141 (run-hooks 'org-occur-hook)
12142 (if (interactive-p)
12143 (message "%d match(es) for regexp %s" cnt regexp))
12146 (defun org-occur-next-match (&optional n reset)
12147 "Function for `next-error-function' to find sparse tree matches.
12148 N is the number of matches to move, when negative move backwards.
12149 RESET is entirely ignored - this function always goes back to the
12150 starting point when no match is found."
12151 (let* ((limit (if (< n 0) (point-min) (point-max)))
12152 (search-func (if (< n 0)
12153 'previous-single-char-property-change
12154 'next-single-char-property-change))
12159 (while (setq p1 (funcall search-func (point) 'org-type))
12160 (when (equal p1 limit)
12162 (error "No more matches"))
12163 (when (equal (get-char-property p1 'org-type) 'org-occur)
12167 (throw 'exit (point))))
12170 (error "No more matches"))))
12172 (defun org-show-context (&optional key)
12173 "Make sure point and context are visible.
12174 How much context is shown depends upon the variables
12175 `org-show-hierarchy-above', `org-show-following-heading'. and
12176 `org-show-siblings'."
12177 (let ((heading-p (org-on-heading-p t))
12178 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
12179 (following-p (org-get-alist-option org-show-following-heading key))
12180 (entry-p (org-get-alist-option org-show-entry-below key))
12181 (siblings-p (org-get-alist-option org-show-siblings key)))
12183 ;; Show heading or entry text
12184 (if (and heading-p (not entry-p))
12185 (org-flag-heading nil) ; only show the heading
12186 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
12187 (org-show-hidden-entry))) ; show entire entry
12189 ;; Show next sibling, or heading below text
12191 (and (if heading-p (org-goto-sibling) (outline-next-heading))
12192 (org-flag-heading nil))))
12193 (when siblings-p (org-show-siblings))
12195 ;; show all higher headings, possibly with siblings
12197 (while (and (condition-case nil
12198 (progn (org-up-heading-all 1) t)
12201 (org-flag-heading nil)
12202 (when siblings-p (org-show-siblings))))))))
12204 (defvar org-reveal-start-hook nil
12205 "Hook run before revealing a location.")
12207 (defun org-reveal (&optional siblings)
12208 "Show current entry, hierarchy above it, and the following headline.
12209 This can be used to show a consistent set of context around locations
12210 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
12211 not t for the search context.
12213 With optional argument SIBLINGS, on each level of the hierarchy all
12214 siblings are shown. This repairs the tree structure to what it would
12215 look like when opened with hierarchical calls to `org-cycle'.
12216 With double optional argument \\[universal-argument] \\[universal-argument], \
12217 go to the parent and show the
12220 (run-hooks 'org-reveal-start-hook)
12221 (let ((org-show-hierarchy-above t)
12222 (org-show-following-heading t)
12223 (org-show-siblings (if siblings t org-show-siblings)))
12224 (org-show-context nil))
12225 (when (equal siblings '(16))
12227 (when (org-up-heading-safe)
12229 (run-hook-with-args 'org-cycle-hook 'subtree)))))
12231 (defun org-highlight-new-match (beg end)
12232 "Highlight from BEG to END and mark the highlight is an occur headline."
12233 (let ((ov (make-overlay beg end)))
12234 (overlay-put ov 'face 'secondary-selection)
12235 (overlay-put ov 'org-type 'org-occur)
12236 (push ov org-occur-highlights)))
12238 (defun org-remove-occur-highlights (&optional beg end noremove)
12239 "Remove the occur highlights from the buffer.
12240 BEG and END are ignored. If NOREMOVE is nil, remove this function
12241 from the `before-change-functions' in the current buffer."
12243 (unless org-inhibit-highlight-removal
12244 (mapc 'delete-overlay org-occur-highlights)
12245 (setq org-occur-highlights nil)
12246 (setq org-occur-parameters nil)
12248 (remove-hook 'before-change-functions
12249 'org-remove-occur-highlights 'local))))
12253 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
12254 "Regular expression matching the priority indicator.")
12256 (defvar org-remove-priority-next-time nil)
12258 (defun org-priority-up ()
12259 "Increase the priority of the current item."
12261 (org-priority 'up))
12263 (defun org-priority-down ()
12264 "Decrease the priority of the current item."
12266 (org-priority 'down))
12268 (defun org-priority (&optional action)
12269 "Change the priority of an item by ARG.
12270 ACTION can be `set', `up', `down', or a character."
12272 (unless org-enable-priority-commands
12273 (error "Priority commands are disabled"))
12274 (setq action (or action 'set))
12275 (let (current new news have remove)
12277 (org-back-to-heading t)
12278 (if (looking-at org-priority-regexp)
12279 (setq current (string-to-char (match-string 2))
12281 (setq current org-default-priority))
12283 ((eq action 'remove)
12284 (setq remove t new ?\ ))
12285 ((or (eq action 'set)
12286 (if (featurep 'xemacs) (characterp action) (integerp action)))
12287 (if (not (eq action 'set))
12289 (message "Priority %c-%c, SPC to remove: "
12290 org-highest-priority org-lowest-priority)
12292 (setq new (read-char-exclusive))))
12293 (if (and (= (upcase org-highest-priority) org-highest-priority)
12294 (= (upcase org-lowest-priority) org-lowest-priority))
12295 (setq new (upcase new)))
12296 (cond ((equal new ?\ ) (setq remove t))
12297 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
12298 (error "Priority must be between `%c' and `%c'"
12299 org-highest-priority org-lowest-priority))))
12301 (if (and (not have) (eq last-command this-command))
12302 (setq new org-lowest-priority)
12303 (setq new (if (and org-priority-start-cycle-with-default (not have))
12304 org-default-priority (1- current)))))
12306 (if (and (not have) (eq last-command this-command))
12307 (setq new org-highest-priority)
12308 (setq new (if (and org-priority-start-cycle-with-default (not have))
12309 org-default-priority (1+ current)))))
12310 (t (error "Invalid action")))
12311 (if (or (< (upcase new) org-highest-priority)
12312 (> (upcase new) org-lowest-priority))
12314 (setq news (format "%c" new))
12317 (replace-match "" t t nil 1)
12318 (replace-match news t t nil 2))
12320 (error "No priority cookie found in line")
12321 (let ((case-fold-search nil))
12322 (looking-at org-todo-line-regexp))
12325 (goto-char (match-end 2))
12326 (insert " [#" news "]"))
12327 (goto-char (match-beginning 3))
12328 (insert "[#" news "] "))))
12329 (org-preserve-lc (org-set-tags nil 'align)))
12331 (message "Priority removed")
12332 (message "Priority of current item set to %s" news))))
12334 (defun org-get-priority (s)
12335 "Find priority cookie and return priority."
12336 (if (functionp org-get-priority-function)
12337 (funcall org-get-priority-function)
12339 (if (not (string-match org-priority-regexp s))
12340 (* 1000 (- org-lowest-priority org-default-priority))
12341 (* 1000 (- org-lowest-priority
12342 (string-to-char (match-string 2 s))))))))
12346 (defvar org-agenda-archives-mode)
12347 (defvar org-map-continue-from nil
12348 "Position from where mapping should continue.
12349 Can be set by the action argument to `org-scan-tag's and `org-map-entries'.")
12351 (defvar org-scanner-tags nil
12352 "The current tag list while the tags scanner is running.")
12353 (defvar org-trust-scanner-tags nil
12354 "Should `org-get-tags-at' use the tags for the scanner.
12355 This is for internal dynamical scoping only.
12356 When this is non-nil, the function `org-get-tags-at' will return the value
12357 of `org-scanner-tags' instead of building the list by itself. This
12358 can lead to large speed-ups when the tags scanner is used in a file with
12359 many entries, and when the list of tags is retrieved, for example to
12360 obtain a list of properties. Building the tags list for each entry in such
12361 a file becomes an N^2 operation - but with this variable set, it scales
12364 (defun org-scan-tags (action matcher &optional todo-only)
12365 "Scan headline tags with inheritance and produce output ACTION.
12367 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
12368 or `agenda' to produce an entry list for an agenda view. It can also be
12369 a Lisp form or a function that should be called at each matched headline, in
12370 this case the return value is a list of all return values from these calls.
12372 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
12373 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
12374 only lines with a TODO keyword are included in the output."
12375 (require 'org-agenda)
12376 (let* ((re (concat "^" outline-regexp " *\\(\\<\\("
12377 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
12379 "\\>\\)\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
12380 (props (list 'face 'default
12381 'done-face 'org-agenda-done
12382 'undone-face 'default
12383 'mouse-face 'highlight
12384 'org-not-done-regexp org-not-done-regexp
12385 'org-todo-regexp org-todo-regexp
12387 (format "mouse-2 or RET jump to org file %s"
12388 (abbreviate-file-name
12389 (or (buffer-file-name (buffer-base-buffer))
12390 (buffer-name (buffer-base-buffer)))))))
12391 (case-fold-search nil)
12392 (org-map-continue-from nil)
12393 lspos tags tags-list
12394 (tags-alist (list (cons 0 org-file-tags)))
12395 (llast 0) rtn rtn1 level category i txt
12396 todo marker entry priority)
12397 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
12398 (setq action (list 'lambda nil action)))
12400 (goto-char (point-min))
12401 (when (eq action 'sparse-tree)
12403 (org-remove-occur-highlights))
12404 (while (re-search-forward re nil t)
12406 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
12407 tags (if (match-end 4) (org-match-string-no-properties 4)))
12408 (goto-char (setq lspos (match-beginning 0)))
12409 (setq level (org-reduced-level (funcall outline-level))
12410 category (org-get-category))
12411 (setq i llast llast level)
12412 ;; remove tag lists from same and sublevels
12413 (while (>= i level)
12414 (when (setq entry (assoc i tags-alist))
12415 (setq tags-alist (delete entry tags-alist)))
12417 ;; add the next tags
12419 (setq tags (org-split-string tags ":")
12421 (cons (cons level tags) tags-alist)))
12422 ;; compile tags for current headline
12424 (if org-use-tag-inheritance
12425 (apply 'append (mapcar 'cdr (reverse tags-alist)))
12427 org-scanner-tags tags-list)
12428 (when org-use-tag-inheritance
12429 (setcdr (car tags-alist)
12430 (mapcar (lambda (x)
12431 (setq x (copy-sequence x))
12432 (org-add-prop-inherited x))
12433 (cdar tags-alist))))
12434 (when (and tags org-use-tag-inheritance
12435 (or (not (eq t org-use-tag-inheritance))
12436 org-tags-exclude-from-inheritance))
12437 ;; selective inheritance, remove uninherited ones
12438 (setcdr (car tags-alist)
12439 (org-remove-uninherited-tags (cdar tags-alist))))
12442 ;; eval matcher only when the todo condition is OK
12443 (and (or (not todo-only) (member todo org-not-done-keywords))
12444 (let ((case-fold-search t)) (eval matcher)))
12446 ;; Call the skipper, but return t if it does not skip,
12447 ;; so that the `and' form continues evaluating
12449 (unless (eq action 'sparse-tree) (org-agenda-skip))
12452 ;; Check if timestamps are deselecting this entry
12453 (or (not todo-only)
12454 (and (member todo org-not-done-keywords)
12455 (or (not org-agenda-tags-todo-honor-ignore-options)
12456 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item)))))
12458 ;; Extra check for the archive tag
12459 ;; FIXME: Does the skipper already do this????
12461 (not (member org-archive-tag tags-list))
12462 ;; we have an archive tag, should we use this anyway?
12463 (or (not org-agenda-skip-archived-trees)
12464 (and (eq action 'agenda) org-agenda-archives-mode))))
12466 ;; select this headline
12469 ((eq action 'sparse-tree)
12470 (and org-highlight-sparse-tree-matches
12471 (org-get-heading) (match-end 0)
12472 (org-highlight-new-match
12473 (match-beginning 0) (match-beginning 1)))
12474 (org-show-context 'tags-tree))
12475 ((eq action 'agenda)
12476 (setq txt (org-format-agenda-item
12479 (if (eq org-tags-match-list-sublevels 'indented)
12480 (make-string (1- level) ?.) "")
12485 priority (org-get-priority txt))
12487 (setq marker (org-agenda-new-marker))
12488 (org-add-props txt props
12489 'org-marker marker 'org-hd-marker marker 'org-category category
12491 'priority priority 'type "tagsmatch")
12493 ((functionp action)
12494 (setq org-map-continue-from nil)
12496 (setq rtn1 (funcall action))
12498 (t (error "Invalid action")))
12500 ;; if we are to skip sublevels, jump to end of subtree
12501 (unless org-tags-match-list-sublevels
12502 (org-end-of-subtree t)
12503 (backward-char 1))))
12504 ;; Get the correct position from where to continue
12505 (if org-map-continue-from
12506 (goto-char org-map-continue-from)
12507 (and (= (point) lspos) (end-of-line 1)))))
12508 (when (and (eq action 'sparse-tree)
12509 (not org-sparse-tree-open-archived-trees))
12510 (org-hide-archived-subtrees (point-min) (point-max)))
12513 (defun org-remove-uninherited-tags (tags)
12514 "Remove all tags that are not inherited from the list TAGS."
12516 ((eq org-use-tag-inheritance t)
12517 (if org-tags-exclude-from-inheritance
12518 (org-delete-all org-tags-exclude-from-inheritance tags)
12520 ((not org-use-tag-inheritance) nil)
12521 ((stringp org-use-tag-inheritance)
12524 (if (and (string-match org-use-tag-inheritance x)
12525 (not (member x org-tags-exclude-from-inheritance)))
12528 ((listp org-use-tag-inheritance)
12531 (if (member x org-use-tag-inheritance) x nil))
12534 (defvar todo-only) ;; dynamically scoped
12536 (defun org-match-sparse-tree (&optional todo-only match)
12537 "Create a sparse tree according to tags string MATCH.
12538 MATCH can contain positive and negative selection of tags, like
12539 \"+WORK+URGENT-WITHBOSS\".
12540 If optional argument TODO-ONLY is non-nil, only select lines that are
12543 (org-prepare-agenda-buffers (list (current-buffer)))
12544 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
12546 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
12548 (defvar org-cached-props nil)
12549 (defun org-cached-entry-get (pom property)
12550 (if (or (eq t org-use-property-inheritance)
12551 (and (stringp org-use-property-inheritance)
12552 (string-match org-use-property-inheritance property))
12553 (and (listp org-use-property-inheritance)
12554 (member property org-use-property-inheritance)))
12555 ;; Caching is not possible, check it directly
12556 (org-entry-get pom property 'inherit)
12557 ;; Get all properties, so that we can do complicated checks easily
12558 (cdr (assoc property (or org-cached-props
12559 (setq org-cached-props
12560 (org-entry-properties pom)))))))
12562 (defun org-global-tags-completion-table (&optional files)
12563 "Return the list of all tags in all agenda buffer/files.
12564 Optional FILES argument is a list of files to which can be used
12565 instead of the agenda files."
12572 (set-buffer (find-file-noselect file))
12573 (append (org-get-buffer-tags)
12574 (mapcar (lambda (x) (if (stringp (car-safe x))
12575 (list (car-safe x)) nil))
12577 (if (and files (car files))
12579 (org-agenda-files))))))))
12581 (defun org-make-tags-matcher (match)
12582 "Create the TAGS/TODO matcher form for the selection string MATCH."
12583 ;; todo-only is scoped dynamically into this function, and the function
12584 ;; may change it if the matcher asks for it.
12586 ;; Get a new match request, with completion
12587 (let ((org-last-tags-completion-table
12588 (org-global-tags-completion-table)))
12589 (setq match (org-completing-read-no-i
12590 "Match: " 'org-tags-completion-function nil nil nil
12591 'org-tags-history))))
12593 ;; Parse the string and create a lisp form
12594 (let ((match0 match)
12595 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
12597 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
12598 orterms term orlist re-p str-p level-p level-op time-p
12599 prop-p pn pv po gv rest)
12600 (if (string-match "/+" match)
12601 ;; match contains also a todo-matching request
12603 (setq tagsmatch (substring match 0 (match-beginning 0))
12604 todomatch (substring match (match-end 0)))
12605 (if (string-match "^!" todomatch)
12606 (setq todo-only t todomatch (substring todomatch 1)))
12607 (if (string-match "^\\s-*$" todomatch)
12608 (setq todomatch nil)))
12609 ;; only matching tags
12610 (setq tagsmatch match todomatch nil))
12612 ;; Make the tags matcher
12613 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
12614 (setq tagsmatcher t)
12615 (setq orterms (org-split-string tagsmatch "|") orlist nil)
12616 (while (setq term (pop orterms))
12617 (while (and (equal (substring term -1) "\\") orterms)
12618 (setq term (concat term "|" (pop orterms)))) ; repair bad split
12619 (while (string-match re term)
12620 (setq rest (substring term (match-end 0))
12621 minus (and (match-end 1)
12622 (equal (match-string 1 term) "-"))
12623 tag (save-match-data (replace-regexp-in-string
12625 (match-string 2 term)))
12626 re-p (equal (string-to-char tag) ?{)
12627 level-p (match-end 4)
12628 prop-p (match-end 5)
12630 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
12632 (setq level-op (org-op-to-function (match-string 3 term)))
12633 `(,level-op level ,(string-to-number
12634 (match-string 4 term))))
12636 (setq pn (match-string 5 term)
12637 po (match-string 6 term)
12638 pv (match-string 7 term)
12639 re-p (equal (string-to-char pv) ?{)
12640 str-p (equal (string-to-char pv) ?\")
12641 time-p (save-match-data
12642 (string-match "^\"[[<].*[]>]\"$" pv))
12643 pv (if (or re-p str-p) (substring pv 1 -1) pv))
12644 (if time-p (setq pv (org-matcher-time pv)))
12645 (setq po (org-op-to-function po (if time-p 'time str-p)))
12647 ((equal pn "CATEGORY")
12648 (setq gv '(get-text-property (point) 'org-category)))
12652 (setq gv `(org-cached-entry-get nil ,pn))))
12655 `(not (string-match ,pv (or ,gv "")))
12656 `(string-match ,pv (or ,gv "")))
12658 `(,po (or ,gv "") ,pv)
12659 `(,po (string-to-number (or ,gv ""))
12660 ,(string-to-number pv) ))))
12661 (t `(member ,tag tags-list)))
12662 mm (if minus (list 'not mm) mm)
12664 (push mm tagsmatcher))
12665 (push (if (> (length tagsmatcher) 1)
12666 (cons 'and tagsmatcher)
12669 (setq tagsmatcher nil))
12670 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
12672 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
12673 ;; Make the todo matcher
12674 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
12675 (setq todomatcher t)
12676 (setq orterms (org-split-string todomatch "|") orlist nil)
12677 (while (setq term (pop orterms))
12678 (while (string-match re term)
12679 (setq minus (and (match-end 1)
12680 (equal (match-string 1 term) "-"))
12681 kwd (match-string 2 term)
12682 re-p (equal (string-to-char kwd) ?{)
12683 term (substring term (match-end 0))
12685 `(string-match ,(substring kwd 1 -1) todo)
12686 (list 'equal 'todo kwd))
12687 mm (if minus (list 'not mm) mm))
12688 (push mm todomatcher))
12689 (push (if (> (length todomatcher) 1)
12690 (cons 'and todomatcher)
12693 (setq todomatcher nil))
12694 (setq todomatcher (if (> (length orlist) 1)
12695 (cons 'or orlist) (car orlist))))
12697 ;; Return the string and lisp forms of the matcher
12698 (setq matcher (if todomatcher
12699 (list 'and tagsmatcher todomatcher)
12701 (cons match0 matcher)))
12703 (defun org-op-to-function (op &optional stringp)
12704 "Turn an operator into the appropriate function."
12707 ((equal op "<" ) '(< string< org-time<))
12708 ((equal op ">" ) '(> org-string> org-time>))
12709 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
12710 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
12711 ((member op '("=" "==")) '(= string= org-time=))
12712 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
12713 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
12715 (defun org<> (a b) (not (= a b)))
12716 (defun org-string<= (a b) (or (string= a b) (string< a b)))
12717 (defun org-string>= (a b) (not (string< a b)))
12718 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
12719 (defun org-string<> (a b) (not (string= a b)))
12720 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
12721 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
12722 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
12723 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
12724 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
12725 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
12727 "Convert S to a floating point time.
12728 If S is already a number, just return it. If it is a string, parse
12729 it as a time string and apply `float-time' to it. If S is nil, just return 0."
12733 (condition-case nil
12734 (float-time (apply 'encode-time (org-parse-time-string s)))
12738 (defun org-time-today ()
12739 "Time in seconds today at 0:00.
12740 Returns the float number of seconds since the beginning of the
12741 epoch to the beginning of today (00:00)."
12742 (float-time (apply 'encode-time
12743 (append '(0 0 0) (nthcdr 3 (decode-time))))))
12745 (defun org-matcher-time (s)
12746 "Interpret a time comparison value."
12749 ((string= s "<now>") (float-time))
12750 ((string= s "<today>") (org-time-today))
12751 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
12752 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
12753 ((string-match "^<\\([-+][0-9]+\\)\\([dwmy]\\)>$" s)
12754 (+ (org-time-today)
12755 (* (string-to-number (match-string 1 s))
12756 (cdr (assoc (match-string 2 s)
12757 '(("d" . 86400.0) ("w" . 604800.0)
12758 ("m" . 2678400.0) ("y" . 31557600.0)))))))
12761 (defun org-match-any-p (re list)
12762 "Does re match any element of list?"
12763 (setq list (mapcar (lambda (x) (string-match re x)) list))
12766 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
12767 (defvar org-tags-overlay (make-overlay 1 1))
12768 (org-detach-overlay org-tags-overlay)
12770 (defun org-get-local-tags-at (&optional pos)
12771 "Get a list of tags defined in the current headline."
12772 (org-get-tags-at pos 'local))
12774 (defun org-get-local-tags ()
12775 "Get a list of tags defined in the current headline."
12776 (org-get-tags-at nil 'local))
12778 (defun org-get-tags-at (&optional pos local)
12779 "Get a list of all headline tags applicable at POS.
12780 POS defaults to point. If tags are inherited, the list contains
12781 the targets in the same sequence as the headlines appear, i.e.
12782 the tags of the current headline come last.
12783 When LOCAL is non-nil, only return tags from the current headline,
12784 ignore inherited ones."
12786 (if (and org-trust-scanner-tags
12787 (or (not pos) (equal pos (point)))
12790 (let (tags ltags lastpos parent)
12794 (goto-char (or pos (point)))
12797 (condition-case nil
12799 (org-back-to-heading t)
12800 (while (not (equal lastpos (point)))
12801 (setq lastpos (point))
12803 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
12804 (setq ltags (org-split-string
12805 (org-match-string-no-properties 1) ":"))
12807 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
12810 (org-remove-uninherited-tags ltags)
12813 (or org-use-tag-inheritance (throw 'done t))
12814 (if local (throw 'done t))
12815 (or (org-up-heading-safe) (error nil))
12820 (append (org-remove-uninherited-tags org-file-tags) tags))))))
12822 (defun org-add-prop-inherited (s)
12823 (add-text-properties 0 (length s) '(inherited t) s)
12826 (defun org-toggle-tag (tag &optional onoff)
12827 "Toggle the tag TAG for the current line.
12828 If ONOFF is `on' or `off', don't toggle but set to this state."
12831 (org-back-to-heading t)
12832 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
12835 (setq current (match-string 1))
12836 (replace-match ""))
12838 (setq current (nreverse (org-split-string current ":")))
12842 (or (member tag current) (push tag current)))
12844 (or (not (member tag current)) (setq current (delete tag current))))
12845 (t (if (member tag current)
12846 (setq current (delete tag current))
12848 (push tag current))))
12852 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
12853 (org-set-tags nil t))
12854 (delete-horizontal-space))
12855 (run-hooks 'org-after-tags-change-hook))
12858 (defun org-align-tags-here (to-col)
12859 ;; Assumes that this is a headline
12860 (let ((pos (point)) (col (current-column)) ncol tags-l p)
12861 (beginning-of-line 1)
12862 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
12863 (< pos (match-beginning 2)))
12865 (setq tags-l (- (match-end 2) (match-beginning 2)))
12866 (goto-char (match-beginning 1))
12868 (delete-region (point) (1+ (match-beginning 2)))
12869 (setq ncol (max (1+ (current-column))
12873 (- (abs to-col) tags-l))))
12875 (insert (make-string (- ncol (current-column)) ?\ ))
12876 (setq ncol (current-column))
12877 (when indent-tabs-mode (tabify p (point-at-eol)))
12878 (org-move-to-column (min ncol col) t))
12881 (defun org-set-tags-command (&optional arg just-align)
12882 "Call the set-tags command for the current entry."
12884 (if (org-on-heading-p)
12885 (org-set-tags arg just-align)
12887 (org-back-to-heading t)
12888 (org-set-tags arg just-align))))
12890 (defun org-set-tags-to (data)
12891 "Set the tags of the current entry to DATA, replacing the current tags.
12892 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
12893 If DATA is nil or the empty string, any tags will be removed."
12894 (interactive "sTags: ")
12898 ((equal data "") "")
12900 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
12903 (concat ":" (mapconcat 'identity data ":") ":"))
12907 (org-back-to-heading t)
12908 (when (looking-at org-complex-heading-regexp)
12911 (goto-char (match-beginning 5))
12913 (delete-region (point) (point-at-eol))
12914 (org-set-tags nil 'align))
12915 (goto-char (point-at-eol))
12917 (org-set-tags nil 'align)))
12918 (beginning-of-line 1)
12919 (if (looking-at ".*?\\([ \t]+\\)$")
12920 (delete-region (match-beginning 1) (match-end 1))))))
12922 (defun org-align-all-tags ()
12923 "Align the tags i all headings."
12926 (or (ignore-errors (org-back-to-heading t))
12927 (outline-next-heading))
12928 (if (org-on-heading-p)
12930 (message "No headings"))))
12932 (defvar org-indent-indentation-per-level)
12933 (defun org-set-tags (&optional arg just-align)
12934 "Set the tags for the current headline.
12935 With prefix ARG, realign all tags in headings in the current buffer."
12937 (let* ((re (concat "^" outline-regexp))
12938 (current (org-get-tags-string))
12939 (col (current-column))
12940 (org-setting-tags t)
12941 table current-tags inherited-tags ; computed below when needed
12942 tags p0 c0 c1 rpl di tc level)
12945 (goto-char (point-min))
12946 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
12947 (while (re-search-forward re nil t)
12948 (org-set-tags nil t)
12950 (message "All tags realigned to column %d" org-tags-column))
12952 (setq tags current)
12953 ;; Get a new set of tags from the user
12955 (setq table (append org-tag-persistent-alist
12956 (or org-tag-alist (org-get-buffer-tags))
12958 org-complete-tags-always-offer-all-agenda-tags
12959 (org-global-tags-completion-table
12960 (org-agenda-files))))
12961 org-last-tags-completion-table table
12962 current-tags (org-split-string current ":")
12963 inherited-tags (nreverse
12964 (nthcdr (length current-tags)
12965 (nreverse (org-get-tags-at))))
12967 (if (or (eq t org-use-fast-tag-selection)
12968 (and org-use-fast-tag-selection
12969 (delq nil (mapcar 'cdr table))))
12970 (org-fast-tag-selection
12971 current-tags inherited-tags table
12972 (if org-fast-tag-selection-include-todo
12973 org-todo-key-alist))
12974 (let ((org-add-colon-after-tag-completion t))
12976 (org-without-partial-completion
12977 (org-icompleting-read "Tags: "
12978 'org-tags-completion-function
12979 nil nil current 'org-tags-history)))))))
12980 (while (string-match "[-+&]+" tags)
12981 ;; No boolean logic, just a list
12982 (setq tags (replace-match ":" t t tags))))
12984 (setq tags (replace-regexp-in-string "[,]" ":" tags))
12986 (if org-tags-sort-function
12987 (setq tags (mapconcat 'identity
12988 (sort (org-split-string
12989 tags (org-re "[^[:alnum:]_@#%]+"))
12990 org-tags-sort-function) ":")))
12992 (if (string-match "\\`[\t ]*\\'" tags)
12994 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
12995 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
12997 ;; Insert new tags at the correct column
12998 (beginning-of-line 1)
12999 (setq level (or (and (looking-at org-outline-regexp)
13000 (- (match-end 0) (point) 1))
13003 ((and (equal current "") (equal tags "")))
13004 ((re-search-forward
13005 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
13007 (if (equal tags "")
13009 (goto-char (match-beginning 0))
13010 (setq c0 (current-column)
13011 ;; compute offset for the case of org-indent-mode active
13012 di (if org-indent-mode
13013 (* (1- org-indent-indentation-per-level) (1- level))
13015 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
13016 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
13017 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (length tags))))
13018 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
13019 (replace-match rpl t t)
13020 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
13022 (t (error "Tags alignment failed")))
13023 (org-move-to-column col)
13025 (run-hooks 'org-after-tags-change-hook)))))
13027 (defun org-change-tag-in-region (beg end tag off)
13028 "Add or remove TAG for each entry in the region.
13029 This works in the agenda, and also in an org-mode buffer."
13031 (list (region-beginning) (region-end)
13032 (let ((org-last-tags-completion-table
13034 (org-get-buffer-tags)
13035 (org-global-tags-completion-table))))
13036 (org-icompleting-read
13037 "Tag: " 'org-tags-completion-function nil nil nil
13038 'org-tags-history))
13040 (message "[s]et or
[r]emove? ")
13041 (equal (read-char-exclusive) ?r))))
13042 (if (fboundp 'deactivate-mark) (deactivate-mark))
13043 (let ((agendap (equal major-mode 'org-agenda-mode))
13044 l1 l2 m buf pos newhead (cnt 0))
13046 (setq l2 (1- (org-current-line)))
13048 (setq l1 (org-current-line))
13049 (loop for l from l1 to l2 do
13051 (setq m (get-text-property (point) 'org-hd-marker))
13052 (when (or (and (org-mode-p) (org-on-heading-p))
13054 (setq buf (if agendap (marker-buffer m) (current-buffer))
13055 pos (if agendap m (point)))
13056 (with-current-buffer buf
13060 (setq cnt (1+ cnt))
13061 (org-toggle-tag tag (if off 'off 'on))
13062 (setq newhead (org-get-heading)))))
13063 (and agendap (org-agenda-change-all-lines newhead m))))
13064 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
13066 (defun org-tags-completion-function (string predicate &optional flag)
13067 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
13068 (confirm (lambda (x) (stringp (car x)))))
13069 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
13070 (setq s1 (match-string 1 string)
13071 s2 (match-string 2 string))
13072 (setq s1 "" s2 string))
13076 (setq rtn (try-completion s2 ctable confirm))
13079 (concat s1 s2 (substring rtn (length s2))
13080 (if (and org-add-colon-after-tag-completion
13081 (assoc rtn ctable))
13086 (all-completions s2 ctable confirm)
13090 (assoc s2 ctable)))
13093 (defun org-fast-tag-insert (kwd tags face &optional end)
13094 "Insert KDW, and the TAGS, the latter with face FACE. Also insert END."
13095 (insert (format "%-12s" (concat kwd ":"))
13096 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
13099 (defun org-fast-tag-show-exit (flag)
13102 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
13103 (replace-match ""))
13106 (org-move-to-column (- (window-width) 19) t)
13107 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
13109 (defun org-set-current-tags-overlay (current prefix)
13110 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
13111 (if (featurep 'xemacs)
13112 (org-overlay-display org-tags-overlay (concat prefix s)
13113 'secondary-selection)
13114 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
13115 (org-overlay-display org-tags-overlay (concat prefix s)))))
13117 (defvar org-last-tag-selection-key nil)
13118 (defun org-fast-tag-selection (current inherited table &optional todo-table)
13119 "Fast tag selection with single keys.
13120 CURRENT is the current list of tags in the headline, INHERITED is the
13121 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
13122 possibly with grouping information. TODO-TABLE is a similar table with
13123 TODO keywords, should these have keys assigned to them.
13124 If the keys are nil, a-z are automatically assigned.
13125 Returns the new tags string, or nil to not change the current settings."
13126 (let* ((fulltable (append table todo-table))
13127 (maxlen (apply 'max (mapcar
13129 (if (stringp (car x)) (string-width (car x)) 0))
13131 (buf (current-buffer))
13132 (expert (eq org-fast-tag-selection-single-key 'expert))
13134 (fwidth (+ maxlen 3 1 3))
13135 (ncol (/ (- (window-width) 4) fwidth))
13138 tg cnt e c char c1 c2 ntable tbl rtn
13139 ov-start ov-end ov-prefix
13140 (exit-after-next org-fast-tag-selection-single-key)
13141 (done-keywords org-done-keywords)
13144 (beginning-of-line 1)
13146 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
13147 (setq ov-start (match-beginning 1)
13148 ov-end (match-end 1)
13150 (setq ov-start (1- (point-at-eol))
13151 ov-end (1+ ov-start))
13152 (skip-chars-forward "^\n\r")
13155 (buffer-substring (1- (point)) (point))
13156 (if (> (current-column) org-tags-column)
13158 (make-string (- org-tags-column (current-column)) ?\ ))))))
13159 (move-overlay org-tags-overlay ov-start ov-end)
13160 (save-window-excursion
13162 (set-buffer (get-buffer-create " *Org tags*"))
13163 (delete-other-windows)
13164 (split-window-vertically)
13165 (org-switch-to-buffer-other-window (get-buffer-create " *Org tags*")))
13167 (org-set-local 'org-done-keywords done-keywords)
13168 (org-fast-tag-insert "Inherited" inherited i-face "\n")
13169 (org-fast-tag-insert "Current" current c-face "\n\n")
13170 (org-fast-tag-show-exit exit-after-next)
13171 (org-set-current-tags-overlay current ov-prefix)
13172 (setq tbl fulltable char ?a cnt 0)
13173 (while (setq e (pop tbl))
13175 ((equal (car e) :startgroup)
13176 (push '() groups) (setq ingroup t)
13177 (when (not (= cnt 0))
13180 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
13181 ((equal (car e) :endgroup)
13182 (setq ingroup nil cnt 0)
13183 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
13184 ((equal e '(:newline))
13185 (when (not (= cnt 0))
13189 (while (equal (car tbl) '(:newline))
13191 (setq tbl (cdr tbl)))))
13193 (setq tg (copy-sequence (car e)) c2 nil)
13196 ;; automatically assign a character.
13197 (setq c1 (string-to-char
13198 (downcase (substring
13199 tg (if (= (string-to-char tg) ?@) 1 0)))))
13200 (if (or (rassoc c1 ntable) (rassoc c1 table))
13201 (while (or (rassoc char ntable) (rassoc char table))
13202 (setq char (1+ char)))
13204 (setq c (or c2 char)))
13205 (if ingroup (push tg (car groups)))
13206 (setq tg (org-add-props tg nil 'face
13208 ((not (assoc tg table))
13209 (org-get-todo-face tg))
13210 ((member tg current) c-face)
13211 ((member tg inherited) i-face)
13213 (if (and (= cnt 0) (not ingroup)) (insert " "))
13214 (insert "[" c "] " tg (make-string
13215 (- fwidth 4 (length tg)) ?\ ))
13216 (push (cons tg c) ntable)
13217 (when (= (setq cnt (1+ cnt)) ncol)
13219 (if ingroup (insert " "))
13221 (setq ntable (nreverse ntable))
13223 (goto-char (point-min))
13224 (if (not expert) (org-fit-window-to-buffer))
13228 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
13229 (if (not groups) "no " "")
13230 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
13231 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13232 (setq org-last-tag-selection-key c)
13234 ((= c ?\r) (throw 'exit t))
13236 (setq groups (not groups))
13237 (goto-char (point-min))
13238 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
13241 (org-fast-tag-show-exit
13242 (setq exit-after-next (not exit-after-next)))
13244 (delete-other-windows)
13245 (set-window-buffer (split-window-vertically) " *Org tags*")
13246 (org-switch-to-buffer-other-window " *Org tags*")
13247 (org-fit-window-to-buffer)))
13249 (and (= c ?q) (not (rassoc c ntable))))
13250 (org-detach-overlay org-tags-overlay)
13251 (setq quit-flag t))
13254 (if exit-after-next (setq exit-after-next 'now)))
13256 (condition-case nil
13257 (setq tg (org-icompleting-read
13260 (with-current-buffer buf
13261 (org-get-buffer-tags)))))
13262 (quit (setq tg "")))
13263 (when (string-match "\\S-" tg)
13264 (add-to-list 'buffer-tags (list tg))
13265 (if (member tg current)
13266 (setq current (delete tg current))
13267 (push tg current)))
13268 (if exit-after-next (setq exit-after-next 'now)))
13269 ((setq e (rassoc c todo-table) tg (car e))
13270 (with-current-buffer buf
13271 (save-excursion (org-todo tg)))
13272 (if exit-after-next (setq exit-after-next 'now)))
13273 ((setq e (rassoc c ntable) tg (car e))
13274 (if (member tg current)
13275 (setq current (delete tg current))
13276 (loop for g in groups do
13279 (setq current (delete x current)))
13282 (if exit-after-next (setq exit-after-next 'now))))
13284 ;; Create a sorted list
13288 (assoc b (cdr (memq (assoc a ntable) ntable))))))
13289 (if (eq exit-after-next 'now) (throw 'exit t))
13290 (goto-char (point-min))
13291 (beginning-of-line 2)
13292 (delete-region (point) (point-at-eol))
13293 (org-fast-tag-insert "Current" current c-face)
13294 (org-set-current-tags-overlay current ov-prefix)
13295 (while (re-search-forward
13296 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
13297 (setq tg (match-string 1))
13298 (add-text-properties
13299 (match-beginning 1) (match-end 1)
13302 ((member tg current) c-face)
13303 ((member tg inherited) i-face)
13304 (t (get-text-property (match-beginning 1) 'face))))))
13305 (goto-char (point-min)))))
13306 (org-detach-overlay org-tags-overlay)
13308 (mapconcat 'identity current ":")
13311 (defun org-get-tags-string ()
13312 "Get the TAGS string in the current headline."
13313 (unless (org-on-heading-p t)
13314 (error "Not on a heading"))
13316 (beginning-of-line 1)
13317 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
13318 (org-match-string-no-properties 1)
13321 (defun org-get-tags ()
13322 "Get the list of tags specified in the current headline."
13323 (org-split-string (org-get-tags-string) ":"))
13325 (defun org-get-buffer-tags ()
13326 "Get a table of all tags used in the buffer, for completion."
13329 (goto-char (point-min))
13330 (while (re-search-forward
13331 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
13332 (when (equal (char-after (point-at-bol 0)) ?*)
13333 (mapc (lambda (x) (add-to-list 'tags x))
13334 (org-split-string (org-match-string-no-properties 1) ":")))))
13335 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
13336 (mapcar 'list tags)))
13338 ;;;; The mapping API
13341 (defun org-map-entries (func &optional match scope &rest skip)
13342 "Call FUNC at each headline selected by MATCH in SCOPE.
13344 FUNC is a function or a lisp form. The function will be called without
13345 arguments, with the cursor positioned at the beginning of the headline.
13346 The return values of all calls to the function will be collected and
13347 returned as a list.
13349 The call to FUNC will be wrapped into a save-excursion form, so FUNC
13350 does not need to preserve point. After evaluation, the cursor will be
13351 moved to the end of the line (presumably of the headline of the
13352 processed entry) and search continues from there. Under some
13353 circumstances, this may not produce the wanted results. For example,
13354 if you have removed (e.g. archived) the current (sub)tree it could
13355 mean that the next entry will be skipped entirely. In such cases, you
13356 can specify the position from where search should continue by making
13357 FUNC set the variable `org-map-continue-from' to the desired buffer
13360 MATCH is a tags/property/todo match as it is used in the agenda tags view.
13361 Only headlines that are matched by this query will be considered during
13362 the iteration. When MATCH is nil or t, all headlines will be
13363 visited by the iteration.
13365 SCOPE determines the scope of this command. It can be any of:
13367 nil The current buffer, respecting the restriction if any
13368 tree The subtree started with the entry at point
13369 file The current buffer, without restriction
13371 The current buffer, and any archives associated with it
13372 agenda All agenda files
13373 agenda-with-archives
13374 All agenda files with any archive files associated with them
13376 If this is a list, all files in the list will be scanned
13378 The remaining args are treated as settings for the skipping facilities of
13379 the scanner. The following items can be given here:
13381 archive skip trees with the archive tag.
13382 comment skip trees with the COMMENT keyword
13383 function or Emacs Lisp form:
13384 will be used as value for `org-agenda-skip-function', so whenever
13385 the function returns t, FUNC will not be called for that
13386 entry and search will continue from the point where the
13387 function leaves it.
13389 If your function needs to retrieve the tags including inherited tags
13390 at the *current* entry, you can use the value of the variable
13391 `org-scanner-tags' which will be much faster than getting the value
13392 with `org-get-tags-at'. If your function gets properties with
13393 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
13394 to t around the call to `org-entry-properties' to get the same speedup.
13395 Note that if your function moves around to retrieve tags and properties at
13396 a *different* entry, you cannot use these techniques."
13397 (let* ((org-agenda-archives-mode nil) ; just to make sure
13398 (org-agenda-skip-archived-trees (memq 'archive skip))
13399 (org-agenda-skip-comment-trees (memq 'comment skip))
13400 (org-agenda-skip-function
13401 (car (org-delete-all '(comment archive) skip)))
13402 (org-tags-match-list-sublevels t)
13404 org-todo-keywords-for-agenda
13405 org-done-keywords-for-agenda
13406 org-todo-keyword-alist-for-agenda
13407 org-drawers-for-agenda
13408 org-tag-alist-for-agenda)
13411 ((eq match t) (setq matcher t))
13412 ((eq match nil) (setq matcher t))
13413 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
13417 (when (eq scope 'tree)
13418 (org-back-to-heading t)
13419 (org-narrow-to-subtree)
13424 (org-prepare-agenda-buffers
13425 (list (buffer-file-name (current-buffer))))
13426 (setq res (org-scan-tags func matcher)))
13427 ;; Get the right scope
13429 ((and scope (listp scope) (symbolp (car scope)))
13430 (setq scope (eval scope)))
13431 ((eq scope 'agenda)
13432 (setq scope (org-agenda-files t)))
13433 ((eq scope 'agenda-with-archives)
13434 (setq scope (org-agenda-files t))
13435 (setq scope (org-add-archive-files scope)))
13437 (setq scope (list (buffer-file-name))))
13438 ((eq scope 'file-with-archives)
13439 (setq scope (org-add-archive-files (list (buffer-file-name))))))
13440 (org-prepare-agenda-buffers scope)
13441 (while (setq file (pop scope))
13442 (with-current-buffer (org-find-base-buffer-visiting file)
13446 (goto-char (point-min))
13447 (setq res (append res (org-scan-tags func matcher))))))))))
13452 ;;; Setting and retrieving properties
13454 (defconst org-special-properties
13455 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "CLOSED" "PRIORITY"
13456 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE" "CLOCKSUM")
13457 "The special properties valid in Org-mode.
13459 These are properties that are not defined in the property drawer,
13460 but in some other way.")
13462 (defconst org-default-properties
13463 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
13464 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
13465 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
13466 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
13467 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE"
13468 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
13469 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
13470 "Some properties that are used by Org-mode for various purposes.
13471 Being in this list makes sure that they are offered for completion.")
13473 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
13474 "Regular expression matching the first line of a property drawer.")
13476 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
13477 "Regular expression matching the last line of a property drawer.")
13479 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
13480 "Regular expression matching the first line of a property drawer.")
13482 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
13483 "Regular expression matching the first line of a property drawer.")
13485 (defconst org-property-drawer-re
13486 (concat "\\(" org-property-start-re "\\)[^\000]*\\("
13487 org-property-end-re "\\)\n?")
13488 "Matches an entire property drawer.")
13490 (defconst org-clock-drawer-re
13491 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*\\("
13492 org-property-end-re "\\)\n?")
13493 "Matches an entire clock drawer.")
13495 (defun org-property-action ()
13496 "Do an action on properties."
13499 (org-at-property-p)
13500 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
13501 (setq c (read-char-exclusive))
13504 (call-interactively 'org-set-property))
13506 (call-interactively 'org-delete-property))
13508 (call-interactively 'org-delete-property-globally))
13510 (call-interactively 'org-compute-property-at-point))
13511 (t (error "No such property action %c" c)))))
13513 (defun org-set-effort (&optional value)
13514 "Set the effort property of the current entry.
13515 With numerical prefix arg, use the nth allowed value, 0 stands for the 10th
13518 (if (equal value 0) (setq value 10))
13519 (let* ((completion-ignore-case t)
13520 (prop org-effort-property)
13521 (cur (org-entry-get nil prop))
13522 (allowed (org-property-get-allowed-values nil prop 'table))
13523 (existing (mapcar 'list (org-property-values prop)))
13526 ((stringp value) value)
13527 ((and allowed (integerp value))
13528 (or (car (nth (1- value) allowed))
13529 (car (org-last allowed))))
13531 (message "Select 1-9,0, [RET%s]: %s"
13532 (if cur (concat "=" cur) "")
13533 (mapconcat 'car allowed " "))
13534 (setq rpl (read-char-exclusive))
13535 (if (equal rpl ?\r)
13537 (setq rpl (- rpl ?0))
13538 (if (equal rpl 0) (setq rpl 10))
13539 (if (and (> rpl 0) (<= rpl (length allowed)))
13540 (car (nth (1- rpl) allowed))
13541 (org-completing-read "Effort: " allowed nil))))
13543 (let (org-completion-use-ido org-completion-use-iswitchb)
13544 (org-completing-read
13545 (concat "Effort " (if (and cur (string-match "\\S-" cur))
13546 (concat "[" cur "]") "")
13548 existing nil nil "" nil cur))))))
13549 (unless (equal (org-entry-get nil prop) val)
13550 (org-entry-put nil prop val))
13551 (message "%s is now %s" prop val)))
13553 (defun org-at-property-p ()
13554 "Is cursor inside a property drawer?"
13556 (beginning-of-line 1)
13557 (when (looking-at (org-re "^[ \t]*\\(:\\([[:alpha:]][[:alnum:]_-]*\\):\\)[ \t]*\\(.*\\)"))
13558 (save-match-data ;; Used by calling procedures
13560 (range (unless (org-before-first-heading-p)
13561 (org-get-property-block))))
13562 (and range (<= (car range) p) (< p (cdr range))))))))
13564 (defun org-get-property-block (&optional beg end force)
13565 "Return the (beg . end) range of the body of the property drawer.
13566 BEG and END can be beginning and end of subtree, if not given
13567 they will be found.
13568 If the drawer does not exist and FORCE is non-nil, create the drawer."
13571 (let* ((beg (or beg (progn (org-back-to-heading t) (point))))
13572 (end (or end (progn (outline-next-heading) (point)))))
13574 (if (re-search-forward org-property-start-re end t)
13575 (setq beg (1+ (match-end 0)))
13578 (org-insert-property-drawer)
13579 (setq end (progn (outline-next-heading) (point))))
13582 (if (re-search-forward org-property-start-re end t)
13583 (setq beg (1+ (match-end 0)))))
13584 (if (re-search-forward org-property-end-re end t)
13585 (setq end (match-beginning 0))
13586 (or force (throw 'exit nil))
13589 (org-indent-line-function)
13590 (insert ":END:\n"))
13593 (defun org-entry-properties (&optional pom which specific)
13594 "Get all properties of the entry at point-or-marker POM.
13595 This includes the TODO keyword, the tags, time strings for deadline,
13596 scheduled, and clocking, and any additional properties defined in the
13597 entry. The return value is an alist, keys may occur multiple times
13598 if the property key was used several times.
13599 POM may also be nil, in which case the current entry is used.
13600 If WHICH is nil or `all', get all properties. If WHICH is
13601 `special' or `standard', only get that subclass. If WHICH
13602 is a string only get exactly this property. SPECIFIC can be a string, the
13603 specific property we are interested in. Specifying it can speed
13604 things up because then unnecessary parsing is avoided."
13605 (setq which (or which 'all))
13606 (org-with-point-at pom
13607 (let ((clockstr (substring org-clock-string 0 -1))
13608 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY" "BLOCKED"))
13609 (case-fold-search nil)
13610 beg end range props sum-props key key1 value string clocksum)
13612 (when (condition-case nil
13613 (and (org-mode-p) (org-back-to-heading t))
13616 (setq sum-props (get-text-property (point) 'org-summaries))
13617 (setq clocksum (get-text-property (point) :org-clock-minutes))
13618 (outline-next-heading)
13620 (when (memq which '(all special))
13621 ;; Get the special properties, like TODO and tags
13623 (when (and (or (not specific) (string= specific "TODO"))
13624 (looking-at org-todo-line-regexp) (match-end 2))
13625 (push (cons "TODO" (org-match-string-no-properties 2)) props))
13626 (when (and (or (not specific) (string= specific "PRIORITY"))
13627 (looking-at org-priority-regexp))
13628 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
13629 (when (or (not specific) (string= specific "FILE"))
13630 (push (cons "FILE" buffer-file-name) props))
13631 (when (and (or (not specific) (string= specific "TAGS"))
13632 (setq value (org-get-tags-string))
13633 (string-match "\\S-" value))
13634 (push (cons "TAGS" value) props))
13635 (when (and (or (not specific) (string= specific "ALLTAGS"))
13636 (setq value (org-get-tags-at)))
13637 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":")
13640 (when (or (not specific) (string= specific "BLOCKED"))
13641 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props))
13642 (when (or (not specific)
13644 '("SCHEDULED" "DEADLINE" "CLOCK" "CLOSED"
13645 "TIMESTAMP" "TIMESTAMP_IA")))
13647 (while (re-search-forward org-maybe-keyword-time-regexp end t)
13648 (setq key (if (match-end 1)
13649 (substring (org-match-string-no-properties 1)
13651 string (if (equal key clockstr)
13655 (match-beginning 3) (goto-char
13657 (substring (org-match-string-no-properties 3)
13659 ;; Get the correct property name from the key. This is
13660 ;; necessary if the user has configured time keywords.
13661 (setq key1 (concat key ":"))
13665 (if (= (char-after (match-beginning 3)) ?\[)
13666 "TIMESTAMP_IA" "TIMESTAMP")))
13667 ((equal key1 org-scheduled-string) (setq key "SCHEDULED"))
13668 ((equal key1 org-deadline-string) (setq key "DEADLINE"))
13669 ((equal key1 org-closed-string) (setq key "CLOSED"))
13670 ((equal key1 org-clock-string) (setq key "CLOCK")))
13671 (if (and specific (equal key specific) (not (equal key "CLOCK")))
13673 (push (cons key string) props)
13674 ;; no need to search further if match is found
13676 (when (or (equal key "CLOCK") (not (assoc key props)))
13677 (push (cons key string) props))))))
13680 (when (memq which '(all standard))
13681 ;; Get the standard properties, like :PROP: ...
13682 (setq range (org-get-property-block beg end))
13684 (goto-char (car range))
13685 (while (re-search-forward
13686 (org-re "^[ \t]*:\\([[:alpha:]][[:alnum:]_-]*\\):[ \t]*\\(\\S-.*\\)?")
13688 (setq key (org-match-string-no-properties 1)
13689 value (org-trim (or (org-match-string-no-properties 2) "")))
13690 (unless (member key excluded)
13691 (push (cons key (or value "")) props)))))
13693 (push (cons "CLOCKSUM"
13694 (org-columns-number-to-string (/ (float clocksum) 60.)
13697 (unless (assoc "CATEGORY" props)
13698 (push (cons "CATEGORY" (org-get-category)) props))
13699 (append sum-props (nreverse props)))))))
13701 (defun org-entry-get (pom property &optional inherit literal-nil)
13702 "Get value of PROPERTY for entry at point-or-marker POM.
13703 If INHERIT is non-nil and the entry does not have the property,
13704 then also check higher levels of the hierarchy.
13705 If INHERIT is the symbol `selective', use inheritance only if the setting
13706 in `org-use-property-inheritance' selects PROPERTY for inheritance.
13707 If the property is present but empty, the return value is the empty string.
13708 If the property is not present at all, nil is returned.
13710 If LITERAL-NIL is set, return the string value \"nil\" as a string,
13711 do not interpret it as the list atom nil. This is used for inheritance
13712 when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
13713 (org-with-point-at pom
13714 (if (and inherit (if (eq inherit 'selective)
13715 (org-property-inherit-p property)
13717 (org-entry-get-with-inheritance property literal-nil)
13718 (if (member property org-special-properties)
13719 ;; We need a special property. Use `org-entry-properties' to
13720 ;; retrieve it, but specify the wanted property
13721 (cdr (assoc property (org-entry-properties nil 'special property)))
13722 (let ((range (unless (org-before-first-heading-p)
13723 (org-get-property-block))))
13725 (goto-char (car range))
13727 (org-re-property property)
13729 ;; Found the property, return it.
13732 (org-match-string-no-properties 1)
13733 (org-not-nil (org-match-string-no-properties 1)))
13736 (defun org-property-or-variable-value (var &optional inherit)
13737 "Check if there is a property fixing the value of VAR.
13738 If yes, return this value. If not, return the current value of the variable."
13739 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
13740 (if (and prop (stringp prop) (string-match "\\S-" prop))
13742 (symbol-value var))))
13744 (defun org-entry-delete (pom property)
13745 "Delete the property PROPERTY from entry at point-or-marker POM."
13746 (org-with-point-at pom
13747 (if (member property org-special-properties)
13748 nil ; cannot delete these properties.
13749 (let ((range (org-get-property-block)))
13751 (goto-char (car range))
13753 (org-re-property property)
13756 (delete-region (match-beginning 0) (1+ (point-at-eol)))
13760 ;; Multi-values properties are properties that contain multiple values
13761 ;; These values are assumed to be single words, separated by whitespace.
13762 (defun org-entry-add-to-multivalued-property (pom property value)
13763 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
13764 (let* ((old (org-entry-get pom property))
13765 (values (and old (org-split-string old "[ \t]"))))
13766 (setq value (org-entry-protect-space value))
13767 (unless (member value values)
13768 (setq values (cons value values))
13769 (org-entry-put pom property
13770 (mapconcat 'identity values " ")))))
13772 (defun org-entry-remove-from-multivalued-property (pom property value)
13773 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
13774 (let* ((old (org-entry-get pom property))
13775 (values (and old (org-split-string old "[ \t]"))))
13776 (setq value (org-entry-protect-space value))
13777 (when (member value values)
13778 (setq values (delete value values))
13779 (org-entry-put pom property
13780 (mapconcat 'identity values " ")))))
13782 (defun org-entry-member-in-multivalued-property (pom property value)
13783 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
13784 (let* ((old (org-entry-get pom property))
13785 (values (and old (org-split-string old "[ \t]"))))
13786 (setq value (org-entry-protect-space value))
13787 (member value values)))
13789 (defun org-entry-get-multivalued-property (pom property)
13790 "Return a list of values in a multivalued property."
13791 (let* ((value (org-entry-get pom property))
13792 (values (and value (org-split-string value "[ \t]"))))
13793 (mapcar 'org-entry-restore-space values)))
13795 (defun org-entry-put-multivalued-property (pom property &rest values)
13796 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
13797 VALUES should be a list of strings. Spaces will be protected."
13798 (org-entry-put pom property
13799 (mapconcat 'org-entry-protect-space values " "))
13800 (let* ((value (org-entry-get pom property))
13801 (values (and value (org-split-string value "[ \t]"))))
13802 (mapcar 'org-entry-restore-space values)))
13804 (defun org-entry-protect-space (s)
13805 "Protect spaces and newline in string S."
13806 (while (string-match " " s)
13807 (setq s (replace-match "%20" t t s)))
13808 (while (string-match "\n" s)
13809 (setq s (replace-match "%0A" t t s)))
13812 (defun org-entry-restore-space (s)
13813 "Restore spaces and newline in string S."
13814 (while (string-match "%20" s)
13815 (setq s (replace-match " " t t s)))
13816 (while (string-match "%0A" s)
13817 (setq s (replace-match "\n" t t s)))
13820 (defvar org-entry-property-inherited-from (make-marker)
13821 "Marker pointing to the entry from where a property was inherited.
13822 Each call to `org-entry-get-with-inheritance' will set this marker to the
13823 location of the entry where the inheritance search matched. If there was
13824 no match, the marker will point nowhere.
13825 Note that also `org-entry-get' calls this function, if the INHERIT flag
13828 (defun org-entry-get-with-inheritance (property &optional literal-nil)
13829 "Get entry property, and search higher levels if not present.
13830 The search will stop at the first ancestor which has the property defined.
13831 If the value found is \"nil\", return nil to show that the property
13832 should be considered as undefined (this is the meaning of nil here).
13833 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
13834 (move-marker org-entry-property-inherited-from nil)
13836 (unless (org-before-first-heading-p)
13842 (when (setq tmp (org-entry-get nil property nil 'literal-nil))
13843 (org-back-to-heading t)
13844 (move-marker org-entry-property-inherited-from (point))
13846 (or (org-up-heading-safe) (throw 'ex nil)))))))
13848 (cdr (assoc property org-file-properties))
13849 (cdr (assoc property org-global-properties))
13850 (cdr (assoc property org-global-properties-fixed))))
13851 (if literal-nil tmp (org-not-nil tmp))))
13853 (defvar org-property-changed-functions nil
13854 "Hook called when the value of a property has changed.
13855 Each hook function should accept two arguments, the name of the property
13856 and the new value.")
13858 (defun org-entry-put (pom property value)
13859 "Set PROPERTY to VALUE for entry at point-or-marker POM."
13860 (org-with-point-at pom
13861 (org-back-to-heading t)
13862 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
13865 ((equal property "TODO")
13866 (when (and (stringp value) (string-match "\\S-" value)
13867 (not (member value org-todo-keywords-1)))
13868 (error "\"%s\" is not a valid TODO state" value))
13869 (if (or (not value)
13870 (not (string-match "\\S-" value)))
13871 (setq value 'none))
13873 (org-set-tags nil 'align))
13874 ((equal property "PRIORITY")
13875 (org-priority (if (and value (stringp value) (string-match "\\S-" value))
13876 (string-to-char value) ?\ ))
13877 (org-set-tags nil 'align))
13878 ((equal property "SCHEDULED")
13879 (if (re-search-forward org-scheduled-time-regexp end t)
13881 ((eq value 'earlier) (org-timestamp-change -1 'day))
13882 ((eq value 'later) (org-timestamp-change 1 'day))
13883 (t (call-interactively 'org-schedule)))
13884 (call-interactively 'org-schedule)))
13885 ((equal property "DEADLINE")
13886 (if (re-search-forward org-deadline-time-regexp end t)
13888 ((eq value 'earlier) (org-timestamp-change -1 'day))
13889 ((eq value 'later) (org-timestamp-change 1 'day))
13890 (t (call-interactively 'org-deadline)))
13891 (call-interactively 'org-deadline)))
13892 ((member property org-special-properties)
13893 (error "The %s property can not yet be set with `org-entry-put'"
13895 (t ; a non-special property
13896 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
13897 (setq range (org-get-property-block beg end 'force))
13898 (goto-char (car range))
13899 (if (re-search-forward
13900 (org-re-property property) (cdr range) t)
13902 (delete-region (match-beginning 1) (match-end 1))
13903 (goto-char (match-beginning 1)))
13904 (goto-char (cdr range))
13907 (org-indent-line-function)
13908 (insert ":" property ":"))
13909 (and value (insert " " value))
13910 (org-indent-line-function)))))
13911 (run-hook-with-args 'org-property-changed-functions property value)))
13913 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
13914 "Get all property keys in the current buffer.
13915 With INCLUDE-SPECIALS, also list the special properties that reflect things
13916 like tags and TODO state.
13917 With INCLUDE-DEFAULTS, also include properties that has special meaning
13918 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING
13920 With INCLUDE-COLUMNS, also include property names given in COLUMN
13921 formats in the current buffer."
13922 (let (rtn range cfmt s p)
13926 (goto-char (point-min))
13927 (while (re-search-forward org-property-start-re nil t)
13928 (setq range (org-get-property-block))
13929 (goto-char (car range))
13930 (while (re-search-forward
13931 (org-re "^[ \t]*:\\([-[:alnum:]_]+\\):")
13933 (add-to-list 'rtn (org-match-string-no-properties 1)))
13934 (outline-next-heading))))
13936 (when include-specials
13937 (setq rtn (append org-special-properties rtn)))
13939 (when include-defaults
13940 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties)
13941 (add-to-list 'rtn org-effort-property))
13943 (when include-columns
13947 (goto-char (point-min))
13948 (while (re-search-forward
13949 "^\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
13951 (setq cfmt (match-string 2) s 0)
13952 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
13954 (setq s (match-end 0)
13955 p (match-string 1 cfmt))
13956 (unless (or (equal p "ITEM")
13957 (member p org-special-properties))
13958 (add-to-list 'rtn (match-string 1 cfmt))))))))
13960 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
13962 (defsubst org-re-property (property)
13963 "Return a regexp matching PROPERTY.
13964 Match group 1 will be set to the value "
13965 (concat "^[ \t]*:" (regexp-quote property) ":[ \t]*\\(\\S-.*\\)"))
13967 (defun org-property-values (key)
13968 "Return a list of all values of property KEY in the current buffer."
13972 (goto-char (point-min))
13973 (let ((re (org-re-property key))
13975 (while (re-search-forward re nil t)
13976 (add-to-list 'values (org-trim (match-string 1))))
13977 (delete "" values)))))
13979 (defun org-insert-property-drawer ()
13980 "Insert a property drawer into the current entry."
13982 (org-back-to-heading t)
13983 (looking-at outline-regexp)
13984 (let ((indent (if org-adapt-indentation
13985 (- (match-end 0)(match-beginning 0))
13988 (re (concat "^[ \t]*" org-keyword-time-regexp))
13990 (outline-next-heading)
13993 (while (re-search-forward re end t))
13994 (setq hiddenp (outline-invisible-p))
13996 (and (equal (char-after) ?\n) (forward-char 1))
13997 (while (looking-at "^[ \t]*\\(:CLOCK:\\|:LOGBOOK:\\|CLOCK:\\|:END:\\)")
13998 (if (member (match-string 1) '("CLOCK:" ":END:"))
13999 ;; just skip this line
14000 (beginning-of-line 2)
14001 ;; Drawer start, find the end
14002 (re-search-forward "^\\*+ \\|^[ \t]*:END:" nil t)
14003 (beginning-of-line 1)))
14004 (org-skip-over-state-notes)
14005 (skip-chars-backward " \t\n\r")
14006 (if (eq (char-before) ?*) (forward-char 1))
14007 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
14008 (beginning-of-line 0)
14009 (org-indent-to-column indent)
14010 (beginning-of-line 2)
14011 (org-indent-to-column indent)
14012 (beginning-of-line 0)
14015 (org-back-to-heading t)
14017 (org-flag-drawer t))))
14019 (defvar org-property-set-functions-alist nil
14020 "Property set function alist.
14021 Each entry should have the following format:
14023 (PROPERTY . READ-FUNCTION)
14025 The read function will be called with the same argument as
14026 `org-completing-read'.")
14028 (defun org-set-property-function (property)
14029 "Get the function that should be used to set PROPERTY.
14030 This is computed according to `org-property-set-functions-alist'."
14031 (or (cdr (assoc property org-property-set-functions-alist))
14032 'org-completing-read))
14034 (defun org-read-property-value (property)
14035 "Read PROPERTY value from user."
14036 (let* ((completion-ignore-case t)
14037 (allowed (org-property-get-allowed-values nil property 'table))
14038 (cur (org-entry-get nil property))
14039 (prompt (concat property " value"
14040 (if (and cur (string-match "\\S-" cur))
14041 (concat " [" cur "]") "") ": "))
14042 (set-function (org-set-property-function property))
14044 (funcall set-function prompt allowed nil
14045 (not (get-text-property 0 'org-unrestricted
14047 (let (org-completion-use-ido org-completion-use-iswitchb)
14048 (funcall set-function prompt
14049 (mapcar 'list (org-property-values property))
14050 nil nil "" nil cur)))))
14055 (defun org-read-property-name ()
14056 "Read a property name."
14057 (let* ((completion-ignore-case t)
14058 (keys (org-buffer-property-keys nil t t))
14059 (property (org-icompleting-read "Property: " (mapcar 'list keys))))
14060 (if (member property keys)
14062 (or (cdr (assoc (downcase property)
14063 (mapcar (lambda (x) (cons (downcase x) x))
14067 (defun org-set-property (property value)
14068 "In the current entry, set PROPERTY to VALUE.
14069 When called interactively, this will prompt for a property name, offering
14070 completion on existing and default properties. And then it will prompt
14071 for a value, offering completion either on allowed values (via an inherited
14072 xxx_ALL property) or on existing values in other instances of this property
14073 in the current file."
14074 (interactive (list nil nil))
14075 (let* ((property (or property (org-read-property-name)))
14076 (value (or value (org-read-property-value property))))
14077 (unless (equal (org-entry-get nil property) value)
14078 (org-entry-put nil property value))))
14080 (defun org-delete-property (property)
14081 "In the current entry, delete PROPERTY."
14083 (let* ((completion-ignore-case t)
14084 (prop (org-icompleting-read "Property: "
14085 (org-entry-properties nil 'standard))))
14087 (message "Property %s %s" property
14088 (if (org-entry-delete nil property)
14090 "was not present in the entry")))
14092 (defun org-delete-property-globally (property)
14093 "Remove PROPERTY globally, from all entries."
14095 (let* ((completion-ignore-case t)
14096 (prop (org-icompleting-read
14097 "Globally remove property: "
14098 (mapcar 'list (org-buffer-property-keys)))))
14103 (goto-char (point-min))
14105 (while (re-search-forward
14106 (org-re-property property)
14108 (setq cnt (1+ cnt))
14109 (replace-match ""))
14110 (message "Property \"%s\" removed from %d entries" property cnt)))))
14112 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
14114 (defun org-compute-property-at-point ()
14115 "Compute the property at point.
14116 This looks for an enclosing column format, extracts the operator and
14117 then applies it to the property in the column format's scope."
14119 (unless (org-at-property-p)
14120 (error "Not at a property"))
14121 (let ((prop (org-match-string-no-properties 2)))
14122 (org-columns-get-format-and-top-level)
14123 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
14124 (error "No operator defined for property %s" prop))
14125 (org-columns-compute prop)))
14127 (defvar org-property-allowed-value-functions nil
14128 "Hook for functions supplying allowed values for a specific property.
14129 The functions must take a single argument, the name of the property, and
14130 return a flat list of allowed values. If \":ETC\" is one of
14131 the values, this means that these values are intended as defaults for
14132 completion, but that other values should be allowed too.
14133 The functions must return nil if they are not responsible for this
14136 (defun org-property-get-allowed-values (pom property &optional table)
14137 "Get allowed values for the property PROPERTY.
14138 When TABLE is non-nil, return an alist that can directly be used for
14142 ((equal property "TODO")
14143 (setq vals (org-with-point-at pom
14144 (append org-todo-keywords-1 '("")))))
14145 ((equal property "PRIORITY")
14146 (let ((n org-lowest-priority))
14147 (while (>= n org-highest-priority)
14148 (push (char-to-string n) vals)
14150 ((member property org-special-properties))
14151 ((setq vals (run-hook-with-args-until-success
14152 'org-property-allowed-value-functions property)))
14154 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
14155 (when (and vals (string-match "\\S-" vals))
14156 (setq vals (car (read-from-string (concat "(" vals ")"))))
14157 (setq vals (mapcar (lambda (x)
14158 (cond ((stringp x) x)
14159 ((numberp x) (number-to-string x))
14160 ((symbolp x) (symbol-name x))
14163 (when (member ":ETC" vals)
14164 (setq vals (remove ":ETC" vals))
14165 (org-add-props (car vals) '(org-unrestricted t)))
14166 (if table (mapcar 'list vals) vals)))
14168 (defun org-property-previous-allowed-value (&optional previous)
14169 "Switch to the next allowed value for this property."
14171 (org-property-next-allowed-value t))
14173 (defun org-property-next-allowed-value (&optional previous)
14174 "Switch to the next allowed value for this property."
14176 (unless (org-at-property-p)
14177 (error "Not at a property"))
14178 (let* ((key (match-string 2))
14179 (value (match-string 3))
14180 (allowed (or (org-property-get-allowed-values (point) key)
14181 (and (member value '("[ ]" "[-]" "[X]"))
14185 (error "Allowed values for this property have not been defined"))
14186 (if previous (setq allowed (reverse allowed)))
14187 (if (member value allowed)
14188 (setq nval (car (cdr (member value allowed)))))
14189 (setq nval (or nval (car allowed)))
14190 (if (equal nval value)
14191 (error "Only one allowed value for this property"))
14192 (org-at-property-p)
14193 (replace-match (concat " :" key ": " nval) t t)
14194 (org-indent-line-function)
14195 (beginning-of-line 1)
14196 (skip-chars-forward " \t")
14197 (run-hook-with-args 'org-property-changed-functions key nval)))
14199 (defun org-find-olp (path &optional this-buffer)
14200 "Return a marker pointing to the entry at outline path OLP.
14201 If anything goes wrong, throw an error.
14202 You can wrap this call to catch the error like this:
14204 (condition-case msg
14205 (org-mobile-locate-entry (match-string 4))
14206 (error (nth 1 msg)))
14208 The return value will then be either a string with the error message,
14209 or a marker if everything is OK.
14211 If THIS-BUFFER is set, the outline path does not contain a file,
14213 (let* ((file (if this-buffer buffer-file-name (pop path)))
14214 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
14218 limit re end found pos heading cnt flevel)
14219 (unless buffer (error "File not found :%s" file))
14220 (with-current-buffer buffer
14224 (setq limit (point-max))
14225 (goto-char (point-min))
14226 (while (setq heading (pop path))
14227 (setq re (format org-complex-heading-regexp-format
14228 (regexp-quote heading)))
14229 (setq cnt 0 pos (point))
14230 (while (re-search-forward re end t)
14231 (setq level (- (match-end 1) (match-beginning 1)))
14232 (if (and (>= level lmin) (<= level lmax))
14233 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
14234 (when (= cnt 0) (error "Heading not found on level %d: %s"
14236 (when (> cnt 1) (error "Heading not unique on level %d: %s"
14239 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
14240 (setq end (save-excursion (org-end-of-subtree t t))))
14241 (when (org-on-heading-p)
14242 (move-marker (make-marker) (point))))))))
14244 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
14245 "Find node HEADING in BUFFER.
14246 Return a marker to the heading if it was found, or nil if not.
14247 If POS-ONLY is set, return just the position instead of a marker.
14249 The heading text must match exact, but it may have a TODO keyword,
14250 a priority cookie and tags in the standard locations."
14251 (with-current-buffer (or buffer (current-buffer))
14255 (goto-char (point-min))
14256 (let (case-fold-search)
14257 (if (re-search-forward
14258 (format org-complex-heading-regexp-format
14259 (regexp-quote heading)) nil t)
14261 (match-beginning 0)
14262 (move-marker (make-marker) (match-beginning 0)))))))))
14264 (defun org-find-exact-heading-in-directory (heading &optional dir)
14265 "Find Org node headline HEADING in all .org files in directory DIR.
14266 When the target headline is found, return a marker to this location."
14267 (let ((files (directory-files (or dir default-directory)
14268 nil "\\`[^.#].*\\.org\\'"))
14269 file visiting m buffer)
14271 (while (setq file (pop files))
14272 (message "trying %s" file)
14273 (setq visiting (org-find-base-buffer-visiting file))
14274 (setq buffer (or visiting (find-file-noselect file)))
14275 (setq m (org-find-exact-headline-in-buffer
14277 (when (and (not m) (not visiting)) (kill-buffer buffer))
14278 (and m (throw 'found m))))))
14280 (defun org-find-entry-with-id (ident)
14281 "Locate the entry that contains the ID property with exact value IDENT.
14282 IDENT can be a string, a symbol or a number, this function will search for
14283 the string representation of it.
14284 Return the position where this entry starts, or nil if there is no such entry."
14285 (interactive "sID: ")
14287 ((stringp ident) ident)
14288 ((symbol-name ident) (symbol-name ident))
14289 ((numberp ident) (number-to-string ident))
14290 (t (error "IDENT %s must be a string, symbol or number" ident))))
14291 (case-fold-search nil))
14295 (goto-char (point-min))
14296 (when (re-search-forward
14297 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
14299 (org-back-to-heading t)
14304 (defvar org-last-changed-timestamp nil)
14305 (defvar org-last-inserted-timestamp nil
14306 "The last time stamp inserted with `org-insert-time-stamp'.")
14307 (defvar org-time-was-given) ; dynamically scoped parameter
14308 (defvar org-end-time-was-given) ; dynamically scoped parameter
14309 (defvar org-ts-what) ; dynamically scoped parameter
14311 (defun org-time-stamp (arg &optional inactive)
14312 "Prompt for a date/time and insert a time stamp.
14313 If the user specifies a time like HH:MM, or if this command is called
14314 with a prefix argument, the time stamp will contain date and time.
14315 Otherwise, only the date will be included. All parts of a date not
14316 specified by the user will be filled in from the current date/time.
14317 So if you press just return without typing anything, the time stamp
14318 will represent the current date/time. If there is already a timestamp
14319 at the cursor, it will be modified."
14323 ;; Default time is either today, or, when entering a range,
14324 ;; the range start.
14325 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
14327 (re-search-backward
14328 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
14329 (- (point) 20) t)))
14330 (apply 'encode-time (org-parse-time-string (match-string 1)))
14332 (default-input (and ts (org-get-compact-tod ts)))
14333 org-time-was-given org-end-time-was-given time)
14335 ((and (org-at-timestamp-p t)
14336 (memq last-command '(org-time-stamp org-time-stamp-inactive))
14337 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
14339 (setq time (let ((this-command this-command))
14340 (org-read-date arg 'totime nil nil
14341 default-time default-input)))
14342 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
14343 ((org-at-timestamp-p t)
14344 (setq time (let ((this-command this-command))
14345 (org-read-date arg 'totime nil nil default-time default-input)))
14346 (when (org-at-timestamp-p t) ; just to get the match data
14347 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
14349 (setq org-last-changed-timestamp
14350 (org-insert-time-stamp
14351 time (or org-time-was-given arg)
14352 inactive nil nil (list org-end-time-was-given))))
14353 (message "Timestamp updated"))
14355 (setq time (let ((this-command this-command))
14356 (org-read-date arg 'totime nil nil default-time default-input)))
14357 (org-insert-time-stamp time (or org-time-was-given arg) inactive
14358 nil nil (list org-end-time-was-given))))))
14360 ;; FIXME: can we use this for something else, like computing time differences?
14361 (defun org-get-compact-tod (s)
14362 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
14363 (let* ((t1 (match-string 1 s))
14364 (h1 (string-to-number (match-string 2 s)))
14365 (m1 (string-to-number (match-string 3 s)))
14366 (t2 (and (match-end 4) (match-string 5 s)))
14367 (h2 (and t2 (string-to-number (match-string 6 s))))
14368 (m2 (and t2 (string-to-number (match-string 7 s))))
14372 (setq dh (- h2 h1) dm (- m2 m1))
14373 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
14374 (concat t1 "+" (number-to-string dh)
14375 (if (/= 0 dm) (concat ":" (number-to-string dm))))))))
14377 (defun org-time-stamp-inactive (&optional arg)
14378 "Insert an inactive time stamp.
14379 An inactive time stamp is enclosed in square brackets instead of angle
14380 brackets. It is inactive in the sense that it does not trigger agenda entries,
14381 does not link to the calendar and cannot be changed with the S-cursor keys.
14382 So these are more for recording a certain time/date."
14384 (org-time-stamp arg 'inactive))
14386 (defvar org-date-ovl (make-overlay 1 1))
14387 (overlay-put org-date-ovl 'face 'org-warning)
14388 (org-detach-overlay org-date-ovl)
14390 (defvar org-ans1) ; dynamically scoped parameter
14391 (defvar org-ans2) ; dynamically scoped parameter
14393 (defvar org-plain-time-of-day-regexp) ; defined below
14395 (defvar org-overriding-default-time nil) ; dynamically scoped
14396 (defvar org-read-date-overlay nil)
14397 (defvar org-dcst nil) ; dynamically scoped
14398 (defvar org-read-date-history nil)
14399 (defvar org-read-date-final-answer nil)
14400 (defvar org-read-date-analyze-futurep nil)
14401 (defvar org-read-date-analyze-forced-year nil)
14403 (defun org-read-date (&optional with-time to-time from-string prompt
14404 default-time default-input)
14405 "Read a date, possibly a time, and make things smooth for the user.
14406 The prompt will suggest to enter an ISO date, but you can also enter anything
14407 which will at least partially be understood by `parse-time-string'.
14408 Unrecognized parts of the date will default to the current day, month, year,
14409 hour and minute. If this command is called to replace a timestamp at point,
14410 of to enter the second timestamp of a range, the default time is taken
14411 from the existing stamp. Furthermore, the command prefers the future,
14412 so if you are giving a date where the year is not given, and the day-month
14413 combination is already past in the current year, it will assume you
14414 mean next year. For details, see the manual. A few examples:
14416 3-2-5 --> 2003-02-05
14417 feb 15 --> currentyear-02-15
14418 2/15 --> currentyear-02-15
14419 sep 12 9 --> 2009-09-12
14420 12:45 --> today 12:45
14421 22 sept 0:34 --> currentyear-09-22 0:34
14422 12 --> currentyear-currentmonth-12
14423 Fri --> nearest Friday (today or later)
14426 Furthermore you can specify a relative date by giving, as the *first* thing
14427 in the input: a plus/minus sign, a number and a letter [dwmy] to indicate
14428 change in days weeks, months, years.
14429 With a single plus or minus, the date is relative to today. With a double
14430 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
14431 +4d --> four days from today
14432 +4 --> same as above
14433 +2w --> two weeks from today
14434 ++5 --> five days from default date
14436 The function understands only English month and weekday abbreviations,
14437 but this can be configured with the variables `parse-time-months' and
14438 `parse-time-weekdays'.
14440 While prompting, a calendar is popped up - you can also select the
14441 date with the mouse (button 1). The calendar shows a period of three
14442 months. To scroll it to other months, use the keys `>' and `<'.
14443 If you don't like the calendar, turn it off with
14444 \(setq org-read-date-popup-calendar nil)
14446 With optional argument TO-TIME, the date will immediately be converted
14447 to an internal time.
14448 With an optional argument WITH-TIME, the prompt will suggest to also
14449 insert a time. Note that when WITH-TIME is not set, you can still
14450 enter a time, and this function will inform the calling routine about
14451 this change. The calling routine may then choose to change the format
14452 used to insert the time stamp into the buffer to include the time.
14453 With optional argument FROM-STRING, read from this string instead from
14454 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
14455 the time/date that is used for everything that is not specified by the
14457 (require 'parse-time)
14458 (let* ((org-time-stamp-rounding-minutes
14459 (if (equal with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
14460 (org-dcst org-display-custom-times)
14461 (ct (org-current-time))
14462 (def (or org-overriding-default-time default-time ct))
14463 (defdecode (decode-time def))
14465 (when (< (nth 2 defdecode) org-extend-today-until)
14466 (setcar (nthcdr 2 defdecode) -1)
14467 (setcar (nthcdr 1 defdecode) 59)
14468 (setq def (apply 'encode-time defdecode)
14469 defdecode (decode-time def)))))
14470 (calendar-frame-setup nil)
14471 (calendar-setup nil)
14472 (calendar-move-hook nil)
14473 (calendar-view-diary-initially-flag nil)
14474 (calendar-view-holidays-initially-flag nil)
14475 (timestr (format-time-string
14476 (if with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") def))
14477 (prompt (concat (if prompt (concat prompt " ") "")
14478 (format "Date+time [%s]: " timestr)))
14479 ans (org-ans0 "") org-ans1 org-ans2 final)
14482 (from-string (setq ans from-string))
14483 (org-read-date-popup-calendar
14485 (save-window-excursion
14487 (calendar-forward-day (- (time-to-days def)
14488 (calendar-absolute-from-gregorian
14489 (calendar-current-date))))
14490 (org-eval-in-calendar nil t)
14491 (let* ((old-map (current-local-map))
14492 (map (copy-keymap calendar-mode-map))
14493 (minibuffer-local-map (copy-keymap minibuffer-local-map)))
14494 (org-defkey map (kbd "RET") 'org-calendar-select)
14495 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
14496 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
14497 (org-defkey minibuffer-local-map [(meta shift left)]
14498 (lambda () (interactive)
14499 (org-eval-in-calendar '(calendar-backward-month 1))))
14500 (org-defkey minibuffer-local-map [(meta shift right)]
14501 (lambda () (interactive)
14502 (org-eval-in-calendar '(calendar-forward-month 1))))
14503 (org-defkey minibuffer-local-map [(meta shift up)]
14504 (lambda () (interactive)
14505 (org-eval-in-calendar '(calendar-backward-year 1))))
14506 (org-defkey minibuffer-local-map [(meta shift down)]
14507 (lambda () (interactive)
14508 (org-eval-in-calendar '(calendar-forward-year 1))))
14509 (org-defkey minibuffer-local-map [?\e (shift left)]
14510 (lambda () (interactive)
14511 (org-eval-in-calendar '(calendar-backward-month 1))))
14512 (org-defkey minibuffer-local-map [?\e (shift right)]
14513 (lambda () (interactive)
14514 (org-eval-in-calendar '(calendar-forward-month 1))))
14515 (org-defkey minibuffer-local-map [?\e (shift up)]
14516 (lambda () (interactive)
14517 (org-eval-in-calendar '(calendar-backward-year 1))))
14518 (org-defkey minibuffer-local-map [?\e (shift down)]
14519 (lambda () (interactive)
14520 (org-eval-in-calendar '(calendar-forward-year 1))))
14521 (org-defkey minibuffer-local-map [(shift up)]
14522 (lambda () (interactive)
14523 (org-eval-in-calendar '(calendar-backward-week 1))))
14524 (org-defkey minibuffer-local-map [(shift down)]
14525 (lambda () (interactive)
14526 (org-eval-in-calendar '(calendar-forward-week 1))))
14527 (org-defkey minibuffer-local-map [(shift left)]
14528 (lambda () (interactive)
14529 (org-eval-in-calendar '(calendar-backward-day 1))))
14530 (org-defkey minibuffer-local-map [(shift right)]
14531 (lambda () (interactive)
14532 (org-eval-in-calendar '(calendar-forward-day 1))))
14533 (org-defkey minibuffer-local-map ">"
14534 (lambda () (interactive)
14535 (org-eval-in-calendar '(scroll-calendar-left 1))))
14536 (org-defkey minibuffer-local-map "<"
14537 (lambda () (interactive)
14538 (org-eval-in-calendar '(scroll-calendar-right 1))))
14539 (org-defkey minibuffer-local-map "\C-v"
14540 (lambda () (interactive)
14541 (org-eval-in-calendar
14542 '(calendar-scroll-left-three-months 1))))
14543 (org-defkey minibuffer-local-map "\M-v"
14544 (lambda () (interactive)
14545 (org-eval-in-calendar
14546 '(calendar-scroll-right-three-months 1))))
14547 (run-hooks 'org-read-date-minibuffer-setup-hook)
14550 (use-local-map map)
14551 (add-hook 'post-command-hook 'org-read-date-display)
14552 (setq org-ans0 (read-string prompt default-input
14553 'org-read-date-history nil))
14554 ;; org-ans0: from prompt
14555 ;; org-ans1: from mouse click
14556 ;; org-ans2: from calendar motion
14557 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
14558 (remove-hook 'post-command-hook 'org-read-date-display)
14559 (use-local-map old-map)
14560 (when org-read-date-overlay
14561 (delete-overlay org-read-date-overlay)
14562 (setq org-read-date-overlay nil)))))))
14564 (t ; Naked prompt only
14566 (setq ans (read-string prompt default-input
14567 'org-read-date-history timestr))
14568 (when org-read-date-overlay
14569 (delete-overlay org-read-date-overlay)
14570 (setq org-read-date-overlay nil)))))
14572 (setq final (org-read-date-analyze ans def defdecode))
14574 (when org-read-date-analyze-forced-year
14575 (message "Year was forced into %s"
14576 (if org-read-date-force-compatible-dates
14577 "compatible range (1970-2037)"
14578 "range representable on this machine"))
14581 ;; One round trip to get rid of 34th of August and stuff like that....
14582 (setq final (decode-time (apply 'encode-time final)))
14584 (setq org-read-date-final-answer ans)
14587 (apply 'encode-time final)
14588 (if (and (boundp 'org-time-was-given) org-time-was-given)
14589 (format "%04d-%02d-%02d %02d:%02d"
14590 (nth 5 final) (nth 4 final) (nth 3 final)
14591 (nth 2 final) (nth 1 final))
14592 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
14597 (defun org-read-date-display ()
14598 "Display the current date prompt interpretation in the minibuffer."
14599 (when org-read-date-display-live
14600 (when org-read-date-overlay
14601 (delete-overlay org-read-date-overlay))
14604 (while (not (equal (buffer-substring
14605 (max (point-min) (- (point) 4)) (point))
14609 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
14610 " " (or org-ans1 org-ans2)))
14611 (org-end-time-was-given nil)
14612 (f (org-read-date-analyze ans def defdecode))
14614 org-time-stamp-custom-formats
14615 org-time-stamp-formats))
14616 (fmt (if (or with-time
14617 (and (boundp 'org-time-was-given) org-time-was-given))
14620 (txt (concat "=> " (format-time-string fmt (apply 'encode-time f)))))
14621 (when (and org-end-time-was-given
14622 (string-match org-plain-time-of-day-regexp txt))
14623 (setq txt (concat (substring txt 0 (match-end 0)) "-"
14624 org-end-time-was-given
14625 (substring txt (match-end 0)))))
14626 (when org-read-date-analyze-futurep
14627 (setq txt (concat txt " (=>F)")))
14628 (setq org-read-date-overlay
14629 (make-overlay (1- (point-at-eol)) (point-at-eol)))
14630 (org-overlay-display org-read-date-overlay txt 'secondary-selection))))
14632 (defun org-read-date-analyze (ans def defdecode)
14633 "Analyze the combined answer of the date prompt."
14634 ;; FIXME: cleanup and comment
14635 (let ((nowdecode (decode-time (current-time)))
14636 delta deltan deltaw deltadef year month day
14637 hour minute second wday pm h2 m2 tl wday1
14638 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
14639 (setq org-read-date-analyze-futurep nil
14640 org-read-date-analyze-forced-year nil)
14641 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
14644 (when (setq delta (org-read-date-get-relative ans (current-time) def))
14645 (setq ans (replace-match "" t t ans)
14647 deltaw (nth 1 delta)
14648 deltadef (nth 2 delta)))
14650 ;; Check if there is an iso week date in there
14651 ;; If yes, store the info and postpone interpreting it until the rest
14652 ;; of the parsing is done
14653 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
14654 (setq iso-year (if (match-end 1)
14655 (org-small-year-to-year
14656 (string-to-number (match-string 1 ans))))
14657 iso-weekday (if (match-end 3)
14658 (string-to-number (match-string 3 ans)))
14659 iso-week (string-to-number (match-string 2 ans)))
14660 (setq ans (replace-match "" t t ans)))
14662 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
14663 (when (string-match
14664 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
14665 (setq year (if (match-end 2)
14666 (string-to-number (match-string 2 ans))
14667 (progn (setq kill-year t)
14668 (string-to-number (format-time-string "%Y"))))
14669 month (string-to-number (match-string 3 ans))
14670 day (string-to-number (match-string 4 ans)))
14671 (if (< year 100) (setq year (+ 2000 year)))
14672 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
14675 ;; Help matching dottet european dates
14676 (when (string-match
14677 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\. ?\\([1-9][0-9][0-9][0-9]\\)?" ans)
14678 (setq year (if (match-end 3)
14679 (string-to-number (match-string 3 ans))
14680 (progn (setq kill-year t)
14681 (string-to-number (format-time-string "%Y"))))
14682 day (string-to-number (match-string 1 ans))
14683 month (string-to-number (match-string 2 ans))
14684 ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
14687 ;; Help matching american dates, like 5/30 or 5/30/7
14688 (when (string-match
14689 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
14690 (setq year (if (match-end 4)
14691 (string-to-number (match-string 4 ans))
14692 (progn (setq kill-year t)
14693 (string-to-number (format-time-string "%Y"))))
14694 month (string-to-number (match-string 1 ans))
14695 day (string-to-number (match-string 2 ans)))
14696 (if (< year 100) (setq year (+ 2000 year)))
14697 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
14699 ;; Help matching am/pm times, because `parse-time-string' does not do that.
14700 ;; If there is a time with am/pm, and *no* time without it, we convert
14701 ;; so that matching will be successful.
14702 (loop for i from 1 to 2 do ; twice, for end time as well
14703 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
14704 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
14705 (setq hour (string-to-number (match-string 1 ans))
14706 minute (if (match-end 3)
14707 (string-to-number (match-string 3 ans))
14710 (string-to-char (downcase (match-string 4 ans)))))
14711 (if (and (= hour 12) (not pm))
14713 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
14714 (setq ans (replace-match (format "%02d:%02d" hour minute)
14717 ;; Check if a time range is given as a duration
14718 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
14719 (setq hour (string-to-number (match-string 1 ans))
14720 h2 (+ hour (string-to-number (match-string 3 ans)))
14721 minute (string-to-number (match-string 2 ans))
14722 m2 (+ minute (if (match-end 5) (string-to-number
14723 (match-string 5 ans))0)))
14724 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
14725 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
14728 ;; Check if there is a time range
14729 (when (boundp 'org-end-time-was-given)
14730 (setq org-time-was-given nil)
14731 (when (and (string-match org-plain-time-of-day-regexp ans)
14733 (setq org-end-time-was-given (match-string 8 ans))
14734 (setq ans (concat (substring ans 0 (match-beginning 7))
14735 (substring ans (match-end 7))))))
14737 (setq tl (parse-time-string ans)
14738 day (or (nth 3 tl) (nth 3 defdecode))
14739 month (or (nth 4 tl)
14740 (if (and org-read-date-prefer-future
14741 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
14742 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
14743 (nth 4 defdecode)))
14744 year (or (and (not kill-year) (nth 5 tl))
14745 (if (and org-read-date-prefer-future
14746 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
14747 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
14748 (nth 5 defdecode)))
14749 hour (or (nth 2 tl) (nth 2 defdecode))
14750 minute (or (nth 1 tl) (nth 1 defdecode))
14751 second (or (nth 0 tl) 0)
14754 (when (and (eq org-read-date-prefer-future 'time)
14755 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
14756 (equal day (nth 3 nowdecode))
14757 (equal month (nth 4 nowdecode))
14758 (equal year (nth 5 nowdecode))
14760 (or (< (nth 2 tl) (nth 2 nowdecode))
14761 (and (= (nth 2 tl) (nth 2 nowdecode))
14763 (< (nth 1 tl) (nth 1 nowdecode)))))
14767 ;; Special date definitions below
14770 ;; There was an iso week
14773 (setq year (or iso-year year)
14774 day (or iso-weekday wday 1)
14775 wday nil ; to make sure that the trigger below does not match
14776 iso-date (calendar-gregorian-from-absolute
14777 (calendar-absolute-from-iso
14778 (list iso-week day year))))
14779 ; FIXME: Should we also push ISO weeks into the future?
14780 ; (when (and org-read-date-prefer-future
14782 ; (< (calendar-absolute-from-gregorian iso-date)
14783 ; (time-to-days (current-time))))
14784 ; (setq year (1+ year)
14785 ; iso-date (calendar-gregorian-from-absolute
14786 ; (calendar-absolute-from-iso
14787 ; (list iso-week day year)))))
14788 (setq month (car iso-date)
14789 year (nth 2 iso-date)
14790 day (nth 1 iso-date)))
14794 (let ((now (decode-time (current-time))))
14795 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
14796 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
14797 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
14798 ((equal deltaw "m") (setq month (+ month deltan)))
14799 ((equal deltaw "y") (setq year (+ year deltan)))))
14800 ((and wday (not (nth 3 tl)))
14802 ;; Weekday was given, but no day, so pick that day in the week
14803 ;; on or after the derived date.
14804 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
14805 (unless (equal wday wday1)
14806 (setq day (+ day (% (- wday wday1 -7) 7))))))
14807 (if (and (boundp 'org-time-was-given)
14809 (setq org-time-was-given t))
14810 (if (< year 100) (setq year (+ 2000 year)))
14811 ;; Check of the date is representable
14812 (if org-read-date-force-compatible-dates
14815 (setq year 1970 org-read-date-analyze-forced-year t))
14817 (setq year 2037 org-read-date-analyze-forced-year t)))
14818 (condition-case nil
14819 (encode-time second minute hour day month year)
14821 (setq year (nth 5 defdecode))
14822 (setq org-read-date-analyze-forced-year t))))
14823 (setq org-read-date-analyze-futurep futurep)
14824 (list second minute hour day month year)))
14826 (defvar parse-time-weekdays)
14828 (defun org-read-date-get-relative (s today default)
14829 "Check string S for special relative date string.
14830 TODAY and DEFAULT are internal times, for today and for a default.
14831 Return shift list (N what def-flag)
14832 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
14833 N is the number of WHATs to shift.
14834 DEF-FLAG is t when a double ++ or -- indicates shift relative to
14835 the DEFAULT date rather than TODAY."
14839 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
14841 "\\([dwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
14842 "\\([ \t]\\|$\\)") s)
14843 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
14844 (let* ((dir (if (> (match-end 1) (match-beginning 1))
14845 (string-to-char (substring (match-string 1 s) -1))
14847 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
14848 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
14849 (what (if (match-end 3) (match-string 3 s) "d"))
14850 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
14851 (date (if rel default today))
14852 (wday (nth 6 (decode-time date)))
14856 (setq delta (mod (+ 7 (- wday1 wday)) 7))
14857 (if (= dir ?-) (setq delta (- delta 7)))
14858 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
14859 (list delta "d" rel))
14860 (list (* n (if (= dir ?-) -1 1)) what rel)))))
14862 (defun org-order-calendar-date-args (arg1 arg2 arg3)
14863 "Turn a user-specified date into the internal representation.
14864 The internal representation needed by the calendar is (month day year).
14865 This is a wrapper to handle the brain-dead convention in calendar that
14866 user function argument order change dependent on argument order."
14867 (if (boundp 'calendar-date-style)
14869 ((eq calendar-date-style 'american)
14870 (list arg1 arg2 arg3))
14871 ((eq calendar-date-style 'european)
14872 (list arg2 arg1 arg3))
14873 ((eq calendar-date-style 'iso)
14874 (list arg2 arg3 arg1)))
14875 (with-no-warnings ;; european-calendar-style is obsolete as of version 23.1
14876 (if (org-bound-and-true-p european-calendar-style)
14877 (list arg2 arg1 arg3)
14878 (list arg1 arg2 arg3)))))
14880 (defun org-eval-in-calendar (form &optional keepdate)
14881 "Eval FORM in the calendar window and return to current window.
14882 Also, store the cursor date in variable org-ans2."
14883 (let ((sf (selected-frame))
14884 (sw (selected-window)))
14885 (select-window (get-buffer-window "*Calendar*" t))
14887 (when (and (not keepdate) (calendar-cursor-to-date))
14888 (let* ((date (calendar-cursor-to-date))
14889 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
14890 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
14891 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
14893 (org-select-frame-set-input-focus sf)))
14895 (defun org-calendar-select ()
14896 "Return to `org-read-date' with the date currently selected.
14897 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
14899 (when (calendar-cursor-to-date)
14900 (let* ((date (calendar-cursor-to-date))
14901 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
14902 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
14903 (if (active-minibuffer-window) (exit-minibuffer))))
14905 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
14906 "Insert a date stamp for the date given by the internal TIME.
14907 WITH-HM means use the stamp format that includes the time of the day.
14908 INACTIVE means use square brackets instead of angular ones, so that the
14909 stamp will not contribute to the agenda.
14910 PRE and POST are optional strings to be inserted before and after the
14912 The command returns the inserted time stamp."
14913 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
14915 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
14916 (insert-before-markers (or pre ""))
14917 (when (listp extra)
14918 (setq extra (car extra))
14919 (if (and (stringp extra)
14920 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
14921 (setq extra (format "-%02d:%02d"
14922 (string-to-number (match-string 1 extra))
14923 (string-to-number (match-string 2 extra))))
14926 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
14927 (insert-before-markers (setq stamp (format-time-string fmt time)))
14928 (insert-before-markers (or post ""))
14929 (setq org-last-inserted-timestamp stamp)))
14931 (defun org-toggle-time-stamp-overlays ()
14932 "Toggle the use of custom time stamp formats."
14934 (setq org-display-custom-times (not org-display-custom-times))
14935 (unless org-display-custom-times
14936 (let ((p (point-min)) (bmp (buffer-modified-p)))
14937 (while (setq p (next-single-property-change p 'display))
14938 (if (and (get-text-property p 'display)
14939 (eq (get-text-property p 'face) 'org-date))
14940 (remove-text-properties
14941 p (setq p (next-single-property-change p 'display))
14943 (set-buffer-modified-p bmp)))
14944 (if (featurep 'xemacs)
14945 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
14946 (org-restart-font-lock)
14947 (setq org-table-may-need-update t)
14948 (if org-display-custom-times
14949 (message "Time stamps are overlayed with custom format")
14950 (message "Time stamp overlays removed")))
14952 (defun org-display-custom-time (beg end)
14953 "Overlay modified time stamp format over timestamp between BEG and END."
14954 (let* ((ts (buffer-substring beg end))
14955 t1 w1 with-hm tf time str w2 (off 0))
14957 (setq t1 (org-parse-time-string ts t))
14958 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)?\\'" ts)
14959 (setq off (- (match-end 0) (match-beginning 0)))))
14960 (setq end (- end off))
14961 (setq w1 (- end beg)
14962 with-hm (and (nth 1 t1) (nth 2 t1))
14963 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
14964 time (org-fix-decoded-time t1)
14966 (format-time-string
14967 (substring tf 1 -1) (apply 'encode-time time))
14968 nil 'mouse-face 'highlight)
14970 (if (not (= w2 w1))
14971 (add-text-properties (1+ beg) (+ 2 beg)
14972 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
14973 (if (featurep 'xemacs)
14975 (put-text-property beg end 'invisible t)
14976 (put-text-property beg end 'end-glyph (make-glyph str)))
14977 (put-text-property beg end 'display str))))
14979 (defun org-translate-time (string)
14980 "Translate all timestamps in STRING to custom format.
14981 But do this only if the variable `org-display-custom-times' is set."
14982 (when org-display-custom-times
14985 (re org-ts-regexp-both)
14986 t1 with-hm inactive tf time str beg end)
14987 (while (setq start (string-match re string start))
14988 (setq beg (match-beginning 0)
14990 t1 (save-match-data
14991 (org-parse-time-string (substring string beg end) t))
14992 with-hm (and (nth 1 t1) (nth 2 t1))
14993 inactive (equal (substring string beg (1+ beg)) "[")
14994 tf (funcall (if with-hm 'cdr 'car)
14995 org-time-stamp-custom-formats)
14996 time (org-fix-decoded-time t1)
14997 str (format-time-string
14999 (if inactive "[" "<") (substring tf 1 -1)
15000 (if inactive "]" ">"))
15001 (apply 'encode-time time))
15002 string (replace-match str t t string)
15003 start (+ start (length str)))))))
15006 (defun org-fix-decoded-time (time)
15007 "Set 0 instead of nil for the first 6 elements of time.
15008 Don't touch the rest."
15010 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
15012 (defun org-days-to-time (timestamp-string)
15013 "Difference between TIMESTAMP-STRING and now in days."
15014 (- (time-to-days (org-time-string-to-time timestamp-string))
15015 (time-to-days (current-time))))
15017 (defun org-deadline-close (timestamp-string &optional ndays)
15018 "Is the time in TIMESTAMP-STRING close to the current date?"
15019 (setq ndays (or ndays (org-get-wdays timestamp-string)))
15020 (and (< (org-days-to-time timestamp-string) ndays)
15021 (not (org-entry-is-done-p))))
15023 (defun org-get-wdays (ts)
15024 "Get the deadline lead time appropriate for timestring TS."
15026 ((<= org-deadline-warning-days 0)
15027 ;; 0 or negative, enforce this value no matter what
15028 (- org-deadline-warning-days))
15029 ((string-match "-\\([0-9]+\\)\\([dwmy]\\)\\(\\'\\|>\\| \\)" ts)
15030 ;; lead time is specified.
15031 (floor (* (string-to-number (match-string 1 ts))
15032 (cdr (assoc (match-string 2 ts)
15033 '(("d" . 1) ("w" . 7)
15034 ("m" . 30.4) ("y" . 365.25)))))))
15035 ;; go for the default.
15036 (t org-deadline-warning-days)))
15038 (defun org-calendar-select-mouse (ev)
15039 "Return to `org-read-date' with the date currently selected.
15040 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
15042 (mouse-set-point ev)
15043 (when (calendar-cursor-to-date)
15044 (let* ((date (calendar-cursor-to-date))
15045 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
15046 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
15047 (if (active-minibuffer-window) (exit-minibuffer))))
15049 (defun org-check-deadlines (ndays)
15050 "Check if there are any deadlines due or past due.
15051 A deadline is considered due if it happens within `org-deadline-warning-days'
15052 days from today's date. If the deadline appears in an entry marked DONE,
15053 it is not shown. The prefix arg NDAYS can be used to test that many
15054 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
15056 (let* ((org-warn-days
15058 ((equal ndays '(4)) 100000)
15059 (ndays (prefix-numeric-value ndays))
15060 (t (abs org-deadline-warning-days))))
15061 (case-fold-search nil)
15062 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
15064 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
15066 (message "%d deadlines past-due or due within %d days"
15067 (org-occur regexp nil callback)
15070 (defun org-check-before-date (date)
15071 "Check if there are deadlines or scheduled entries before DATE."
15072 (interactive (list (org-read-date)))
15073 (let ((case-fold-search nil)
15074 (regexp (concat "\\<\\(" org-deadline-string
15075 "\\|" org-scheduled-string
15076 "\\) *<\\([^>]+\\)>"))
15078 (lambda () (time-less-p
15079 (org-time-string-to-time (match-string 2))
15080 (org-time-string-to-time date)))))
15081 (message "%d entries before %s"
15082 (org-occur regexp nil callback) date)))
15084 (defun org-check-after-date (date)
15085 "Check if there are deadlines or scheduled entries after DATE."
15086 (interactive (list (org-read-date)))
15087 (let ((case-fold-search nil)
15088 (regexp (concat "\\<\\(" org-deadline-string
15089 "\\|" org-scheduled-string
15090 "\\) *<\\([^>]+\\)>"))
15094 (org-time-string-to-time (match-string 2))
15095 (org-time-string-to-time date))))))
15096 (message "%d entries after %s"
15097 (org-occur regexp nil callback) date)))
15099 (defun org-evaluate-time-range (&optional to-buffer)
15100 "Evaluate a time range by computing the difference between start and end.
15101 Normally the result is just printed in the echo area, but with prefix arg
15102 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
15103 If the time range is actually in a table, the result is inserted into the
15105 For time difference computation, a year is assumed to be exactly 365
15106 days in order to avoid rounding problems."
15109 (org-clock-update-time-maybe)
15111 (unless (org-at-date-range-p t)
15112 (goto-char (point-at-bol))
15113 (re-search-forward org-tr-regexp-both (point-at-eol) t))
15114 (if (not (org-at-date-range-p t))
15115 (error "Not at a time-stamp range, and none found in current line")))
15116 (let* ((ts1 (match-string 1))
15117 (ts2 (match-string 2))
15118 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
15119 (match-end (match-end 0))
15120 (time1 (org-time-string-to-time ts1))
15121 (time2 (org-time-string-to-time ts2))
15122 (t1 (org-float-time time1))
15123 (t2 (org-float-time time2))
15124 (diff (abs (- t2 t1)))
15125 (negative (< (- t2 t1) 0))
15126 ;; (ys (floor (* 365 24 60 60)))
15129 (fy "%dy %dd %02d:%02d")
15131 (fd "%dd %02d:%02d")
15136 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
15138 d (floor (/ diff ds)) diff (mod diff ds)
15139 h (floor (/ diff hs)) diff (mod diff hs)
15140 m (floor (/ diff 60)))
15141 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
15143 d (floor (+ (/ diff ds) 0.5))
15145 (if (not to-buffer)
15146 (message "%s" (org-make-tdiff-string y d h m))
15147 (if (org-at-table-p)
15149 (goto-char match-end)
15151 (and (looking-at " *|") (goto-char (match-end 0))))
15152 (goto-char match-end))
15154 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
15155 (replace-match ""))
15156 (if negative (insert " -"))
15157 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
15158 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
15159 (insert " " (format fh h m))))
15160 (if align (org-table-align))
15161 (message "Time difference inserted")))))
15163 (defun org-make-tdiff-string (y d h m)
15166 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
15168 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
15170 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
15172 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
15174 (apply 'format fmt (nreverse l))))
15176 (defun org-time-string-to-time (s)
15177 (apply 'encode-time (org-parse-time-string s)))
15178 (defun org-time-string-to-seconds (s)
15179 (org-float-time (org-time-string-to-time s)))
15181 (defun org-time-string-to-absolute (s &optional daynr prefer show-all)
15182 "Convert a time stamp to an absolute day number.
15183 If there is a specifier for a cyclic time stamp, get the closest date to
15185 PREFER and SHOW-ALL are passed through to `org-closest-date'.
15186 The variable date is bound by the calendar when this is called."
15188 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
15189 (if (org-diary-sexp-entry (match-string 1 s) "" date)
15192 ((and daynr (string-match "\\+[0-9]+[dwmy]" s))
15193 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
15194 (time-to-days (current-time))) (match-string 0 s)
15196 (t (time-to-days (apply 'encode-time (org-parse-time-string s))))))
15198 (defun org-days-to-iso-week (days)
15199 "Return the iso week number."
15201 (car (calendar-iso-from-absolute days)))
15203 (defun org-small-year-to-year (year)
15204 "Convert 2-digit years into 4-digit years.
15205 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2007.
15206 The year 2000 cannot be abbreviated. Any year larger than 99
15207 is returned unchanged."
15209 (setq year (+ 2000 year))
15211 (setq year (+ 1900 year))))
15214 (defun org-time-from-absolute (d)
15215 "Return the time corresponding to date D.
15216 D may be an absolute day number, or a calendar-type list (month day year)."
15217 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
15218 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
15220 (defun org-calendar-holiday ()
15221 "List of holidays, for Diary display in Org-mode."
15222 (require 'holidays)
15224 (if (fboundp 'calendar-check-holidays)
15225 'calendar-check-holidays 'check-calendar-holidays) date)))
15226 (if hl (mapconcat 'identity hl "; "))))
15228 (defun org-diary-sexp-entry (sexp entry date)
15229 "Process a SEXP diary ENTRY for DATE."
15230 (require 'diary-lib)
15231 (let ((result (if calendar-debug-sexp
15232 (let ((stack-trace-on-error t))
15233 (eval (car (read-from-string sexp))))
15234 (condition-case nil
15235 (eval (car (read-from-string sexp)))
15238 (message "Bad sexp at line %d in %s: %s"
15240 (buffer-file-name) sexp)
15242 (cond ((stringp result) (split-string result "; "))
15243 ((and (consp result)
15244 (not (consp (cdr result)))
15245 (stringp (cdr result))) (cdr result))
15246 ((and (consp result)
15247 (stringp (car result))) result)
15251 (defun org-diary-to-ical-string (frombuf)
15252 "Get iCalendar entries from diary entries in buffer FROMBUF.
15253 This uses the icalendar.el library."
15254 (let* ((tmpdir (if (featurep 'xemacs)
15256 temporary-file-directory))
15257 (tmpfile (make-temp-name
15258 (expand-file-name "orgics" tmpdir)))
15260 (with-current-buffer frombuf
15261 (icalendar-export-region (point-min) (point-max) tmpfile)
15262 (setq buf (find-buffer-visiting tmpfile))
15264 (goto-char (point-min))
15265 (if (re-search-forward "^BEGIN:VEVENT" nil t)
15266 (setq b (match-beginning 0)))
15267 (goto-char (point-max))
15268 (if (re-search-backward "^END:VEVENT" nil t)
15269 (setq e (match-end 0)))
15270 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
15272 (delete-file tmpfile)
15275 (defun org-closest-date (start current change prefer show-all)
15276 "Find the date closest to CURRENT that is consistent with START and CHANGE.
15277 When PREFER is `past', return a date that is either CURRENT or past.
15278 When PREFER is `future', return a date that is either CURRENT or future.
15279 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
15280 ;; Make the proper lists from the dates
15282 (let ((a1 '(("d" . day) ("w" . week) ("m" . month) ("y" . year)))
15283 dn dw sday cday n1 n2 n0
15284 d m y y1 y2 date1 date2 nmonths nm ny m2)
15286 (setq start (org-date-to-gregorian start)
15287 current (org-date-to-gregorian
15290 (time-to-days (current-time))))
15291 sday (calendar-absolute-from-gregorian start)
15292 cday (calendar-absolute-from-gregorian current))
15294 (if (<= cday sday) (throw 'exit sday))
15296 (if (string-match "\\(\\+[0-9]+\\)\\([dwmy]\\)" change)
15297 (setq dn (string-to-number (match-string 1 change))
15298 dw (cdr (assoc (match-string 2 change) a1)))
15299 (error "Invalid change specifier: %s" change))
15300 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
15303 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
15306 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
15307 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
15308 (setq date1 (list m d y1)
15309 n1 (calendar-absolute-from-gregorian date1)
15310 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
15311 n2 (calendar-absolute-from-gregorian date2)))
15313 ;; approx number of month between the two dates
15314 (setq nmonths (floor (/ (- cday sday) 30.436875)))
15315 ;; How often does dn fit in there?
15316 (setq d (nth 1 start) m (car start) y (nth 2 start)
15317 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
15319 ny (floor (/ m 12))
15322 (while (> m 12) (setq m (- m 12) y (1+ y)))
15323 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
15324 (setq m2 (+ m dn) y2 y)
15325 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
15326 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
15327 (while (<= n2 cday)
15328 (setq n1 n2 m m2 y y2)
15329 (setq m2 (+ m dn) y2 y)
15330 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
15331 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
15332 ;; Make sure n1 is the earlier date
15333 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
15336 ((eq prefer 'past) (if (= cday n2) n2 n1))
15337 ((eq prefer 'future) (if (= cday n1) n1 n2))
15338 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
15340 ((eq prefer 'past) (if (= cday n2) n2 n1))
15341 ((eq prefer 'future) (if (= cday n1) n1 n2))
15342 (t (if (= cday n1) n1 n2)))))))
15344 (defun org-date-to-gregorian (date)
15345 "Turn any specification of DATE into a Gregorian date for the calendar."
15346 (cond ((integerp date) (calendar-gregorian-from-absolute date))
15347 ((and (listp date) (= (length date) 3)) date)
15349 (setq date (org-parse-time-string date))
15350 (list (nth 4 date) (nth 3 date) (nth 5 date)))
15352 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
15354 (defun org-parse-time-string (s &optional nodefault)
15355 "Parse the standard Org-mode time string.
15356 This should be a lot faster than the normal `parse-time-string'.
15357 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
15358 hour and minute fields will be nil if not given."
15359 (if (string-match org-ts-regexp0 s)
15361 (if (or (match-beginning 8) (not nodefault))
15362 (string-to-number (or (match-string 8 s) "0")))
15363 (if (or (match-beginning 7) (not nodefault))
15364 (string-to-number (or (match-string 7 s) "0")))
15365 (string-to-number (match-string 4 s))
15366 (string-to-number (match-string 3 s))
15367 (string-to-number (match-string 2 s))
15369 (error "Not a standard Org-mode time string: %s" s)))
15371 (defun org-timestamp-up (&optional arg)
15372 "Increase the date item at the cursor by one.
15373 If the cursor is on the year, change the year. If it is on the month or
15374 the day, change that.
15375 With prefix ARG, change by that many units."
15377 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
15379 (defun org-timestamp-down (&optional arg)
15380 "Decrease the date item at the cursor by one.
15381 If the cursor is on the year, change the year. If it is on the month or
15382 the day, change that.
15383 With prefix ARG, change by that many units."
15385 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
15387 (defun org-timestamp-up-day (&optional arg)
15388 "Increase the date in the time stamp by one day.
15389 With prefix ARG, change that many days."
15391 (if (and (not (org-at-timestamp-p t))
15392 (org-on-heading-p))
15394 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
15396 (defun org-timestamp-down-day (&optional arg)
15397 "Decrease the date in the time stamp by one day.
15398 With prefix ARG, change that many days."
15400 (if (and (not (org-at-timestamp-p t))
15401 (org-on-heading-p))
15403 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
15405 (defun org-at-timestamp-p (&optional inactive-ok)
15406 "Determine if the cursor is in or at a timestamp."
15408 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
15410 (ans (or (looking-at tsr)
15412 (skip-chars-backward "^[<\n\r\t")
15413 (if (> (point) (point-min)) (backward-char 1))
15414 (and (looking-at tsr)
15415 (> (- (match-end 0) pos) -1))))))
15417 (boundp 'org-ts-what)
15420 ((= pos (match-beginning 0)) 'bracket)
15421 ((= pos (1- (match-end 0))) 'bracket)
15422 ((org-pos-in-match-range pos 2) 'year)
15423 ((org-pos-in-match-range pos 3) 'month)
15424 ((org-pos-in-match-range pos 7) 'hour)
15425 ((org-pos-in-match-range pos 8) 'minute)
15426 ((or (org-pos-in-match-range pos 4)
15427 (org-pos-in-match-range pos 5)) 'day)
15428 ((and (> pos (or (match-end 8) (match-end 5)))
15429 (< pos (match-end 0)))
15430 (- pos (or (match-end 8) (match-end 5))))
15434 (defun org-toggle-timestamp-type ()
15435 "Toggle the type (<active> or [inactive]) of a time stamp."
15437 (when (org-at-timestamp-p t)
15438 (let ((beg (match-beginning 0)) (end (match-end 0))
15439 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
15442 (while (re-search-forward "[][<>]" end t)
15443 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
15445 (message "Timestamp is now %sactive"
15446 (if (equal (char-after beg) ?<) "" "in")))))
15448 (defun org-timestamp-change (n &optional what updown)
15449 "Change the date in the time stamp at point.
15450 The date will be changed by N times WHAT. WHAT can be `day', `month',
15451 `year', `minute', `second'. If WHAT is not given, the cursor position
15452 in the timestamp determines what will be changed."
15453 (let ((pos (point))
15455 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
15459 (if (not (org-at-timestamp-p t))
15460 (error "Not at a timestamp"))
15461 (if (and (not what) (eq org-ts-what 'bracket))
15462 (org-toggle-timestamp-type)
15463 (if (and (not what) (not (eq org-ts-what 'day))
15464 org-display-custom-times
15465 (get-text-property (point) 'display)
15466 (not (get-text-property (1- (point)) 'display)))
15467 (setq org-ts-what 'day))
15468 (setq org-ts-what (or what org-ts-what)
15469 inactive (= (char-after (match-beginning 0)) ?\[)
15470 ts (match-string 0))
15473 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?[-+][0-9]+[dwmy]\\(/[0-9]+[dwmy]\\)?\\)*\\)[]>]"
15475 (setq extra (match-string 1 ts)))
15476 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
15478 (setq time0 (org-parse-time-string ts))
15480 (eq org-ts-what 'minute)
15481 (not current-prefix-arg))
15482 ;; This looks like s-up and s-down. Change by one rounding step.
15483 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
15484 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
15485 (setcar (cdr time0) (+ (nth 1 time0)
15486 (if (> n 0) (- rem) (- dm rem))))))
15488 (encode-time (or (car time0) 0)
15489 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
15490 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
15491 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
15492 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
15493 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
15495 (when (and (member org-ts-what '(hour minute))
15497 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
15498 (setq extra (org-modify-ts-extra
15500 (if (eq org-ts-what 'hour) 2 5)
15502 (when (integerp org-ts-what)
15503 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
15504 (if (eq what 'calendar)
15505 (let ((cal-date (org-get-date-from-calendar)))
15506 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
15507 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
15508 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
15509 (setcar time0 (or (car time0) 0))
15510 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
15511 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
15512 (setq time (apply 'encode-time time0))))
15513 (setq org-last-changed-timestamp
15514 (org-insert-time-stamp time with-hm inactive nil nil extra))
15515 (org-clock-update-time-maybe)
15517 ;; Try to recenter the calendar window, if any
15518 (if (and org-calendar-follow-timestamp-change
15519 (get-buffer-window "*Calendar*" t)
15520 (memq org-ts-what '(day month year)))
15521 (org-recenter-calendar (time-to-days time))))))
15523 (defun org-modify-ts-extra (s pos n dm)
15524 "Change the different parts of the lead-time and repeat fields in timestamp."
15525 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
15527 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
15529 ((or (org-pos-in-match-range pos 2)
15530 (org-pos-in-match-range pos 3))
15531 (setq m (string-to-number (match-string 3 s))
15532 h (string-to-number (match-string 2 s)))
15533 (if (org-pos-in-match-range pos 2)
15535 (setq n (* dm (org-no-warnings (signum n))))
15536 (when (not (= 0 (setq rem (% m dm))))
15537 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
15539 (if (< m 0) (setq m (+ m 60) h (1- h)))
15540 (if (> m 59) (setq m (- m 60) h (1+ h)))
15541 (setq h (min 24 (max 0 h)))
15542 (setq ng 1 new (format "-%02d:%02d" h m)))
15543 ((org-pos-in-match-range pos 6)
15544 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
15545 ((org-pos-in-match-range pos 5)
15546 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
15548 ((org-pos-in-match-range pos 9)
15549 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
15550 ((org-pos-in-match-range pos 8)
15551 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
15555 (substring s 0 (match-beginning ng))
15557 (substring s (match-end ng))))))
15560 (defun org-recenter-calendar (date)
15561 "If the calendar is visible, recenter it to DATE."
15562 (let* ((win (selected-window))
15563 (cwin (get-buffer-window "*Calendar*" t))
15564 (calendar-move-hook nil))
15566 (select-window cwin)
15567 (calendar-goto-date (if (listp date) date
15568 (calendar-gregorian-from-absolute date)))
15569 (select-window win))))
15571 (defun org-goto-calendar (&optional arg)
15572 "Go to the Emacs calendar at the current date.
15573 If there is a time stamp in the current line, go to that date.
15574 A prefix ARG can be used to force the current date."
15576 (let ((tsr org-ts-regexp) diff
15577 (calendar-move-hook nil)
15578 (calendar-view-holidays-initially-flag nil)
15579 (calendar-view-diary-initially-flag nil))
15580 (if (or (org-at-timestamp-p)
15582 (beginning-of-line 1)
15583 (looking-at (concat ".*" tsr))))
15584 (let ((d1 (time-to-days (current-time)))
15586 (org-time-string-to-time (match-string 1)))))
15587 (setq diff (- d2 d1))))
15589 (calendar-goto-today)
15590 (if (and diff (not arg)) (calendar-forward-day diff))))
15592 (defun org-get-date-from-calendar ()
15593 "Return a list (month day year) of date at point in calendar."
15594 (with-current-buffer "*Calendar*"
15596 (calendar-cursor-to-date))))
15598 (defun org-date-from-calendar ()
15599 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
15600 If there is already a time stamp at the cursor position, update it."
15602 (if (org-at-timestamp-p t)
15603 (org-timestamp-change 0 'calendar)
15604 (let ((cal-date (org-get-date-from-calendar)))
15605 (org-insert-time-stamp
15606 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
15608 (defun org-minutes-to-hh:mm-string (m)
15609 "Compute H:MM from a number of minutes."
15610 (let ((h (/ m 60)))
15611 (setq m (- m (* 60 h)))
15612 (format org-time-clocksum-format h m)))
15614 (defun org-hh:mm-string-to-minutes (s)
15615 "Convert a string H:MM to a number of minutes.
15616 If the string is just a number, interpret it as minutes.
15617 In fact, the first hh:mm or number in the string will be taken,
15618 there can be extra stuff in the string.
15619 If no number is found, the return value is 0."
15622 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
15623 (+ (* (string-to-number (match-string 1 s)) 60)
15624 (string-to-number (match-string 2 s))))
15625 ((string-match "\\([0-9]+\\)" s)
15626 (string-to-number (match-string 1 s)))
15629 (defcustom org-effort-durations
15632 ("w" . ,(* 60 8 5))
15633 ("m" . ,(* 60 8 5 4))
15634 ("y" . ,(* 60 8 5 40)))
15635 "Conversion factor to minutes for an effort modifier.
15637 Each entry has the form (MODIFIER . MINUTES).
15639 In an effort string, a number followed by MODIFIER is multiplied
15640 by the specified number of MINUTES to obtain an effort in
15643 For example, if the value of this variable is ((\"hours\" . 60)), then an
15644 effort string \"2hours\" is equivalent to 120 minutes."
15646 :type '(alist :key-type (string :tag "Modifier")
15647 :value-type (number :tag "Minutes")))
15649 (defun org-duration-string-to-minutes (s)
15650 "Convert a duration string S to minutes.
15652 A bare number is interpreted as minutes, modifiers can be set by
15653 customizing `org-effort-durations' (which see).
15655 Entries containing a colon are interpreted as H:MM by
15656 `org-hh:mm-string-to-minutes'."
15658 (re (concat "\\([0-9]+\\) *\\("
15659 (regexp-opt (mapcar 'car org-effort-durations))
15661 (while (string-match re s)
15662 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
15663 (string-to-number (match-string 1 s))))
15664 (setq s (replace-match "" nil t s)))
15665 (incf result (org-hh:mm-string-to-minutes s))
15670 (defun org-save-all-org-buffers ()
15671 "Save all Org-mode buffers without user confirmation."
15673 (message "Saving all Org-mode buffers...")
15674 (save-some-buffers t 'org-mode-p)
15675 (when (featurep 'org-id) (org-id-locations-save))
15676 (message "Saving all Org-mode buffers... done"))
15678 (defun org-revert-all-org-buffers ()
15679 "Revert all Org-mode buffers.
15680 Prompt for confirmation when there are unsaved changes.
15681 Be sure you know what you are doing before letting this function
15682 overwrite your changes.
15684 This function is useful in a setup where one tracks org files
15685 with a version control system, to revert on one machine after pulling
15686 changes from another. I believe the procedure must be like this:
15688 1. M-x org-save-all-org-buffers
15689 2. Pull changes from the other machine, resolve conflicts
15690 3. M-x org-revert-all-org-buffers"
15692 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
15695 (save-window-excursion
15698 (when (and (with-current-buffer b (org-mode-p))
15699 (with-current-buffer b buffer-file-name))
15700 (switch-to-buffer b)
15701 (revert-buffer t 'no-confirm)))
15703 (when (and (featurep 'org-id) org-id-track-globally)
15704 (org-id-locations-load)))))
15709 (defun org-switchb (&optional arg)
15710 "Switch between Org buffers.
15711 With a prefix argument, restrict available to files.
15712 With two prefix arguments, restrict available buffers to agenda files.
15714 Defaults to `iswitchb' for buffer name completion.
15715 Set `org-completion-use-ido' to make it use ido instead."
15717 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
15718 ((equal arg '(16)) (org-buffer-list 'agenda))
15719 (t (org-buffer-list))))
15720 (org-completion-use-iswitchb org-completion-use-iswitchb)
15721 (org-completion-use-ido org-completion-use-ido))
15722 (unless (or org-completion-use-ido org-completion-use-iswitchb)
15723 (setq org-completion-use-iswitchb t))
15725 (org-icompleting-read "Org buffer: "
15726 (mapcar 'list (mapcar 'buffer-name blist))
15729 ;;; Define some older names previously used for this functionality
15731 (defalias 'org-ido-switchb 'org-switchb)
15733 (defalias 'org-iswitchb 'org-switchb)
15735 (defun org-buffer-list (&optional predicate exclude-tmp)
15736 "Return a list of Org buffers.
15737 PREDICATE can be `export', `files' or `agenda'.
15739 export restrict the list to Export buffers.
15740 files restrict the list to buffers visiting Org files.
15741 agenda restrict the list to buffers visiting agenda files.
15743 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
15745 (agenda-files (and (eq predicate 'agenda)
15746 (mapcar 'file-truename (org-agenda-files t))))
15749 ((eq predicate 'files)
15750 (lambda (b) (with-current-buffer b (org-mode-p))))
15751 ((eq predicate 'export)
15752 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
15753 ((eq predicate 'agenda)
15755 (with-current-buffer b
15757 (setq bfn (buffer-file-name b))
15758 (member (file-truename bfn) agenda-files)))))
15759 (t (lambda (b) (with-current-buffer b
15761 (string-match "\*Org .*Export"
15762 (buffer-name b)))))))))
15766 (if (and (funcall filter b)
15767 (or (not exclude-tmp)
15768 (not (string-match "tmp" (buffer-name b)))))
15773 (defun org-agenda-files (&optional unrestricted archives)
15774 "Get the list of agenda files.
15775 Optional UNRESTRICTED means return the full list even if a restriction
15776 is currently in place.
15777 When ARCHIVES is t, include all archive files that are really being
15778 used by the agenda files. If ARCHIVE is `ifmode', do this only if
15779 `org-agenda-archives-mode' is t."
15782 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
15783 ((stringp org-agenda-files) (org-read-agenda-file-list))
15784 ((listp org-agenda-files) org-agenda-files)
15785 (t (error "Invalid value of `org-agenda-files'")))))
15786 (setq files (apply 'append
15787 (mapcar (lambda (f)
15788 (if (file-directory-p f)
15790 f t org-agenda-file-regexp)
15793 (when org-agenda-skip-unavailable-files
15794 (setq files (delq nil
15797 (and (file-readable-p file) file)))
15799 (when (or (eq archives t)
15800 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
15801 (setq files (org-add-archive-files files)))
15804 (defun org-agenda-file-p (&optional file)
15805 "Return non-nil, if FILE is an agenda file.
15806 If FILE is omitted, use the file associated with the current
15808 (member (or file (buffer-file-name))
15809 (org-agenda-files t)))
15811 (defun org-edit-agenda-file-list ()
15812 "Edit the list of agenda files.
15813 Depending on setup, this either uses customize to edit the variable
15814 `org-agenda-files', or it visits the file that is holding the list. In the
15815 latter case, the buffer is set up in a way that saving it automatically kills
15816 the buffer and restores the previous window configuration."
15818 (if (stringp org-agenda-files)
15819 (let ((cw (current-window-configuration)))
15820 (find-file org-agenda-files)
15821 (org-set-local 'org-window-configuration cw)
15822 (org-add-hook 'after-save-hook
15824 (set-window-configuration
15825 (prog1 org-window-configuration
15826 (kill-buffer (current-buffer))))
15827 (org-install-agenda-files-menu)
15828 (message "New agenda file list installed"))
15830 (message "%s" (substitute-command-keys
15831 "Edit list and finish with \\[save-buffer]")))
15832 (customize-variable 'org-agenda-files)))
15834 (defun org-store-new-agenda-file-list (list)
15835 "Set new value for the agenda file list and save it correctly."
15836 (if (stringp org-agenda-files)
15837 (let ((fe (org-read-agenda-file-list t)) b u)
15838 (while (setq b (find-buffer-visiting org-agenda-files))
15840 (with-temp-file org-agenda-files
15843 (lambda (f) ;; Keep un-expanded entries.
15844 (if (setq u (assoc f fe))
15849 (let ((org-mode-hook nil) (org-inhibit-startup t)
15850 (org-insert-mode-line-in-empty-file nil))
15851 (setq org-agenda-files list)
15852 (customize-save-variable 'org-agenda-files org-agenda-files))))
15854 (defun org-read-agenda-file-list (&optional pair-with-expansion)
15855 "Read the list of agenda files from a file.
15856 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
15857 filenames, used by `org-store-new-agenda-file-list' to write back
15858 un-expanded file names."
15859 (when (file-directory-p org-agenda-files)
15860 (error "`org-agenda-files' cannot be a single directory"))
15861 (when (stringp org-agenda-files)
15863 (insert-file-contents org-agenda-files)
15866 (let ((e (expand-file-name (substitute-in-file-name f)
15868 (if pair-with-expansion
15871 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
15874 (defun org-cycle-agenda-files ()
15875 "Cycle through the files in `org-agenda-files'.
15876 If the current buffer visits an agenda file, find the next one in the list.
15877 If the current buffer does not, find the first agenda file."
15879 (let* ((fs (org-agenda-files t))
15880 (files (append fs (list (car fs))))
15881 (tcf (if buffer-file-name (file-truename buffer-file-name)))
15883 (unless files (error "No agenda files"))
15885 (while (setq file (pop files))
15886 (if (equal (file-truename file) tcf)
15888 (find-file (car files))
15890 (find-file (car fs)))
15891 (if (buffer-base-buffer) (switch-to-buffer (buffer-base-buffer)))))
15893 (defun org-agenda-file-to-front (&optional to-end)
15894 "Move/add the current file to the top of the agenda file list.
15895 If the file is not present in the list, it is added to the front. If it is
15896 present, it is moved there. With optional argument TO-END, add/move to the
15899 (let ((org-agenda-skip-unavailable-files nil)
15900 (file-alist (mapcar (lambda (x)
15901 (cons (file-truename x) x))
15902 (org-agenda-files t)))
15903 (ctf (file-truename buffer-file-name))
15905 (setq x (assoc ctf file-alist) had x)
15907 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
15909 (setq file-alist (append (delq x file-alist) (list x)))
15910 (setq file-alist (cons x (delq x file-alist))))
15911 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
15912 (org-install-agenda-files-menu)
15913 (message "File %s to %s of agenda file list"
15914 (if had "moved" "added") (if to-end "end" "front"))))
15916 (defun org-remove-file (&optional file)
15917 "Remove current file from the list of files in variable `org-agenda-files'.
15918 These are the files which are being checked for agenda entries.
15919 Optional argument FILE means use this file instead of the current."
15921 (let* ((org-agenda-skip-unavailable-files nil)
15922 (file (or file buffer-file-name))
15923 (true-file (file-truename file))
15924 (afile (abbreviate-file-name file))
15925 (files (delq nil (mapcar
15927 (if (equal true-file
15930 (org-agenda-files t)))))
15931 (if (not (= (length files) (length (org-agenda-files t))))
15933 (org-store-new-agenda-file-list files)
15934 (org-install-agenda-files-menu)
15935 (message "Removed file: %s" afile))
15936 (message "File was not in list: %s (not removed)" afile))))
15938 (defun org-file-menu-entry (file)
15939 (vector file (list 'find-file file) t))
15941 (defun org-check-agenda-file (file)
15942 "Make sure FILE exists. If not, ask user what to do."
15943 (when (not (file-exists-p file))
15944 (message "non-existent agenda file %s. [R]emove from list or [A]bort?"
15945 (abbreviate-file-name file))
15946 (let ((r (downcase (read-char-exclusive))))
15949 (org-remove-file file)
15950 (throw 'nextfile t))
15951 (t (error "Abort"))))))
15953 (defun org-get-agenda-file-buffer (file)
15954 "Get a buffer visiting FILE. If the buffer needs to be created, add
15955 it to the list of buffers which might be released later."
15956 (let ((buf (org-find-base-buffer-visiting file)))
15958 buf ; just return it
15959 ;; Make a new buffer and remember it
15960 (setq buf (find-file-noselect file))
15961 (if buf (push buf org-agenda-new-buffers))
15964 (defun org-release-buffers (blist)
15965 "Release all buffers in list, asking the user for confirmation when needed.
15966 When a buffer is unmodified, it is just killed. When modified, it is saved
15967 \(if the user agrees) and then killed."
15969 (while (setq buf (pop blist))
15970 (setq file (buffer-file-name buf))
15971 (when (and (buffer-modified-p buf)
15973 (y-or-n-p (format "Save file %s? " file)))
15974 (with-current-buffer buf (save-buffer)))
15975 (kill-buffer buf))))
15977 (defun org-prepare-agenda-buffers (files)
15978 "Create buffers for all agenda files, protect archived trees and comments."
15980 (let ((pa '(:org-archived t))
15981 (pc '(:org-comment t))
15982 (pall '(:org-archived t :org-comment t))
15983 (inhibit-read-only t)
15984 (rea (concat ":" org-archive-tag ":"))
15988 (while (setq file (pop files))
15992 (org-check-agenda-file file)
15993 (set-buffer (org-get-agenda-file-buffer file)))
15995 (setq bmp (buffer-modified-p))
15996 (org-refresh-category-properties)
15997 (setq org-todo-keywords-for-agenda
15998 (append org-todo-keywords-for-agenda org-todo-keywords-1))
15999 (setq org-done-keywords-for-agenda
16000 (append org-done-keywords-for-agenda org-done-keywords))
16001 (setq org-todo-keyword-alist-for-agenda
16002 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
16003 (setq org-drawers-for-agenda
16004 (append org-drawers-for-agenda org-drawers))
16005 (setq org-tag-alist-for-agenda
16006 (append org-tag-alist-for-agenda org-tag-alist))
16009 (remove-text-properties (point-min) (point-max) pall)
16010 (when org-agenda-skip-archived-trees
16011 (goto-char (point-min))
16012 (while (re-search-forward rea nil t)
16013 (if (org-on-heading-p t)
16014 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
16015 (goto-char (point-min))
16016 (setq re (concat "^\\*+ +" org-comment-string "\\>"))
16017 (while (re-search-forward re nil t)
16018 (add-text-properties
16019 (match-beginning 0) (org-end-of-subtree t) pc)))
16020 (set-buffer-modified-p bmp)))))
16021 (setq org-todo-keywords-for-agenda
16022 (org-uniquify org-todo-keywords-for-agenda))
16023 (setq org-todo-keyword-alist-for-agenda
16024 (org-uniquify org-todo-keyword-alist-for-agenda)
16025 org-tag-alist-for-agenda (org-uniquify org-tag-alist-for-agenda))))
16027 ;;;; Embedded LaTeX
16029 (defvar org-cdlatex-mode-map (make-sparse-keymap)
16030 "Keymap for the minor `org-cdlatex-mode'.")
16032 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
16033 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
16034 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
16035 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
16036 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
16038 (defvar org-cdlatex-texmathp-advice-is-done nil
16039 "Flag remembering if we have applied the advice to texmathp already.")
16041 (define-minor-mode org-cdlatex-mode
16042 "Toggle the minor `org-cdlatex-mode'.
16043 This mode supports entering LaTeX environment and math in LaTeX fragments
16045 \\{org-cdlatex-mode-map}"
16047 (when org-cdlatex-mode (require 'cdlatex))
16048 (unless org-cdlatex-texmathp-advice-is-done
16049 (setq org-cdlatex-texmathp-advice-is-done t)
16050 (defadvice texmathp (around org-math-always-on activate)
16051 "Always return t in org-mode buffers.
16052 This is because we want to insert math symbols without dollars even outside
16053 the LaTeX math segments. If Orgmode thinks that point is actually inside
16054 an embedded LaTeX fragment, let texmathp do its job.
16055 \\[org-cdlatex-mode-map]"
16059 ((not (org-mode-p)) ad-do-it)
16060 ((eq this-command 'cdlatex-math-symbol)
16061 (setq ad-return-value t
16062 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
16064 (let ((p (org-inside-LaTeX-fragment-p)))
16065 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
16066 (setq ad-return-value t
16067 texmathp-why '("Org-mode embedded math" . 0))
16068 (if p ad-do-it)))))))))
16070 (defun turn-on-org-cdlatex ()
16071 "Unconditionally turn on `org-cdlatex-mode'."
16072 (org-cdlatex-mode 1))
16074 (defun org-inside-LaTeX-fragment-p ()
16075 "Test if point is inside a LaTeX fragment.
16076 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
16077 sequence appearing also before point.
16078 Even though the matchers for math are configurable, this function assumes
16079 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
16080 delimiters are skipped when they have been removed by customization.
16081 The return value is nil, or a cons cell with the delimiter and
16082 and the position of this delimiter.
16084 This function does a reasonably good job, but can locally be fooled by
16085 for example currency specifications. For example it will assume being in
16086 inline math after \"$22.34\". The LaTeX fragment formatter will only format
16087 fragments that are properly closed, but during editing, we have to live
16088 with the uncertainty caused by missing closing delimiters. This function
16089 looks only before point, not after."
16091 (let ((pos (point))
16092 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
16094 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
16096 dd-on str (start 0) m re)
16099 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
16100 re (nth 1 (assoc "$" org-latex-regexps)))
16101 (while (string-match re str start)
16103 ((= (match-end 0) (length str))
16104 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
16105 ((= (match-end 0) (- (length str) 5))
16107 (t (setq start (match-end 0))))))
16108 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
16110 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
16111 (and (match-beginning 2) (throw 'exit nil))
16113 (while (re-search-backward "\\$\\$" lim t)
16114 (setq dd-on (not dd-on)))
16116 (if dd-on (cons "$$" m))))))
16118 (defun org-inside-latex-macro-p ()
16119 "Is point inside a LaTeX macro or its arguments?"
16122 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
16124 (defun org-try-cdlatex-tab ()
16125 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
16126 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
16127 - inside a LaTeX fragment, or
16128 - after the first word in a line, where an abbreviation expansion could
16129 insert a LaTeX environment."
16130 (when org-cdlatex-mode
16133 (skip-chars-backward "a-zA-Z0-9*")
16134 (skip-chars-backward " \t")
16137 ((org-inside-LaTeX-fragment-p)
16141 (defun org-cdlatex-underscore-caret (&optional arg)
16142 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
16143 Revert to the normal definition outside of these fragments."
16145 (if (org-inside-LaTeX-fragment-p)
16146 (call-interactively 'cdlatex-sub-superscript)
16147 (let (org-cdlatex-mode)
16148 (call-interactively (key-binding (vector last-input-event))))))
16150 (defun org-cdlatex-math-modify (&optional arg)
16151 "Execute `cdlatex-math-modify' in LaTeX fragments.
16152 Revert to the normal definition outside of these fragments."
16154 (if (org-inside-LaTeX-fragment-p)
16155 (call-interactively 'cdlatex-math-modify)
16156 (let (org-cdlatex-mode)
16157 (call-interactively (key-binding (vector last-input-event))))))
16159 (defvar org-latex-fragment-image-overlays nil
16160 "List of overlays carrying the images of latex fragments.")
16161 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
16163 (defun org-remove-latex-fragment-image-overlays ()
16164 "Remove all overlays with LaTeX fragment images in current buffer."
16165 (mapc 'delete-overlay org-latex-fragment-image-overlays)
16166 (setq org-latex-fragment-image-overlays nil))
16168 (defun org-preview-latex-fragment (&optional subtree)
16169 "Preview the LaTeX fragment at point, or all locally or globally.
16170 If the cursor is in a LaTeX fragment, create the image and overlay
16171 it over the source code. If there is no fragment at point, display
16172 all fragments in the current text, from one headline to the next. With
16173 prefix SUBTREE, display all fragments in the current subtree. With a
16174 double prefix arg \\[universal-argument] \\[universal-argument], or when \
16175 the cursor is before the first headline,
16176 display all fragments in the buffer.
16177 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
16179 (org-remove-latex-fragment-image-overlays)
16182 (let (beg end at msg)
16184 ((or (equal subtree '(16))
16185 (not (save-excursion
16186 (re-search-backward (concat "^" outline-regexp) nil t))))
16187 (setq beg (point-min) end (point-max)
16188 msg "Creating images for buffer...%s"))
16189 ((equal subtree '(4))
16190 (org-back-to-heading)
16191 (setq beg (point) end (org-end-of-subtree t)
16192 msg "Creating images for subtree...%s"))
16194 (if (setq at (org-inside-LaTeX-fragment-p))
16195 (goto-char (max (point-min) (- (cdr at) 2)))
16196 (org-back-to-heading))
16197 (setq beg (point) end (progn (outline-next-heading) (point))
16198 msg (if at "Creating image...%s"
16199 "Creating images for entry...%s"))))
16201 (narrow-to-region beg end)
16204 (concat "ltxpng/" (file-name-sans-extension
16205 (file-name-nondirectory
16206 buffer-file-name)))
16207 default-directory 'overlays msg at 'forbuffer 'dvipng)
16208 (message msg "done. Use `C-c C-c' to remove images.")))))
16210 (defvar org-latex-regexps
16211 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
16212 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
16213 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
16214 ("$1" "\\([^$]\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
16215 ("$" "\\([^$]\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
16216 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
16217 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
16218 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
16219 "Regular expressions for matching embedded LaTeX.")
16221 (defvar org-export-have-math nil) ;; dynamic scoping
16222 (defun org-format-latex (prefix &optional dir overlays msg at
16223 forbuffer processing-type)
16224 "Replace LaTeX fragments with links to an image, and produce images.
16225 Some of the options can be changed using the variable
16226 `org-format-latex-options'."
16227 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
16228 (let* ((prefixnodir (file-name-nondirectory prefix))
16229 (absprefix (expand-file-name prefix dir))
16230 (todir (file-name-directory absprefix))
16231 (opt org-format-latex-options)
16232 (matchers (plist-get opt :matchers))
16233 (re-list org-latex-regexps)
16234 (org-format-latex-header-extra
16235 (plist-get (org-infile-export-plist) :latex-header-extra))
16236 (cnt 0) txt hash link beg end re e checkdir
16237 executables-checked string
16238 m n block linkfile movefile ov)
16239 ;; Check the different regular expressions
16240 (while (setq e (pop re-list))
16241 (setq m (car e) re (nth 1 e) n (nth 2 e)
16242 block (if (nth 3 e) "\n\n" ""))
16243 (when (member m matchers)
16244 (goto-char (point-min))
16245 (while (re-search-forward re nil t)
16246 (when (and (or (not at) (equal (cdr at) (match-beginning n)))
16247 (not (get-text-property (match-beginning n)
16250 (not (eq (get-char-property (match-beginning n)
16252 'org-latex-overlay))))
16253 (setq org-export-have-math t)
16255 ((eq processing-type 'verbatim)
16256 ;; Leave the text verbatim, just protect it
16257 (add-text-properties (match-beginning n) (match-end n)
16258 '(org-protected t)))
16259 ((eq processing-type 'mathjax)
16260 ;; Prepare for MathJax processing
16261 (setq string (match-string n))
16262 (if (member m '("$" "$1"))
16264 (delete-region (match-beginning n) (match-end n))
16265 (goto-char (match-beginning n))
16266 (insert (org-add-props (concat "\\(" (substring string 1 -1)
16268 '(org-protected t))))
16269 (add-text-properties (match-beginning n) (match-end n)
16270 '(org-protected t))))
16271 ((or (eq processing-type 'dvipng) t)
16272 ;; Process to an image
16273 (setq txt (match-string n)
16274 beg (match-beginning n) end (match-end n)
16276 (let (print-length print-level) ; make sure full list is printed
16277 (setq hash (sha1 (prin1-to-string
16278 (list org-format-latex-header
16279 org-format-latex-header-extra
16280 org-export-latex-default-packages-alist
16281 org-export-latex-packages-alist
16282 org-format-latex-options
16284 linkfile (format "%s_%s.png" prefix hash)
16285 movefile (format "%s_%s.png" absprefix hash)))
16286 (setq link (concat block "[[file:" linkfile "]]" block))
16287 (if msg (message msg cnt))
16289 (unless checkdir ; make sure the directory exists
16291 (or (file-directory-p todir) (make-directory todir t)))
16293 (unless executables-checked
16294 (org-check-external-command
16295 "latex" "needed to convert LaTeX fragments to images")
16296 (org-check-external-command
16297 "dvipng" "needed to convert LaTeX fragments to images")
16298 (setq executables-checked t))
16300 (unless (file-exists-p movefile)
16301 (org-create-formula-image
16302 txt movefile opt forbuffer))
16306 (if (eq (overlay-get o 'org-overlay-type)
16307 'org-latex-overlay)
16308 (delete-overlay o)))
16309 (overlays-in beg end))
16310 (setq ov (make-overlay beg end))
16311 (overlay-put ov 'org-overlay-type 'org-latex-overlay)
16312 (if (featurep 'xemacs)
16314 (overlay-put ov 'invisible t)
16317 (make-glyph (vector 'png :file movefile))))
16320 (list 'image :type 'png :file movefile :ascent 'center)))
16321 (push ov org-latex-fragment-image-overlays)
16323 (delete-region beg end)
16324 (insert (org-add-props link
16325 (list 'org-latex-src
16326 (replace-regexp-in-string
16327 "\"" "" txt)))))))))))))
16329 ;; This function borrows from Ganesh Swami's latex2png.el
16330 (defun org-create-formula-image (string tofile options buffer)
16331 "This calls dvipng."
16332 (require 'org-latex)
16333 (let* ((tmpdir (if (featurep 'xemacs)
16335 temporary-file-directory))
16336 (texfilebase (make-temp-name
16337 (expand-file-name "orgtex" tmpdir)))
16338 (texfile (concat texfilebase ".tex"))
16339 (dvifile (concat texfilebase ".dvi"))
16340 (pngfile (concat texfilebase ".png"))
16341 (fnh (if (featurep 'xemacs)
16342 (font-height (get-face-font 'default))
16343 (face-attribute 'default :height nil)))
16344 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
16345 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
16346 (fg (or (plist-get options (if buffer :foreground :html-foreground))
16348 (bg (or (plist-get options (if buffer :background :html-background))
16350 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground)))
16351 (if (eq bg 'default) (setq bg (org-dvipng-color :background)))
16352 (with-temp-file texfile
16353 (insert (org-splice-latex-header
16354 org-format-latex-header
16355 org-export-latex-default-packages-alist
16356 org-export-latex-packages-alist t
16357 org-format-latex-header-extra))
16358 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")
16359 (require 'org-latex)
16360 (org-export-latex-fix-inputenc))
16361 (let ((dir default-directory))
16362 (condition-case nil
16365 (call-process "latex" nil nil nil texfile))
16368 (if (not (file-exists-p dvifile))
16369 (progn (message "Failed to create dvi file from %s" texfile) nil)
16370 (condition-case nil
16371 (call-process "dvipng" nil nil nil
16374 ;;"-x" scale "-y" scale
16379 (if (not (file-exists-p pngfile))
16380 (if org-format-latex-signal-error
16381 (error "Failed to create png file from %s" texfile)
16382 (message "Failed to create png file from %s" texfile)
16384 ;; Use the requested file name and clean up
16385 (copy-file pngfile tofile 'replace)
16386 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png") do
16387 (delete-file (concat texfilebase e)))
16390 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
16391 "Fill a LaTeX header template TPL.
16392 In the template, the following place holders will be recognized:
16394 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
16395 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
16396 [PACKAGES] \\usepackage statements for PKG
16397 [NO-PACKAGES] do not include PKG
16398 [EXTRA] the string EXTRA
16399 [NO-EXTRA] do not include EXTRA
16401 For backward compatibility, if both the positive and the negative place
16402 holder is missing, the positive one (without the \"NO-\") will be
16403 assumed to be present at the end of the template.
16404 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
16406 SNIPPETS-P indicates if this is run to create snippet images for HTML."
16407 (let (rpl (end ""))
16408 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
16409 (setq rpl (if (or (match-end 1) (not def-pkg))
16410 "" (org-latex-packages-to-string def-pkg snippets-p t))
16411 tpl (replace-match rpl t t tpl))
16412 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
16414 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
16415 (setq rpl (if (or (match-end 1) (not pkg))
16416 "" (org-latex-packages-to-string pkg snippets-p t))
16417 tpl (replace-match rpl t t tpl))
16420 (org-latex-packages-to-string pkg snippets-p)))))
16422 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
16423 (setq rpl (if (or (match-end 1) (not extra))
16424 "" (concat extra "\n"))
16425 tpl (replace-match rpl t t tpl))
16426 (if (and extra (string-match "\\S-" extra))
16427 (setq end (concat end "\n" extra))))
16429 (if (string-match "\\S-" end)
16430 (concat tpl "\n" end)
16433 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
16434 "Turn an alist of packages into a string with the \\usepackage macros."
16435 (setq pkg (mapconcat (lambda(p)
16438 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
16439 (format "%% Package %s omitted" (cadr p)))
16440 ((equal "" (car p))
16441 (format "\\usepackage{%s}" (cadr p)))
16443 (format "\\usepackage[%s]{%s}"
16444 (car p) (cadr p)))))
16447 (if newline (concat pkg "\n") pkg))
16449 (defun org-dvipng-color (attr)
16450 "Return an rgb color specification for dvipng."
16451 (apply 'format "rgb %s %s %s"
16452 (mapcar 'org-normalize-color
16453 (color-values (face-attribute 'default attr nil)))))
16455 (defun org-normalize-color (value)
16456 "Return string to be used as color value for an RGB component."
16457 (format "%g" (/ value 65535.0)))
16462 (defvar org-inline-image-overlays nil)
16463 (make-variable-buffer-local 'org-inline-image-overlays)
16465 (defun org-toggle-inline-images (&optional include-linked)
16466 "Toggle the display of inline images.
16467 INCLUDE-LINKED is passed to `org-display-inline-images'."
16469 (if org-inline-image-overlays
16471 (org-remove-inline-images)
16472 (message "Inline image display turned off"))
16473 (org-display-inline-images include-linked)
16474 (if org-inline-image-overlays
16475 (message "%d images displayed inline"
16476 (length org-inline-image-overlays))
16477 (message "No images to display inline"))))
16479 (defun org-display-inline-images (&optional include-linked refresh beg end)
16480 "Display inline images.
16481 Normally only links without a description part are inlined, because this
16482 is how it will work for export. When INCLUDE-LINKED is set, also links
16483 with a description part will be inlined. This can be nice for a quick
16484 look at those images, but it does not reflect what exported files will look
16486 When REFRESH is set, refresh existing images between BEG and END.
16487 This will create new image displays only if necessary.
16488 BEG and END default to the buffer boundaries."
16491 (org-remove-inline-images)
16492 (if (fboundp 'clear-image-cache) (clear-image-cache)))
16496 (setq beg (or beg (point-min)) end (or end (point-max)))
16497 (goto-char (point-min))
16498 (let ((re (concat "\\[\\[\\(\\(file:\\)\\|\\([./~]\\)\\)\\([^]\n]+?"
16499 (substring (org-image-file-name-regexp) 0 -2)
16500 "\\)\\]" (if include-linked "" "\\]")))
16502 (while (re-search-forward re end t)
16503 (setq old (get-char-property-and-overlay (match-beginning 1)
16504 'org-image-overlay))
16505 (setq file (expand-file-name
16506 (concat (or (match-string 3) "") (match-string 4))))
16507 (when (file-exists-p file)
16508 (if (and (car-safe old) refresh)
16509 (image-refresh (overlay-get (cdr old) 'display))
16510 (setq img (save-match-data (create-image file)))
16512 (setq ov (make-overlay (match-beginning 0) (match-end 0)))
16513 (overlay-put ov 'display img)
16514 (overlay-put ov 'face 'default)
16515 (overlay-put ov 'org-image-overlay t)
16516 (overlay-put ov 'modification-hooks
16517 (list 'org-display-inline-modification-hook))
16518 (push ov org-inline-image-overlays)))))))))
16520 (defun org-display-inline-modification-hook (ov after beg end &optional len)
16521 "Remove inline-display overlay if a corresponding region is modified."
16522 (let ((inhibit-modification-hooks t))
16523 (when (and ov after)
16524 (delete ov org-inline-image-overlays)
16525 (delete-overlay ov))))
16527 (defun org-remove-inline-images ()
16528 "Remove inline display of images."
16530 (mapc 'delete-overlay org-inline-image-overlays)
16531 (setq org-inline-image-overlays nil))
16535 ;; Make `C-c C-x' a prefix key
16536 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
16538 ;; TAB key with modifiers
16539 (org-defkey org-mode-map "\C-i" 'org-cycle)
16540 (org-defkey org-mode-map [(tab)] 'org-cycle)
16541 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
16542 (org-defkey org-mode-map [(meta tab)] 'pcomplete)
16543 (org-defkey org-mode-map "\M-\t" 'pcomplete)
16544 (org-defkey org-mode-map "\M-\C-i" 'pcomplete)
16545 ;; The following line is necessary under Suse GNU/Linux
16546 (unless (featurep 'xemacs)
16547 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
16548 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
16549 (define-key org-mode-map [backtab] 'org-shifttab)
16551 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
16552 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
16553 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
16555 ;; Cursor keys with modifiers
16556 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
16557 (org-defkey org-mode-map [(meta right)] 'org-metaright)
16558 (org-defkey org-mode-map [(meta up)] 'org-metaup)
16559 (org-defkey org-mode-map [(meta down)] 'org-metadown)
16561 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
16562 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
16563 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
16564 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
16566 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
16567 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
16568 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
16569 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
16571 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
16572 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
16575 (define-key org-mode-map org-babel-key-prefix org-babel-map)
16576 (mapc (lambda (pair)
16577 (define-key org-babel-map (car pair) (cdr pair)))
16578 org-babel-key-bindings)
16580 ;;; Extra keys for tty access.
16581 ;; We only set them when really needed because otherwise the
16582 ;; menus don't show the simple keys
16584 (when (or org-use-extra-keys
16585 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
16586 (not window-system))
16587 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
16588 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
16589 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
16590 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
16591 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
16592 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
16593 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
16594 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
16595 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
16596 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
16597 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
16598 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
16599 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
16600 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
16601 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
16602 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
16603 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
16604 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
16605 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
16606 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
16607 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
16608 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
16609 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
16610 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
16611 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
16612 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
16613 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
16614 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
16616 ;; All the other keys
16618 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
16619 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
16620 (if (boundp 'narrow-map)
16621 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
16622 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
16623 (if (boundp 'narrow-map)
16624 (org-defkey narrow-map "b" 'org-narrow-to-block)
16625 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
16626 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-same-level)
16627 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-same-level)
16628 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
16629 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
16630 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
16631 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
16632 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
16633 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
16634 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
16635 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
16636 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
16637 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
16638 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
16639 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
16640 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
16641 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
16642 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
16643 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
16644 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
16645 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
16646 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
16647 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
16648 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
16649 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
16650 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
16651 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
16652 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
16653 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
16654 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
16655 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
16656 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
16657 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
16658 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
16659 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
16660 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
16661 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
16662 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
16663 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
16664 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
16665 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
16666 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
16667 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
16668 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
16669 (org-defkey org-mode-map "\C-c^" 'org-sort)
16670 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
16671 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
16672 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
16673 (org-defkey org-mode-map "\C-m" 'org-return)
16674 (org-defkey org-mode-map "\C-j" 'org-return-indent)
16675 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
16676 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
16677 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
16678 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
16679 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
16680 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
16681 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
16682 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
16683 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
16684 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
16685 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
16686 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
16687 (org-defkey org-mode-map "\C-c\C-e" 'org-export)
16688 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section)
16689 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
16690 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
16691 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
16692 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
16693 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
16694 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
16695 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
16697 (org-defkey org-mode-map "\C-c\C-x\C-k" 'org-mark-entry-for-agenda-action)
16698 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
16699 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
16700 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
16702 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
16703 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
16704 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
16705 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
16706 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-cancel)
16707 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
16708 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
16709 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
16710 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
16711 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
16712 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
16713 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
16714 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
16715 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
16716 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
16717 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
16718 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
16719 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
16721 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
16722 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
16723 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
16724 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
16725 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
16727 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
16729 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
16731 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
16732 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
16734 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
16737 (when (featurep 'xemacs)
16738 (org-defkey org-mode-map 'button3 'popup-mode-menu))
16741 (defconst org-speed-commands-default
16743 ("Outline Navigation")
16744 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
16745 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
16746 ("f" . (org-speed-move-safe 'org-forward-same-level))
16747 ("b" . (org-speed-move-safe 'org-backward-same-level))
16748 ("u" . (org-speed-move-safe 'outline-up-heading))
16750 ("g" . (org-refile t))
16751 ("Outline Visibility")
16753 ("C" . org-shifttab)
16754 (" " . org-display-outline-path)
16755 ("Outline Structure Editing")
16756 ("U" . org-shiftmetaup)
16757 ("D" . org-shiftmetadown)
16758 ("r" . org-metaright)
16759 ("l" . org-metaleft)
16760 ("R" . org-shiftmetaright)
16761 ("L" . org-shiftmetaleft)
16762 ("i" . (progn (forward-char 1) (call-interactively
16763 'org-insert-heading-respect-content)))
16766 ("a" . org-archive-subtree-default-with-confirmation)
16767 ("." . org-mark-subtree)
16769 ("I" . org-clock-in)
16770 ("O" . org-clock-out)
16771 ("Meta Data Editing")
16773 ("0" . (org-priority ?\ ))
16774 ("1" . (org-priority ?A))
16775 ("2" . (org-priority ?B))
16776 ("3" . (org-priority ?C))
16777 (";" . org-set-tags-command)
16778 ("e" . org-set-effort)
16779 ("Agenda Views etc")
16781 ("/" . org-sparse-tree)
16783 ("o" . org-open-at-point)
16784 ("?" . org-speed-command-help)
16785 ("<" . (org-agenda-set-restriction-lock 'subtree))
16786 (">" . (org-agenda-remove-restriction-lock))
16788 "The default speed commands.")
16790 (defun org-print-speed-command (e)
16791 (if (> (length (car e)) 1)
16796 (princ (make-string (length (car e)) ?-))
16800 (if (symbolp (cdr e))
16801 (princ (symbol-name (cdr e)))
16805 (defun org-speed-command-help ()
16806 "Show the available speed commands."
16808 (if (not org-use-speed-commands)
16809 (error "Speed commands are not activated, customize `org-use-speed-commands'")
16810 (with-output-to-temp-buffer "*Help*"
16811 (princ "User-defined Speed commands\n===========================\n")
16812 (mapc 'org-print-speed-command org-speed-commands-user)
16814 (princ "Built-in Speed commands\n=======================\n")
16815 (mapc 'org-print-speed-command org-speed-commands-default))
16816 (with-current-buffer "*Help*"
16817 (setq truncate-lines t))))
16819 (defun org-speed-move-safe (cmd)
16820 "Execute CMD, but make sure that the cursor always ends up in a headline.
16821 If not, return to the original position and throw an error."
16823 (let ((pos (point)))
16824 (call-interactively cmd)
16825 (unless (and (bolp) (org-on-heading-p))
16827 (error "Boundary reached while executing %s" cmd))))
16829 (defvar org-self-insert-command-undo-counter 0)
16831 (defvar org-table-auto-blank-field) ; defined in org-table.el
16832 (defvar org-speed-command nil)
16834 (defun org-speed-command-default-hook (keys)
16835 "Hook for activating single-letter speed commands.
16836 `org-speed-commands-default' specifies a minimal command set. Use
16837 `org-speed-commands-user' for further customization."
16838 (when (or (and (bolp) (looking-at outline-regexp))
16839 (and (functionp org-use-speed-commands)
16840 (funcall org-use-speed-commands)))
16841 (cdr (assoc keys (append org-speed-commands-user
16842 org-speed-commands-default)))))
16844 (defun org-babel-speed-command-hook (keys)
16845 "Hook for activating single-letter code block commands."
16846 (when (and (bolp) (looking-at org-babel-src-block-regexp))
16847 (cdr (assoc keys org-babel-key-bindings))))
16849 (defcustom org-speed-command-hook
16850 '(org-speed-command-default-hook org-babel-speed-command-hook)
16851 "Hook for activating speed commands at strategic locations.
16852 Hook functions are called in sequence until a valid handler is
16855 Each hook takes a single argument, a user-pressed command key
16856 which is also a `self-insert-command' from the global map.
16858 Within the hook, examine the cursor position and the command key
16859 and return nil or a valid handler as appropriate. Handler could
16860 be one of an interactive command, a function, or a form.
16862 Set `org-use-speed-commands' to non-nil value to enable this
16863 hook. The default setting is `org-speed-command-default-hook'."
16864 :group 'org-structure
16867 (defun org-self-insert-command (N)
16868 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
16869 If the cursor is in a table looking at whitespace, the whitespace is
16870 overwritten, and the table is not marked as requiring realignment."
16873 ((and org-use-speed-commands
16874 (setq org-speed-command
16875 (run-hook-with-args-until-success
16876 'org-speed-command-hook (this-command-keys))))
16878 ((commandp org-speed-command)
16879 (setq this-command org-speed-command)
16880 (call-interactively org-speed-command))
16881 ((functionp org-speed-command)
16882 (funcall org-speed-command))
16883 ((and org-speed-command (listp org-speed-command))
16884 (eval org-speed-command))
16885 (t (let (org-use-speed-commands)
16886 (call-interactively 'org-self-insert-command)))))
16890 ;; check if we blank the field, and if that triggers align
16891 (and (featurep 'org-table) org-table-auto-blank-field
16892 (member last-command
16893 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand))
16894 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
16895 ;; got extra space, this field does not determine column width
16896 (let (org-table-may-need-update) (org-table-blank-field))
16897 ;; no extra space, this field may determine column width
16898 (org-table-blank-field)))
16901 (looking-at "[^|\n]* |"))
16902 (let (org-table-may-need-update)
16903 (goto-char (1- (match-end 0)))
16904 (delete-backward-char 1)
16905 (goto-char (match-beginning 0))
16906 (self-insert-command N)))
16908 (setq org-table-may-need-update t)
16909 (self-insert-command N)
16910 (org-fix-tags-on-the-fly)
16911 (if org-self-insert-cluster-for-undo
16912 (if (not (eq last-command 'org-self-insert-command))
16913 (setq org-self-insert-command-undo-counter 1)
16914 (if (>= org-self-insert-command-undo-counter 20)
16915 (setq org-self-insert-command-undo-counter 1)
16916 (and (> org-self-insert-command-undo-counter 0)
16918 (not (cadr buffer-undo-list)) ; remove nil entry
16919 (setcdr buffer-undo-list (cddr buffer-undo-list)))
16920 (setq org-self-insert-command-undo-counter
16921 (1+ org-self-insert-command-undo-counter))))))))
16923 (defun org-fix-tags-on-the-fly ()
16924 (when (and (equal (char-after (point-at-bol)) ?*)
16925 (org-on-heading-p))
16926 (org-align-tags-here org-tags-column)))
16928 (defun org-delete-backward-char (N)
16929 "Like `delete-backward-char', insert whitespace at field end in tables.
16930 When deleting backwards, in tables this function will insert whitespace in
16931 front of the next \"|\" separator, to keep the table aligned. The table will
16932 still be marked for re-alignment if the field did fill the entire column,
16933 because, in this case the deletion might narrow the column."
16935 (if (and (org-table-p)
16937 (string-match "|" (buffer-substring (point-at-bol) (point)))
16938 (looking-at ".*?|"))
16939 (let ((pos (point))
16940 (noalign (looking-at "[^|\n\r]* |"))
16941 (c org-table-may-need-update))
16942 (backward-delete-char N)
16943 (if (not overwrite-mode)
16945 (skip-chars-forward "^|")
16947 (goto-char (1- pos))))
16948 ;; noalign: if there were two spaces at the end, this field
16949 ;; does not determine the width of the column.
16950 (if noalign (setq org-table-may-need-update c)))
16951 (backward-delete-char N)
16952 (org-fix-tags-on-the-fly)))
16954 (defun org-delete-char (N)
16955 "Like `delete-char', but insert whitespace at field end in tables.
16956 When deleting characters, in tables this function will insert whitespace in
16957 front of the next \"|\" separator, to keep the table aligned. The table will
16958 still be marked for re-alignment if the field did fill the entire column,
16959 because, in this case the deletion might narrow the column."
16961 (if (and (org-table-p)
16963 (not (= (char-after) ?|))
16965 (if (looking-at ".*?|")
16966 (let ((pos (point))
16967 (noalign (looking-at "[^|\n\r]* |"))
16968 (c org-table-may-need-update))
16969 (replace-match (concat
16970 (substring (match-string 0) 1 -1)
16973 ;; noalign: if there were two spaces at the end, this field
16974 ;; does not determine the width of the column.
16975 (if noalign (setq org-table-may-need-update c)))
16978 (org-fix-tags-on-the-fly)))
16980 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
16981 (put 'org-self-insert-command 'delete-selection t)
16982 (put 'orgtbl-self-insert-command 'delete-selection t)
16983 (put 'org-delete-char 'delete-selection 'supersede)
16984 (put 'org-delete-backward-char 'delete-selection 'supersede)
16985 (put 'org-yank 'delete-selection 'yank)
16987 ;; Make `flyspell-mode' delay after some commands
16988 (put 'org-self-insert-command 'flyspell-delayed t)
16989 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
16990 (put 'org-delete-char 'flyspell-delayed t)
16991 (put 'org-delete-backward-char 'flyspell-delayed t)
16993 ;; Make pabbrev-mode expand after org-mode commands
16994 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
16995 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
16997 ;; How to do this: Measure non-white length of current string
16998 ;; If equal to column width, we should realign.
17000 (defun org-remap (map &rest commands)
17001 "In MAP, remap the functions given in COMMANDS.
17002 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
17005 (setq old (pop commands) new (pop commands))
17006 (if (fboundp 'command-remapping)
17007 (org-defkey map (vector 'remap old) new)
17008 (substitute-key-definition old new map global-map)))))
17010 (when (eq org-enable-table-editor 'optimized)
17011 ;; If the user wants maximum table support, we need to hijack
17012 ;; some standard editing functions
17013 (org-remap org-mode-map
17014 'self-insert-command 'org-self-insert-command
17015 'delete-char 'org-delete-char
17016 'delete-backward-char 'org-delete-backward-char)
17017 (org-defkey org-mode-map "|" 'org-force-self-insert))
17019 (defvar org-ctrl-c-ctrl-c-hook nil
17020 "Hook for functions attaching themselves to `C-c C-c'.
17021 This can be used to add additional functionality to the C-c C-c key which
17022 executes context-dependent commands.
17023 Each function will be called with no arguments. The function must check
17024 if the context is appropriate for it to act. If yes, it should do its
17025 thing and then return a non-nil value. If the context is wrong,
17026 just do nothing and return nil.")
17028 (defvar org-tab-first-hook nil
17029 "Hook for functions to attach themselves to TAB.
17030 See `org-ctrl-c-ctrl-c-hook' for more information.
17031 This hook runs as the first action when TAB is pressed, even before
17032 `org-cycle' messes around with the `outline-regexp' to cater for
17033 inline tasks and plain list item folding.
17034 If any function in this hook returns t, any other actions that
17035 would have been caused by TAB (such as table field motion or visibility
17036 cycling) will not occur.")
17038 (defvar org-tab-after-check-for-table-hook nil
17039 "Hook for functions to attach themselves to TAB.
17040 See `org-ctrl-c-ctrl-c-hook' for more information.
17041 This hook runs after it has been established that the cursor is not in a
17042 table, but before checking if the cursor is in a headline or if global cycling
17044 If any function in this hook returns t, not other actions like visibility
17045 cycling will be done.")
17047 (defvar org-tab-after-check-for-cycling-hook nil
17048 "Hook for functions to attach themselves to TAB.
17049 See `org-ctrl-c-ctrl-c-hook' for more information.
17050 This hook runs after it has been established that not table field motion and
17051 not visibility should be done because of current context. This is probably
17052 the place where a package like yasnippets can hook in.")
17054 (defvar org-tab-before-tab-emulation-hook nil
17055 "Hook for functions to attach themselves to TAB.
17056 See `org-ctrl-c-ctrl-c-hook' for more information.
17057 This hook runs after every other options for TAB have been exhausted, but
17058 before indentation and \t insertion takes place.")
17060 (defvar org-metaleft-hook nil
17061 "Hook for functions attaching themselves to `M-left'.
17062 See `org-ctrl-c-ctrl-c-hook' for more information.")
17063 (defvar org-metaright-hook nil
17064 "Hook for functions attaching themselves to `M-right'.
17065 See `org-ctrl-c-ctrl-c-hook' for more information.")
17066 (defvar org-metaup-hook nil
17067 "Hook for functions attaching themselves to `M-up'.
17068 See `org-ctrl-c-ctrl-c-hook' for more information.")
17069 (defvar org-metadown-hook nil
17070 "Hook for functions attaching themselves to `M-down'.
17071 See `org-ctrl-c-ctrl-c-hook' for more information.")
17072 (defvar org-shiftmetaleft-hook nil
17073 "Hook for functions attaching themselves to `M-S-left'.
17074 See `org-ctrl-c-ctrl-c-hook' for more information.")
17075 (defvar org-shiftmetaright-hook nil
17076 "Hook for functions attaching themselves to `M-S-right'.
17077 See `org-ctrl-c-ctrl-c-hook' for more information.")
17078 (defvar org-shiftmetaup-hook nil
17079 "Hook for functions attaching themselves to `M-S-up'.
17080 See `org-ctrl-c-ctrl-c-hook' for more information.")
17081 (defvar org-shiftmetadown-hook nil
17082 "Hook for functions attaching themselves to `M-S-down'.
17083 See `org-ctrl-c-ctrl-c-hook' for more information.")
17084 (defvar org-metareturn-hook nil
17085 "Hook for functions attaching themselves to `M-RET'.
17086 See `org-ctrl-c-ctrl-c-hook' for more information.")
17087 (defvar org-shiftup-hook nil
17088 "Hook for functions attaching themselves to `S-up'.
17089 See `org-ctrl-c-ctrl-c-hook' for more information.")
17090 (defvar org-shiftup-final-hook nil
17091 "Hook for functions attaching themselves to `S-up'.
17092 This one runs after all other options except shift-select have been excluded.
17093 See `org-ctrl-c-ctrl-c-hook' for more information.")
17094 (defvar org-shiftdown-hook nil
17095 "Hook for functions attaching themselves to `S-down'.
17096 See `org-ctrl-c-ctrl-c-hook' for more information.")
17097 (defvar org-shiftdown-final-hook nil
17098 "Hook for functions attaching themselves to `S-down'.
17099 This one runs after all other options except shift-select have been excluded.
17100 See `org-ctrl-c-ctrl-c-hook' for more information.")
17101 (defvar org-shiftleft-hook nil
17102 "Hook for functions attaching themselves to `S-left'.
17103 See `org-ctrl-c-ctrl-c-hook' for more information.")
17104 (defvar org-shiftleft-final-hook nil
17105 "Hook for functions attaching themselves to `S-left'.
17106 This one runs after all other options except shift-select have been excluded.
17107 See `org-ctrl-c-ctrl-c-hook' for more information.")
17108 (defvar org-shiftright-hook nil
17109 "Hook for functions attaching themselves to `S-right'.
17110 See `org-ctrl-c-ctrl-c-hook' for more information.")
17111 (defvar org-shiftright-final-hook nil
17112 "Hook for functions attaching themselves to `S-right'.
17113 This one runs after all other options except shift-select have been excluded.
17114 See `org-ctrl-c-ctrl-c-hook' for more information.")
17116 (defun org-modifier-cursor-error ()
17117 "Throw an error, a modified cursor command was applied in wrong context."
17118 (error "This command is active in special context like tables, headlines or items"))
17120 (defun org-shiftselect-error ()
17121 "Throw an error because Shift-Cursor command was applied in wrong context."
17122 (if (and (boundp 'shift-select-mode) shift-select-mode)
17123 (error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
17124 (error "This command works only in special context like headlines or timestamps")))
17126 (defun org-call-for-shift-select (cmd)
17127 (let ((this-command-keys-shift-translated t))
17128 (call-interactively cmd)))
17130 (defun org-shifttab (&optional arg)
17131 "Global visibility cycling or move to previous table field.
17132 Calls `org-cycle' with argument t, or `org-table-previous-field', depending
17134 See the individual commands for more information."
17137 ((org-at-table-p) (call-interactively 'org-table-previous-field))
17139 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
17140 (message "Content view to level: %d" arg)
17141 (org-content (prefix-numeric-value arg2))
17142 (setq org-cycle-global-status 'overview)))
17143 (t (call-interactively 'org-global-cycle))))
17145 (defun org-shiftmetaleft ()
17146 "Promote subtree or delete table column.
17147 Calls `org-promote-subtree', `org-outdent-item',
17148 or `org-table-delete-column', depending on context.
17149 See the individual commands for more information."
17152 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
17153 ((org-at-table-p) (call-interactively 'org-table-delete-column))
17154 ((org-on-heading-p) (call-interactively 'org-promote-subtree))
17155 ((org-at-item-p) (call-interactively 'org-outdent-item-tree))
17156 (t (org-modifier-cursor-error))))
17158 (defun org-shiftmetaright ()
17159 "Demote subtree or insert table column.
17160 Calls `org-demote-subtree', `org-indent-item',
17161 or `org-table-insert-column', depending on context.
17162 See the individual commands for more information."
17165 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
17166 ((org-at-table-p) (call-interactively 'org-table-insert-column))
17167 ((org-on-heading-p) (call-interactively 'org-demote-subtree))
17168 ((org-at-item-p) (call-interactively 'org-indent-item-tree))
17169 (t (org-modifier-cursor-error))))
17171 (defun org-shiftmetaup (&optional arg)
17172 "Move subtree up or kill table row.
17173 Calls `org-move-subtree-up' or `org-table-kill-row' or
17174 `org-move-item-up' depending on context. See the individual commands
17175 for more information."
17178 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
17179 ((org-at-table-p) (call-interactively 'org-table-kill-row))
17180 ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
17181 ((org-at-item-p) (call-interactively 'org-move-item-up))
17182 (t (org-modifier-cursor-error))))
17184 (defun org-shiftmetadown (&optional arg)
17185 "Move subtree down or insert table row.
17186 Calls `org-move-subtree-down' or `org-table-insert-row' or
17187 `org-move-item-down', depending on context. See the individual
17188 commands for more information."
17191 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
17192 ((org-at-table-p) (call-interactively 'org-table-insert-row))
17193 ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
17194 ((org-at-item-p) (call-interactively 'org-move-item-down))
17195 (t (org-modifier-cursor-error))))
17197 (defsubst org-hidden-tree-error ()
17199 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
17201 (defun org-metaleft (&optional arg)
17202 "Promote heading or move table column to left.
17203 Calls `org-do-promote' or `org-table-move-column', depending on context.
17204 With no specific context, calls the Emacs default `backward-word'.
17205 See the individual commands for more information."
17208 ((run-hook-with-args-until-success 'org-metaleft-hook))
17209 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
17210 ((org-with-limited-levels
17211 (or (org-on-heading-p)
17212 (and (org-region-active-p)
17214 (goto-char (region-beginning))
17215 (org-on-heading-p)))))
17216 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
17217 (call-interactively 'org-do-promote))
17218 ;; At an inline task.
17219 ((org-on-heading-p)
17220 (call-interactively 'org-inlinetask-promote))
17221 ((or (org-at-item-p)
17222 (and (org-region-active-p)
17224 (goto-char (region-beginning))
17226 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
17227 (call-interactively 'org-outdent-item))
17228 (t (call-interactively 'backward-word))))
17230 (defun org-metaright (&optional arg)
17231 "Demote subtree or move table column to right.
17232 Calls `org-do-demote' or `org-table-move-column', depending on context.
17233 With no specific context, calls the Emacs default `forward-word'.
17234 See the individual commands for more information."
17237 ((run-hook-with-args-until-success 'org-metaright-hook))
17238 ((org-at-table-p) (call-interactively 'org-table-move-column))
17239 ((org-with-limited-levels
17240 (or (org-on-heading-p)
17241 (and (org-region-active-p)
17243 (goto-char (region-beginning))
17244 (org-on-heading-p)))))
17245 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
17246 (call-interactively 'org-do-demote))
17247 ;; At an inline task.
17248 ((org-on-heading-p)
17249 (call-interactively 'org-inlinetask-demote))
17250 ((or (org-at-item-p)
17251 (and (org-region-active-p)
17253 (goto-char (region-beginning))
17255 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
17256 (call-interactively 'org-indent-item))
17257 (t (call-interactively 'forward-word))))
17259 (defun org-check-for-hidden (what)
17260 "Check if there are hidden headlines/items in the current visual line.
17261 WHAT can be either `headlines' or `items'. If the current line is
17262 an outline or item heading and it has a folded subtree below it,
17263 this function returns t, nil otherwise."
17265 ((eq what 'headlines) (concat "^" org-outline-regexp))
17266 ((eq what 'items) (org-item-beginning-re))
17267 (t (error "This should not happen"))))
17271 (unless (org-region-active-p)
17272 (setq beg (point-at-bol))
17273 (beginning-of-line 2)
17274 (while (and (not (eobp)) ;; this is like `next-line'
17275 (get-char-property (1- (point)) 'invisible))
17276 (beginning-of-line 2))
17279 (goto-char (point-at-eol))
17280 (setq end (max end (point)))
17281 (while (re-search-forward re end t)
17282 (if (get-char-property (match-beginning 0) 'invisible)
17286 (defun org-metaup (&optional arg)
17287 "Move subtree up or move table row up.
17288 Calls `org-move-subtree-up' or `org-table-move-row' or
17289 `org-move-item-up', depending on context. See the individual commands
17290 for more information."
17293 ((run-hook-with-args-until-success 'org-metaup-hook))
17294 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
17295 ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
17296 ((org-at-item-p) (call-interactively 'org-move-item-up))
17297 (t (transpose-lines 1) (beginning-of-line -1))))
17299 (defun org-metadown (&optional arg)
17300 "Move subtree down or move table row down.
17301 Calls `org-move-subtree-down' or `org-table-move-row' or
17302 `org-move-item-down', depending on context. See the individual
17303 commands for more information."
17306 ((run-hook-with-args-until-success 'org-metadown-hook))
17307 ((org-at-table-p) (call-interactively 'org-table-move-row))
17308 ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
17309 ((org-at-item-p) (call-interactively 'org-move-item-down))
17310 (t (beginning-of-line 2) (transpose-lines 1) (beginning-of-line 0))))
17312 (defun org-shiftup (&optional arg)
17313 "Increase item in timestamp or increase priority of current headline.
17314 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
17315 depending on context. See the individual commands for more information."
17318 ((run-hook-with-args-until-success 'org-shiftup-hook))
17319 ((and org-support-shift-select (org-region-active-p))
17320 (org-call-for-shift-select 'previous-line))
17321 ((org-at-timestamp-p t)
17322 (call-interactively (if org-edit-timestamp-down-means-later
17323 'org-timestamp-down 'org-timestamp-up)))
17324 ((and (not (eq org-support-shift-select 'always))
17325 org-enable-priority-commands
17326 (org-on-heading-p))
17327 (call-interactively 'org-priority-up))
17328 ((and (not org-support-shift-select) (org-at-item-p))
17329 (call-interactively 'org-previous-item))
17330 ((org-clocktable-try-shift 'up arg))
17331 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
17332 (org-support-shift-select
17333 (org-call-for-shift-select 'previous-line))
17334 (t (org-shiftselect-error))))
17336 (defun org-shiftdown (&optional arg)
17337 "Decrease item in timestamp or decrease priority of current headline.
17338 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
17339 depending on context. See the individual commands for more information."
17342 ((run-hook-with-args-until-success 'org-shiftdown-hook))
17343 ((and org-support-shift-select (org-region-active-p))
17344 (org-call-for-shift-select 'next-line))
17345 ((org-at-timestamp-p t)
17346 (call-interactively (if org-edit-timestamp-down-means-later
17347 'org-timestamp-up 'org-timestamp-down)))
17348 ((and (not (eq org-support-shift-select 'always))
17349 org-enable-priority-commands
17350 (org-on-heading-p))
17351 (call-interactively 'org-priority-down))
17352 ((and (not org-support-shift-select) (org-at-item-p))
17353 (call-interactively 'org-next-item))
17354 ((org-clocktable-try-shift 'down arg))
17355 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
17356 (org-support-shift-select
17357 (org-call-for-shift-select 'next-line))
17358 (t (org-shiftselect-error))))
17360 (defun org-shiftright (&optional arg)
17361 "Cycle the thing at point or in the current line, depending on context.
17362 Depending on context, this does one of the following:
17364 - switch a timestamp at point one day into the future
17365 - on a headline, switch to the next TODO keyword.
17366 - on an item, switch entire list to the next bullet type
17367 - on a property line, switch to the next allowed value
17368 - on a clocktable definition line, move time block into the future"
17371 ((run-hook-with-args-until-success 'org-shiftright-hook))
17372 ((and org-support-shift-select (org-region-active-p))
17373 (org-call-for-shift-select 'forward-char))
17374 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
17375 ((and (not (eq org-support-shift-select 'always))
17376 (org-on-heading-p))
17377 (let ((org-inhibit-logging
17378 (not org-treat-S-cursor-todo-selection-as-state-change))
17379 (org-inhibit-blocking
17380 (not org-treat-S-cursor-todo-selection-as-state-change)))
17381 (org-call-with-arg 'org-todo 'right)))
17382 ((or (and org-support-shift-select
17383 (not (eq org-support-shift-select 'always))
17384 (org-at-item-bullet-p))
17385 (and (not org-support-shift-select) (org-at-item-p)))
17386 (org-call-with-arg 'org-cycle-list-bullet nil))
17387 ((and (not (eq org-support-shift-select 'always))
17388 (org-at-property-p))
17389 (call-interactively 'org-property-next-allowed-value))
17390 ((org-clocktable-try-shift 'right arg))
17391 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
17392 (org-support-shift-select
17393 (org-call-for-shift-select 'forward-char))
17394 (t (org-shiftselect-error))))
17396 (defun org-shiftleft (&optional arg)
17397 "Cycle the thing at point or in the current line, depending on context.
17398 Depending on context, this does one of the following:
17400 - switch a timestamp at point one day into the past
17401 - on a headline, switch to the previous TODO keyword.
17402 - on an item, switch entire list to the previous bullet type
17403 - on a property line, switch to the previous allowed value
17404 - on a clocktable definition line, move time block into the past"
17407 ((run-hook-with-args-until-success 'org-shiftleft-hook))
17408 ((and org-support-shift-select (org-region-active-p))
17409 (org-call-for-shift-select 'backward-char))
17410 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
17411 ((and (not (eq org-support-shift-select 'always))
17412 (org-on-heading-p))
17413 (let ((org-inhibit-logging
17414 (not org-treat-S-cursor-todo-selection-as-state-change))
17415 (org-inhibit-blocking
17416 (not org-treat-S-cursor-todo-selection-as-state-change)))
17417 (org-call-with-arg 'org-todo 'left)))
17418 ((or (and org-support-shift-select
17419 (not (eq org-support-shift-select 'always))
17420 (org-at-item-bullet-p))
17421 (and (not org-support-shift-select) (org-at-item-p)))
17422 (org-call-with-arg 'org-cycle-list-bullet 'previous))
17423 ((and (not (eq org-support-shift-select 'always))
17424 (org-at-property-p))
17425 (call-interactively 'org-property-previous-allowed-value))
17426 ((org-clocktable-try-shift 'left arg))
17427 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
17428 (org-support-shift-select
17429 (org-call-for-shift-select 'backward-char))
17430 (t (org-shiftselect-error))))
17432 (defun org-shiftcontrolright ()
17433 "Switch to next TODO set."
17436 ((and org-support-shift-select (org-region-active-p))
17437 (org-call-for-shift-select 'forward-word))
17438 ((and (not (eq org-support-shift-select 'always))
17439 (org-on-heading-p))
17440 (org-call-with-arg 'org-todo 'nextset))
17441 (org-support-shift-select
17442 (org-call-for-shift-select 'forward-word))
17443 (t (org-shiftselect-error))))
17445 (defun org-shiftcontrolleft ()
17446 "Switch to previous TODO set."
17449 ((and org-support-shift-select (org-region-active-p))
17450 (org-call-for-shift-select 'backward-word))
17451 ((and (not (eq org-support-shift-select 'always))
17452 (org-on-heading-p))
17453 (org-call-with-arg 'org-todo 'previousset))
17454 (org-support-shift-select
17455 (org-call-for-shift-select 'backward-word))
17456 (t (org-shiftselect-error))))
17458 (defun org-ctrl-c-ret ()
17459 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
17462 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
17463 (t (call-interactively 'org-insert-heading))))
17465 (defun org-copy-special ()
17466 "Copy region in table or copy current subtree.
17467 Calls `org-table-copy' or `org-copy-subtree', depending on context.
17468 See the individual commands for more information."
17470 (call-interactively
17471 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
17473 (defun org-cut-special ()
17474 "Cut region in table or cut current subtree.
17475 Calls `org-table-copy' or `org-cut-subtree', depending on context.
17476 See the individual commands for more information."
17478 (call-interactively
17479 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
17481 (defun org-paste-special (arg)
17482 "Paste rectangular region into table, or past subtree relative to level.
17483 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
17484 See the individual commands for more information."
17486 (if (org-at-table-p)
17487 (org-table-paste-rectangle)
17488 (org-paste-subtree arg)))
17490 (defun org-edit-special (&optional arg)
17491 "Call a special editor for the stuff at point.
17492 When at a table, call the formula editor with `org-table-edit-formulas'.
17493 When at the first line of an src example, call `org-edit-src-code'.
17494 When in an #+include line, visit the include file. Otherwise call
17495 `ffap' to visit the file at point."
17497 ;; possibly prep session before editing source
17499 (let* ((info (org-babel-get-src-block-info))
17500 (lang (nth 0 info))
17501 (params (nth 2 info))
17502 (session (cdr (assoc :session params))))
17503 (when (and info session) ;; we are in a source-code block with a session
17505 (intern (concat "org-babel-prep-session:" lang)) session params))))
17506 (cond ;; proceed with `org-edit-special'
17508 (beginning-of-line 1)
17509 (looking-at "\\(?:#\\+\\(?:setupfile\\|include\\):?[ \t]+\"?\\|[ \t]*<include\\>.*?file=\"\\)\\([^\"\n>]+\\)"))
17510 (find-file (org-trim (match-string 1))))
17511 ((org-edit-src-code))
17512 ((org-edit-fixed-width-region))
17513 ((org-at-table.el-p)
17514 (org-edit-src-code))
17515 ((or (org-at-table-p)
17517 (beginning-of-line 1)
17518 (looking-at "[ \t]*#\\+TBLFM:")))
17519 (call-interactively 'org-table-edit-formulas))
17520 (t (call-interactively 'ffap))))
17522 (defun org-ctrl-c-ctrl-c (&optional arg)
17523 "Set tags in headline, or update according to changed information at point.
17525 This command does many different things, depending on context:
17527 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
17528 this is what we do.
17530 - If the cursor is on a statistics cookie, update it.
17532 - If the cursor is in a headline, prompt for tags and insert them
17533 into the current line, aligned to `org-tags-column'. When called
17534 with prefix arg, realign all tags in the current buffer.
17536 - If the cursor is in one of the special #+KEYWORD lines, this
17537 triggers scanning the buffer for these lines and updating the
17540 - If the cursor is inside a table, realign the table. This command
17541 works even if the automatic table editor has been turned off.
17543 - If the cursor is on a #+TBLFM line, re-apply the formulas to
17546 - If the cursor is at a footnote reference or definition, jump to
17547 the corresponding definition or references, respectively.
17549 - If the cursor is a the beginning of a dynamic block, update it.
17551 - If the current buffer is a capture buffer, close note and file it.
17553 - If the cursor is on a <<<target>>>, update radio targets and
17554 corresponding links in this buffer.
17556 - If the cursor is on a numbered item in a plain list, renumber the
17559 - If the cursor is on a checkbox, toggle it.
17561 - If the cursor is on a code block, evaluate it. The variable
17562 `org-confirm-babel-evaluate' can be used to control prompting
17563 before code block evaluation, by default every code block
17564 evaluation requires confirmation. Code block evaluation can be
17565 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
17567 (let ((org-enable-table-editor t))
17569 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
17570 org-occur-highlights
17571 org-latex-fragment-image-overlays)
17572 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
17573 (org-remove-occur-highlights)
17574 (org-remove-latex-fragment-image-overlays)
17575 (message "Temporary highlights/overlays removed from current buffer"))
17576 ((and (local-variable-p 'org-finish-function (current-buffer))
17577 (fboundp org-finish-function))
17578 (funcall org-finish-function))
17579 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
17580 ((or (looking-at org-property-start-re)
17581 (org-at-property-p))
17582 (call-interactively 'org-property-action))
17583 ((org-on-target-p) (call-interactively 'org-update-radio-target-regexp))
17584 ((and (org-in-regexp "\\[\\([0-9]*%\\|[0-9]*/[0-9]*\\)\\]")
17585 (or (org-on-heading-p) (org-at-item-p)))
17586 (call-interactively 'org-update-statistics-cookies))
17587 ((org-on-heading-p) (call-interactively 'org-set-tags))
17588 ((org-at-table.el-p)
17589 (message "Use C-c ' to edit table.el tables"))
17591 (org-table-maybe-eval-formula)
17593 (call-interactively 'org-table-recalculate)
17594 (org-table-maybe-recalculate-line))
17595 (call-interactively 'org-table-align)
17596 (orgtbl-send-table 'maybe))
17597 ((or (org-footnote-at-reference-p)
17598 (org-footnote-at-definition-p))
17599 (call-interactively 'org-footnote-action))
17600 ((org-at-item-checkbox-p)
17601 ;; Cursor at a checkbox: repair list and update checkboxes. Send
17602 ;; list only if at top item.
17603 (let* ((cbox (match-string 1))
17604 (struct (org-list-struct))
17605 (old-struct (copy-tree struct))
17606 (parents (org-list-parents-alist struct))
17607 (prevs (org-list-prevs-alist struct))
17608 (orderedp (org-entry-get nil "ORDERED"))
17609 (firstp (= (org-list-get-top-point struct) (point-at-bol)))
17611 ;; Use a light version of `org-toggle-checkbox' to avoid
17612 ;; computing list structure twice.
17613 (org-list-set-checkbox (point-at-bol) struct
17615 ((equal arg '(16)) "[-]")
17616 ((equal arg '(4)) nil)
17617 ((equal "[X]" cbox) "[ ]")
17619 (org-list-struct-fix-ind struct parents)
17620 (org-list-struct-fix-bul struct prevs)
17622 (org-list-struct-fix-box struct parents prevs orderedp))
17625 "Checkboxes were removed due to unchecked box at line %d"
17626 (org-current-line block-item)))
17627 (org-list-struct-apply-struct struct old-struct)
17628 (org-update-checkbox-count-maybe)
17629 (when firstp (org-list-send-list 'maybe))))
17631 ;; Cursor at an item: repair list. Do checkbox related actions
17632 ;; only if function was called with an argument. Send list only
17634 (let* ((struct (org-list-struct))
17635 (old-struct (copy-tree struct))
17636 (parents (org-list-parents-alist struct))
17637 (prevs (org-list-prevs-alist struct))
17638 (firstp (= (org-list-get-top-point struct) (point-at-bol))))
17639 (org-list-struct-fix-ind struct parents)
17640 (org-list-struct-fix-bul struct prevs)
17642 (org-list-set-checkbox (point-at-bol) struct "[ ]")
17643 (org-list-struct-fix-box struct parents prevs))
17644 (org-list-struct-apply-struct struct old-struct)
17645 (when arg (org-update-checkbox-count-maybe))
17646 (when firstp (org-list-send-list 'maybe))))
17647 ((save-excursion (beginning-of-line 1) (looking-at org-dblock-start-re))
17649 (beginning-of-line 1)
17650 (save-excursion (org-update-dblock)))
17652 (beginning-of-line 1)
17653 (looking-at "[ \t]*#\\+\\([A-Z]+\\)"))
17655 ((equal (match-string 1) "TBLFM")
17656 ;; Recalculate the table before this line
17658 (beginning-of-line 1)
17659 (skip-chars-backward " \r\n\t")
17660 (if (org-at-table-p)
17661 (org-call-with-arg 'org-table-recalculate (or arg t)))))
17663 (let ((org-inhibit-startup-visibility-stuff t)
17664 (org-startup-align-all-tables nil))
17665 (org-save-outline-visibility 'use-markers (org-mode-restart)))
17666 (message "Local setup has been refreshed"))))
17667 ((org-clock-update-time-maybe))
17668 (t (error "C-c C-c can do nothing useful at this location")))))
17670 (defun org-mode-restart ()
17671 "Restart Org-mode, to scan again for special lines.
17672 Also updates the keyword regular expressions."
17675 (message "Org-mode restarted"))
17677 (defun org-kill-note-or-show-branches ()
17678 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
17680 (if (not org-finish-function)
17683 (call-interactively 'show-branches))
17684 (let ((org-note-abort t))
17685 (funcall org-finish-function))))
17687 (defun org-return (&optional indent)
17688 "Goto next table row or insert a newline.
17689 Calls `org-table-next-row' or `newline', depending on context.
17690 See the individual commands for more information."
17693 ((bobp) (if indent (newline-and-indent) (newline)))
17695 (org-table-justify-field-maybe)
17696 (call-interactively 'org-table-next-row))
17697 ;; when `newline-and-indent' is called within a list, make sure
17698 ;; text moved stays inside the item.
17699 ((and (org-in-item-p) indent)
17700 (if (and (org-at-item-p) (>= (point) (match-end 0)))
17703 (org-indent-line-to (length (match-string 0))))
17704 (let ((ind (org-get-indentation)))
17706 (if (org-looking-back org-list-end-re)
17707 (org-indent-line-function)
17708 (org-indent-line-to ind)))))
17709 ((and org-return-follows-link
17710 (eq (get-text-property (point) 'face) 'org-link))
17711 (call-interactively 'org-open-at-point))
17712 ((and (org-at-heading-p)
17714 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
17718 (t (if indent (newline-and-indent) (newline)))))
17720 (defun org-return-indent ()
17721 "Goto next table row or insert a newline and indent.
17722 Calls `org-table-next-row' or `newline-and-indent', depending on
17723 context. See the individual commands for more information."
17727 (defun org-ctrl-c-star ()
17728 "Compute table, or change heading status of lines.
17729 Calls `org-table-recalculate' or `org-toggle-heading',
17730 depending on context."
17734 (call-interactively 'org-table-recalculate))
17736 ;; Convert all lines in region to list items
17737 (call-interactively 'org-toggle-heading))))
17739 (defun org-ctrl-c-minus ()
17740 "Insert separator line in table or modify bullet status of line.
17741 Also turns a plain line or a region of lines into list items.
17742 Calls `org-table-insert-hline', `org-toggle-item', or
17743 `org-cycle-list-bullet', depending on context."
17747 (call-interactively 'org-table-insert-hline))
17748 ((org-region-active-p)
17749 (call-interactively 'org-toggle-item))
17751 (call-interactively 'org-cycle-list-bullet))
17753 (call-interactively 'org-toggle-item))))
17755 (defun org-toggle-item (arg)
17756 "Convert headings or normal lines to items, items to normal lines.
17757 If there is no active region, only the current line is considered.
17759 If the first non blank line in the region is an headline, convert
17760 all headlines to items.
17762 If it is an item, convert all items to normal lines.
17764 If it is normal text, change region into an item. With a prefix
17765 argument ARG, change each line in region into an item."
17767 (let (l2 l beg end)
17768 (if (org-region-active-p)
17769 (setq beg (region-beginning) end (region-end))
17770 (setq beg (point-at-bol)
17771 end (min (1+ (point-at-eol)) (point-max))))
17772 (org-with-limited-levels
17775 (setq l2 (org-current-line))
17777 (beginning-of-line 1)
17778 ;; Ignore blank lines at beginning of region
17779 (skip-chars-forward " \t\r\n")
17780 (beginning-of-line 1)
17781 (setq l (1- (org-current-line)))
17783 ;; Case 1. Start at an item: de-itemize.
17785 (while (< (setq l (1+ l)) l2)
17786 (when (org-at-item-p)
17787 (skip-chars-forward " \t")
17788 (delete-region (point) (match-end 0)))
17789 (beginning-of-line 2)))
17790 ;; Case 2. Start an an heading: convert to items.
17791 ((org-on-heading-p)
17792 (let* ((bul (org-list-bullet-string "-"))
17795 (while (< (setq l (1+ l)) l2)
17797 ((looking-at outline-regexp)
17798 (let* ((lvl (org-reduced-level
17799 (- (length (match-string 0)) 2)))
17800 (s (concat (make-string (* len lvl) ? ) bul)))
17801 (replace-match s t t)
17802 (setq ind (length s) level lvl)))
17803 ;; Ignore blank lines and inline tasks.
17804 ((looking-at "^[ \t]*$"))
17805 ((looking-at "^\\*+ "))
17806 ;; Ensure normal text belongs to the new item.
17807 (t (org-indent-line-to (+ (max (- (org-get-indentation) level 2) 0)
17809 (beginning-of-line 2))))
17810 ;; Case 3. Normal line with ARG: turn each of them into items
17811 ;; unless they are already one.
17813 (while (< (setq l (1+ l)) l2)
17814 (unless (or (org-on-heading-p) (org-at-item-p))
17815 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
17817 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
17818 (beginning-of-line 2)))
17819 ;; Case 4. Normal line without ARG: make the first line of
17820 ;; region an item, and shift indentation of others
17821 ;; lines to set them as item's body.
17822 (t (let* ((bul (org-list-bullet-string "-"))
17823 (bul-len (length bul))
17824 (ref-ind (org-get-indentation)))
17825 (skip-chars-forward " \t")
17827 (beginning-of-line 2)
17828 (while (and (< (setq l (1+ l)) l2) (< (point) end))
17829 ;; Ensure that lines less indented than first one
17830 ;; still get included in item body.
17831 (org-indent-line-to (+ (max ref-ind (org-get-indentation))
17833 (beginning-of-line 2)))))))))
17835 (defun org-toggle-heading (&optional nstars)
17836 "Convert headings to normal text, or items or text to headings.
17837 If there is no active region, only the current line is considered.
17839 If the first non blank line is an headline, remove the stars from
17840 all headlines in the region.
17842 If it is a plain list item, turn all plain list items into headings.
17844 If it is a normal line, turn each and every normal line (i.e. not
17845 an heading or an item) in the region into a heading.
17847 When converting a line into a heading, the number of stars is chosen
17848 such that the lines become children of the current entry. However,
17849 when a prefix argument is given, its value determines the number of
17852 (let (l2 l itemp beg end)
17853 (if (org-region-active-p)
17854 (setq beg (region-beginning) end (copy-marker (region-end)))
17855 (setq beg (point-at-bol)
17856 end (min (1+ (point-at-eol)) (point-max))))
17857 ;; Ensure inline tasks don't count as headings.
17858 (org-with-limited-levels
17861 (setq l2 (org-current-line))
17863 (beginning-of-line 1)
17864 ;; Ignore blank lines at beginning of region
17865 (skip-chars-forward " \t\r\n")
17866 (beginning-of-line 1)
17867 (setq l (1- (org-current-line)))
17869 ;; Case 1. Started at an heading: de-star headings.
17870 ((org-on-heading-p)
17871 (while (< (setq l (1+ l)) l2)
17872 (when (org-on-heading-p t)
17873 (looking-at outline-regexp) (replace-match ""))
17874 (beginning-of-line 2)))
17875 ;; Case 2. Started at an item: change items into headlines.
17877 (let ((stars (make-string
17879 (prefix-numeric-value current-prefix-arg)
17880 (or (org-current-level) 0))
17882 (while (< (point) end)
17883 (when (org-at-item-p)
17884 ;; Pay attention to cases when region ends before list.
17885 (let* ((struct (org-list-struct))
17886 (list-end (min (org-list-get-bottom-point struct) end)))
17888 (narrow-to-region (point) list-end)
17890 (org-list-to-subtree
17891 (org-list-parse-list t)
17892 '(:istart (concat stars (funcall get-stars depth))
17893 :icount (concat stars
17894 (funcall get-stars depth))))))))
17895 (beginning-of-line 2))))
17896 ;; Case 3. Started at normal text: make every line an heading,
17897 ;; skipping headlines and items.
17898 (t (let* ((stars (make-string
17900 (prefix-numeric-value current-prefix-arg)
17901 (or (org-current-level) 0))
17903 (add-stars (cond (nstars "")
17904 ((equal stars "") "*")
17905 (org-odd-levels-only "**")
17907 (rpl (concat stars add-stars " ")))
17908 (while (< (setq l (1+ l)) l2)
17909 (unless (or (org-on-heading-p) (org-at-item-p))
17910 (when (looking-at "\\([ \t]*\\)\\(\\S-\\)")
17911 (replace-match (concat rpl (match-string 2)))))
17912 (beginning-of-line 2)))))))))
17914 (defun org-meta-return (&optional arg)
17915 "Insert a new heading or wrap a region in a table.
17916 Calls `org-insert-heading' or `org-table-wrap-region', depending on context.
17917 See the individual commands for more information."
17920 ((run-hook-with-args-until-success 'org-metareturn-hook))
17922 (call-interactively 'org-table-wrap-region))
17923 (t (call-interactively 'org-insert-heading))))
17927 ;; Define the Org-mode menus
17928 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
17930 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
17931 ["Next Field" org-cycle (org-at-table-p)]
17932 ["Previous Field" org-shifttab (org-at-table-p)]
17933 ["Next Row" org-return (org-at-table-p)]
17935 ["Blank Field" org-table-blank-field (org-at-table-p)]
17936 ["Edit Field" org-table-edit-field (org-at-table-p)]
17937 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
17940 ["Move Column Left" org-metaleft (org-at-table-p)]
17941 ["Move Column Right" org-metaright (org-at-table-p)]
17942 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
17943 ["Insert Column" org-shiftmetaright (org-at-table-p)])
17945 ["Move Row Up" org-metaup (org-at-table-p)]
17946 ["Move Row Down" org-metadown (org-at-table-p)]
17947 ["Delete Row" org-shiftmetaup (org-at-table-p)]
17948 ["Insert Row" org-shiftmetadown (org-at-table-p)]
17949 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
17951 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
17953 ["Copy Rectangle" org-copy-special (org-at-table-p)]
17954 ["Cut Rectangle" org-cut-special (org-at-table-p)]
17955 ["Paste Rectangle" org-paste-special (org-at-table-p)]
17956 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
17959 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
17960 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
17961 ["Edit Formulas" org-edit-special (org-at-table-p)]
17963 ["Recalculate line" org-table-recalculate (org-at-table-p)]
17964 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
17965 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
17967 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
17969 ["Sum Column/Rectangle" org-table-sum
17970 (or (org-at-table-p) (org-region-active-p))]
17971 ["Which Column?" org-table-current-column (org-at-table-p)])
17973 org-table-toggle-formula-debugger
17974 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
17975 ["Show Col/Row Numbers"
17976 org-table-toggle-coordinate-overlays
17978 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
17980 ["Create" org-table-create (and (not (org-at-table-p))
17981 org-enable-table-editor)]
17982 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
17983 ["Import from File" org-table-import (not (org-at-table-p))]
17984 ["Export to File" org-table-export (org-at-table-p)]
17986 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
17988 (easy-menu-define org-org-menu org-mode-map "Org menu"
17991 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
17992 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
17993 ["Sparse Tree..." org-sparse-tree t]
17994 ["Reveal Context" org-reveal t]
17995 ["Show All" show-all t]
17997 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
17999 ["New Heading" org-insert-heading t]
18000 ("Navigate Headings"
18001 ["Up" outline-up-heading t]
18002 ["Next" outline-next-visible-heading t]
18003 ["Previous" outline-previous-visible-heading t]
18004 ["Next Same Level" outline-forward-same-level t]
18005 ["Previous Same Level" outline-backward-same-level t]
18007 ["Jump" org-goto t])
18009 ["Move Subtree Up" org-shiftmetaup (not (org-at-table-p))]
18010 ["Move Subtree Down" org-shiftmetadown (not (org-at-table-p))]
18012 ["Copy Subtree" org-copy-special (not (org-at-table-p))]
18013 ["Cut Subtree" org-cut-special (not (org-at-table-p))]
18014 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
18016 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
18018 ["Promote Heading" org-metaleft (not (org-at-table-p))]
18019 ["Promote Subtree" org-shiftmetaleft (not (org-at-table-p))]
18020 ["Demote Heading" org-metaright (not (org-at-table-p))]
18021 ["Demote Subtree" org-shiftmetaright (not (org-at-table-p))]
18023 ["Sort Region/Children" org-sort (not (org-at-table-p))]
18025 ["Convert to odd levels" org-convert-to-odd-levels t]
18026 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
18028 ["Emphasis..." org-emphasize t]
18029 ["Edit Source Example" org-edit-special t]
18031 ["Footnote new/jump" org-footnote-action t]
18032 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
18034 ["Archive (default method)" org-archive-subtree-default t]
18036 ["Move Subtree to Archive file" org-advertized-archive-subtree t]
18037 ["Toggle ARCHIVE tag" org-toggle-archive-tag t]
18038 ["Move subtree to Archive sibling" org-archive-to-archive-sibling t]
18042 ["Store Link (Global)" org-store-link t]
18043 ["Find existing link to here" org-occur-link-in-agenda-files t]
18044 ["Insert Link" org-insert-link t]
18045 ["Follow Link" org-open-at-point t]
18047 ["Next link" org-next-link t]
18048 ["Previous link" org-previous-link t]
18050 ["Descriptive Links"
18051 (progn (add-to-invisibility-spec '(org-link)) (org-restart-font-lock))
18053 :selected (member '(org-link) buffer-invisibility-spec)]
18056 (org-remove-from-invisibility-spec '(org-link)) (org-restart-font-lock))
18058 :selected (not (member '(org-link) buffer-invisibility-spec))])
18061 ["TODO/DONE/-" org-todo t]
18063 ["Next keyword" org-shiftright (org-on-heading-p)]
18064 ["Previous keyword" org-shiftleft (org-on-heading-p)]
18065 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
18066 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))]
18067 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))])
18068 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
18069 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
18071 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
18072 :selected org-enforce-todo-dependencies :style toggle :active t]
18073 "Settings for tree at point"
18074 ["Do Children sequentially" org-toggle-ordered-property :style radio
18075 :selected (org-entry-get nil "ORDERED")
18076 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
18077 ["Do Children parallel" org-toggle-ordered-property :style radio
18078 :selected (not (org-entry-get nil "ORDERED"))
18079 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
18081 ["Set Priority" org-priority t]
18082 ["Priority Up" org-shiftup t]
18083 ["Priority Down" org-shiftdown t]
18085 ["Get news from all feeds" org-feed-update-all t]
18086 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
18087 ["Customize feeds" (customize-variable 'org-feed-alist) t])
18088 ("TAGS and Properties"
18089 ["Set Tags" org-set-tags-command t]
18090 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
18092 ["Set property" org-set-property t]
18093 ["Column view of properties" org-columns t]
18094 ["Insert Column View DBlock" org-insert-columns-dblock t])
18095 ("Dates and Scheduling"
18096 ["Timestamp" org-time-stamp t]
18097 ["Timestamp (inactive)" org-time-stamp-inactive t]
18099 ["1 Day Later" org-shiftright t]
18100 ["1 Day Earlier" org-shiftleft t]
18101 ["1 ... Later" org-shiftup t]
18102 ["1 ... Earlier" org-shiftdown t])
18103 ["Compute Time Range" org-evaluate-time-range t]
18104 ["Schedule Item" org-schedule t]
18105 ["Deadline" org-deadline t]
18107 ["Custom time format" org-toggle-time-stamp-overlays
18108 :style radio :selected org-display-custom-times]
18110 ["Goto Calendar" org-goto-calendar t]
18111 ["Date from Calendar" org-date-from-calendar t]
18113 ["Start/Restart Timer" org-timer-start t]
18114 ["Pause/Continue Timer" org-timer-pause-or-continue t]
18115 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
18116 ["Insert Timer String" org-timer t]
18117 ["Insert Timer Item" org-timer-item t])
18119 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
18120 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
18121 ["Clock out" org-clock-out t]
18122 ["Clock cancel" org-clock-cancel t]
18124 ["Mark as default task" org-clock-mark-default-task t]
18125 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
18126 ["Goto running clock" org-clock-goto t]
18128 ["Display times" org-clock-display t]
18129 ["Create clock table" org-clock-report t]
18131 ["Record DONE time"
18132 (progn (setq org-log-done (not org-log-done))
18133 (message "Switching to %s will %s record a timestamp"
18134 (car org-done-keywords)
18135 (if org-log-done "automatically" "not")))
18136 :style toggle :selected org-log-done])
18138 ["Agenda Command..." org-agenda t]
18139 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
18140 ("File List for Agenda")
18141 ("Special views current file"
18142 ["TODO Tree" org-show-todo-tree t]
18143 ["Check Deadlines" org-check-deadlines t]
18144 ["Timeline" org-timeline t]
18145 ["Tags/Property tree" org-match-sparse-tree t])
18147 ["Export/Publish..." org-export t]
18149 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
18150 :selected org-cdlatex-mode]
18151 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
18152 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
18153 ["Modify math symbol" org-cdlatex-math-modify
18154 (org-inside-LaTeX-fragment-p)]
18155 ["Insert citation" org-reftex-citation t]
18157 ["Template for BEAMER" org-insert-beamer-options-template t])
18160 ["Push Files and Views" org-mobile-push t]
18161 ["Get Captured and Flagged" org-mobile-pull t]
18162 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
18164 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
18167 ["Show Version" org-version t]
18168 ["Info Documentation" org-info t])
18170 ["Browse Org Group" org-customize t]
18172 ["Expand This Menu" org-create-customize-menu
18173 (fboundp 'customize-menu-create)])
18174 ["Send bug report" org-submit-bug-report t]
18177 ["Refresh setup current buffer" org-mode-restart t]
18178 ["Reload Org (after update)" org-reload t]
18179 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x r"])
18182 (defun org-info (&optional node)
18183 "Read documentation for Org-mode in the info system.
18184 With optional NODE, go directly to that node."
18186 (info (format "(org)%s" (or node ""))))
18189 (defun org-submit-bug-report ()
18190 "Submit a bug report on Org-mode via mail.
18192 Don't hesitate to report any problems or inaccurate documentation.
18194 If you don't have setup sending mail from (X)Emacs, please copy the
18195 output buffer into your mail program, as it gives us important
18196 information about your Org-mode version and configuration."
18198 (require 'reporter)
18199 (org-load-modules-maybe)
18200 (org-require-autoloaded-modules)
18201 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
18202 (reporter-submit-bug-report
18203 "emacs-orgmode@gnu.org"
18206 (save-window-excursion
18207 (switch-to-buffer (get-buffer-create "*Warn about privacy*"))
18208 (delete-other-windows)
18210 (insert "You are about to submit a bug report to the Org-mode mailing list.
18212 We would like to add your full Org-mode and Outline configuration to the
18213 bug report. This greatly simplifies the work of the maintainer and
18214 other experts on the mailing list.
18216 HOWEVER, some variables you have customized may contain private
18217 information. The names of customers, colleagues, or friends, might
18218 appear in the form of file names, tags, todo states, or search strings.
18219 If you answer yes to the prompt, you might want to check and remove
18220 such private information before sending the email.")
18221 (add-text-properties (point-min) (point-max) '(face org-warning))
18222 (when (yes-or-no-p "Include your Org-mode configuration ")
18226 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
18227 (or (and (symbol-value v)
18228 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
18230 (get v 'custom-type) (get v 'standard-value)
18231 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
18233 (kill-buffer (get-buffer "*Warn about privacy*"))
18236 "Remember to cover the basics, that is, what you expected to happen and
18237 what in fact did happen. You don't know how to make a good report? See
18239 http://orgmode.org/manual/Feedback.html#Feedback
18241 Your bug report will be posted to the Org-mode mailing list.
18242 ------------------------------------------------------------------------")
18244 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
18245 (replace-match "\\1Bug: \\3 [\\2]")))))
18248 (defun org-install-agenda-files-menu ()
18249 (let ((bl (buffer-list)))
18252 (set-buffer (pop bl))
18253 (if (org-mode-p) (setq bl nil)))
18256 '("Org") "File List for Agenda"
18259 ["Edit File List" (org-edit-agenda-file-list) t]
18260 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
18261 ["Remove Current File from List" org-remove-file t]
18262 ["Cycle through agenda files" org-cycle-agenda-files t]
18263 ["Occur in all agenda files" org-occur-in-agenda-files t]
18265 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
18270 (defun org-require-autoloaded-modules ()
18273 '(org-agenda org-archive org-ascii org-attach org-clock org-colview
18274 org-docbook org-exp org-html org-icalendar
18276 org-publish org-remember org-table
18277 org-timer org-xoxo)))
18280 (defun org-reload (&optional uncompiled)
18281 "Reload all org lisp files.
18282 With prefix arg UNCOMPILED, load the uncompiled versions."
18284 (require 'find-func)
18285 (let* ((file-re "^\\(org\\|orgtbl\\)\\(\\.el\\|-.*\\.el\\)")
18286 (dir-org (file-name-directory (org-find-library-name "org")))
18287 (dir-org-contrib (ignore-errors
18288 (file-name-directory
18289 (org-find-library-name "org-contribdir"))))
18291 (mapcar (lambda (el) (concat "ob" (when el (format "-%s" el)) ".el"))
18292 (append (list nil "comint" "eval" "exp" "keys"
18293 "lob" "ref" "table" "tangle")
18297 (when (cdr lang) (symbol-name (car lang))))
18298 org-babel-load-languages)))))
18300 (append (directory-files dir-org t file-re)
18302 (and dir-org-contrib
18303 (directory-files dir-org-contrib t file-re))))
18304 (remove-re (concat (if (featurep 'xemacs)
18305 "org-colview" "org-colview-xemacs")
18307 (setq files (mapcar 'file-name-sans-extension files))
18308 (setq files (mapcar
18309 (lambda (x) (if (string-match remove-re x) nil x))
18311 (setq files (delq nil files))
18314 (when (featurep (intern (file-name-nondirectory f)))
18315 (if (and (not uncompiled)
18316 (file-exists-p (concat f ".elc")))
18317 (load (concat f ".elc") nil nil t)
18318 (load (concat f ".el") nil nil t))))
18323 (defun org-customize ()
18324 "Call the customize function with org as argument."
18326 (org-load-modules-maybe)
18327 (org-require-autoloaded-modules)
18328 (customize-browse 'org))
18330 (defun org-create-customize-menu ()
18331 "Create a full customization menu for Org-mode, insert it into the menu."
18333 (org-load-modules-maybe)
18334 (org-require-autoloaded-modules)
18335 (if (fboundp 'customize-menu-create)
18338 '("Org") "Customize"
18339 `(["Browse Org group" org-customize t]
18341 ,(customize-menu-create 'org)
18342 ["Set" Custom-set t]
18343 ["Save" Custom-save t]
18344 ["Reset to Current" Custom-reset-current t]
18345 ["Reset to Saved" Custom-reset-saved t]
18346 ["Reset to Standard Settings" Custom-reset-standard t]))
18347 (message "\"Org\"-menu now contains full customization menu"))
18348 (error "Cannot expand menu (outdated version of cus-edit.el)")))
18350 ;;;; Miscellaneous stuff
18352 ;;; Generally useful functions
18354 (defun org-get-at-bol (property)
18355 "Get text property PROPERTY at beginning of line."
18356 (get-text-property (point-at-bol) property))
18358 (defun org-find-text-property-in-string (prop s)
18359 "Return the first non-nil value of property PROP in string S."
18360 (or (get-text-property 0 prop s)
18361 (get-text-property (or (next-single-property-change 0 prop s) 0)
18364 (defun org-display-warning (message) ;; Copied from Emacs-Muse
18365 "Display the given MESSAGE as a warning."
18366 (if (fboundp 'display-warning)
18367 (display-warning 'org message
18368 (if (featurep 'xemacs) 'warning :warning))
18369 (let ((buf (get-buffer-create "*Org warnings*")))
18370 (with-current-buffer buf
18371 (goto-char (point-max))
18372 (insert "Warning (Org): " message)
18375 (display-buffer buf)
18378 (defun org-eval (form)
18379 "Eval FORM and return result."
18380 (condition-case error
18382 (error (format "%%![Error: %s]" error))))
18384 (defun org-in-commented-line ()
18385 "Is point in a line starting with `#'?"
18386 (equal (char-after (point-at-bol)) ?#))
18388 (defun org-in-indented-comment-line ()
18389 "Is point in a line starting with `#' after some white space?"
18392 (goto-char (point-at-bol))
18393 (looking-at "[ \t]*#"))))
18395 (defun org-in-verbatim-emphasis ()
18397 (and (org-in-regexp org-emph-re 2) (member (match-string 3) '("=" "~")))))
18399 (defun org-goto-marker-or-bmk (marker &optional bookmark)
18400 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
18401 (if (and marker (marker-buffer marker)
18402 (buffer-live-p (marker-buffer marker)))
18404 (switch-to-buffer (marker-buffer marker))
18405 (if (or (> marker (point-max)) (< marker (point-min)))
18408 (org-show-context 'org-goto))
18410 (bookmark-jump bookmark)
18411 (error "Cannot find location"))))
18413 (defun org-quote-csv-field (s)
18414 "Quote field for inclusion in CSV material."
18415 (if (string-match "[\",]" s)
18416 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
18419 (defun org-force-self-insert (N)
18420 "Needed to enforce self-insert under remapping."
18422 (self-insert-command N))
18424 (defun org-string-width (s)
18425 "Compute width of string, ignoring invisible characters.
18426 This ignores character with invisibility property `org-link', and also
18427 characters with property `org-cwidth', because these will become invisible
18428 upon the next fontification round."
18430 (when (or (eq t buffer-invisibility-spec)
18431 (assq 'org-link buffer-invisibility-spec))
18432 (while (setq b (text-property-any 0 (length s)
18433 'invisible 'org-link s))
18434 (setq s (concat (substring s 0 b)
18435 (substring s (or (next-single-property-change
18436 b 'invisible s) (length s)))))))
18437 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
18438 (setq s (concat (substring s 0 b)
18439 (substring s (or (next-single-property-change
18440 b 'org-cwidth s) (length s))))))
18441 (setq l (string-width s) b -1)
18442 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
18443 (setq l (- l (get-text-property b 'org-dwidth-n s))))
18446 (defun org-shorten-string (s maxlength)
18447 "Shorten string S so tht it is no longer than MAXLENGTH characters.
18448 If the string is shorter or has length MAXLENGTH, just return the
18449 original string. If it is longer, the functions finds a space in the
18450 string, breaks this string off at that locations and adds three dots
18451 as ellipsis. Including the ellipsis, the string will not be longer
18452 than MAXLENGTH. If finding a good breaking point in the string does
18453 not work, the string is just chopped off in the middle of a word
18455 (if (<= (length s) maxlength)
18457 (let* ((n (max (- maxlength 4) 1))
18458 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
18459 (if (string-match re s)
18460 (concat (match-string 1 s) "...")
18461 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
18463 (defun org-get-indentation (&optional line)
18464 "Get the indentation of the current line, interpreting tabs.
18465 When LINE is given, assume it represents a line and compute its indentation."
18467 (if (string-match "^ *" (org-remove-tabs line))
18470 (beginning-of-line 1)
18471 (skip-chars-forward " \t")
18472 (current-column))))
18474 (defun org-get-string-indentation (s)
18475 "What indentation has S due to SPACE and TAB at the beginning of the string?"
18476 (let ((n -1) (i 0) (w tab-width) c)
18478 (while (< (setq n (1+ n)) (length s))
18479 (setq c (aref s n))
18480 (cond ((= c ?\ ) (setq i (1+ i)))
18481 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
18482 (t (throw 'exit t)))))
18485 (defun org-remove-tabs (s &optional width)
18486 "Replace tabulators in S with spaces.
18487 Assumes that s is a single line, starting in column 0."
18488 (setq width (or width tab-width))
18489 (while (string-match "\t" s)
18490 (setq s (replace-match
18492 (- (* width (/ (+ (match-beginning 0) width) width))
18493 (match-beginning 0)) ?\ )
18497 (defun org-fix-indentation (line ind)
18498 "Fix indentation in LINE.
18499 IND is a cons cell with target and minimum indentation.
18500 If the current indentation in LINE is smaller than the minimum,
18501 leave it alone. If it is larger than ind, set it to the target."
18502 (let* ((l (org-remove-tabs line))
18503 (i (org-get-indentation l))
18504 (i1 (car ind)) (i2 (cdr ind)))
18505 (if (>= i i2) (setq l (substring line i2)))
18507 (concat (make-string i1 ?\ ) l)
18510 (defun org-remove-indentation (code &optional n)
18511 "Remove the maximum common indentation from the lines in CODE.
18512 N may optionally be the number of spaces to remove."
18515 (org-do-remove-indentation n)
18518 (defun org-do-remove-indentation (&optional n)
18519 "Remove the maximum common indentation from the buffer."
18520 (untabify (point-min) (point-max))
18521 (let ((min 10000) re)
18524 (goto-char (point-min))
18525 (while (re-search-forward "^ *[^ \n]" nil t)
18526 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
18527 (unless (or (= min 0) (= min 10000))
18528 (setq re (format "^ \\{%d\\}" min))
18529 (goto-char (point-min))
18530 (while (re-search-forward re nil t)
18535 (defun org-fill-template (template alist)
18536 "Find each %key of ALIST in TEMPLATE and replace it."
18537 (let ((case-fold-search nil)
18539 (setq alist (sort (copy-sequence alist)
18540 (lambda (a b) (< (length (car a)) (length (car b))))))
18541 (while (setq entry (pop alist))
18543 (replace-regexp-in-string
18544 (concat "%" (regexp-quote (car entry)))
18545 (cdr entry) template t t)))
18548 (defun org-base-buffer (buffer)
18549 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
18552 (or (buffer-base-buffer buffer)
18555 (defun org-trim (s)
18556 "Remove whitespace at beginning and end of string."
18557 (if (string-match "\\`[ \t\n\r]+" s) (setq s (replace-match "" t t s)))
18558 (if (string-match "[ \t\n\r]+\\'" s) (setq s (replace-match "" t t s)))
18561 (defun org-wrap (string &optional width lines)
18562 "Wrap string to either a number of lines, or a width in characters.
18563 If WIDTH is non-nil, the string is wrapped to that width, however many lines
18564 that costs. If there is a word longer than WIDTH, the text is actually
18565 wrapped to the length of that word.
18566 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
18567 many lines, whatever width that takes.
18568 The return value is a list of lines, without newlines at the end."
18569 (let* ((words (org-split-string string "[ \t\n]+"))
18570 (maxword (apply 'max (mapcar 'org-string-width words)))
18573 (org-do-wrap words (max maxword width)))
18576 (setq ll (org-do-wrap words maxword))
18577 (if (<= (length ll) lines)
18580 (while (> (length ll) lines)
18582 (setq ll (org-do-wrap words w)))
18584 (t (error "Cannot wrap this")))))
18586 (defun org-do-wrap (words width)
18587 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
18590 (setq line (pop words))
18591 (while (and words (< (+ (length line) (length (car words))) width))
18592 (setq line (concat line " " (pop words))))
18593 (setq lines (push line lines)))
18596 (defun org-split-string (string &optional separators)
18597 "Splits STRING into substrings at SEPARATORS.
18598 No empty strings are returned if there are matches at the beginning
18599 and end of string."
18600 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
18604 (while (and (string-match rexp string
18606 (= start (match-beginning 0))
18607 (< start (length string)))
18609 (< (match-beginning 0) (length string)))
18611 (or (eq (match-beginning 0) 0)
18612 (and (eq (match-beginning 0) (match-end 0))
18613 (eq (match-beginning 0) start))
18615 (cons (substring string start (match-beginning 0))
18617 (setq start (match-end 0)))
18618 (or (eq start (length string))
18620 (cons (substring string start)
18624 (defun org-quote-vert (s)
18625 "Replace \"|\" with \"\\vert\"."
18626 (while (string-match "|" s)
18627 (setq s (replace-match "\\vert" t t s)))
18630 (defun org-uuidgen-p (s)
18631 "Is S an ID created by UUIDGEN?"
18632 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
18634 (defun org-context ()
18635 "Return a list of contexts of the current cursor position.
18636 If several contexts apply, all are returned.
18637 Each context entry is a list with a symbol naming the context, and
18638 two positions indicating start and end of the context. Possible
18641 :headline anywhere in a headline
18642 :headline-stars on the leading stars in a headline
18643 :todo-keyword on a TODO keyword (including DONE) in a headline
18644 :tags on the TAGS in a headline
18645 :priority on the priority cookie in a headline
18646 :item on the first line of a plain list item
18647 :item-bullet on the bullet/number of a plain list item
18648 :checkbox on the checkbox in a plain list item
18649 :table in an org-mode table
18650 :table-special on a special filed in a table
18651 :table-table in a table.el table
18652 :link on a hyperlink
18653 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE,COMMENT, QUOTE.
18654 :target on a <<target>>
18655 :radio-target on a <<<radio-target>>>
18656 :latex-fragment on a LaTeX fragment
18657 :latex-preview on a LaTeX fragment with overlayed preview image
18659 This function expects the position to be visible because it uses font-lock
18660 faces as a help to recognize the following contexts: :table-special, :link,
18662 (let* ((f (get-text-property (point) 'face))
18663 (faces (if (listp f) f (list f)))
18664 (p (point)) clist o)
18665 ;; First the large context
18667 ((org-on-heading-p t)
18668 (push (list :headline (point-at-bol) (point-at-eol)) clist)
18670 (beginning-of-line 1)
18671 (looking-at org-todo-line-tags-regexp))
18672 (push (org-point-in-group p 1 :headline-stars) clist)
18673 (push (org-point-in-group p 2 :todo-keyword) clist)
18674 (push (org-point-in-group p 4 :tags) clist))
18676 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
18677 (if (looking-at "\\[#[A-Z0-9]\\]")
18678 (push (org-point-in-group p 0 :priority) clist)))
18681 (push (org-point-in-group p 2 :item-bullet) clist)
18682 (push (list :item (point-at-bol)
18683 (save-excursion (org-end-of-item) (point)))
18685 (and (org-at-item-checkbox-p)
18686 (push (org-point-in-group p 0 :checkbox) clist)))
18689 (push (list :table (org-table-begin) (org-table-end)) clist)
18690 (if (memq 'org-formula faces)
18691 (push (list :table-special
18692 (previous-single-property-change p 'face)
18693 (next-single-property-change p 'face)) clist)))
18694 ((org-at-table-p 'any)
18695 (push (list :table-table) clist)))
18698 ;; Now the small context
18700 ((org-at-timestamp-p)
18701 (push (org-point-in-group p 0 :timestamp) clist))
18702 ((memq 'org-link faces)
18704 (previous-single-property-change p 'face)
18705 (next-single-property-change p 'face)) clist))
18706 ((memq 'org-special-keyword faces)
18707 (push (list :keyword
18708 (previous-single-property-change p 'face)
18709 (next-single-property-change p 'face)) clist))
18711 (push (org-point-in-group p 0 :target) clist)
18712 (goto-char (1- (match-beginning 0)))
18713 (if (looking-at org-radio-target-regexp)
18714 (push (org-point-in-group p 0 :radio-target) clist))
18716 ((setq o (car (delq nil
18719 (if (memq x org-latex-fragment-image-overlays) x))
18720 (overlays-at (point))))))
18721 (push (list :latex-fragment
18722 (overlay-start o) (overlay-end o)) clist)
18723 (push (list :latex-preview
18724 (overlay-start o) (overlay-end o)) clist))
18725 ((org-inside-LaTeX-fragment-p)
18726 ;; FIXME: positions wrong.
18727 (push (list :latex-fragment (point) (point)) clist)))
18729 (setq clist (nreverse (delq nil clist)))
18732 ;; FIXME: Compare with at-regexp-p Do we need both?
18733 (defun org-in-regexp (re &optional nlines visually)
18734 "Check if point is inside a match of regexp.
18735 Normally only the current line is checked, but you can include NLINES extra
18736 lines both before and after point into the search.
18737 If VISUALLY is set, require that the cursor is not after the match but
18738 really on, so that the block visually is on the match."
18740 (let ((pos (point))
18741 (eol (point-at-eol (+ 1 (or nlines 0))))
18742 (inc (if visually 1 0)))
18744 (beginning-of-line (- 1 (or nlines 0)))
18745 (while (re-search-forward re eol t)
18746 (if (and (<= (match-beginning 0) pos)
18747 (>= (+ inc (match-end 0)) pos))
18748 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
18750 (defun org-at-regexp-p (regexp)
18751 "Is point inside a match of REGEXP in the current line?"
18754 (let ((pos (point)) (end (point-at-eol)))
18755 (beginning-of-line 1)
18756 (while (re-search-forward regexp end t)
18757 (if (and (<= (match-beginning 0) pos)
18758 (>= (match-end 0) pos))
18762 (defun org-in-regexps-block-p (start-re end-re &optional bound)
18763 "Return t if the current point is between matches of START-RE and END-RE.
18764 This will also return t if point is on one of the two matches or
18765 in an unfinished block. END-RE can be a string or a form
18766 returning a string.
18768 An optional third argument bounds the search for START-RE. It
18769 defaults to previous heading or `point-min'."
18770 (let ((pos (point))
18771 (limit (or bound (save-excursion (outline-previous-heading)))))
18773 ;; we're on a block when point is on start-re...
18774 (or (org-at-regexp-p start-re)
18775 ;; ... or start-re can be found above...
18776 (and (re-search-backward start-re limit t)
18777 ;; ... but no end-re between start-re and point.
18778 (not (re-search-forward (eval end-re) pos t)))))))
18780 (defun org-occur-in-agenda-files (regexp &optional nlines)
18781 "Call `multi-occur' with buffers for all agenda files."
18782 (interactive "sOrg-files matching: \np")
18783 (let* ((files (org-agenda-files))
18784 (tnames (mapcar 'file-truename files))
18785 (extra org-agenda-text-search-extra-files)
18787 (when (eq (car extra) 'agenda-archives)
18788 (setq extra (cdr extra))
18789 (setq files (org-add-archive-files files)))
18790 (while (setq f (pop extra))
18791 (unless (member (file-truename f) tnames)
18792 (add-to-list 'files f 'append)
18793 (add-to-list 'tnames (file-truename f) 'append)))
18795 (mapcar (lambda (x)
18796 (with-current-buffer
18797 (or (get-file-buffer x) (find-file-noselect x))
18803 (if (boundp 'occur-mode-find-occurrence-hook)
18805 (add-hook 'occur-mode-find-occurrence-hook
18810 (defadvice occur-mode-goto-occurrence
18811 (after org-occur-reveal activate)
18812 (and (org-mode-p) (org-reveal)))
18813 (defadvice occur-mode-goto-occurrence-other-window
18814 (after org-occur-reveal activate)
18815 (and (org-mode-p) (org-reveal)))
18816 (defadvice occur-mode-display-occurrence
18817 (after org-occur-reveal activate)
18819 (let ((pos (occur-mode-find-occurrence)))
18820 (with-current-buffer (marker-buffer pos)
18825 (defun org-occur-link-in-agenda-files ()
18826 "Create a link and search for it in the agendas.
18827 The link is not stored in `org-stored-links', it is just created
18828 for the search purpose."
18830 (let ((link (condition-case nil
18831 (org-store-link nil)
18832 (error "Unable to create a link to here"))))
18833 (org-occur-in-agenda-files (regexp-quote link))))
18835 (defun org-uniquify (list)
18836 "Remove duplicate elements from LIST."
18838 (mapc (lambda (x) (add-to-list 'res x 'append)) list)
18841 (defun org-delete-all (elts list)
18842 "Remove all elements in ELTS from LIST."
18844 (setq list (delete (pop elts) list)))
18847 (defun org-count (cl-item cl-seq)
18848 "Count the number of occurrences of ITEM in SEQ.
18849 Taken from `count' in cl-seq.el with all keyword arguments removed."
18850 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
18851 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
18852 (while (< cl-start cl-end)
18853 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
18854 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
18855 (setq cl-start (1+ cl-start)))
18858 (defun org-remove-if (predicate seq)
18859 "Remove everything from SEQ that fulfills PREDICATE."
18863 (if (not (funcall predicate e)) (push e res)))
18866 (defun org-remove-if-not (predicate seq)
18867 "Remove everything from SEQ that does not fulfill PREDICATE."
18871 (if (funcall predicate e) (push e res)))
18874 (defun org-back-over-empty-lines ()
18875 "Move backwards over whitespace, to the beginning of the first empty line.
18876 Returns the number of empty lines passed."
18877 (let ((pos (point)))
18878 (if (cdr (assoc 'heading org-blank-before-new-entry))
18879 (skip-chars-backward " \t\n\r")
18881 (beginning-of-line 2)
18882 (goto-char (min (point) pos))
18883 (count-lines (point) pos)))
18885 (defun org-skip-whitespace ()
18886 (skip-chars-forward " \t\n\r"))
18888 (defun org-point-in-group (point group &optional context)
18889 "Check if POINT is in match-group GROUP.
18890 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
18891 match. If the match group does not exist or point is not inside it,
18893 (and (match-beginning group)
18894 (>= point (match-beginning group))
18895 (<= point (match-end group))
18897 (list context (match-beginning group) (match-end group))
18900 (defun org-switch-to-buffer-other-window (&rest args)
18901 "Switch to buffer in a second window on the current frame.
18902 In particular, do not allow pop-up frames.
18903 Returns the newly created buffer."
18904 (let (pop-up-frames special-display-buffer-names special-display-regexps
18905 special-display-function)
18906 (apply 'switch-to-buffer-other-window args)))
18908 (defun org-combine-plists (&rest plists)
18909 "Create a single property list from all plists in PLISTS.
18910 The process starts by copying the first list, and then setting properties
18911 from the other lists. Settings in the last list are the most significant
18912 ones and overrule settings in the other lists."
18913 (let ((rtn (copy-sequence (pop plists)))
18916 (setq ls (pop plists))
18918 (setq p (pop ls) v (pop ls))
18919 (setq rtn (plist-put rtn p v))))
18922 (defun org-move-line-down (arg)
18923 "Move the current line down. With prefix argument, move it past ARG lines."
18925 (let ((col (current-column))
18927 (beginning-of-line 1) (setq beg (point))
18928 (beginning-of-line 2) (setq end (point))
18929 (beginning-of-line (+ 1 arg))
18930 (setq pos (move-marker (make-marker) (point)))
18931 (insert (delete-and-extract-region beg end))
18933 (org-move-to-column col)))
18935 (defun org-move-line-up (arg)
18936 "Move the current line up. With prefix argument, move it past ARG lines."
18938 (let ((col (current-column))
18940 (beginning-of-line 1) (setq beg (point))
18941 (beginning-of-line 2) (setq end (point))
18942 (beginning-of-line (- arg))
18943 (setq pos (move-marker (make-marker) (point)))
18944 (insert (delete-and-extract-region beg end))
18946 (org-move-to-column col)))
18948 (defun org-replace-escapes (string table)
18949 "Replace %-escapes in STRING with values in TABLE.
18950 TABLE is an association list with keys like \"%a\" and string values.
18951 The sequences in STRING may contain normal field width and padding information,
18952 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
18953 so values can contain further %-escapes if they are define later in TABLE."
18954 (let ((tbl (copy-alist table))
18955 (case-fold-search nil)
18958 (while (setq e (pop tbl))
18959 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
18960 (when (and (cdr e) (string-match re (cdr e)))
18961 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
18963 (add-text-properties 0 3 (list 'sref sref) safe)
18964 (setcdr e (replace-match safe t t (cdr e)))))
18965 (while (string-match re string)
18966 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
18968 (setq string (replace-match rpl t t string))))
18969 (while (setq pchg (next-property-change pchg string))
18970 (let ((sref (get-text-property pchg 'sref string)))
18971 (when (and sref (string-match "SREF" string pchg))
18972 (setq string (replace-match sref t t string)))))
18975 (defun org-sublist (list start end)
18976 "Return a section of LIST, from START to END.
18977 Counting starts at 1."
18978 (let (rtn (c start))
18979 (setq list (nthcdr (1- start) list))
18980 (while (and list (<= c end))
18981 (push (pop list) rtn)
18985 (defun org-find-base-buffer-visiting (file)
18986 "Like `find-buffer-visiting' but always return the base buffer and
18987 not an indirect buffer."
18988 (let ((buf (or (get-file-buffer file)
18989 (find-buffer-visiting file))))
18991 (or (buffer-base-buffer buf) buf)
18994 (defun org-image-file-name-regexp (&optional extensions)
18995 "Return regexp matching the file names of images.
18996 If EXTENSIONS is given, only match these."
18997 (if (and (not extensions) (fboundp 'image-file-name-regexp))
18998 (image-file-name-regexp)
18999 (let ((image-file-name-extensions
19001 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
19002 "xbm" "xpm" "pbm" "pgm" "ppm"))))
19004 (regexp-opt (nconc (mapcar 'upcase
19005 image-file-name-extensions)
19006 image-file-name-extensions)
19010 (defun org-file-image-p (file &optional extensions)
19011 "Return non-nil if FILE is an image."
19013 (string-match (org-image-file-name-regexp extensions) file)))
19015 (defun org-get-cursor-date ()
19016 "Return the date at cursor in as a time.
19017 This works in the calendar and in the agenda, anywhere else it just
19018 returns the current time."
19019 (let (date day defd)
19021 ((eq major-mode 'calendar-mode)
19022 (setq date (calendar-cursor-to-date)
19023 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
19024 ((eq major-mode 'org-agenda-mode)
19025 (setq day (get-text-property (point) 'day))
19027 (setq date (calendar-gregorian-from-absolute day)
19028 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date)
19030 (or defd (current-time))))
19032 (defvar org-agenda-action-marker (make-marker)
19033 "Marker pointing to the entry for the next agenda action.")
19035 (defun org-mark-entry-for-agenda-action ()
19036 "Mark the current entry as target of an agenda action.
19037 Agenda actions are actions executed from the agenda with the key `k',
19038 which make use of the date at the cursor."
19040 (move-marker org-agenda-action-marker
19041 (save-excursion (org-back-to-heading t) (point))
19044 "Entry marked for action; press `k' at desired date in agenda or calendar"))
19046 (defun org-mark-subtree ()
19047 "Mark the current subtree.
19048 This puts point at the start of the current subtree, and mark at the end.
19050 If point is in an inline task, mark that task instead."
19052 (let ((inline-task-p
19053 (and (featurep 'org-inlinetask)
19054 (org-inlinetask-in-task-p)))
19056 ;; Get beginning of subtree
19058 (inline-task-p (org-inlinetask-goto-beginning))
19059 ((org-at-heading-p) (beginning-of-line))
19060 (t (org-with-limited-levels (outline-previous-visible-heading 1))))
19064 (org-inlinetask-goto-end)
19065 (org-end-of-subtree))
19067 (push-mark (point) nil t)
19070 ;;; Paragraph filling stuff.
19071 ;; We want this to be just right, so use the full arsenal.
19073 (defun org-indent-line-function ()
19074 "Indent line depending on context."
19076 (let* ((pos (point))
19077 (itemp (org-at-item-p))
19078 (case-fold-search t)
19079 (org-drawer-regexp (or org-drawer-regexp "\000"))
19080 (inline-task-p (and (featurep 'org-inlinetask)
19081 (org-inlinetask-in-task-p)))
19082 (inline-re (and inline-task-p
19083 (org-inlinetask-outline-regexp)))
19085 (beginning-of-line 1)
19088 ((looking-at "# ") (setq column 0))
19090 ((looking-at "\\*+ ") (setq column 0))
19092 ((looking-at "#\\+include:") (setq column 0))
19093 ;; Footnote definition
19094 ((looking-at org-footnote-definition-re) (setq column 0))
19095 ;; Literal examples
19096 ((looking-at "[ \t]*:[ \t]")
19097 (setq column (org-get-indentation))) ; do nothing
19099 ((ignore-errors (goto-char (org-in-item-p)))
19100 (setq column (if itemp
19101 (org-get-indentation)
19102 (org-list-item-body-column (point))))
19105 ((and (looking-at "[ \t]*:END:")
19106 (save-excursion (re-search-backward org-drawer-regexp nil t)))
19108 (goto-char (1- (match-beginning 1)))
19109 (setq column (current-column))))
19111 ((and (looking-at "[ \t]*#\\+end_\\([a-z]+\\)")
19113 (re-search-backward
19114 (concat "^[ \t]*#\\+begin_" (downcase (match-string 1))) nil t)))
19115 (setq column (org-get-indentation (match-string 0))))
19116 ((and (not (looking-at "[ \t]*#\\+begin_"))
19117 (org-in-regexps-block-p "^[ \t]*#\\+begin_" "[ \t]*#\\+end_"))
19119 (re-search-backward "^[ \t]*#\\+begin_\\([a-z]+\\)" nil t))
19121 (if (equal (downcase (match-string 1)) "src")
19122 ;; src blocks: let `org-edit-src-exit' handle them
19123 (org-get-indentation)
19124 (org-get-indentation (match-string 0)))))
19125 ;; This line has nothing special, look at the previous relevant
19126 ;; line to compute indentation
19128 (beginning-of-line 0)
19129 (while (and (not (bobp))
19130 (not (looking-at org-drawer-regexp))
19131 ;; When point started in an inline task, do not move
19132 ;; above task starting line.
19133 (not (and inline-task-p (looking-at inline-re)))
19134 ;; Skip drawers, blocks, empty lines, verbatim,
19135 ;; comments, tables, footnotes definitions, lists,
19137 (or (and (looking-at "[ \t]*:END:")
19138 (re-search-backward org-drawer-regexp nil t))
19139 (and (looking-at "[ \t]*#\\+end_")
19140 (re-search-backward "[ \t]*#\\+begin_"nil t))
19141 (looking-at "[ \t]*[\n:#|]")
19142 (looking-at org-footnote-definition-re)
19143 (and (ignore-errors (goto-char (org-in-item-p)))
19145 (org-list-get-top-point (org-list-struct))))
19146 (and (not inline-task-p)
19147 (featurep 'org-inlinetask)
19148 (org-inlinetask-in-task-p)
19149 (or (org-inlinetask-goto-beginning) t))))
19150 (beginning-of-line 0))
19152 ;; There was an heading above.
19153 ((looking-at "\\*+[ \t]+")
19154 (if (not org-adapt-indentation)
19156 (goto-char (match-end 0))
19157 (setq column (current-column))))
19158 ;; A drawer had started and is unfinished
19159 ((looking-at org-drawer-regexp)
19160 (goto-char (1- (match-beginning 1)))
19161 (setq column (current-column)))
19162 ;; Else, nothing noticeable found: get indentation and go on.
19163 (t (setq column (org-get-indentation))))))
19164 ;; Now apply indentation and move cursor accordingly
19166 (if (<= (current-column) (current-indentation))
19167 (org-indent-line-to column)
19168 (save-excursion (org-indent-line-to column)))
19169 ;; Special polishing for properties, see `org-property-format'
19170 (setq column (current-column))
19171 (beginning-of-line 1)
19173 "\\([ \t]+\\)\\(:[-_0-9a-zA-Z]+:\\)[ \t]*\\(\\S-.*\\(\\S-\\|$\\)\\)")
19174 (replace-match (concat (match-string 1)
19175 (format org-property-format
19176 (match-string 2) (match-string 3)))
19178 (org-move-to-column column)))
19180 (defvar org-adaptive-fill-regexp-backup adaptive-fill-regexp
19181 "Variable to store copy of `adaptive-fill-regexp'.
19182 Since `adaptive-fill-regexp' is set to never match, we need to
19183 store a backup of its value before entering `org-mode' so that
19184 the functionality can be provided as a fall-back.")
19186 (defun org-set-autofill-regexps ()
19188 ;; In the paragraph separator we include headlines, because filling
19189 ;; text in a line directly attached to a headline would otherwise
19190 ;; fill the headline as well.
19191 (org-set-local 'comment-start-skip "^#+[ \t]*")
19192 (org-set-local 'paragraph-separate "\f\\|\\*+ \\|[ ]*$\\|[ \t]*[:|#]")
19193 ;; The paragraph starter includes hand-formatted lists.
19201 (org-item-re) "\\|"
19204 "\\\\\\(begin\\|end\\|[][]\\)"))
19205 ;; Inhibit auto-fill for headers, tables and fixed-width lines.
19206 ;; But only if the user has not turned off tables or fixed-width regions
19208 'auto-fill-inhibit-regexp
19209 (concat "\\*+ \\|#\\+"
19210 "\\|[ \t]*" org-keyword-time-regexp
19211 (if (or org-enable-table-editor org-enable-fixed-width-editor)
19214 (if org-enable-table-editor "|" "")
19215 (if org-enable-fixed-width-editor ":" "")
19217 ;; We use our own fill-paragraph function, to make sure that tables
19218 ;; and fixed-width regions are not wrapped. That function will pass
19219 ;; through to `fill-paragraph' when appropriate.
19220 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
19221 ;; Prevent auto-fill from inserting unwanted new items.
19222 (org-set-local 'fill-nobreak-predicate
19223 (if (memq 'org-fill-item-nobreak-p fill-nobreak-predicate)
19224 fill-nobreak-predicate
19225 (cons 'org-fill-item-nobreak-p fill-nobreak-predicate)))
19226 ;; Adaptive filling: To get full control, first make sure that
19227 ;; `adaptive-fill-regexp' never matches. Then install our own matcher.
19228 (unless (local-variable-p 'adaptive-fill-regexp (current-buffer))
19229 (org-set-local 'org-adaptive-fill-regexp-backup
19230 adaptive-fill-regexp))
19231 (org-set-local 'adaptive-fill-regexp "\000")
19232 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
19233 (org-set-local 'adaptive-fill-function
19234 'org-adaptive-fill-function)
19236 'align-mode-rules-list
19237 '((org-in-buffer-settings
19238 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
19239 (modes . '(org-mode))))))
19241 (defun org-fill-item-nobreak-p ()
19242 "Non-nil when a line break at point would insert a new item."
19243 (and (looking-at (org-item-re)) (org-list-in-valid-context-p)))
19245 (defun org-fill-paragraph (&optional justify)
19246 "Re-align a table, pass through to fill-paragraph if no table."
19247 (let ((table-p (org-at-table-p))
19248 (table.el-p (org-at-table.el-p))
19249 (itemp (org-in-item-p)))
19250 (cond ((and (equal (char-after (point-at-bol)) ?*)
19251 (save-excursion (goto-char (point-at-bol))
19252 (looking-at outline-regexp)))
19253 t) ; skip headlines
19254 (table.el-p t) ; skip table.el tables
19255 (table-p (org-table-align) t) ; align Org tables
19256 (itemp ; align text in items
19257 (let* ((struct (save-excursion (goto-char itemp)
19258 (org-list-struct)))
19259 (parents (org-list-parents-alist struct))
19260 (children (org-list-get-children itemp struct parents))
19261 beg end prev next prefix)
19262 ;; Determine in which part of item point is: before
19263 ;; first child, after last child, between two
19264 ;; sub-lists, or simply in item if there's no child.
19267 (setq prefix (make-string (org-list-item-body-column itemp) ?\ )
19269 end (org-list-get-item-end itemp struct)))
19270 ((< (point) (setq next (car children)))
19271 (setq prefix (make-string (org-list-item-body-column itemp) ?\ )
19274 ((> (point) (setq prev (car (last children))))
19275 (setq beg (org-list-get-item-end prev struct)
19276 end (org-list-get-item-end itemp struct)
19277 prefix (save-excursion
19279 (skip-chars-forward " \t")
19280 (make-string (current-column) ?\ ))))
19282 (while (setq next (pop children))
19283 (if (> (point) next)
19285 (setq beg (org-list-get-item-end prev struct)
19287 prefix (save-excursion
19289 (skip-chars-forward " \t")
19290 (make-string (current-column) ?\ )))
19291 (throw 'exit nil))))))
19292 ;; Use `fill-paragraph' with buffer narrowed to item
19293 ;; without any child, and with our computed PREFIX.
19294 (flet ((fill-context-prefix (from to &optional flr) prefix))
19296 (narrow-to-region beg end)
19297 (save-excursion (fill-paragraph justify)))) t))
19298 ;; Special case where point is not in a list but is on
19299 ;; a paragraph adjacent to a list: make sure this paragraph
19300 ;; doesn't get merged with the end of the list by narrowing
19302 ((save-excursion (forward-paragraph -1)
19303 (setq itemp (org-in-item-p)))
19304 (let ((struct (save-excursion (goto-char itemp)
19305 (org-list-struct))))
19307 (narrow-to-region (org-list-get-bottom-point struct)
19308 (save-excursion (forward-paragraph 1)
19310 (fill-paragraph justify) t)))
19311 ;; Else simply call `fill-paragraph'.
19314 ;; For reference, this is the default value of adaptive-fill-regexp
19315 ;; "[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"
19317 (defun org-adaptive-fill-function ()
19318 "Return a fill prefix for org-mode files."
19323 ((looking-at "#[ \t]+")
19324 (match-string-no-properties 0))
19327 (make-string (org-list-item-body-column (point-at-bol)) ?\ ))
19328 ;; Point is in a list after `backward-paragraph': original
19329 ;; point wasn't in the list, or filling would have been taken
19330 ;; care of by `org-auto-fill-function', but the list and the
19331 ;; real paragraph are not separated by a blank line. Thus, move
19332 ;; point after the list to go back to real paragraph and
19333 ;; determine fill-prefix.
19334 ((setq itemp (org-in-item-p))
19336 (let* ((struct (org-list-struct))
19337 (bottom (org-list-get-bottom-point struct)))
19339 (make-string (org-get-indentation) ?\ )))
19341 ((looking-at org-adaptive-fill-regexp-backup)
19342 (match-string-no-properties 0))))))
19344 (defun org-auto-fill-function ()
19345 "Auto-fill function."
19346 (let (itemp prefix)
19347 ;; When in a list, compute an appropriate fill-prefix and make
19348 ;; sure it will be used by `do-auto-fill'.
19349 (if (setq itemp (org-in-item-p))
19351 (setq prefix (make-string (org-list-item-body-column itemp) ?\ ))
19352 (flet ((fill-context-prefix (from to &optional flr) prefix))
19354 ;; Else just use `do-auto-fill'.
19359 (defun org-toggle-fixed-width-section (arg)
19360 "Toggle the fixed-width export.
19361 If there is no active region, the QUOTE keyword at the current headline is
19362 inserted or removed. When present, it causes the text between this headline
19363 and the next to be exported as fixed-width text, and unmodified.
19364 If there is an active region, this command adds or removes a colon as the
19365 first character of this line. If the first character of a line is a colon,
19366 this line is also exported in fixed-width font."
19369 (regionp (org-region-active-p))
19370 (beg (if regionp (region-beginning) (point)))
19371 (end (if regionp (region-end)))
19372 (nlines (or arg (if (and beg end) (count-lines beg end) 1)))
19373 (case-fold-search nil)
19374 (re "[ \t]*\\(: \\)")
19379 (setq cc (current-column))
19380 (beginning-of-line 1)
19381 (setq off (looking-at re))
19382 (while (> nlines 0)
19383 (setq nlines (1- nlines))
19384 (beginning-of-line 1)
19387 (org-move-to-column cc t)
19390 ((and off (looking-at re))
19391 (replace-match "" t t nil 1))
19392 ((not off) (org-move-to-column cc t) (insert ": ")))
19395 (org-back-to-heading)
19396 (if (looking-at (concat outline-regexp
19397 "\\( *\\<" org-quote-string "\\>[ \t]*\\)"))
19398 (replace-match "" t t nil 1)
19399 (if (looking-at outline-regexp)
19401 (goto-char (match-end 0))
19402 (insert org-quote-string " "))))))))
19404 (defun org-reftex-citation ()
19405 "Use reftex-citation to insert a citation into the buffer.
19406 This looks for a line like
19408 #+BIBLIOGRAPHY: foo plain option:-d
19410 and derives from it that foo.bib is the bibliography file relevant
19411 for this document. It then installs the necessary environment for RefTeX
19412 to work in this buffer and calls `reftex-citation' to insert a citation
19415 Export of such citations to both LaTeX and HTML is handled by the contributed
19416 package org-exp-bibtex by Taru Karttunen."
19418 (let ((reftex-docstruct-symbol 'rds)
19419 (reftex-cite-format "\\cite{%l}")
19424 (let ((case-fold-search t)
19425 (re "^#\\+bibliography:[ \t]+\\([^ \t\n]+\\)"))
19426 (if (not (save-excursion
19427 (or (re-search-forward re nil t)
19428 (re-search-backward re nil t))))
19429 (error "No bibliography defined in file")
19430 (setq bib (concat (match-string 1) ".bib")
19431 rds (list (list 'bib bib)))))))
19432 (call-interactively 'reftex-citation)))
19434 ;;;; Functions extending outline functionality
19436 (defun org-beginning-of-line (&optional arg)
19437 "Go to the beginning of the current line. If that is invisible, continue
19438 to a visible line beginning. This makes the function of C-a more intuitive.
19439 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
19440 first attempt, and only move to after the tags when the cursor is already
19441 beyond the end of the headline."
19443 (let ((pos (point))
19444 (special (if (consp org-special-ctrl-a/e)
19445 (car org-special-ctrl-a/e)
19446 org-special-ctrl-a/e))
19448 (if (org-bound-and-true-p line-move-visual)
19449 (beginning-of-visual-line 1)
19450 (beginning-of-line 1))
19451 (if (and arg (fboundp 'move-beginning-of-line))
19452 (call-interactively 'move-beginning-of-line)
19456 (if (org-truely-invisible-p)
19457 (while (and (not (bobp)) (org-truely-invisible-p))
19459 (beginning-of-line 1))
19460 (forward-char 1))))
19463 ((and (looking-at org-complex-heading-regexp)
19464 (= (char-after (match-end 1)) ?\ ))
19465 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
19469 (cond ((> pos refpos) refpos)
19470 ((= pos (point)) refpos)
19472 (cond ((> pos (point)) (point))
19473 ((not (eq last-command this-command)) (point))
19478 (cond ((> pos (match-end 0)) (match-end 0))
19479 ((= pos (point)) (match-end 0))
19481 (cond ((> pos (point)) (point))
19482 ((not (eq last-command this-command)) (point))
19483 (t (match-end 0))))))))
19485 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
19487 (defun org-end-of-line (&optional arg)
19488 "Go to the end of the line.
19489 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
19490 first attempt, and only move to after the tags when the cursor is already
19491 beyond the end of the headline."
19493 (let ((special (if (consp org-special-ctrl-a/e)
19494 (cdr org-special-ctrl-a/e)
19495 org-special-ctrl-a/e)))
19496 (if (or (not special)
19497 (not (org-on-heading-p))
19499 (call-interactively
19500 (cond ((org-bound-and-true-p line-move-visual) 'end-of-visual-line)
19501 ((fboundp 'move-end-of-line) 'move-end-of-line)
19503 (let ((pos (point)))
19504 (beginning-of-line 1)
19505 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
19507 (if (or (< pos (match-beginning 1))
19508 (= pos (match-end 0)))
19509 (goto-char (match-beginning 1))
19510 (goto-char (match-end 0)))
19511 (if (or (< pos (match-end 0)) (not (eq this-command last-command)))
19512 (goto-char (match-end 0))
19513 (goto-char (match-beginning 1))))
19514 (call-interactively (if (fboundp 'move-end-of-line)
19518 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
19520 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
19521 (define-key org-mode-map "\C-e" 'org-end-of-line)
19523 (defun org-backward-sentence (&optional arg)
19524 "Go to beginning of sentence, or beginning of table field.
19525 This will call `backward-sentence' or `org-table-beginning-of-field',
19526 depending on context."
19529 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
19530 (t (call-interactively 'backward-sentence))))
19532 (defun org-forward-sentence (&optional arg)
19533 "Go to end of sentence, or end of table field.
19534 This will call `forward-sentence' or `org-table-end-of-field',
19535 depending on context."
19538 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
19539 (t (call-interactively 'forward-sentence))))
19541 (define-key org-mode-map "\M-a" 'org-backward-sentence)
19542 (define-key org-mode-map "\M-e" 'org-forward-sentence)
19544 (defun org-kill-line (&optional arg)
19545 "Kill line, to tags or end of line."
19548 ((or (not org-special-ctrl-k)
19550 (not (org-on-heading-p)))
19551 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
19552 org-ctrl-k-protect-subtree)
19553 (if (or (eq org-ctrl-k-protect-subtree 'error)
19554 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
19555 (error "C-k aborted - would kill hidden subtree")))
19556 (call-interactively 'kill-line))
19557 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
19558 (kill-region (point) (match-beginning 1))
19559 (org-set-tags nil t))
19560 (t (kill-region (point) (point-at-eol)))))
19562 (define-key org-mode-map "\C-k" 'org-kill-line)
19564 (defun org-yank (&optional arg)
19565 "Yank. If the kill is a subtree, treat it specially.
19566 This command will look at the current kill and check if is a single
19567 subtree, or a series of subtrees[1]. If it passes the test, and if the
19568 cursor is at the beginning of a line or after the stars of a currently
19569 empty headline, then the yank is handled specially. How exactly depends
19570 on the value of the following variables, both set by default.
19572 org-yank-folded-subtrees
19573 When set, the subtree(s) will be folded after insertion, but only
19574 if doing so would now swallow text after the yanked text.
19576 org-yank-adjusted-subtrees
19577 When set, the subtree will be promoted or demoted in order to
19578 fit into the local outline tree structure, which means that the level
19579 will be adjusted so that it becomes the smaller one of the two
19580 *visible* surrounding headings.
19582 Any prefix to this command will cause `yank' to be called directly with
19583 no special treatment. In particular, a simple \\[universal-argument] prefix \
19585 plainly yank the text as it is.
19587 \[1] The test checks if the first non-white line is a heading
19588 and if there are no other headings with fewer stars."
19590 (org-yank-generic 'yank arg))
19592 (defun org-yank-generic (command arg)
19593 "Perform some yank-like command.
19595 This function implements the behavior described in the `org-yank'
19596 documentation. However, it has been generalized to work for any
19597 interactive command with similar behavior."
19599 ;; pretend to be command COMMAND
19600 (setq this-command command)
19603 (call-interactively command)
19605 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
19606 (and (org-kill-is-subtree-p)
19608 (and (looking-at "[ \t]*$")
19611 (buffer-substring (point-at-bol) (point)))))))
19614 ((and subtreep org-yank-folded-subtrees)
19615 (let ((beg (point))
19617 (if (and subtreep org-yank-adjusted-subtrees)
19618 (org-paste-subtree nil nil 'for-yank)
19619 (call-interactively command))
19623 (when (and (bolp) subtreep
19624 (not (setq swallowp
19625 (org-yank-folding-would-swallow-text beg end))))
19626 (or (looking-at outline-regexp)
19627 (re-search-forward (concat "^" outline-regexp) end t))
19628 (while (and (< (point) end) (looking-at outline-regexp))
19630 (org-cycle-show-empty-lines 'folded)
19631 (condition-case nil
19632 (outline-forward-same-level 1)
19633 (error (goto-char end)))))
19636 "Inserted text not folded because that would swallow text"))
19639 (skip-chars-forward " \t\n\r")
19640 (beginning-of-line 1)
19641 (push-mark beg 'nomsg)))
19642 ((and subtreep org-yank-adjusted-subtrees)
19643 (let ((beg (point-at-bol)))
19644 (org-paste-subtree nil nil 'for-yank)
19645 (push-mark beg 'nomsg)))
19647 (call-interactively command))))))
19649 (defun org-yank-folding-would-swallow-text (beg end)
19650 "Would hide-subtree at BEG swallow any text after END?"
19654 (when (or (looking-at outline-regexp)
19655 (re-search-forward (concat "^" outline-regexp) end t))
19656 (setq level (org-outline-level)))
19658 (skip-chars-forward " \t\r\n\v\f")
19660 (and (bolp) (looking-at org-outline-regexp)
19661 (<= (org-outline-level) level)))
19662 nil ; Nothing would be swallowed
19663 t)))) ; something would swallow
19665 (define-key org-mode-map "\C-y" 'org-yank)
19667 (defun org-truely-invisible-p ()
19668 "Check if point is at a character currently not visible.
19669 This version does not only check the character property, but also
19671 ;; Early versions of noutline don't have `outline-invisible-p'.
19672 (if (org-bound-and-true-p visible-mode)
19674 (outline-invisible-p)))
19676 (defun org-invisible-p2 ()
19677 "Check if point is at a character currently not visible."
19679 (if (and (eolp) (not (bobp))) (backward-char 1))
19680 ;; Early versions of noutline don't have `outline-invisible-p'.
19681 (outline-invisible-p)))
19683 (defun org-back-to-heading (&optional invisible-ok)
19684 "Call `outline-back-to-heading', but provide a better error message."
19685 (condition-case nil
19686 (outline-back-to-heading invisible-ok)
19687 (error (error "Before first headline at position %d in buffer %s"
19688 (point) (current-buffer)))))
19690 (defun org-beginning-of-defun ()
19691 "Go to the beginning of the subtree, i.e. back to the heading."
19692 (org-back-to-heading))
19693 (defun org-end-of-defun ()
19694 "Go to the end of the subtree."
19695 (org-end-of-subtree nil t))
19697 (defun org-before-first-heading-p ()
19698 "Before first heading?"
19701 (null (re-search-backward "^\\*+ " nil t))))
19703 (defun org-on-heading-p (&optional ignored)
19704 (outline-on-heading-p t))
19705 (defun org-at-heading-p (&optional ignored)
19706 (outline-on-heading-p t))
19708 (defun org-point-at-end-of-empty-headline ()
19709 "If point is at the end of an empty headline, return t, else nil.
19710 If the heading only contains a TODO keyword, it is still still considered
19712 (and (looking-at "[ \t]*$")
19714 (beginning-of-line 1)
19715 (let ((case-fold-search nil))
19716 (looking-at (concat "^\\(\\*+\\)[ \t]+\\(" org-todo-regexp
19717 "\\)?[ \t]*$"))))))
19718 (defun org-at-heading-or-item-p ()
19719 (or (org-on-heading-p) (org-at-item-p)))
19721 (defun org-on-target-p ()
19722 (or (org-in-regexp org-radio-target-regexp)
19723 (org-in-regexp org-target-regexp)))
19725 (defun org-up-heading-all (arg)
19726 "Move to the heading line of which the present line is a subheading.
19727 This function considers both visible and invisible heading lines.
19728 With argument, move up ARG levels."
19729 (if (fboundp 'outline-up-heading-all)
19730 (outline-up-heading-all arg) ; emacs 21 version of outline.el
19731 (outline-up-heading arg t))) ; emacs 22 version of outline.el
19733 (defun org-up-heading-safe ()
19734 "Move to the heading line of which the present line is a subheading.
19735 This version will not throw an error. It will return the level of the
19736 headline found, or nil if no higher level is found.
19738 Also, this function will be a lot faster than `outline-up-heading',
19739 because it relies on stars being the outline starters. This can really
19740 make a significant difference in outlines with very many siblings."
19741 (let (start-level re)
19742 (org-back-to-heading t)
19743 (setq start-level (funcall outline-level))
19744 (if (equal start-level 1)
19746 (setq re (concat "^\\*\\{1," (number-to-string (1- start-level)) "\\} "))
19747 (if (re-search-backward re nil t)
19748 (funcall outline-level)))))
19750 (defun org-first-sibling-p ()
19751 "Is this heading the first child of its parents?"
19753 (let ((re (concat "^" outline-regexp))
19755 (unless (org-at-heading-p t)
19756 (error "Not at a heading"))
19757 (setq level (funcall outline-level))
19759 (if (not (re-search-backward re nil t))
19761 (setq l (funcall outline-level))
19764 (defun org-goto-sibling (&optional previous)
19765 "Goto the next sibling, even if it is invisible.
19766 When PREVIOUS is set, go to the previous sibling instead. Returns t
19767 when a sibling was found. When none is found, return nil and don't
19769 (let ((fun (if previous 're-search-backward 're-search-forward))
19771 (re (concat "^" outline-regexp))
19773 (when (condition-case nil (org-back-to-heading t) (error nil))
19774 (setq level (funcall outline-level))
19776 (or previous (forward-char 1))
19777 (while (funcall fun re nil t)
19778 (setq l (funcall outline-level))
19779 (when (< l level) (goto-char pos) (throw 'exit nil))
19780 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
19784 (defun org-show-siblings ()
19785 "Show all siblings of the current headline."
19787 (while (org-goto-sibling) (org-flag-heading nil)))
19789 (while (org-goto-sibling 'previous)
19790 (org-flag-heading nil))))
19792 (defun org-goto-first-child ()
19793 "Goto the first child, even if it is invisible.
19794 Return t when a child was found. Otherwise don't move point and
19796 (let (level (pos (point)) (re (concat "^" outline-regexp)))
19797 (when (condition-case nil (org-back-to-heading t) (error nil))
19798 (setq level (outline-level))
19800 (if (and (re-search-forward re nil t) (> (outline-level) level))
19801 (progn (goto-char (match-beginning 0)) t)
19802 (goto-char pos) nil))))
19804 (defun org-show-hidden-entry ()
19805 "Show an entry where even the heading is hidden."
19809 (defun org-flag-heading (flag &optional entry)
19810 "Flag the current heading. FLAG non-nil means make invisible.
19811 When ENTRY is non-nil, show the entire entry."
19813 (org-back-to-heading t)
19814 ;; Check if we should show the entire entry
19819 (and (outline-next-heading)
19820 (org-flag-heading nil))))
19821 (outline-flag-region (max (point-min) (1- (point)))
19822 (save-excursion (outline-end-of-heading) (point))
19825 (defun org-get-next-sibling ()
19826 "Move to next heading of the same level, and return point.
19827 If there is no such heading, return nil.
19828 This is like outline-next-sibling, but invisible headings are ok."
19829 (let ((level (funcall outline-level)))
19830 (outline-next-heading)
19831 (while (and (not (eobp)) (> (funcall outline-level) level))
19832 (outline-next-heading))
19833 (if (or (eobp) (< (funcall outline-level) level))
19837 (defun org-get-last-sibling ()
19838 "Move to previous heading of the same level, and return point.
19839 If there is no such heading, return nil."
19840 (let ((opoint (point))
19841 (level (funcall outline-level)))
19842 (outline-previous-heading)
19843 (when (and (/= (point) opoint) (outline-on-heading-p t))
19844 (while (and (> (funcall outline-level) level)
19846 (outline-previous-heading))
19847 (if (< (funcall outline-level) level)
19851 (defun org-end-of-subtree (&optional invisible-OK to-heading)
19852 ;; This contains an exact copy of the original function, but it uses
19853 ;; `org-back-to-heading', to make it work also in invisible
19854 ;; trees. And is uses an invisible-OK argument.
19855 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
19856 ;; Furthermore, when used inside Org, finding the end of a large subtree
19857 ;; with many children and grandchildren etc, this can be much faster
19858 ;; than the outline version.
19859 (org-back-to-heading invisible-OK)
19861 (level (funcall outline-level)))
19862 (if (and (org-mode-p) (< level 1000))
19863 ;; A true heading (not a plain list item), in Org-mode
19864 ;; This means we can easily find the end by looking
19865 ;; only for the right number of stars. Using a regexp to do
19866 ;; this is so much faster than using a Lisp loop.
19867 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
19869 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
19870 ;; something else, do it the slow way
19871 (while (and (not (eobp))
19872 (or first (> (funcall outline-level) level)))
19874 (outline-next-heading)))
19876 (if (memq (preceding-char) '(?\n ?\^M))
19878 ;; Go to end of line before heading
19880 (if (memq (preceding-char) '(?\n ?\^M))
19881 ;; leave blank line before heading
19882 (forward-char -1))))))
19885 (defadvice outline-end-of-subtree (around prefer-org-version activate compile)
19886 "Use Org version in org-mode, for dramatic speed-up."
19889 (org-end-of-subtree nil t)
19890 (unless (eobp) (backward-char 1)))
19893 (defun org-end-of-meta-data-and-drawers ()
19894 "Jump to the first text after meta data and drawers in the current entry.
19895 This will move over empty lines, lines with planning time stamps,
19896 clocking lines, and drawers."
19897 (org-back-to-heading t)
19898 (let ((end (save-excursion (outline-next-heading) (point)))
19899 (re (concat "[ \t]*$"
19901 "\\(" org-drawer-regexp "\\)" ; group 1 are drawers
19903 "\\([ \t]*\\(" org-keyword-time-regexp "\\)\\)")))
19905 (while (looking-at (concat "[ \t]*\\(" org-keyword-time-regexp "\\)"))
19906 (if (not (match-end 1))
19907 ;; empty or planning line
19909 ;; a drawer, find the end
19910 (re-search-forward "^[ \t]*:END:" end 'move)
19914 (defun org-forward-same-level (arg &optional invisible-ok)
19915 "Move forward to the arg'th subheading at same level as this one.
19916 Stop at the first and last subheadings of a superior heading.
19917 Normally this only looks at visible headings, but when INVISIBLE-OK is non-nil
19918 it wil also look at invisible ones."
19920 (org-back-to-heading invisible-ok)
19922 (let* ((level (- (match-end 0) (match-beginning 0) 1))
19923 (re (format "^\\*\\{1,%d\\} " level))
19927 (while (and (re-search-forward re nil 'move)
19928 (setq l (- (match-end 0) (match-beginning 0) 1))
19931 (progn (backward-char 1) (outline-invisible-p)))
19932 (if (< l level) (setq arg 1)))
19933 (setq arg (1- arg)))
19934 (beginning-of-line 1)))
19936 (defun org-backward-same-level (arg &optional invisible-ok)
19937 "Move backward to the arg'th subheading at same level as this one.
19938 Stop at the first and last subheadings of a superior heading."
19940 (org-back-to-heading)
19942 (let* ((level (- (match-end 0) (match-beginning 0) 1))
19943 (re (format "^\\*\\{1,%d\\} " level))
19946 (while (and (re-search-backward re nil 'move)
19947 (setq l (- (match-end 0) (match-beginning 0) 1))
19950 (outline-invisible-p))
19951 (if (< l level) (setq arg 1)))
19952 (setq arg (1- arg)))))
19954 (defun org-show-subtree ()
19955 "Show everything after this heading at deeper levels."
19956 (outline-flag-region
19959 (org-end-of-subtree t t))
19962 (defun org-show-entry ()
19963 "Show the body directly following this heading.
19964 Show the heading too, if it is currently invisible."
19967 (condition-case nil
19969 (org-back-to-heading t)
19970 (outline-flag-region
19971 (max (point-min) (1- (point)))
19973 (if (re-search-forward
19974 (concat "[\r\n]\\(" outline-regexp "\\)") nil t)
19975 (match-beginning 1)
19978 (org-cycle-hide-drawers 'children))
19981 (defun org-make-options-regexp (kwds &optional extra)
19982 "Make a regular expression for keyword lines."
19986 (mapconcat 'regexp-quote kwds "\\|")
19987 (if extra (concat "\\|" extra))
19991 ;; Make isearch reveal the necessary context
19992 (defun org-isearch-end ()
19993 "Reveal context after isearch exits."
19994 (when isearch-success ; only if search was successful
19995 (if (featurep 'xemacs)
19996 ;; Under XEmacs, the hook is run in the correct place,
19997 ;; we directly show the context.
19998 (org-show-context 'isearch)
19999 ;; In Emacs the hook runs *before* restoring the overlays.
20000 ;; So we have to use a one-time post-command-hook to do this.
20001 ;; (Emacs 22 has a special variable, see function `org-mode')
20002 (unless (and (boundp 'isearch-mode-end-hook-quit)
20003 isearch-mode-end-hook-quit)
20004 ;; Only when the isearch was not quitted.
20005 (org-add-hook 'post-command-hook 'org-isearch-post-command
20006 'append 'local)))))
20008 (defun org-isearch-post-command ()
20009 "Remove self from hook, and show context."
20010 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
20011 (org-show-context 'isearch))
20014 ;;;; Integration with and fixes for other packages
20018 (defvar org-imenu-markers nil
20019 "All markers currently used by Imenu.")
20020 (make-variable-buffer-local 'org-imenu-markers)
20022 (defun org-imenu-new-marker (&optional pos)
20023 "Return a new marker for use by Imenu, and remember the marker."
20024 (let ((m (make-marker)))
20025 (move-marker m (or pos (point)))
20026 (push m org-imenu-markers)
20029 (defun org-imenu-get-tree ()
20030 "Produce the index for Imenu."
20031 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
20032 (setq org-imenu-markers nil)
20033 (let* ((n org-imenu-depth)
20034 (re (concat "^" outline-regexp))
20035 (subs (make-vector (1+ n) nil))
20041 (goto-char (point-max))
20042 (while (re-search-backward re nil t)
20043 (setq level (org-reduced-level (funcall outline-level)))
20045 (looking-at org-complex-heading-regexp)
20046 (setq head (org-link-display-format
20047 (org-match-string-no-properties 4))
20048 m (org-imenu-new-marker))
20049 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
20050 (if (>= level last-level)
20051 (push (cons head m) (aref subs level))
20052 (push (cons head (aref subs (1+ level))) (aref subs level))
20053 (loop for i from (1+ level) to n do (aset subs i nil)))
20054 (setq last-level level)))))
20057 (eval-after-load "imenu"
20059 (add-hook 'imenu-after-jump-hook
20062 (org-show-context 'org-goto))))))
20064 (defun org-link-display-format (link)
20065 "Replace a link with either the description, or the link target
20066 if no description is present"
20068 (if (string-match org-bracket-link-analytic-regexp link)
20069 (replace-match (if (match-end 5)
20070 (match-string 5 link)
20071 (concat (match-string 1 link)
20072 (match-string 3 link)))
20076 ;; Speedbar support
20078 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
20079 "Overlay marking the agenda restriction line in speedbar.")
20080 (overlay-put org-speedbar-restriction-lock-overlay
20081 'face 'org-agenda-restriction-lock)
20082 (overlay-put org-speedbar-restriction-lock-overlay
20083 'help-echo "Agendas are currently limited to this item.")
20084 (org-detach-overlay org-speedbar-restriction-lock-overlay)
20086 (defun org-speedbar-set-agenda-restriction ()
20087 "Restrict future agenda commands to the location at point in speedbar.
20088 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
20090 (require 'org-agenda)
20091 (let (p m tp np dir txt)
20093 ((setq p (text-property-any (point-at-bol) (point-at-eol)
20095 (setq m (get-text-property p 'org-imenu-marker))
20096 (with-current-buffer (marker-buffer m)
20098 (org-agenda-set-restriction-lock 'subtree)))
20099 ((setq p (text-property-any (point-at-bol) (point-at-eol)
20100 'speedbar-function 'speedbar-find-file))
20101 (setq tp (previous-single-property-change
20102 (1+ p) 'speedbar-function)
20103 np (next-single-property-change
20104 tp 'speedbar-function)
20105 dir (speedbar-line-directory)
20106 txt (buffer-substring-no-properties (or tp (point-min))
20107 (or np (point-max))))
20108 (with-current-buffer (find-file-noselect
20109 (let ((default-directory dir))
20110 (expand-file-name txt)))
20111 (unless (org-mode-p)
20112 (error "Cannot restrict to non-Org-mode file"))
20113 (org-agenda-set-restriction-lock 'file)))
20114 (t (error "Don't know how to restrict Org-mode's agenda")))
20115 (move-overlay org-speedbar-restriction-lock-overlay
20116 (point-at-bol) (point-at-eol))
20117 (setq current-prefix-arg nil)
20118 (org-agenda-maybe-redo)))
20120 (eval-after-load "speedbar"
20122 (speedbar-add-supported-extension ".org")
20123 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
20124 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
20125 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
20126 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
20127 (add-hook 'speedbar-visiting-tag-hook
20128 (lambda () (and (org-mode-p) (org-show-context 'org-goto))))))
20130 ;;; Fixes and Hacks for problems with other packages
20132 ;; Make flyspell not check words in links, to not mess up our keymap
20133 (defun org-mode-flyspell-verify ()
20134 "Don't let flyspell put overlays at active buttons."
20135 (and (not (get-text-property (max (1- (point)) (point-min)) 'keymap))
20136 (not (get-text-property (max (1- (point)) (point-min)) 'org-no-flyspell))))
20138 (defun org-remove-flyspell-overlays-in (beg end)
20139 "Remove flyspell overlays in region."
20140 (and (org-bound-and-true-p flyspell-mode)
20141 (fboundp 'flyspell-delete-region-overlays)
20142 (flyspell-delete-region-overlays beg end))
20143 (add-text-properties beg end '(org-no-flyspell t)))
20145 ;; Make `bookmark-jump' shows the jump location if it was hidden.
20146 (eval-after-load "bookmark"
20147 '(if (boundp 'bookmark-after-jump-hook)
20148 ;; We can use the hook
20149 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
20150 ;; Hook not available, use advice
20151 (defadvice bookmark-jump (after org-make-visible activate)
20152 "Make the position visible."
20153 (org-bookmark-jump-unhide))))
20155 ;; Make sure saveplace shows the location if it was hidden
20156 (eval-after-load "saveplace"
20157 '(defadvice save-place-find-file-hook (after org-make-visible activate)
20158 "Make the position visible."
20159 (org-bookmark-jump-unhide)))
20161 ;; Make sure ecb shows the location if it was hidden
20162 (eval-after-load "ecb"
20163 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
20164 "Make hierarchy visible when jumping into location from ECB tree buffer."
20166 (org-show-context))))
20168 (defun org-bookmark-jump-unhide ()
20169 "Unhide the current position, to show the bookmark location."
20171 (or (outline-invisible-p)
20172 (save-excursion (goto-char (max (point-min) (1- (point))))
20173 (outline-invisible-p)))
20174 (org-show-context 'bookmark-jump)))
20176 ;; Make session.el ignore our circular variable
20177 (eval-after-load "session"
20178 '(add-to-list 'session-globals-exclude 'org-mark-ring))
20180 ;;;; Experimental code
20182 (defun org-closed-in-range ()
20183 "Sparse tree of items closed in a certain time range.
20184 Still experimental, may disappear in the future."
20186 ;; Get the time interval from the user.
20187 (let* ((time1 (org-float-time
20188 (org-read-date nil 'to-time nil "Starting date: ")))
20189 (time2 (org-float-time
20190 (org-read-date nil 'to-time nil "End date:")))
20191 ;; callback function
20192 (callback (lambda ()
20195 (apply 'encode-time
20196 (org-parse-time-string
20197 (match-string 1))))))
20198 ;; check if time in interval
20199 (and (>= time time1) (<= time time2))))))
20200 ;; make tree, check each match with the callback
20201 (org-occur "CLOSED: +\\[\\(.*?\\)\\]" nil callback)))
20207 (run-hooks 'org-load-hook)
20209 ;; arch-tag: e77da1a7-acc7-4336-b19e-efa25af3f9fd
20211 ;;; org.el ends here