Release 6.15f
[org-mode/org-tableheadings.git] / lisp / org.el
blob745584f4412ac2171e0f490dc6064f4857e1afce
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 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;; Version: 6.15f
9 ;;
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26 ;;; Commentary:
28 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
29 ;; project planning with a fast and effective plain-text system.
31 ;; Org-mode develops organizational tasks around NOTES files that contain
32 ;; information about projects as plain text. Org-mode is implemented on
33 ;; top of outline-mode, which makes it possible to keep the content of
34 ;; large files well structured. Visibility cycling and structure editing
35 ;; help to work with the tree. Tables are easily created with a built-in
36 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
37 ;; and scheduling. It dynamically compiles entries into an agenda that
38 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
39 ;; Plain text URL-like links connect to websites, emails, Usenet
40 ;; messages, BBDB entries, and any files related to the projects. For
41 ;; printing and sharing of notes, an Org-mode file can be exported as a
42 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
43 ;; iCalendar file. It can also serve as a publishing tool for a set of
44 ;; linked webpages.
46 ;; Installation and Activation
47 ;; ---------------------------
48 ;; See the corresponding sections in the manual at
50 ;; http://orgmode.org/org.html#Installation
52 ;; Documentation
53 ;; -------------
54 ;; The documentation of Org-mode can be found in the TeXInfo file. The
55 ;; distribution also contains a PDF version of it. At the homepage of
56 ;; Org-mode, you can read the same text online as HTML. There is also an
57 ;; excellent reference card made by Philip Rooke. This card can be found
58 ;; in the etc/ directory of Emacs 22.
60 ;; A list of recent changes can be found at
61 ;; http://orgmode.org/Changes.html
63 ;;; Code:
65 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
66 (defvar org-table-formula-constants-local nil
67 "Local version of `org-table-formula-constants'.")
68 (make-variable-buffer-local 'org-table-formula-constants-local)
70 ;;;; Require other packages
72 (eval-when-compile
73 (require 'cl)
74 (require 'gnus-sum)
75 (require 'calendar))
76 ;; For XEmacs, noutline is not yet provided by outline.el, so arrange for
77 ;; the file noutline.el being loaded.
78 (if (featurep 'xemacs) (condition-case nil (require 'noutline)))
79 ;; We require noutline, which might be provided in outline.el
80 (require 'outline) (require 'noutline)
81 ;; Other stuff we need.
82 (require 'time-date)
83 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
84 (require 'easymenu)
86 (require 'org-macs)
87 (require 'org-compat)
88 (require 'org-faces)
89 (require 'org-list)
91 ;;;; Customization variables
93 ;;; Version
95 (defconst org-version "6.15f"
96 "The version number of the file org.el.")
98 (defun org-version (&optional here)
99 "Show the org-mode version in the echo area.
100 With prefix arg HERE, insert it at point."
101 (interactive "P")
102 (let ((version (format "Org-mode version %s" org-version)))
103 (message version)
104 (if here
105 (insert version))))
107 ;;; Compatibility constants
109 ;;; The custom variables
111 (defgroup org nil
112 "Outline-based notes management and organizer."
113 :tag "Org"
114 :group 'outlines
115 :group 'hypermedia
116 :group 'calendar)
118 (defcustom org-load-hook nil
119 "Hook that is run after org.el has been loaded."
120 :group 'org
121 :type 'hook)
123 (defvar org-modules) ; defined below
124 (defvar org-modules-loaded nil
125 "Have the modules been loaded already?")
127 (defun org-load-modules-maybe (&optional force)
128 "Load all extensions listed in `org-modules'."
129 (when (or force (not org-modules-loaded))
130 (mapc (lambda (ext)
131 (condition-case nil (require ext)
132 (error (message "Problems while trying to load feature `%s'" ext))))
133 org-modules)
134 (setq org-modules-loaded t)))
136 (defun org-set-modules (var value)
137 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
138 (set var value)
139 (when (featurep 'org)
140 (org-load-modules-maybe 'force)))
142 (when (org-bound-and-true-p org-modules)
143 (let ((a (member 'org-infojs org-modules)))
144 (and a (setcar a 'org-jsinfo))))
146 (defcustom org-modules '(org-bbdb org-bibtex org-gnus org-info org-jsinfo org-irc org-mew org-mhe org-rmail org-vm org-w3m org-wl)
147 "Modules that should always be loaded together with org.el.
148 If a description starts with <C>, the file is not part of Emacs
149 and loading it will require that you have downloaded and properly installed
150 the org-mode distribution.
152 You can also use this system to load external packages (i.e. neither Org
153 core modules, not modules from the CONTRIB directory). Just add symbols
154 to the end of the list. If the package is called org-xyz.el, then you need
155 to add the symbol `xyz', and the package must have a call to
157 (provide 'org-xyz)"
158 :group 'org
159 :set 'org-set-modules
160 :type
161 '(set :greedy t
162 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
163 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
164 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
165 (const :tag " id: Global IDs for identifying entries" org-id)
166 (const :tag " info: Links to Info nodes" org-info)
167 (const :tag " jsinfo: Set up Sebastian Rose's JavaScript org-info.js" org-jsinfo)
168 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
169 (const :tag " mac-message: Links to messages in Apple Mail" org-mac-message)
170 (const :tag " mew Links to Mew folders/messages" org-mew)
171 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
172 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
173 (const :tag " vm: Links to VM folders/messages" org-vm)
174 (const :tag " wl: Links to Wanderlust folders/messages" org-wl)
175 (const :tag " w3m: Special cut/past from w3m to Org." org-w3m)
176 (const :tag " mouse: Additional mouse support" org-mouse)
178 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
179 (const :tag "C annotation-helper: Call Remember directly from Browser" org-annotation-helper)
180 (const :tag "C bookmark: Org links to bookmarks" org-bookmark)
181 (const :tag "C browser-url: Store link, directly from Browser" org-browser-url)
182 (const :tag "C depend: TODO dependencies for Org-mode" org-depend)
183 (const :tag "C elisp-symbol: Org links to emacs-lisp symbols" org-elisp-symbol)
184 (const :tag "C eval: Include command output as text" org-eval)
185 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
186 (const :tag "C expiry: Expiry mechanism for Org entries" org-expiry)
187 (const :tag "C exp-blocks: Pre-process blocks for export" org-exp-blocks)
188 (const :tag "C interactive-query: Interactive modification of tags query" org-interactive-query)
189 (const :tag "C mairix: Hook mairix search into Org for different MUAs" org-mairix)
190 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
191 (const :tag "C mtags: Support for muse-like tags" org-mtags)
192 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
193 (const :tag "C registry: A registry for Org links" org-registry)
194 (const :tag "C org2rem: Convert org appointments into reminders" org2rem)
195 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
196 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
197 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
198 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
201 (defgroup org-startup nil
202 "Options concerning startup of Org-mode."
203 :tag "Org Startup"
204 :group 'org)
206 (defcustom org-startup-folded t
207 "Non-nil means, entering Org-mode will switch to OVERVIEW.
208 This can also be configured on a per-file basis by adding one of
209 the following lines anywhere in the buffer:
211 #+STARTUP: fold
212 #+STARTUP: nofold
213 #+STARTUP: content"
214 :group 'org-startup
215 :type '(choice
216 (const :tag "nofold: show all" nil)
217 (const :tag "fold: overview" t)
218 (const :tag "content: all headlines" content)))
220 (defcustom org-startup-truncated t
221 "Non-nil means, entering Org-mode will set `truncate-lines'.
222 This is useful since some lines containing links can be very long and
223 uninteresting. Also tables look terrible when wrapped."
224 :group 'org-startup
225 :type 'boolean)
227 (defcustom org-startup-align-all-tables nil
228 "Non-nil means, align all tables when visiting a file.
229 This is useful when the column width in tables is forced with <N> cookies
230 in table fields. Such tables will look correct only after the first re-align.
231 This can also be configured on a per-file basis by adding one of
232 the following lines anywhere in the buffer:
233 #+STARTUP: align
234 #+STARTUP: noalign"
235 :group 'org-startup
236 :type 'boolean)
238 (defcustom org-insert-mode-line-in-empty-file nil
239 "Non-nil means insert the first line setting Org-mode in empty files.
240 When the function `org-mode' is called interactively in an empty file, this
241 normally means that the file name does not automatically trigger Org-mode.
242 To ensure that the file will always be in Org-mode in the future, a
243 line enforcing Org-mode will be inserted into the buffer, if this option
244 has been set."
245 :group 'org-startup
246 :type 'boolean)
248 (defcustom org-replace-disputed-keys nil
249 "Non-nil means use alternative key bindings for some keys.
250 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
251 These keys are also used by other packages like `CUA-mode' or `windmove.el'.
252 If you want to use Org-mode together with one of these other modes,
253 or more generally if you would like to move some Org-mode commands to
254 other keys, set this variable and configure the keys with the variable
255 `org-disputed-keys'.
257 This option is only relevant at load-time of Org-mode, and must be set
258 *before* org.el is loaded. Changing it requires a restart of Emacs to
259 become effective."
260 :group 'org-startup
261 :type 'boolean)
263 (defcustom org-use-extra-keys nil
264 "Non-nil means use extra key sequence definitions for certain
265 commands. This happens automatically if you run XEmacs or if
266 window-system is nil. This variable lets you do the same
267 manually. You must set it before loading org.
269 Example: on Carbon Emacs 22 running graphically, with an external
270 keyboard on a Powerbook, the default way of setting M-left might
271 not work for either Alt or ESC. Setting this variable will make
272 it work for ESC."
273 :group 'org-startup
274 :type 'boolean)
276 (if (fboundp 'defvaralias)
277 (defvaralias 'org-CUA-compatible 'org-replace-disputed-keys))
279 (defcustom org-disputed-keys
280 '(([(shift up)] . [(meta p)])
281 ([(shift down)] . [(meta n)])
282 ([(shift left)] . [(meta -)])
283 ([(shift right)] . [(meta +)])
284 ([(control shift right)] . [(meta shift +)])
285 ([(control shift left)] . [(meta shift -)]))
286 "Keys for which Org-mode and other modes compete.
287 This is an alist, cars are the default keys, second element specifies
288 the alternative to use when `org-replace-disputed-keys' is t.
290 Keys can be specified in any syntax supported by `define-key'.
291 The value of this option takes effect only at Org-mode's startup,
292 therefore you'll have to restart Emacs to apply it after changing."
293 :group 'org-startup
294 :type 'alist)
296 (defun org-key (key)
297 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
298 Or return the original if not disputed."
299 (if org-replace-disputed-keys
300 (let* ((nkey (key-description key))
301 (x (org-find-if (lambda (x)
302 (equal (key-description (car x)) nkey))
303 org-disputed-keys)))
304 (if x (cdr x) key))
305 key))
307 (defun org-find-if (predicate seq)
308 (catch 'exit
309 (while seq
310 (if (funcall predicate (car seq))
311 (throw 'exit (car seq))
312 (pop seq)))))
314 (defun org-defkey (keymap key def)
315 "Define a key, possibly translated, as returned by `org-key'."
316 (define-key keymap (org-key key) def))
318 (defcustom org-ellipsis nil
319 "The ellipsis to use in the Org-mode outline.
320 When nil, just use the standard three dots. When a string, use that instead,
321 When a face, use the standard 3 dots, but with the specified face.
322 The change affects only Org-mode (which will then use its own display table).
323 Changing this requires executing `M-x org-mode' in a buffer to become
324 effective."
325 :group 'org-startup
326 :type '(choice (const :tag "Default" nil)
327 (face :tag "Face" :value org-warning)
328 (string :tag "String" :value "...#")))
330 (defvar org-display-table nil
331 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
333 (defgroup org-keywords nil
334 "Keywords in Org-mode."
335 :tag "Org Keywords"
336 :group 'org)
338 (defcustom org-deadline-string "DEADLINE:"
339 "String to mark deadline entries.
340 A deadline is this string, followed by a time stamp. Should be a word,
341 terminated by a colon. You can insert a schedule keyword and
342 a timestamp with \\[org-deadline].
343 Changes become only effective after restarting Emacs."
344 :group 'org-keywords
345 :type 'string)
347 (defcustom org-scheduled-string "SCHEDULED:"
348 "String to mark scheduled TODO entries.
349 A schedule is this string, followed by a time stamp. Should be a word,
350 terminated by a colon. You can insert a schedule keyword and
351 a timestamp with \\[org-schedule].
352 Changes become only effective after restarting Emacs."
353 :group 'org-keywords
354 :type 'string)
356 (defcustom org-closed-string "CLOSED:"
357 "String used as the prefix for timestamps logging closing a TODO entry."
358 :group 'org-keywords
359 :type 'string)
361 (defcustom org-clock-string "CLOCK:"
362 "String used as prefix for timestamps clocking work hours on an item."
363 :group 'org-keywords
364 :type 'string)
366 (defcustom org-comment-string "COMMENT"
367 "Entries starting with this keyword will never be exported.
368 An entry can be toggled between COMMENT and normal with
369 \\[org-toggle-comment].
370 Changes become only effective after restarting Emacs."
371 :group 'org-keywords
372 :type 'string)
374 (defcustom org-quote-string "QUOTE"
375 "Entries starting with this keyword will be exported in fixed-width font.
376 Quoting applies only to the text in the entry following the headline, and does
377 not extend beyond the next headline, even if that is lower level.
378 An entry can be toggled between QUOTE and normal with
379 \\[org-toggle-fixed-width-section]."
380 :group 'org-keywords
381 :type 'string)
383 (defconst org-repeat-re
384 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*\\([.+]?\\+[0-9]+[dwmy]\\)"
385 "Regular expression for specifying repeated events.
386 After a match, group 1 contains the repeat expression.")
388 (defgroup org-structure nil
389 "Options concerning the general structure of Org-mode files."
390 :tag "Org Structure"
391 :group 'org)
393 (defgroup org-reveal-location nil
394 "Options about how to make context of a location visible."
395 :tag "Org Reveal Location"
396 :group 'org-structure)
398 (defconst org-context-choice
399 '(choice
400 (const :tag "Always" t)
401 (const :tag "Never" nil)
402 (repeat :greedy t :tag "Individual contexts"
403 (cons
404 (choice :tag "Context"
405 (const agenda)
406 (const org-goto)
407 (const occur-tree)
408 (const tags-tree)
409 (const link-search)
410 (const mark-goto)
411 (const bookmark-jump)
412 (const isearch)
413 (const default))
414 (boolean))))
415 "Contexts for the reveal options.")
417 (defcustom org-show-hierarchy-above '((default . t))
418 "Non-nil means, show full hierarchy when revealing a location.
419 Org-mode often shows locations in an org-mode file which might have
420 been invisible before. When this is set, the hierarchy of headings
421 above the exposed location is shown.
422 Turning this off for example for sparse trees makes them very compact.
423 Instead of t, this can also be an alist specifying this option for different
424 contexts. Valid contexts are
425 agenda when exposing an entry from the agenda
426 org-goto when using the command `org-goto' on key C-c C-j
427 occur-tree when using the command `org-occur' on key C-c /
428 tags-tree when constructing a sparse tree based on tags matches
429 link-search when exposing search matches associated with a link
430 mark-goto when exposing the jump goal of a mark
431 bookmark-jump when exposing a bookmark location
432 isearch when exiting from an incremental search
433 default default for all contexts not set explicitly"
434 :group 'org-reveal-location
435 :type org-context-choice)
437 (defcustom org-show-following-heading '((default . nil))
438 "Non-nil means, show following heading when revealing a location.
439 Org-mode often shows locations in an org-mode file which might have
440 been invisible before. When this is set, the heading following the
441 match is shown.
442 Turning this off for example for sparse trees makes them very compact,
443 but makes it harder to edit the location of the match. In such a case,
444 use the command \\[org-reveal] to show more context.
445 Instead of t, this can also be an alist specifying this option for different
446 contexts. See `org-show-hierarchy-above' for valid contexts."
447 :group 'org-reveal-location
448 :type org-context-choice)
450 (defcustom org-show-siblings '((default . nil) (isearch t))
451 "Non-nil means, show all sibling heading when revealing a location.
452 Org-mode often shows locations in an org-mode file which might have
453 been invisible before. When this is set, the sibling of the current entry
454 heading are all made visible. If `org-show-hierarchy-above' is t,
455 the same happens on each level of the hierarchy above the current entry.
457 By default this is on for the isearch context, off for all other contexts.
458 Turning this off for example for sparse trees makes them very compact,
459 but makes it harder to edit the location of the match. In such a case,
460 use the command \\[org-reveal] to show more context.
461 Instead of t, this can also be an alist specifying this option for different
462 contexts. See `org-show-hierarchy-above' for valid contexts."
463 :group 'org-reveal-location
464 :type org-context-choice)
466 (defcustom org-show-entry-below '((default . nil))
467 "Non-nil means, show the entry below a headline when revealing a location.
468 Org-mode often shows locations in an org-mode file which might have
469 been invisible before. When this is set, the text below the headline that is
470 exposed is also shown.
472 By default this is off for all contexts.
473 Instead of t, this can also be an alist specifying this option for different
474 contexts. See `org-show-hierarchy-above' for valid contexts."
475 :group 'org-reveal-location
476 :type org-context-choice)
478 (defcustom org-indirect-buffer-display 'other-window
479 "How should indirect tree buffers be displayed?
480 This applies to indirect buffers created with the commands
481 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
482 Valid values are:
483 current-window Display in the current window
484 other-window Just display in another window.
485 dedicated-frame Create one new frame, and re-use it each time.
486 new-frame Make a new frame each time. Note that in this case
487 previously-made indirect buffers are kept, and you need to
488 kill these buffers yourself."
489 :group 'org-structure
490 :group 'org-agenda-windows
491 :type '(choice
492 (const :tag "In current window" current-window)
493 (const :tag "In current frame, other window" other-window)
494 (const :tag "Each time a new frame" new-frame)
495 (const :tag "One dedicated frame" dedicated-frame)))
497 (defgroup org-cycle nil
498 "Options concerning visibility cycling in Org-mode."
499 :tag "Org Cycle"
500 :group 'org-structure)
502 (defcustom org-drawers '("PROPERTIES" "CLOCK")
503 "Names of drawers. Drawers are not opened by cycling on the headline above.
504 Drawers only open with a TAB on the drawer line itself. A drawer looks like
505 this:
506 :DRAWERNAME:
507 .....
508 :END:
509 The drawer \"PROPERTIES\" is special for capturing properties through
510 the property API.
512 Drawers can be defined on the per-file basis with a line like:
514 #+DRAWERS: HIDDEN STATE PROPERTIES"
515 :group 'org-structure
516 :type '(repeat (string :tag "Drawer Name")))
518 (defcustom org-cycle-global-at-bob nil
519 "Cycle globally if cursor is at beginning of buffer and not at a headline.
520 This makes it possible to do global cycling without having to use S-TAB or
521 C-u TAB. For this special case to work, the first line of the buffer
522 must not be a headline - it may be empty ot some other text. When used in
523 this way, `org-cycle-hook' is disables temporarily, to make sure the
524 cursor stays at the beginning of the buffer.
525 When this option is nil, don't do anything special at the beginning
526 of the buffer."
527 :group 'org-cycle
528 :type 'boolean)
530 (defcustom org-cycle-emulate-tab t
531 "Where should `org-cycle' emulate TAB.
532 nil Never
533 white Only in completely white lines
534 whitestart Only at the beginning of lines, before the first non-white char
535 t Everywhere except in headlines
536 exc-hl-bol Everywhere except at the start of a headline
537 If TAB is used in a place where it does not emulate TAB, the current subtree
538 visibility is cycled."
539 :group 'org-cycle
540 :type '(choice (const :tag "Never" nil)
541 (const :tag "Only in completely white lines" white)
542 (const :tag "Before first char in a line" whitestart)
543 (const :tag "Everywhere except in headlines" t)
544 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)
547 (defcustom org-cycle-separator-lines 2
548 "Number of empty lines needed to keep an empty line between collapsed trees.
549 If you leave an empty line between the end of a subtree and the following
550 headline, this empty line is hidden when the subtree is folded.
551 Org-mode will leave (exactly) one empty line visible if the number of
552 empty lines is equal or larger to the number given in this variable.
553 So the default 2 means, at least 2 empty lines after the end of a subtree
554 are needed to produce free space between a collapsed subtree and the
555 following headline.
557 Special case: when 0, never leave empty lines in collapsed view."
558 :group 'org-cycle
559 :type 'integer)
560 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
562 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
563 org-cycle-hide-drawers
564 org-cycle-show-empty-lines
565 org-optimize-window-after-visibility-change)
566 "Hook that is run after `org-cycle' has changed the buffer visibility.
567 The function(s) in this hook must accept a single argument which indicates
568 the new state that was set by the most recent `org-cycle' command. The
569 argument is a symbol. After a global state change, it can have the values
570 `overview', `content', or `all'. After a local state change, it can have
571 the values `folded', `children', or `subtree'."
572 :group 'org-cycle
573 :type 'hook)
575 (defgroup org-edit-structure nil
576 "Options concerning structure editing in Org-mode."
577 :tag "Org Edit Structure"
578 :group 'org-structure)
580 (defcustom org-odd-levels-only nil
581 "Non-nil means, skip even levels and only use odd levels for the outline.
582 This has the effect that two stars are being added/taken away in
583 promotion/demotion commands. It also influences how levels are
584 handled by the exporters.
585 Changing it requires restart of `font-lock-mode' to become effective
586 for fontification also in regions already fontified.
587 You may also set this on a per-file basis by adding one of the following
588 lines to the buffer:
590 #+STARTUP: odd
591 #+STARTUP: oddeven"
592 :group 'org-edit-structure
593 :group 'org-font-lock
594 :type 'boolean)
596 (defcustom org-adapt-indentation t
597 "Non-nil means, adapt indentation when promoting and demoting.
598 When this is set and the *entire* text in an entry is indented, the
599 indentation is increased by one space in a demotion command, and
600 decreased by one in a promotion command. If any line in the entry
601 body starts at column 0, indentation is not changed at all."
602 :group 'org-edit-structure
603 :type 'boolean)
605 (defcustom org-special-ctrl-a/e nil
606 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
607 When t, `C-a' will bring back the cursor to the beginning of the
608 headline text, i.e. after the stars and after a possible TODO keyword.
609 In an item, this will be the position after the bullet.
610 When the cursor is already at that position, another `C-a' will bring
611 it to the beginning of the line.
612 `C-e' will jump to the end of the headline, ignoring the presence of tags
613 in the headline. A second `C-e' will then jump to the true end of the
614 line, after any tags.
615 When set to the symbol `reversed', the first `C-a' or `C-e' works normally,
616 and only a directly following, identical keypress will bring the cursor
617 to the special positions."
618 :group 'org-edit-structure
619 :type '(choice
620 (const :tag "off" nil)
621 (const :tag "after bullet first" t)
622 (const :tag "border first" reversed)))
624 (if (fboundp 'defvaralias)
625 (defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e))
627 (defcustom org-special-ctrl-k nil
628 "Non-nil means `C-k' will behave specially in headlines.
629 When nil, `C-k' will call the default `kill-line' command.
630 When t, the following will happen while the cursor is in the headline:
632 - When the cursor is at the beginning of a headline, kill the entire
633 line and possible the folded subtree below the line.
634 - When in the middle of the headline text, kill the headline up to the tags.
635 - When after the headline text, kill the tags."
636 :group 'org-edit-structure
637 :type 'boolean)
639 (defcustom org-yank-folded-subtrees t
640 "Non-nil means, when yanking subtrees, fold them.
641 If the kill is a single subtree, or a sequence of subtrees, i.e. if
642 it starts with a heading and all other headings in it are either children
643 or siblings, then fold all the subtrees. However, do this only if no
644 text after the yank would be swallowed into a folded tree by this action."
645 :group 'org-edit-structure
646 :type 'boolean)
648 (defcustom org-yank-adjusted-subtrees t
649 "Non-nil means, when yanking subtrees, adjust the level.
650 With this setting, `org-paste-subtree' is used to insert the subtree, see
651 this function for details."
652 :group 'org-edit-structure
653 :type 'boolean)
655 (defcustom org-M-RET-may-split-line '((default . t))
656 "Non-nil means, M-RET will split the line at the cursor position.
657 When nil, it will go to the end of the line before making a
658 new line.
659 You may also set this option in a different way for different
660 contexts. Valid contexts are:
662 headline when creating a new headline
663 item when creating a new item
664 table in a table field
665 default the value to be used for all contexts not explicitly
666 customized"
667 :group 'org-structure
668 :group 'org-table
669 :type '(choice
670 (const :tag "Always" t)
671 (const :tag "Never" nil)
672 (repeat :greedy t :tag "Individual contexts"
673 (cons
674 (choice :tag "Context"
675 (const headline)
676 (const item)
677 (const table)
678 (const default))
679 (boolean)))))
682 (defcustom org-insert-heading-respect-content nil
683 "Non-nil means, insert new headings after the current subtree.
684 When nil, the new heading is created directly after the current line.
685 The commands \\[org-insert-heading-respect-content] and
686 \\[org-insert-todo-heading-respect-content] turn this variable on
687 for the duration of the command."
688 :group 'org-structure
689 :type 'boolean)
691 (defcustom org-blank-before-new-entry '((heading . nil)
692 (plain-list-item . nil))
693 "Should `org-insert-heading' leave a blank line before new heading/item?
694 The value is an alist, with `heading' and `plain-list-item' as car,
695 and a boolean flag as cdr."
696 :group 'org-edit-structure
697 :type '(list
698 (cons (const heading) (boolean))
699 (cons (const plain-list-item) (boolean))))
701 (defcustom org-insert-heading-hook nil
702 "Hook being run after inserting a new heading."
703 :group 'org-edit-structure
704 :type 'hook)
706 (defcustom org-enable-fixed-width-editor t
707 "Non-nil means, lines starting with \":\" are treated as fixed-width.
708 This currently only means, they are never auto-wrapped.
709 When nil, such lines will be treated like ordinary lines.
710 See also the QUOTE keyword."
711 :group 'org-edit-structure
712 :type 'boolean)
714 (defcustom org-edit-src-region-extra nil
715 "Additional regexps to identify regions for editing with `org-edit-src-code'.
716 For examples see the function `org-edit-src-find-region-and-lang'.
717 The regular expression identifying the begin marker should end with a newline,
718 and the regexp marking the end line should start with a newline, to make sure
719 there are kept outside the narrowed region."
720 :group 'org-edit-structure
721 :type '(repeat
722 (list
723 (regexp :tag "begin regexp")
724 (regexp :tag "end regexp")
725 (choice :tag "language"
726 (string :tag "specify")
727 (integer :tag "from match group")
728 (const :tag "from `lang' element")
729 (const :tag "from `style' element")))))
731 (defcustom org-edit-fixed-width-region-mode 'artist-mode
732 "The mode that should be used to edit fixed-width regions.
733 These are the regions where each line starts with a colon."
734 :group 'org-edit-structure
735 :type '(choice
736 (const artist-mode)
737 (const picture-mode)
738 (const fundamental-mode)
739 (function :tag "Other (specify)")))
741 (defcustom org-goto-auto-isearch t
742 "Non-nil means, typing characters in org-goto starts incremental search."
743 :group 'org-edit-structure
744 :type 'boolean)
746 (defgroup org-sparse-trees nil
747 "Options concerning sparse trees in Org-mode."
748 :tag "Org Sparse Trees"
749 :group 'org-structure)
751 (defcustom org-highlight-sparse-tree-matches t
752 "Non-nil means, highlight all matches that define a sparse tree.
753 The highlights will automatically disappear the next time the buffer is
754 changed by an edit command."
755 :group 'org-sparse-trees
756 :type 'boolean)
758 (defcustom org-remove-highlights-with-change t
759 "Non-nil means, any change to the buffer will remove temporary highlights.
760 Such highlights are created by `org-occur' and `org-clock-display'.
761 When nil, `C-c C-c needs to be used to get rid of the highlights.
762 The highlights created by `org-preview-latex-fragment' always need
763 `C-c C-c' to be removed."
764 :group 'org-sparse-trees
765 :group 'org-time
766 :type 'boolean)
769 (defcustom org-occur-hook '(org-first-headline-recenter)
770 "Hook that is run after `org-occur' has constructed a sparse tree.
771 This can be used to recenter the window to show as much of the structure
772 as possible."
773 :group 'org-sparse-trees
774 :type 'hook)
776 (defgroup org-imenu-and-speedbar nil
777 "Options concerning imenu and speedbar in Org-mode."
778 :tag "Org Imenu and Speedbar"
779 :group 'org-structure)
781 (defcustom org-imenu-depth 2
782 "The maximum level for Imenu access to Org-mode headlines.
783 This also applied for speedbar access."
784 :group 'org-imenu-and-speedbar
785 :type 'number)
787 (defgroup org-table nil
788 "Options concerning tables in Org-mode."
789 :tag "Org Table"
790 :group 'org)
792 (defcustom org-enable-table-editor 'optimized
793 "Non-nil means, lines starting with \"|\" are handled by the table editor.
794 When nil, such lines will be treated like ordinary lines.
796 When equal to the symbol `optimized', the table editor will be optimized to
797 do the following:
798 - Automatic overwrite mode in front of whitespace in table fields.
799 This makes the structure of the table stay in tact as long as the edited
800 field does not exceed the column width.
801 - Minimize the number of realigns. Normally, the table is aligned each time
802 TAB or RET are pressed to move to another field. With optimization this
803 happens only if changes to a field might have changed the column width.
804 Optimization requires replacing the functions `self-insert-command',
805 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
806 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
807 very good at guessing when a re-align will be necessary, but you can always
808 force one with \\[org-ctrl-c-ctrl-c].
810 If you would like to use the optimized version in Org-mode, but the
811 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
813 This variable can be used to turn on and off the table editor during a session,
814 but in order to toggle optimization, a restart is required.
816 See also the variable `org-table-auto-blank-field'."
817 :group 'org-table
818 :type '(choice
819 (const :tag "off" nil)
820 (const :tag "on" t)
821 (const :tag "on, optimized" optimized)))
823 (defcustom org-table-tab-recognizes-table.el t
824 "Non-nil means, TAB will automatically notice a table.el table.
825 When it sees such a table, it moves point into it and - if necessary -
826 calls `table-recognize-table'."
827 :group 'org-table-editing
828 :type 'boolean)
830 (defgroup org-link nil
831 "Options concerning links in Org-mode."
832 :tag "Org Link"
833 :group 'org)
835 (defvar org-link-abbrev-alist-local nil
836 "Buffer-local version of `org-link-abbrev-alist', which see.
837 The value of this is taken from the #+LINK lines.")
838 (make-variable-buffer-local 'org-link-abbrev-alist-local)
840 (defcustom org-link-abbrev-alist nil
841 "Alist of link abbreviations.
842 The car of each element is a string, to be replaced at the start of a link.
843 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
844 links in Org-mode buffers can have an optional tag after a double colon, e.g.
846 [[linkkey:tag][description]]
848 If REPLACE is a string, the tag will simply be appended to create the link.
849 If the string contains \"%s\", the tag will be inserted there. Alternatively,
850 the placeholder \"%h\" will cause a url-encoded version of the tag to
851 be inserted at that point (see the function `url-hexify-string').
853 REPLACE may also be a function that will be called with the tag as the
854 only argument to create the link, which should be returned as a string.
856 See the manual for examples."
857 :group 'org-link
858 :type '(repeat
859 (cons
860 (string :tag "Protocol")
861 (choice
862 (string :tag "Format")
863 (function)))))
865 (defcustom org-descriptive-links t
866 "Non-nil means, hide link part and only show description of bracket links.
867 Bracket links are like [[link][description]]. This variable sets the initial
868 state in new org-mode buffers. The setting can then be toggled on a
869 per-buffer basis from the Org->Hyperlinks menu."
870 :group 'org-link
871 :type 'boolean)
873 (defcustom org-link-file-path-type 'adaptive
874 "How the path name in file links should be stored.
875 Valid values are:
877 relative Relative to the current directory, i.e. the directory of the file
878 into which the link is being inserted.
879 absolute Absolute path, if possible with ~ for home directory.
880 noabbrev Absolute path, no abbreviation of home directory.
881 adaptive Use relative path for files in the current directory and sub-
882 directories of it. For other files, use an absolute path."
883 :group 'org-link
884 :type '(choice
885 (const relative)
886 (const absolute)
887 (const noabbrev)
888 (const adaptive)))
890 (defcustom org-activate-links '(bracket angle plain radio tag date)
891 "Types of links that should be activated in Org-mode files.
892 This is a list of symbols, each leading to the activation of a certain link
893 type. In principle, it does not hurt to turn on most link types - there may
894 be a small gain when turning off unused link types. The types are:
896 bracket The recommended [[link][description]] or [[link]] links with hiding.
897 angular Links in angular brackets that may contain whitespace like
898 <bbdb:Carsten Dominik>.
899 plain Plain links in normal text, no whitespace, like http://google.com.
900 radio Text that is matched by a radio target, see manual for details.
901 tag Tag settings in a headline (link to tag search).
902 date Time stamps (link to calendar).
904 Changing this variable requires a restart of Emacs to become effective."
905 :group 'org-link
906 :type '(set (const :tag "Double bracket links (new style)" bracket)
907 (const :tag "Angular bracket links (old style)" angular)
908 (const :tag "Plain text links" plain)
909 (const :tag "Radio target matches" radio)
910 (const :tag "Tags" tag)
911 (const :tag "Timestamps" date)))
913 (defcustom org-make-link-description-function nil
914 "Function to use to generate link descriptions from links. If
915 nil the link location will be used. This function must take two
916 parameters; the first is the link and the second the description
917 org-insert-link has generated, and should return the description
918 to use."
919 :group 'org-link
920 :type 'function)
922 (defgroup org-link-store nil
923 "Options concerning storing links in Org-mode."
924 :tag "Org Store Link"
925 :group 'org-link)
927 (defcustom org-email-link-description-format "Email %c: %.30s"
928 "Format of the description part of a link to an email or usenet message.
929 The following %-escapes will be replaced by corresponding information:
931 %F full \"From\" field
932 %f name, taken from \"From\" field, address if no name
933 %T full \"To\" field
934 %t first name in \"To\" field, address if no name
935 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
936 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
937 %s subject
938 %m message-id.
940 You may use normal field width specification between the % and the letter.
941 This is for example useful to limit the length of the subject.
943 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
944 :group 'org-link-store
945 :type 'string)
947 (defcustom org-from-is-user-regexp
948 (let (r1 r2)
949 (when (and user-mail-address (not (string= user-mail-address "")))
950 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
951 (when (and user-full-name (not (string= user-full-name "")))
952 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
953 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
954 "Regexp matched against the \"From:\" header of an email or usenet message.
955 It should match if the message is from the user him/herself."
956 :group 'org-link-store
957 :type 'regexp)
959 (defcustom org-link-to-org-use-id 'create-if-interactive
960 "Non-nil means, storing a link to an Org file will use entry IDs.
962 Note that before this variable is even considered, org-id must be loaded,
963 to please customize `org-modules' and turn it on.
965 The variable can have the following values:
967 t Create an ID if needed to make a link to the current entry.
969 create-if-interactive
970 If `org-store-link' is called directly (interactively, as a user
971 command), do create an ID to support the link. But when doing the
972 job for remember, only use the ID if it already exists. The
973 purpose of this setting is to avoid proliferation of unwanted
974 IDs, just because you happen to be in an Org file when you
975 call `org-remember' that automatically and preemptively
976 creates a link. If you do want to get an ID link in a remember
977 template to an entry not having an ID, create it first by
978 explicitly creating a link to it, using `C-c C-l' first.
980 use-existing
981 Use existing ID, do not create one.
983 nil Never use an ID to make a link, instead link using a text search for
984 the headline text."
985 :group 'org-link-store
986 :type '(choice
987 (const :tag "Create ID to make link" t)
988 (const :tag "Create if string link interactively"
989 'create-if-interactive)
990 (const :tag "Only use existing" 'use-existing)
991 (const :tag "Do not use ID to create link" nil)))
993 (defcustom org-context-in-file-links t
994 "Non-nil means, file links from `org-store-link' contain context.
995 A search string will be added to the file name with :: as separator and
996 used to find the context when the link is activated by the command
997 `org-open-at-point'.
998 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
999 negates this setting for the duration of the command."
1000 :group 'org-link-store
1001 :type 'boolean)
1003 (defcustom org-keep-stored-link-after-insertion nil
1004 "Non-nil means, keep link in list for entire session.
1006 The command `org-store-link' adds a link pointing to the current
1007 location to an internal list. These links accumulate during a session.
1008 The command `org-insert-link' can be used to insert links into any
1009 Org-mode file (offering completion for all stored links). When this
1010 option is nil, every link which has been inserted once using \\[org-insert-link]
1011 will be removed from the list, to make completing the unused links
1012 more efficient."
1013 :group 'org-link-store
1014 :type 'boolean)
1016 (defgroup org-link-follow nil
1017 "Options concerning following links in Org-mode."
1018 :tag "Org Follow Link"
1019 :group 'org-link)
1021 (defcustom org-link-translation-function nil
1022 "Function to translate links with different syntax to Org syntax.
1023 This can be used to translate links created for example by the Planner
1024 or emacs-wiki packages to Org syntax.
1025 The function must accept two parameters, a TYPE containing the link
1026 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1027 which is everything after the link protocol. It should return a cons
1028 with possibly modified values of type and path.
1029 Org contains a function for this, so if you set this variable to
1030 `org-translate-link-from-planner', you should be able follow many
1031 links created by planner."
1032 :group 'org-link-follow
1033 :type 'function)
1035 (defcustom org-follow-link-hook nil
1036 "Hook that is run after a link has been followed."
1037 :group 'org-link-follow
1038 :type 'hook)
1040 (defcustom org-tab-follows-link nil
1041 "Non-nil means, on links TAB will follow the link.
1042 Needs to be set before org.el is loaded."
1043 :group 'org-link-follow
1044 :type 'boolean)
1046 (defcustom org-return-follows-link nil
1047 "Non-nil means, on links RET will follow the link.
1048 Needs to be set before org.el is loaded."
1049 :group 'org-link-follow
1050 :type 'boolean)
1052 (defcustom org-mouse-1-follows-link
1053 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1054 "Non-nil means, mouse-1 on a link will follow the link.
1055 A longer mouse click will still set point. Does not work on XEmacs.
1056 Needs to be set before org.el is loaded."
1057 :group 'org-link-follow
1058 :type 'boolean)
1060 (defcustom org-mark-ring-length 4
1061 "Number of different positions to be recorded in the ring
1062 Changing this requires a restart of Emacs to work correctly."
1063 :group 'org-link-follow
1064 :type 'integer)
1066 (defcustom org-link-frame-setup
1067 '((vm . vm-visit-folder-other-frame)
1068 (gnus . gnus-other-frame)
1069 (file . find-file-other-window))
1070 "Setup the frame configuration for following links.
1071 When following a link with Emacs, it may often be useful to display
1072 this link in another window or frame. This variable can be used to
1073 set this up for the different types of links.
1074 For VM, use any of
1075 `vm-visit-folder'
1076 `vm-visit-folder-other-frame'
1077 For Gnus, use any of
1078 `gnus'
1079 `gnus-other-frame'
1080 `org-gnus-no-new-news'
1081 For FILE, use any of
1082 `find-file'
1083 `find-file-other-window'
1084 `find-file-other-frame'
1085 For the calendar, use the variable `calendar-setup'.
1086 For BBDB, it is currently only possible to display the matches in
1087 another window."
1088 :group 'org-link-follow
1089 :type '(list
1090 (cons (const vm)
1091 (choice
1092 (const vm-visit-folder)
1093 (const vm-visit-folder-other-window)
1094 (const vm-visit-folder-other-frame)))
1095 (cons (const gnus)
1096 (choice
1097 (const gnus)
1098 (const gnus-other-frame)
1099 (const org-gnus-no-new-news)))
1100 (cons (const file)
1101 (choice
1102 (const find-file)
1103 (const find-file-other-window)
1104 (const find-file-other-frame)))))
1106 (defcustom org-display-internal-link-with-indirect-buffer nil
1107 "Non-nil means, use indirect buffer to display infile links.
1108 Activating internal links (from one location in a file to another location
1109 in the same file) normally just jumps to the location. When the link is
1110 activated with a C-u prefix (or with mouse-3), the link is displayed in
1111 another window. When this option is set, the other window actually displays
1112 an indirect buffer clone of the current buffer, to avoid any visibility
1113 changes to the current buffer."
1114 :group 'org-link-follow
1115 :type 'boolean)
1117 (defcustom org-open-non-existing-files nil
1118 "Non-nil means, `org-open-file' will open non-existing files.
1119 When nil, an error will be generated."
1120 :group 'org-link-follow
1121 :type 'boolean)
1123 (defcustom org-open-directory-means-index-dot-org nil
1124 "Non-nil means, a link to a directory really means to index.org.
1125 When nil, following a directory link will run dired or open a finder/explorer
1126 window on that directory."
1127 :group 'org-link-follow
1128 :type 'boolean)
1130 (defcustom org-link-mailto-program '(browse-url "mailto:%a?subject=%s")
1131 "Function and arguments to call for following mailto links.
1132 This is a list with the first element being a lisp function, and the
1133 remaining elements being arguments to the function. In string arguments,
1134 %a will be replaced by the address, and %s will be replaced by the subject
1135 if one was given like in <mailto:arthur@galaxy.org::this subject>."
1136 :group 'org-link-follow
1137 :type '(choice
1138 (const :tag "browse-url" (browse-url-mail "mailto:%a?subject=%s"))
1139 (const :tag "compose-mail" (compose-mail "%a" "%s"))
1140 (const :tag "message-mail" (message-mail "%a" "%s"))
1141 (cons :tag "other" (function) (repeat :tag "argument" sexp))))
1143 (defcustom org-confirm-shell-link-function 'yes-or-no-p
1144 "Non-nil means, ask for confirmation before executing shell links.
1145 Shell links can be dangerous: just think about a link
1147 [[shell:rm -rf ~/*][Google Search]]
1149 This link would show up in your Org-mode document as \"Google Search\",
1150 but really it would remove your entire home directory.
1151 Therefore we advise against setting this variable to nil.
1152 Just change it to `y-or-n-p' of you want to confirm with a
1153 single keystroke rather than having to type \"yes\"."
1154 :group 'org-link-follow
1155 :type '(choice
1156 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1157 (const :tag "with y-or-n (faster)" y-or-n-p)
1158 (const :tag "no confirmation (dangerous)" nil)))
1160 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
1161 "Non-nil means, ask for confirmation before executing Emacs Lisp links.
1162 Elisp links can be dangerous: just think about a link
1164 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
1166 This link would show up in your Org-mode document as \"Google Search\",
1167 but really it would remove your entire home directory.
1168 Therefore we advise against setting this variable to nil.
1169 Just change it to `y-or-n-p' of you want to confirm with a
1170 single keystroke rather than having to type \"yes\"."
1171 :group 'org-link-follow
1172 :type '(choice
1173 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1174 (const :tag "with y-or-n (faster)" y-or-n-p)
1175 (const :tag "no confirmation (dangerous)" nil)))
1177 (defconst org-file-apps-defaults-gnu
1178 '((remote . emacs)
1179 (system . mailcap)
1180 (t . mailcap))
1181 "Default file applications on a UNIX or GNU/Linux system.
1182 See `org-file-apps'.")
1184 (defconst org-file-apps-defaults-macosx
1185 '((remote . emacs)
1186 (t . "open %s")
1187 (system . "open %s")
1188 ("ps.gz" . "gv %s")
1189 ("eps.gz" . "gv %s")
1190 ("dvi" . "xdvi %s")
1191 ("fig" . "xfig %s"))
1192 "Default file applications on a MacOS X system.
1193 The system \"open\" is known as a default, but we use X11 applications
1194 for some files for which the OS does not have a good default.
1195 See `org-file-apps'.")
1197 (defconst org-file-apps-defaults-windowsnt
1198 (list
1199 '(remote . emacs)
1200 (cons t
1201 (list (if (featurep 'xemacs)
1202 'mswindows-shell-execute
1203 'w32-shell-execute)
1204 "open" 'file))
1205 (cons 'system
1206 (list (if (featurep 'xemacs)
1207 'mswindows-shell-execute
1208 'w32-shell-execute)
1209 "open" 'file)))
1210 "Default file applications on a Windows NT system.
1211 The system \"open\" is used for most files.
1212 See `org-file-apps'.")
1214 (defcustom org-file-apps
1216 (auto-mode . emacs)
1217 ("\\.x?html?\\'" . default)
1218 ("\\.pdf\\'" . default)
1220 "External applications for opening `file:path' items in a document.
1221 Org-mode uses system defaults for different file types, but
1222 you can use this variable to set the application for a given file
1223 extension. The entries in this list are cons cells where the car identifies
1224 files and the cdr the corresponding command. Possible values for the
1225 file identifier are
1226 \"regex\" Regular expression matched against the file name. For backward
1227 compatibility, this can also be a string with only alphanumeric
1228 characters, which is then interpreted as an extension.
1229 `directory' Matches a directory
1230 `remote' Matches a remote file, accessible through tramp or efs.
1231 Remote files most likely should be visited through Emacs
1232 because external applications cannot handle such paths.
1233 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
1234 so all files Emacs knows how to handle. Using this with
1235 command `emacs' will open most files in Emacs. Beware that this
1236 will also open html files inside Emacs, unless you add
1237 (\"html\" . default) to the list as well.
1238 t Default for files not matched by any of the other options.
1239 `system' The system command to open files, like `open' on Windows
1240 and Mac OS X, and mailcap under GNU/Linux. This is the command
1241 that will be selected if you call `C-c C-o' with a double
1242 `C-u C-u' prefix.
1244 Possible values for the command are:
1245 `emacs' The file will be visited by the current Emacs process.
1246 `default' Use the default application for this file type, which is the
1247 association for t in the list, most likely in the system-specific
1248 part.
1249 This can be used to overrule an unwanted setting in the
1250 system-specific variable.
1251 `system' Use the system command for opening files, like \"open\".
1252 This command is specified by the entry whose car is `system'.
1253 Most likely, the system-specific version of this variable
1254 does define this command, but you can overrule/replace it
1255 here.
1256 string A command to be executed by a shell; %s will be replaced
1257 by the path to the file.
1258 sexp A Lisp form which will be evaluated. The file path will
1259 be available in the Lisp variable `file'.
1260 For more examples, see the system specific constants
1261 `org-file-apps-defaults-macosx'
1262 `org-file-apps-defaults-windowsnt'
1263 `org-file-apps-defaults-gnu'."
1264 :group 'org-link-follow
1265 :type '(repeat
1266 (cons (choice :value ""
1267 (string :tag "Extension")
1268 (const :tag "System command to open files" system)
1269 (const :tag "Default for unrecognized files" t)
1270 (const :tag "Remote file" remote)
1271 (const :tag "Links to a directory" directory)
1272 (const :tag "Any files that have Emacs modes"
1273 auto-mode))
1274 (choice :value ""
1275 (const :tag "Visit with Emacs" emacs)
1276 (const :tag "Use default" default)
1277 (const :tag "Use the system command" system)
1278 (string :tag "Command")
1279 (sexp :tag "Lisp form")))))
1281 (defgroup org-refile nil
1282 "Options concerning refiling entries in Org-mode."
1283 :tag "Org Refile"
1284 :group 'org)
1286 (defcustom org-directory "~/org"
1287 "Directory with org files.
1288 This directory will be used as default to prompt for org files.
1289 Used by the hooks for remember.el."
1290 :group 'org-refile
1291 :group 'org-remember
1292 :type 'directory)
1294 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
1295 "Default target for storing notes.
1296 Used by the hooks for remember.el. This can be a string, or nil to mean
1297 the value of `remember-data-file'.
1298 You can set this on a per-template basis with the variable
1299 `org-remember-templates'."
1300 :group 'org-refile
1301 :group 'org-remember
1302 :type '(choice
1303 (const :tag "Default from remember-data-file" nil)
1304 file))
1306 (defcustom org-goto-interface 'outline
1307 "The default interface to be used for `org-goto'.
1308 Allowed values are:
1309 outline The interface shows an outline of the relevant file
1310 and the correct heading is found by moving through
1311 the outline or by searching with incremental search.
1312 outline-path-completion Headlines in the current buffer are offered via
1313 completion. This is the interface also used by
1314 the refile command."
1315 :group 'org-refile
1316 :type '(choice
1317 (const :tag "Outline" outline)
1318 (const :tag "Outline-path-completion" outline-path-completion)))
1320 (defcustom org-goto-max-level 5
1321 "Maximum level to be considered when running org-goto with refile interface."
1322 :group 'org-refile
1323 :type 'number)
1325 (defcustom org-reverse-note-order nil
1326 "Non-nil means, store new notes at the beginning of a file or entry.
1327 When nil, new notes will be filed to the end of a file or entry.
1328 This can also be a list with cons cells of regular expressions that
1329 are matched against file names, and values."
1330 :group 'org-remember
1331 :group 'org-refile
1332 :type '(choice
1333 (const :tag "Reverse always" t)
1334 (const :tag "Reverse never" nil)
1335 (repeat :tag "By file name regexp"
1336 (cons regexp boolean))))
1338 (defcustom org-refile-targets nil
1339 "Targets for refiling entries with \\[org-refile].
1340 This is list of cons cells. Each cell contains:
1341 - a specification of the files to be considered, either a list of files,
1342 or a symbol whose function or variable value will be used to retrieve
1343 a file name or a list of file names. If you use `org-agenda-files' for
1344 that, all agenda files will be scanned for targets. Nil means, consider
1345 headings in the current buffer.
1346 - A specification of how to select find candidate refile targets. This
1347 may be any of
1348 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
1349 This tag has to be present in all target headlines, inheritance will
1350 not be considered.
1351 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
1352 todo keyword.
1353 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
1354 headlines that are refiling targets.
1355 - a cons cell (:level . N). Any headline of level N is considered a target.
1356 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
1358 When this variable is nil, all top-level headlines in the current buffer
1359 are used, equivalent to the value `((nil . (:level . 1))'."
1360 :group 'org-refile
1361 :type '(repeat
1362 (cons
1363 (choice :value org-agenda-files
1364 (const :tag "All agenda files" org-agenda-files)
1365 (const :tag "Current buffer" nil)
1366 (function) (variable) (file))
1367 (choice :tag "Identify target headline by"
1368 (cons :tag "Specific tag" (const :value :tag) (string))
1369 (cons :tag "TODO keyword" (const :value :todo) (string))
1370 (cons :tag "Regular expression" (const :value :regexp) (regexp))
1371 (cons :tag "Level number" (const :value :level) (integer))
1372 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
1374 (defcustom org-refile-use-outline-path nil
1375 "Non-nil means, provide refile targets as paths.
1376 So a level 3 headline will be available as level1/level2/level3.
1377 When the value is `file', also include the file name (without directory)
1378 into the path. When `full-file-path', include the full file path."
1379 :group 'org-refile
1380 :type '(choice
1381 (const :tag "Not" nil)
1382 (const :tag "Yes" t)
1383 (const :tag "Start with file name" file)
1384 (const :tag "Start with full file path" full-file-path)))
1386 (defcustom org-outline-path-complete-in-steps t
1387 "Non-nil means, complete the outline path in hierarchical steps.
1388 When Org-mode uses the refile interface to select an outline path
1389 \(see variable `org-refile-use-outline-path'), the completion of
1390 the path can be done is a single go, or if can be done in steps down
1391 the headline hierarchy. Going in steps is probably the best if you
1392 do not use a special completion package like `ido' or `icicles'.
1393 However, when using these packages, going in one step can be very
1394 fast, while still showing the whole path to the entry."
1395 :group 'org-refile
1396 :type 'boolean)
1398 (defgroup org-todo nil
1399 "Options concerning TODO items in Org-mode."
1400 :tag "Org TODO"
1401 :group 'org)
1403 (defgroup org-progress nil
1404 "Options concerning Progress logging in Org-mode."
1405 :tag "Org Progress"
1406 :group 'org-time)
1408 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
1409 "List of TODO entry keyword sequences and their interpretation.
1410 \\<org-mode-map>This is a list of sequences.
1412 Each sequence starts with a symbol, either `sequence' or `type',
1413 indicating if the keywords should be interpreted as a sequence of
1414 action steps, or as different types of TODO items. The first
1415 keywords are states requiring action - these states will select a headline
1416 for inclusion into the global TODO list Org-mode produces. If one of
1417 the \"keywords\" is the vertical bat \"|\" the remaining keywords
1418 signify that no further action is necessary. If \"|\" is not found,
1419 the last keyword is treated as the only DONE state of the sequence.
1421 The command \\[org-todo] cycles an entry through these states, and one
1422 additional state where no keyword is present. For details about this
1423 cycling, see the manual.
1425 TODO keywords and interpretation can also be set on a per-file basis with
1426 the special #+SEQ_TODO and #+TYP_TODO lines.
1428 Each keyword can optionally specify a character for fast state selection
1429 \(in combination with the variable `org-use-fast-todo-selection')
1430 and specifiers for state change logging, using the same syntax
1431 that is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says
1432 that the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
1433 indicates to record a time stamp each time this state is selected.
1435 Each keyword may also specify if a timestamp or a note should be
1436 recorded when entering or leaving the state, by adding additional
1437 characters in the parenthesis after the keyword. This looks like this:
1438 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
1439 record only the time of the state change. With X and Y being either
1440 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
1441 Y when leaving the state if and only if the *target* state does not
1442 define X. You may omit any of the fast-selection key or X or /Y,
1443 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
1445 For backward compatibility, this variable may also be just a list
1446 of keywords - in this case the interpretation (sequence or type) will be
1447 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
1448 :group 'org-todo
1449 :group 'org-keywords
1450 :type '(choice
1451 (repeat :tag "Old syntax, just keywords"
1452 (string :tag "Keyword"))
1453 (repeat :tag "New syntax"
1454 (cons
1455 (choice
1456 :tag "Interpretation"
1457 (const :tag "Sequence (cycling hits every state)" sequence)
1458 (const :tag "Type (cycling directly to DONE)" type))
1459 (repeat
1460 (string :tag "Keyword"))))))
1462 (defvar org-todo-keywords-1 nil
1463 "All TODO and DONE keywords active in a buffer.")
1464 (make-variable-buffer-local 'org-todo-keywords-1)
1465 (defvar org-todo-keywords-for-agenda nil)
1466 (defvar org-done-keywords-for-agenda nil)
1467 (defvar org-todo-keyword-alist-for-agenda nil)
1468 (defvar org-tag-alist-for-agenda nil)
1469 (defvar org-agenda-contributing-files nil)
1470 (defvar org-not-done-keywords nil)
1471 (make-variable-buffer-local 'org-not-done-keywords)
1472 (defvar org-done-keywords nil)
1473 (make-variable-buffer-local 'org-done-keywords)
1474 (defvar org-todo-heads nil)
1475 (make-variable-buffer-local 'org-todo-heads)
1476 (defvar org-todo-sets nil)
1477 (make-variable-buffer-local 'org-todo-sets)
1478 (defvar org-todo-log-states nil)
1479 (make-variable-buffer-local 'org-todo-log-states)
1480 (defvar org-todo-kwd-alist nil)
1481 (make-variable-buffer-local 'org-todo-kwd-alist)
1482 (defvar org-todo-key-alist nil)
1483 (make-variable-buffer-local 'org-todo-key-alist)
1484 (defvar org-todo-key-trigger nil)
1485 (make-variable-buffer-local 'org-todo-key-trigger)
1487 (defcustom org-todo-interpretation 'sequence
1488 "Controls how TODO keywords are interpreted.
1489 This variable is in principle obsolete and is only used for
1490 backward compatibility, if the interpretation of todo keywords is
1491 not given already in `org-todo-keywords'. See that variable for
1492 more information."
1493 :group 'org-todo
1494 :group 'org-keywords
1495 :type '(choice (const sequence)
1496 (const type)))
1498 (defcustom org-use-fast-todo-selection 'prefix
1499 "Non-nil means, use the fast todo selection scheme with C-c C-t.
1500 This variable describes if and under what circumstances the cycling
1501 mechanism for TODO keywords will be replaced by a single-key, direct
1502 selection scheme.
1504 When nil, fast selection is never used.
1506 When the symbol `prefix', it will be used when `org-todo' is called with
1507 a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and `C-u t'
1508 in an agenda buffer.
1510 When t, fast selection is used by default. In this case, the prefix
1511 argument forces cycling instead.
1513 In all cases, the special interface is only used if access keys have actually
1514 been assigned by the user, i.e. if keywords in the configuration are followed
1515 by a letter in parenthesis, like TODO(t)."
1516 :group 'org-todo
1517 :type '(choice
1518 (const :tag "Never" nil)
1519 (const :tag "By default" t)
1520 (const :tag "Only with C-u C-c C-t" prefix)))
1522 (defcustom org-provide-todo-statistics t
1523 "Non-nil means, update todo statistics after insert and toggle.
1524 When this is set, todo statistics is updated in the parent of the current
1525 entry each time a todo state is changed."
1526 :group 'org-todo
1527 :type 'boolean)
1529 (defcustom org-after-todo-state-change-hook nil
1530 "Hook which is run after the state of a TODO item was changed.
1531 The new state (a string with a TODO keyword, or nil) is available in the
1532 Lisp variable `state'."
1533 :group 'org-todo
1534 :type 'hook)
1536 (defcustom org-todo-state-tags-triggers nil
1537 "Tag changes that should be triggered by TODO state changes.
1538 This is a list. Each entry is
1540 (state-change (tag . flag) .......)
1542 State-change can be a string with a state, and empty string to indicate the
1543 state that has no TODO keyword, or it can be one of the symbols `todo'
1544 or `done', meaning any not-done or done state, respectively."
1545 :group 'org-todo
1546 :group 'org-tags
1547 :type '(repeat
1548 (cons (choice :tag "When changing to"
1549 (const :tag "Not-done state" todo)
1550 (const :tag "Done state" done)
1551 (string :tag "State"))
1552 (repeat
1553 (cons :tag "Tag action"
1554 (string :tag "Tag")
1555 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
1557 (defcustom org-log-done nil
1558 "Information to record when a task moves to the DONE state.
1560 Possible values are:
1562 nil Don't add anything, just change the keyword
1563 time Add a time stamp to the task
1564 note Prompt a closing note and add it with template `org-log-note-headings'
1566 This option can also be set with on a per-file-basis with
1568 #+STARTUP: nologdone
1569 #+STARTUP: logdone
1570 #+STARTUP: lognotedone
1572 You can have local logging settings for a subtree by setting the LOGGING
1573 property to one or more of these keywords."
1574 :group 'org-todo
1575 :group 'org-progress
1576 :type '(choice
1577 (const :tag "No logging" nil)
1578 (const :tag "Record CLOSED timestamp" time)
1579 (const :tag "Record CLOSED timestamp with closing note." note)))
1581 ;; Normalize old uses of org-log-done.
1582 (cond
1583 ((eq org-log-done t) (setq org-log-done 'time))
1584 ((and (listp org-log-done) (memq 'done org-log-done))
1585 (setq org-log-done 'note)))
1587 (defcustom org-log-note-clock-out nil
1588 "Non-nil means, record a note when clocking out of an item.
1589 This can also be configured on a per-file basis by adding one of
1590 the following lines anywhere in the buffer:
1592 #+STARTUP: lognoteclock-out
1593 #+STARTUP: nolognoteclock-out"
1594 :group 'org-todo
1595 :group 'org-progress
1596 :type 'boolean)
1598 (defcustom org-log-done-with-time t
1599 "Non-nil means, the CLOSED time stamp will contain date and time.
1600 When nil, only the date will be recorded."
1601 :group 'org-progress
1602 :type 'boolean)
1604 (defcustom org-log-note-headings
1605 '((done . "CLOSING NOTE %t")
1606 (state . "State %-12s %t")
1607 (note . "Note taken on %t")
1608 (clock-out . ""))
1609 "Headings for notes added to entries.
1610 The value is an alist, with the car being a symbol indicating the note
1611 context, and the cdr is the heading to be used. The heading may also be the
1612 empty string.
1613 %t in the heading will be replaced by a time stamp.
1614 %s will be replaced by the new TODO state, in double quotes.
1615 %u will be replaced by the user name.
1616 %U will be replaced by the full user name."
1617 :group 'org-todo
1618 :group 'org-progress
1619 :type '(list :greedy t
1620 (cons (const :tag "Heading when closing an item" done) string)
1621 (cons (const :tag
1622 "Heading when changing todo state (todo sequence only)"
1623 state) string)
1624 (cons (const :tag "Heading when just taking a note" note) string)
1625 (cons (const :tag "Heading when clocking out" clock-out) string)))
1627 (unless (assq 'note org-log-note-headings)
1628 (push '(note . "%t") org-log-note-headings))
1630 (defcustom org-log-state-notes-insert-after-drawers nil
1631 "Non-nil means, insert state change notes after any drawers in entry.
1632 Only the drawers that *immediately* follow the headline and the
1633 deadline/scheduled line are skipped.
1634 When nil, insert notes right after the heading and perhaps the line
1635 with deadline/scheduling if present."
1636 :group 'org-todo
1637 :group 'org-progress
1638 :type 'boolean)
1640 (defcustom org-log-states-order-reversed t
1641 "Non-nil means, the latest state change note will be directly after heading.
1642 When nil, the notes will be orderer according to time."
1643 :group 'org-todo
1644 :group 'org-progress
1645 :type 'boolean)
1647 (defcustom org-log-repeat 'time
1648 "Non-nil means, record moving through the DONE state when triggering repeat.
1649 An auto-repeating tasks is immediately switched back to TODO when marked
1650 done. If you are not logging state changes (by adding \"@\" or \"!\" to
1651 the TODO keyword definition, or recording a closing note by setting
1652 `org-log-done', there will be no record of the task moving through DONE.
1653 This variable forces taking a note anyway. Possible values are:
1655 nil Don't force a record
1656 time Record a time stamp
1657 note Record a note
1659 This option can also be set with on a per-file-basis with
1661 #+STARTUP: logrepeat
1662 #+STARTUP: lognoterepeat
1663 #+STARTUP: nologrepeat
1665 You can have local logging settings for a subtree by setting the LOGGING
1666 property to one or more of these keywords."
1667 :group 'org-todo
1668 :group 'org-progress
1669 :type '(choice
1670 (const :tag "Don't force a record" nil)
1671 (const :tag "Force recording the DONE state" time)
1672 (const :tag "Force recording a note with the DONE state" note)))
1675 (defgroup org-priorities nil
1676 "Priorities in Org-mode."
1677 :tag "Org Priorities"
1678 :group 'org-todo)
1680 (defcustom org-highest-priority ?A
1681 "The highest priority of TODO items. A character like ?A, ?B etc.
1682 Must have a smaller ASCII number than `org-lowest-priority'."
1683 :group 'org-priorities
1684 :type 'character)
1686 (defcustom org-lowest-priority ?C
1687 "The lowest priority of TODO items. A character like ?A, ?B etc.
1688 Must have a larger ASCII number than `org-highest-priority'."
1689 :group 'org-priorities
1690 :type 'character)
1692 (defcustom org-default-priority ?B
1693 "The default priority of TODO items.
1694 This is the priority an item get if no explicit priority is given."
1695 :group 'org-priorities
1696 :type 'character)
1698 (defcustom org-priority-start-cycle-with-default t
1699 "Non-nil means, start with default priority when starting to cycle.
1700 When this is nil, the first step in the cycle will be (depending on the
1701 command used) one higher or lower that the default priority."
1702 :group 'org-priorities
1703 :type 'boolean)
1705 (defgroup org-time nil
1706 "Options concerning time stamps and deadlines in Org-mode."
1707 :tag "Org Time"
1708 :group 'org)
1710 (defcustom org-insert-labeled-timestamps-at-point nil
1711 "Non-nil means, SCHEDULED and DEADLINE timestamps are inserted at point.
1712 When nil, these labeled time stamps are forces into the second line of an
1713 entry, just after the headline. When scheduling from the global TODO list,
1714 the time stamp will always be forced into the second line."
1715 :group 'org-time
1716 :type 'boolean)
1718 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
1719 "Formats for `format-time-string' which are used for time stamps.
1720 It is not recommended to change this constant.")
1722 (defcustom org-time-stamp-rounding-minutes '(0 5)
1723 "Number of minutes to round time stamps to.
1724 These are two values, the first applies when first creating a time stamp.
1725 The second applies when changing it with the commands `S-up' and `S-down'.
1726 When changing the time stamp, this means that it will change in steps
1727 of N minutes, as given by the second value.
1729 When a setting is 0 or 1, insert the time unmodified. Useful rounding
1730 numbers should be factors of 60, so for example 5, 10, 15.
1732 When this is larger than 1, you can still force an exact time-stamp by using
1733 a double prefix argument to a time-stamp command like `C-c .' or `C-c !',
1734 and by using a prefix arg to `S-up/down' to specify the exact number
1735 of minutes to shift."
1736 :group 'org-time
1737 :get '(lambda (var) ; Make sure all entries have 5 elements
1738 (if (integerp (default-value var))
1739 (list (default-value var) 5)
1740 (default-value var)))
1741 :type '(list
1742 (integer :tag "when inserting times")
1743 (integer :tag "when modifying times")))
1745 ;; Normalize old customizations of this variable.
1746 (when (integerp org-time-stamp-rounding-minutes)
1747 (setq org-time-stamp-rounding-minutes
1748 (list org-time-stamp-rounding-minutes
1749 org-time-stamp-rounding-minutes)))
1751 (defcustom org-display-custom-times nil
1752 "Non-nil means, overlay custom formats over all time stamps.
1753 The formats are defined through the variable `org-time-stamp-custom-formats'.
1754 To turn this on on a per-file basis, insert anywhere in the file:
1755 #+STARTUP: customtime"
1756 :group 'org-time
1757 :set 'set-default
1758 :type 'sexp)
1759 (make-variable-buffer-local 'org-display-custom-times)
1761 (defcustom org-time-stamp-custom-formats
1762 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
1763 "Custom formats for time stamps. See `format-time-string' for the syntax.
1764 These are overlayed over the default ISO format if the variable
1765 `org-display-custom-times' is set. Time like %H:%M should be at the
1766 end of the second format."
1767 :group 'org-time
1768 :type 'sexp)
1770 (defun org-time-stamp-format (&optional long inactive)
1771 "Get the right format for a time string."
1772 (let ((f (if long (cdr org-time-stamp-formats)
1773 (car org-time-stamp-formats))))
1774 (if inactive
1775 (concat "[" (substring f 1 -1) "]")
1776 f)))
1778 (defcustom org-time-clocksum-format "%d:%02d"
1779 "The format string used when creating CLOCKSUM lines, or when
1780 org-mode generates a time duration."
1781 :group 'org-time
1782 :type 'string)
1784 (defcustom org-deadline-warning-days 14
1785 "No. of days before expiration during which a deadline becomes active.
1786 This variable governs the display in sparse trees and in the agenda.
1787 When 0 or negative, it means use this number (the absolute value of it)
1788 even if a deadline has a different individual lead time specified."
1789 :group 'org-time
1790 :group 'org-agenda-daily/weekly
1791 :type 'number)
1793 (defcustom org-read-date-prefer-future t
1794 "Non-nil means, assume future for incomplete date input from user.
1795 This affects the following situations:
1796 1. The user gives a day, but no month.
1797 For example, if today is the 15th, and you enter \"3\", Org-mode will
1798 read this as the third of *next* month. However, if you enter \"17\",
1799 it will be considered as *this* month.
1800 2. The user gives a month but not a year.
1801 For example, if it is april and you enter \"feb 2\", this will be read
1802 as feb 2, *next* year. \"May 5\", however, will be this year.
1804 Currently this does not work for ISO week specifications.
1806 When this option is nil, the current month and year will always be used
1807 as defaults."
1808 :group 'org-time
1809 :type 'boolean)
1811 (defcustom org-read-date-display-live t
1812 "Non-nil means, display current interpretation of date prompt live.
1813 This display will be in an overlay, in the minibuffer."
1814 :group 'org-time
1815 :type 'boolean)
1817 (defcustom org-read-date-popup-calendar t
1818 "Non-nil means, pop up a calendar when prompting for a date.
1819 In the calendar, the date can be selected with mouse-1. However, the
1820 minibuffer will also be active, and you can simply enter the date as well.
1821 When nil, only the minibuffer will be available."
1822 :group 'org-time
1823 :type 'boolean)
1824 (if (fboundp 'defvaralias)
1825 (defvaralias 'org-popup-calendar-for-date-prompt
1826 'org-read-date-popup-calendar))
1828 (defcustom org-extend-today-until 0
1829 "The hour when your day really ends. Must be an integer.
1830 This has influence for the following applications:
1831 - When switching the agenda to \"today\". It it is still earlier than
1832 the time given here, the day recognized as TODAY is actually yesterday.
1833 - When a date is read from the user and it is still before the time given
1834 here, the current date and time will be assumed to be yesterday, 23:59.
1835 Also, timestamps inserted in remember templates follow this rule.
1837 IMPORTANT: This is a feature whose implementation is and likely will
1838 remain incomplete. Really, it is only here because past midnight seems to
1839 be the favorite working time of John Wiegley :-)"
1840 :group 'org-time
1841 :type 'number)
1843 (defcustom org-edit-timestamp-down-means-later nil
1844 "Non-nil means, S-down will increase the time in a time stamp.
1845 When nil, S-up will increase."
1846 :group 'org-time
1847 :type 'boolean)
1849 (defcustom org-calendar-follow-timestamp-change t
1850 "Non-nil means, make the calendar window follow timestamp changes.
1851 When a timestamp is modified and the calendar window is visible, it will be
1852 moved to the new date."
1853 :group 'org-time
1854 :type 'boolean)
1856 (defgroup org-tags nil
1857 "Options concerning tags in Org-mode."
1858 :tag "Org Tags"
1859 :group 'org)
1861 (defcustom org-tag-alist nil
1862 "List of tags allowed in Org-mode files.
1863 When this list is nil, Org-mode will base TAG input on what is already in the
1864 buffer.
1865 The value of this variable is an alist, the car of each entry must be a
1866 keyword as a string, the cdr may be a character that is used to select
1867 that tag through the fast-tag-selection interface.
1868 See the manual for details."
1869 :group 'org-tags
1870 :type '(repeat
1871 (choice
1872 (cons (string :tag "Tag name")
1873 (character :tag "Access char"))
1874 (const :tag "Start radio group" (:startgroup))
1875 (const :tag "End radio group" (:endgroup)))))
1877 (defvar org-file-tags nil
1878 "List of tags that can be inherited by all entries in the file.
1879 The tags will be inherited if the variable `org-use-tag-inheritance'
1880 says they should be.
1881 This variable is populated from #+TAG lines.")
1883 (defcustom org-use-fast-tag-selection 'auto
1884 "Non-nil means, use fast tag selection scheme.
1885 This is a special interface to select and deselect tags with single keys.
1886 When nil, fast selection is never used.
1887 When the symbol `auto', fast selection is used if and only if selection
1888 characters for tags have been configured, either through the variable
1889 `org-tag-alist' or through a #+TAGS line in the buffer.
1890 When t, fast selection is always used and selection keys are assigned
1891 automatically if necessary."
1892 :group 'org-tags
1893 :type '(choice
1894 (const :tag "Always" t)
1895 (const :tag "Never" nil)
1896 (const :tag "When selection characters are configured" 'auto)))
1898 (defcustom org-fast-tag-selection-single-key nil
1899 "Non-nil means, fast tag selection exits after first change.
1900 When nil, you have to press RET to exit it.
1901 During fast tag selection, you can toggle this flag with `C-c'.
1902 This variable can also have the value `expert'. In this case, the window
1903 displaying the tags menu is not even shown, until you press C-c again."
1904 :group 'org-tags
1905 :type '(choice
1906 (const :tag "No" nil)
1907 (const :tag "Yes" t)
1908 (const :tag "Expert" expert)))
1910 (defvar org-fast-tag-selection-include-todo nil
1911 "Non-nil means, fast tags selection interface will also offer TODO states.
1912 This is an undocumented feature, you should not rely on it.")
1914 (defcustom org-tags-column (if (featurep 'xemacs) -79 -80)
1915 "The column to which tags should be indented in a headline.
1916 If this number is positive, it specifies the column. If it is negative,
1917 it means that the tags should be flushright to that column. For example,
1918 -80 works well for a normal 80 character screen."
1919 :group 'org-tags
1920 :type 'integer)
1922 (defcustom org-auto-align-tags t
1923 "Non-nil means, realign tags after pro/demotion of TODO state change.
1924 These operations change the length of a headline and therefore shift
1925 the tags around. With this options turned on, after each such operation
1926 the tags are again aligned to `org-tags-column'."
1927 :group 'org-tags
1928 :type 'boolean)
1930 (defcustom org-use-tag-inheritance t
1931 "Non-nil means, tags in levels apply also for sublevels.
1932 When nil, only the tags directly given in a specific line apply there.
1933 This may also be a list of tags that should be inherited, or a regexp that
1934 matches tags that should be inherited. Additional control is possible
1935 with the variable `org-tags-exclude-from-inheritance' which gives an
1936 explicit list of tags to be excluded from inheritance., even if the value of
1937 `org-use-tag-inheritance' would select it for inheritance.
1939 If this option is t, a match early-on in a tree can lead to a large
1940 number of matches in the subtree when constructing the agenda or creating
1941 a sparse tree. If you only want to see the first match in a tree during
1942 a search, check out the variable `org-tags-match-list-sublevels'."
1943 :group 'org-tags
1944 :type '(choice
1945 (const :tag "Not" nil)
1946 (const :tag "Always" t)
1947 (repeat :tag "Specific tags" (string :tag "Tag"))
1948 (regexp :tag "Tags matched by regexp")))
1950 (defcustom org-tags-exclude-from-inheritance nil
1951 "List of tags that should never be inherited.
1952 This is a way to exclude a few tags from inheritance. For way to do
1953 the opposite, to actively allow inheritance for selected tags,
1954 see the variable `org-use-tag-inheritance'."
1955 :group 'org-tags
1956 :type '(repeat (string :tag "Tag")))
1958 (defun org-tag-inherit-p (tag)
1959 "Check if TAG is one that should be inherited."
1960 (cond
1961 ((member tag org-tags-exclude-from-inheritance) nil)
1962 ((eq org-use-tag-inheritance t) t)
1963 ((not org-use-tag-inheritance) nil)
1964 ((stringp org-use-tag-inheritance)
1965 (string-match org-use-tag-inheritance tag))
1966 ((listp org-use-tag-inheritance)
1967 (member tag org-use-tag-inheritance))
1968 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
1970 (defcustom org-tags-match-list-sublevels t
1971 "Non-nil means list also sublevels of headlines matching tag search.
1972 Because of tag inheritance (see variable `org-use-tag-inheritance'),
1973 the sublevels of a headline matching a tag search often also match
1974 the same search. Listing all of them can create very long lists.
1975 Setting this variable to nil causes subtrees of a match to be skipped.
1976 This option is off by default, because inheritance in on. If you turn
1977 inheritance off, you very likely want to turn this option on.
1979 As a special case, if the tag search is restricted to TODO items, the
1980 value of this variable is ignored and sublevels are always checked, to
1981 make sure all corresponding TODO items find their way into the list.
1983 This variable is semi-obsolete and probably should always be true. It
1984 is better to limit inheritance to certain tags using the variables
1985 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
1986 :group 'org-tags
1987 :type 'boolean)
1989 (defvar org-tags-history nil
1990 "History of minibuffer reads for tags.")
1991 (defvar org-last-tags-completion-table nil
1992 "The last used completion table for tags.")
1993 (defvar org-after-tags-change-hook nil
1994 "Hook that is run after the tags in a line have changed.")
1996 (defgroup org-properties nil
1997 "Options concerning properties in Org-mode."
1998 :tag "Org Properties"
1999 :group 'org)
2001 (defcustom org-property-format "%-10s %s"
2002 "How property key/value pairs should be formatted by `indent-line'.
2003 When `indent-line' hits a property definition, it will format the line
2004 according to this format, mainly to make sure that the values are
2005 lined-up with respect to each other."
2006 :group 'org-properties
2007 :type 'string)
2009 (defcustom org-use-property-inheritance nil
2010 "Non-nil means, properties apply also for sublevels.
2012 This setting is chiefly used during property searches. Turning it on can
2013 cause significant overhead when doing a search, which is why it is not
2014 on by default.
2016 When nil, only the properties directly given in the current entry count.
2017 When t, every property is inherited. The value may also be a list of
2018 properties that should have inheritance, or a regular expression matching
2019 properties that should be inherited.
2021 However, note that some special properties use inheritance under special
2022 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
2023 and the properties ending in \"_ALL\" when they are used as descriptor
2024 for valid values of a property.
2026 Note for programmers:
2027 When querying an entry with `org-entry-get', you can control if inheritance
2028 should be used. By default, `org-entry-get' looks only at the local
2029 properties. You can request inheritance by setting the inherit argument
2030 to t (to force inheritance) or to `selective' (to respect the setting
2031 in this variable)."
2032 :group 'org-properties
2033 :type '(choice
2034 (const :tag "Not" nil)
2035 (const :tag "Always" t)
2036 (repeat :tag "Specific properties" (string :tag "Property"))
2037 (regexp :tag "Properties matched by regexp")))
2039 (defun org-property-inherit-p (property)
2040 "Check if PROPERTY is one that should be inherited."
2041 (cond
2042 ((eq org-use-property-inheritance t) t)
2043 ((not org-use-property-inheritance) nil)
2044 ((stringp org-use-property-inheritance)
2045 (string-match org-use-property-inheritance property))
2046 ((listp org-use-property-inheritance)
2047 (member property org-use-property-inheritance))
2048 (t (error "Invalid setting of `org-use-property-inheritance'"))))
2050 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
2051 "The default column format, if no other format has been defined.
2052 This variable can be set on the per-file basis by inserting a line
2054 #+COLUMNS: %25ITEM ....."
2055 :group 'org-properties
2056 :type 'string)
2058 (defcustom org-columns-ellipses ".."
2059 "The ellipses to be used when a field in column view is truncated.
2060 When this is the empty string, as many characters as possible are shown,
2061 but then there will be no visual indication that the field has been truncated.
2062 When this is a string of length N, the last N characters of a truncated
2063 field are replaced by this string. If the column is narrower than the
2064 ellipses string, only part of the ellipses string will be shown."
2065 :group 'org-properties
2066 :type 'string)
2068 (defcustom org-columns-modify-value-for-display-function nil
2069 "Function that modifies values for display in column view.
2070 For example, it can be used to cut out a certain part from a time stamp.
2071 The function must take 2 arguments:
2073 column-title The title of the column (*not* the property name)
2074 value The value that should be modified.
2076 The function should return the value that should be displayed,
2077 or nil if the normal value should be used."
2078 :group 'org-properties
2079 :type 'function)
2081 (defcustom org-effort-property "Effort"
2082 "The property that is being used to keep track of effort estimates.
2083 Effort estimates given in this property need to have the format H:MM."
2084 :group 'org-properties
2085 :group 'org-progress
2086 :type '(string :tag "Property"))
2088 (defconst org-global-properties-fixed
2089 '(("VISIBILITY_ALL" . "folded children content all"))
2090 "List of property/value pairs that can be inherited by any entry.
2091 These are fixed values, for the preset properties.")
2094 (defcustom org-global-properties nil
2095 "List of property/value pairs that can be inherited by any entry.
2096 You can set buffer-local values for the same purpose in the variable
2097 `org-file-properties' this by adding lines like
2099 #+PROPERTY: NAME VALUE"
2100 :group 'org-properties
2101 :type '(repeat
2102 (cons (string :tag "Property")
2103 (string :tag "Value"))))
2105 (defvar org-file-properties nil
2106 "List of property/value pairs that can be inherited by any entry.
2107 Valid for the current buffer.
2108 This variable is populated from #+PROPERTY lines.")
2109 (make-variable-buffer-local 'org-file-properties)
2111 (defgroup org-agenda nil
2112 "Options concerning agenda views in Org-mode."
2113 :tag "Org Agenda"
2114 :group 'org)
2116 (defvar org-category nil
2117 "Variable used by org files to set a category for agenda display.
2118 Such files should use a file variable to set it, for example
2120 # -*- mode: org; org-category: \"ELisp\"
2122 or contain a special line
2124 #+CATEGORY: ELisp
2126 If the file does not specify a category, then file's base name
2127 is used instead.")
2128 (make-variable-buffer-local 'org-category)
2129 (put 'org-category 'safe-local-variable '(lambda (x) (or (symbolp x) (stringp x))))
2131 (defcustom org-agenda-files nil
2132 "The files to be used for agenda display.
2133 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
2134 \\[org-remove-file]. You can also use customize to edit the list.
2136 If an entry is a directory, all files in that directory that are matched by
2137 `org-agenda-file-regexp' will be part of the file list.
2139 If the value of the variable is not a list but a single file name, then
2140 the list of agenda files is actually stored and maintained in that file, one
2141 agenda file per line."
2142 :group 'org-agenda
2143 :type '(choice
2144 (repeat :tag "List of files and directories" file)
2145 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
2147 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
2148 "Regular expression to match files for `org-agenda-files'.
2149 If any element in the list in that variable contains a directory instead
2150 of a normal file, all files in that directory that are matched by this
2151 regular expression will be included."
2152 :group 'org-agenda
2153 :type 'regexp)
2155 (defcustom org-agenda-text-search-extra-files nil
2156 "List of extra files to be searched by text search commands.
2157 These files will be search in addition to the agenda files by the
2158 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
2159 Note that these files will only be searched for text search commands,
2160 not for the other agenda views like todo lists, tag searches or the weekly
2161 agenda. This variable is intended to list notes and possibly archive files
2162 that should also be searched by these two commands.
2163 In fact, if the first element in the list is the symbol `agenda-archives',
2164 than all archive files of all agenda files will be added to the search
2165 scope."
2166 :group 'org-agenda
2167 :type '(set :greedy t
2168 (const :tag "Agenda Archives" agenda-archives)
2169 (repeat :inline t (file))))
2171 (if (fboundp 'defvaralias)
2172 (defvaralias 'org-agenda-multi-occur-extra-files
2173 'org-agenda-text-search-extra-files))
2175 (defcustom org-agenda-skip-unavailable-files nil
2176 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
2177 A nil value means to remove them, after a query, from the list."
2178 :group 'org-agenda
2179 :type 'boolean)
2181 (defcustom org-calendar-to-agenda-key [?c]
2182 "The key to be installed in `calendar-mode-map' for switching to the agenda.
2183 The command `org-calendar-goto-agenda' will be bound to this key. The
2184 default is the character `c' because then `c' can be used to switch back and
2185 forth between agenda and calendar."
2186 :group 'org-agenda
2187 :type 'sexp)
2189 (defcustom org-calendar-agenda-action-key [?k]
2190 "The key to be installed in `calendar-mode-map' for agenda-action.
2191 The command `org-agenda-action' will be bound to this key. The
2192 default is the character `k' because we use the same key in the agenda."
2193 :group 'org-agenda
2194 :type 'sexp)
2196 (eval-after-load "calendar"
2197 '(progn
2198 (org-defkey calendar-mode-map org-calendar-to-agenda-key
2199 'org-calendar-goto-agenda)
2200 (org-defkey calendar-mode-map org-calendar-agenda-action-key
2201 'org-agenda-action)))
2203 (defgroup org-latex nil
2204 "Options for embedding LaTeX code into Org-mode."
2205 :tag "Org LaTeX"
2206 :group 'org)
2208 (defcustom org-format-latex-options
2209 '(:foreground default :background default :scale 1.0
2210 :html-foreground "Black" :html-background "Transparent" :html-scale 1.0
2211 :matchers ("begin" "$" "$$" "\\(" "\\["))
2212 "Options for creating images from LaTeX fragments.
2213 This is a property list with the following properties:
2214 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
2215 `default' means use the foreground of the default face.
2216 :background the background color, or \"Transparent\".
2217 `default' means use the background of the default face.
2218 :scale a scaling factor for the size of the images.
2219 :html-foreground, :html-background, :html-scale
2220 the same numbers for HTML export.
2221 :matchers a list indicating which matchers should be used to
2222 find LaTeX fragments. Valid members of this list are:
2223 \"begin\" find environments
2224 \"$\" find math expressions surrounded by $...$
2225 \"$$\" find math expressions surrounded by $$....$$
2226 \"\\(\" find math expressions surrounded by \\(...\\)
2227 \"\\ [\" find math expressions surrounded by \\ [...\\]"
2228 :group 'org-latex
2229 :type 'plist)
2231 (defcustom org-format-latex-header "\\documentclass{article}
2232 \\usepackage{fullpage} % do not remove
2233 \\usepackage{amssymb}
2234 \\usepackage[usenames]{color}
2235 \\usepackage{amsmath}
2236 \\usepackage{latexsym}
2237 \\usepackage[mathscr]{eucal}
2238 \\pagestyle{empty} % do not remove"
2239 "The document header used for processing LaTeX fragments."
2240 :group 'org-latex
2241 :type 'string)
2244 (defgroup org-font-lock nil
2245 "Font-lock settings for highlighting in Org-mode."
2246 :tag "Org Font Lock"
2247 :group 'org)
2249 (defcustom org-level-color-stars-only nil
2250 "Non-nil means fontify only the stars in each headline.
2251 When nil, the entire headline is fontified.
2252 Changing it requires restart of `font-lock-mode' to become effective
2253 also in regions already fontified."
2254 :group 'org-font-lock
2255 :type 'boolean)
2257 (defcustom org-hide-leading-stars nil
2258 "Non-nil means, hide the first N-1 stars in a headline.
2259 This works by using the face `org-hide' for these stars. This
2260 face is white for a light background, and black for a dark
2261 background. You may have to customize the face `org-hide' to
2262 make this work.
2263 Changing it requires restart of `font-lock-mode' to become effective
2264 also in regions already fontified.
2265 You may also set this on a per-file basis by adding one of the following
2266 lines to the buffer:
2268 #+STARTUP: hidestars
2269 #+STARTUP: showstars"
2270 :group 'org-font-lock
2271 :type 'boolean)
2273 (defcustom org-fontify-done-headline nil
2274 "Non-nil means, change the face of a headline if it is marked DONE.
2275 Normally, only the TODO/DONE keyword indicates the state of a headline.
2276 When this is non-nil, the headline after the keyword is set to the
2277 `org-headline-done' as an additional indication."
2278 :group 'org-font-lock
2279 :type 'boolean)
2281 (defcustom org-fontify-emphasized-text t
2282 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
2283 Changing this variable requires a restart of Emacs to take effect."
2284 :group 'org-font-lock
2285 :type 'boolean)
2287 (defcustom org-highlight-latex-fragments-and-specials nil
2288 "Non-nil means, fontify what is treated specially by the exporters."
2289 :group 'org-font-lock
2290 :type 'boolean)
2292 (defcustom org-hide-emphasis-markers nil
2293 "Non-nil mean font-lock should hide the emphasis marker characters."
2294 :group 'org-font-lock
2295 :type 'boolean)
2297 (defvar org-emph-re nil
2298 "Regular expression for matching emphasis.")
2299 (defvar org-verbatim-re nil
2300 "Regular expression for matching verbatim text.")
2301 (defvar org-emphasis-regexp-components) ; defined just below
2302 (defvar org-emphasis-alist) ; defined just below
2303 (defun org-set-emph-re (var val)
2304 "Set variable and compute the emphasis regular expression."
2305 (set var val)
2306 (when (and (boundp 'org-emphasis-alist)
2307 (boundp 'org-emphasis-regexp-components)
2308 org-emphasis-alist org-emphasis-regexp-components)
2309 (let* ((e org-emphasis-regexp-components)
2310 (pre (car e))
2311 (post (nth 1 e))
2312 (border (nth 2 e))
2313 (body (nth 3 e))
2314 (nl (nth 4 e))
2315 (stacked (and nil (nth 5 e))) ; stacked is no longer allowed, forced to nil
2316 (body1 (concat body "*?"))
2317 (markers (mapconcat 'car org-emphasis-alist ""))
2318 (vmarkers (mapconcat
2319 (lambda (x) (if (eq (nth 4 x) 'verbatim) (car x) ""))
2320 org-emphasis-alist "")))
2321 ;; make sure special characters appear at the right position in the class
2322 (if (string-match "\\^" markers)
2323 (setq markers (concat (replace-match "" t t markers) "^")))
2324 (if (string-match "-" markers)
2325 (setq markers (concat (replace-match "" t t markers) "-")))
2326 (if (string-match "\\^" vmarkers)
2327 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
2328 (if (string-match "-" vmarkers)
2329 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
2330 (if (> nl 0)
2331 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
2332 (int-to-string nl) "\\}")))
2333 ;; Make the regexp
2334 (setq org-emph-re
2335 (concat "\\([" pre (if (and nil stacked) markers) "]\\|^\\)"
2336 "\\("
2337 "\\([" markers "]\\)"
2338 "\\("
2339 "[^" border "]\\|"
2340 "[^" border (if (and nil stacked) markers) "]"
2341 body1
2342 "[^" border (if (and nil stacked) markers) "]"
2343 "\\)"
2344 "\\3\\)"
2345 "\\([" post (if (and nil stacked) markers) "]\\|$\\)"))
2346 (setq org-verbatim-re
2347 (concat "\\([" pre "]\\|^\\)"
2348 "\\("
2349 "\\([" vmarkers "]\\)"
2350 "\\("
2351 "[^" border "]\\|"
2352 "[^" border "]"
2353 body1
2354 "[^" border "]"
2355 "\\)"
2356 "\\3\\)"
2357 "\\([" post "]\\|$\\)")))))
2359 (defcustom org-emphasis-regexp-components
2360 '(" \t('\"" "- \t.,:?;'\")" " \t\r\n,\"'" "." 1)
2361 "Components used to build the regular expression for emphasis.
2362 This is a list with 6 entries. Terminology: In an emphasis string
2363 like \" *strong word* \", we call the initial space PREMATCH, the final
2364 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
2365 and \"trong wor\" is the body. The different components in this variable
2366 specify what is allowed/forbidden in each part:
2368 pre Chars allowed as prematch. Beginning of line will be allowed too.
2369 post Chars allowed as postmatch. End of line will be allowed too.
2370 border The chars *forbidden* as border characters.
2371 body-regexp A regexp like \".\" to match a body character. Don't use
2372 non-shy groups here, and don't allow newline here.
2373 newline The maximum number of newlines allowed in an emphasis exp.
2375 Use customize to modify this, or restart Emacs after changing it."
2376 :group 'org-font-lock
2377 :set 'org-set-emph-re
2378 :type '(list
2379 (sexp :tag "Allowed chars in pre ")
2380 (sexp :tag "Allowed chars in post ")
2381 (sexp :tag "Forbidden chars in border ")
2382 (sexp :tag "Regexp for body ")
2383 (integer :tag "number of newlines allowed")
2384 (option (boolean :tag "Please ignore this button"))))
2386 (defcustom org-emphasis-alist
2387 `(("*" bold "<b>" "</b>")
2388 ("/" italic "<i>" "</i>")
2389 ("_" underline "<span style=\"text-decoration:underline;\">" "</span>")
2390 ("=" org-code "<code>" "</code>" verbatim)
2391 ("~" org-verbatim "<code>" "</code>" verbatim)
2392 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))
2393 "<del>" "</del>")
2395 "Special syntax for emphasized text.
2396 Text starting and ending with a special character will be emphasized, for
2397 example *bold*, _underlined_ and /italic/. This variable sets the marker
2398 characters, the face to be used by font-lock for highlighting in Org-mode
2399 Emacs buffers, and the HTML tags to be used for this.
2400 Use customize to modify this, or restart Emacs after changing it."
2401 :group 'org-font-lock
2402 :set 'org-set-emph-re
2403 :type '(repeat
2404 (list
2405 (string :tag "Marker character")
2406 (choice
2407 (face :tag "Font-lock-face")
2408 (plist :tag "Face property list"))
2409 (string :tag "HTML start tag")
2410 (string :tag "HTML end tag")
2411 (option (const verbatim)))))
2413 ;;; Miscellaneous options
2415 (defgroup org-completion nil
2416 "Completion in Org-mode."
2417 :tag "Org Completion"
2418 :group 'org)
2420 (defcustom org-completion-use-ido nil
2421 "Non-nil means, use ido completion wherever possible."
2422 :group 'org-completion
2423 :type 'boolean)
2425 (defcustom org-completion-fallback-command 'hippie-expand
2426 "The expansion command called by \\[org-complete] in normal context.
2427 Normal means, no org-mode-specific context."
2428 :group 'org-completion
2429 :type 'function)
2431 ;;; Functions and variables from ther packages
2432 ;; Declared here to avoid compiler warnings
2434 ;; XEmacs only
2435 (defvar outline-mode-menu-heading)
2436 (defvar outline-mode-menu-show)
2437 (defvar outline-mode-menu-hide)
2438 (defvar zmacs-regions) ; XEmacs regions
2440 ;; Emacs only
2441 (defvar mark-active)
2443 ;; Various packages
2444 (declare-function calendar-absolute-from-iso "cal-iso" (date))
2445 (declare-function calendar-forward-day "cal-move" (arg))
2446 (declare-function calendar-goto-date "cal-move" (date))
2447 (declare-function calendar-goto-today "cal-move" ())
2448 (declare-function calendar-iso-from-absolute "cal-iso" (date))
2449 (defvar calc-embedded-close-formula)
2450 (defvar calc-embedded-open-formula)
2451 (declare-function cdlatex-tab "ext:cdlatex" ())
2452 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
2453 (defvar font-lock-unfontify-region-function)
2454 (declare-function iswitchb-mode "iswitchb" (&optional arg))
2455 (declare-function iswitchb-read-buffer (prompt &optional default require-match start matches-set))
2456 (defvar iswitchb-temp-buflist)
2457 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
2458 (declare-function org-agenda-skip "org-agenda" ())
2459 (declare-function org-format-agenda-item "org-agenda"
2460 (extra txt &optional category tags dotime noprefix remove-re))
2461 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
2462 (declare-function org-agenda-change-all-lines "org-agenda"
2463 (newhead hdmarker &optional fixface just-this))
2464 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
2465 (declare-function org-agenda-maybe-redo "org-agenda" ())
2466 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
2467 (beg end))
2468 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
2469 (declare-function parse-time-string "parse-time" (string))
2470 (declare-function remember "remember" (&optional initial))
2471 (declare-function remember-buffer-desc "remember" ())
2472 (declare-function remember-finalize "remember" ())
2473 (defvar remember-save-after-remembering)
2474 (defvar remember-data-file)
2475 (defvar remember-register)
2476 (defvar remember-buffer)
2477 (defvar remember-handler-functions)
2478 (defvar remember-annotation-functions)
2479 (defvar texmathp-why)
2480 (declare-function speedbar-line-directory "speedbar" (&optional depth))
2481 (declare-function table--at-cell-p "table" (position &optional object at-column))
2483 (defvar w3m-current-url)
2484 (defvar w3m-current-title)
2486 (defvar org-latex-regexps)
2488 ;;; Autoload and prepare some org modules
2490 ;; Some table stuff that needs to be defined here, because it is used
2491 ;; by the functions setting up org-mode or checking for table context.
2493 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
2494 "Detects an org-type or table-type table.")
2495 (defconst org-table-line-regexp "^[ \t]*|"
2496 "Detects an org-type table line.")
2497 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
2498 "Detects an org-type table line.")
2499 (defconst org-table-hline-regexp "^[ \t]*|-"
2500 "Detects an org-type table hline.")
2501 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
2502 "Detects a table-type table hline.")
2503 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
2504 "Searching from within a table (any type) this finds the first line
2505 outside the table.")
2507 ;; Autoload the functions in org-table.el that are needed by functions here.
2509 (eval-and-compile
2510 (org-autoload "org-table"
2511 '(org-table-align org-table-begin org-table-blank-field
2512 org-table-convert org-table-convert-region org-table-copy-down
2513 org-table-copy-region org-table-create
2514 org-table-create-or-convert-from-region
2515 org-table-create-with-table.el org-table-current-dline
2516 org-table-cut-region org-table-delete-column org-table-edit-field
2517 org-table-edit-formulas org-table-end org-table-eval-formula
2518 org-table-export org-table-field-info
2519 org-table-get-stored-formulas org-table-goto-column
2520 org-table-hline-and-move org-table-import org-table-insert-column
2521 org-table-insert-hline org-table-insert-row org-table-iterate
2522 org-table-justify-field-maybe org-table-kill-row
2523 org-table-maybe-eval-formula org-table-maybe-recalculate-line
2524 org-table-move-column org-table-move-column-left
2525 org-table-move-column-right org-table-move-row
2526 org-table-move-row-down org-table-move-row-up
2527 org-table-next-field org-table-next-row org-table-paste-rectangle
2528 org-table-previous-field org-table-recalculate
2529 org-table-rotate-recalc-marks org-table-sort-lines org-table-sum
2530 org-table-toggle-coordinate-overlays
2531 org-table-toggle-formula-debugger org-table-wrap-region
2532 orgtbl-mode turn-on-orgtbl org-table-to-lisp)))
2534 (defun org-at-table-p (&optional table-type)
2535 "Return t if the cursor is inside an org-type table.
2536 If TABLE-TYPE is non-nil, also check for table.el-type tables."
2537 (if org-enable-table-editor
2538 (save-excursion
2539 (beginning-of-line 1)
2540 (looking-at (if table-type org-table-any-line-regexp
2541 org-table-line-regexp)))
2542 nil))
2543 (defsubst org-table-p () (org-at-table-p))
2545 (defun org-at-table.el-p ()
2546 "Return t if and only if we are at a table.el table."
2547 (and (org-at-table-p 'any)
2548 (save-excursion
2549 (goto-char (org-table-begin 'any))
2550 (looking-at org-table1-hline-regexp))))
2551 (defun org-table-recognize-table.el ()
2552 "If there is a table.el table nearby, recognize it and move into it."
2553 (if org-table-tab-recognizes-table.el
2554 (if (org-at-table.el-p)
2555 (progn
2556 (beginning-of-line 1)
2557 (if (looking-at org-table-dataline-regexp)
2559 (if (looking-at org-table1-hline-regexp)
2560 (progn
2561 (beginning-of-line 2)
2562 (if (looking-at org-table-any-border-regexp)
2563 (beginning-of-line -1)))))
2564 (if (re-search-forward "|" (org-table-end t) t)
2565 (progn
2566 (require 'table)
2567 (if (table--at-cell-p (point))
2569 (message "recognizing table.el table...")
2570 (table-recognize-table)
2571 (message "recognizing table.el table...done")))
2572 (error "This should not happen..."))
2574 nil)
2575 nil))
2577 (defun org-at-table-hline-p ()
2578 "Return t if the cursor is inside a hline in a table."
2579 (if org-enable-table-editor
2580 (save-excursion
2581 (beginning-of-line 1)
2582 (looking-at org-table-hline-regexp))
2583 nil))
2585 (defvar org-table-clean-did-remove-column nil)
2587 (defun org-table-map-tables (function)
2588 "Apply FUNCTION to the start of all tables in the buffer."
2589 (save-excursion
2590 (save-restriction
2591 (widen)
2592 (goto-char (point-min))
2593 (while (re-search-forward org-table-any-line-regexp nil t)
2594 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size)))
2595 (beginning-of-line 1)
2596 (if (looking-at org-table-line-regexp)
2597 (save-excursion (funcall function)))
2598 (re-search-forward org-table-any-border-regexp nil 1))))
2599 (message "Mapping tables: done"))
2601 ;; Declare and autoload functions from org-exp.el
2603 (declare-function org-default-export-plist "org-exp")
2604 (declare-function org-infile-export-plist "org-exp")
2605 (declare-function org-get-current-options "org-exp")
2606 (eval-and-compile
2607 (org-autoload "org-exp"
2608 '(org-export org-export-as-ascii org-export-visible
2609 org-insert-export-options-template org-export-as-html-and-open
2610 org-export-as-html-batch org-export-as-html-to-buffer
2611 org-replace-region-by-html org-export-region-as-html
2612 org-export-as-html org-export-icalendar-this-file
2613 org-export-icalendar-all-agenda-files
2614 org-table-clean-before-export
2615 org-export-icalendar-combine-agenda-files org-export-as-xoxo)))
2617 ;; Declare and autoload functions from org-agenda.el
2619 (eval-and-compile
2620 (org-autoload "org-agenda"
2621 '(org-agenda org-agenda-list org-search-view
2622 org-todo-list org-tags-view org-agenda-list-stuck-projects
2623 org-diary org-agenda-to-appt)))
2625 ;; Autoload org-remember
2627 (eval-and-compile
2628 (org-autoload "org-remember"
2629 '(org-remember-insinuate org-remember-annotation
2630 org-remember-apply-template org-remember org-remember-handler)))
2632 ;; Autoload org-clock.el
2635 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock"
2636 (beg end))
2637 (declare-function org-update-mode-line "org-clock" ())
2638 (defvar org-clock-start-time)
2639 (defvar org-clock-marker (make-marker)
2640 "Marker recording the last clock-in.")
2642 (eval-and-compile
2643 (org-autoload
2644 "org-clock"
2645 '(org-clock-in org-clock-out org-clock-cancel
2646 org-clock-goto org-clock-sum org-clock-display
2647 org-remove-clock-overlays org-clock-report
2648 org-clocktable-shift org-dblock-write:clocktable
2649 org-get-clocktable)))
2651 (defun org-clock-update-time-maybe ()
2652 "If this is a CLOCK line, update it and return t.
2653 Otherwise, return nil."
2654 (interactive)
2655 (save-excursion
2656 (beginning-of-line 1)
2657 (skip-chars-forward " \t")
2658 (when (looking-at org-clock-string)
2659 (let ((re (concat "[ \t]*" org-clock-string
2660 " *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
2661 "\\([ \t]*=>.*\\)?\\)?"))
2662 ts te h m s neg)
2663 (cond
2664 ((not (looking-at re))
2665 nil)
2666 ((not (match-end 2))
2667 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
2668 (> org-clock-marker (point))
2669 (<= org-clock-marker (point-at-eol)))
2670 ;; The clock is running here
2671 (setq org-clock-start-time
2672 (apply 'encode-time
2673 (org-parse-time-string (match-string 1))))
2674 (org-update-mode-line)))
2676 (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
2677 (end-of-line 1)
2678 (setq ts (match-string 1)
2679 te (match-string 3))
2680 (setq s (- (time-to-seconds
2681 (apply 'encode-time (org-parse-time-string te)))
2682 (time-to-seconds
2683 (apply 'encode-time (org-parse-time-string ts))))
2684 neg (< s 0)
2685 s (abs s)
2686 h (floor (/ s 3600))
2687 s (- s (* 3600 h))
2688 m (floor (/ s 60))
2689 s (- s (* 60 s)))
2690 (insert " => " (format (if neg "-%d:%02d" "%2d:%02d") h m))
2691 t))))))
2693 (defun org-check-running-clock ()
2694 "Check if the current buffer contains the running clock.
2695 If yes, offer to stop it and to save the buffer with the changes."
2696 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
2697 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
2698 (buffer-name))))
2699 (org-clock-out)
2700 (when (y-or-n-p "Save changed buffer?")
2701 (save-buffer))))
2703 (defun org-clocktable-try-shift (dir n)
2704 "Check if this line starts a clock table, if yes, shift the time block."
2705 (when (org-match-line "#\\+BEGIN: clocktable\\>")
2706 (org-clocktable-shift dir n)))
2708 ;; Autoload org-timer.el
2710 ;(declare-function org-timer "org-timer")
2712 (eval-and-compile
2713 (org-autoload
2714 "org-timer"
2715 '(org-timer-start org-timer org-timer-item
2716 org-timer-change-times-in-region)))
2719 ;; Autoload archiving code
2720 ;; The stuff that is needed for cycling and tags has to be defined here.
2722 (defgroup org-archive nil
2723 "Options concerning archiving in Org-mode."
2724 :tag "Org Archive"
2725 :group 'org-structure)
2727 (defcustom org-archive-location "%s_archive::"
2728 "The location where subtrees should be archived.
2730 The value of this variable is a string, consisting of two parts,
2731 separated by a double-colon. The first part is a filename and
2732 the second part is a headline.
2734 When the filename is omitted, archiving happens in the same file.
2735 %s in the filename will be replaced by the current file
2736 name (without the directory part). Archiving to a different file
2737 is useful to keep archived entries from contributing to the
2738 Org-mode Agenda.
2740 The archived entries will be filed as subtrees of the specified
2741 headline. When the headline is omitted, the subtrees are simply
2742 filed away at the end of the file, as top-level entries.
2744 Here are a few examples:
2745 \"%s_archive::\"
2746 If the current file is Projects.org, archive in file
2747 Projects.org_archive, as top-level trees. This is the default.
2749 \"::* Archived Tasks\"
2750 Archive in the current file, under the top-level headline
2751 \"* Archived Tasks\".
2753 \"~/org/archive.org::\"
2754 Archive in file ~/org/archive.org (absolute path), as top-level trees.
2756 \"basement::** Finished Tasks\"
2757 Archive in file ./basement (relative path), as level 3 trees
2758 below the level 2 heading \"** Finished Tasks\".
2760 You may set this option on a per-file basis by adding to the buffer a
2761 line like
2763 #+ARCHIVE: basement::** Finished Tasks
2765 You may also define it locally for a subtree by setting an ARCHIVE property
2766 in the entry. If such a property is found in an entry, or anywhere up
2767 the hierarchy, it will be used."
2768 :group 'org-archive
2769 :type 'string)
2771 (defcustom org-archive-tag "ARCHIVE"
2772 "The tag that marks a subtree as archived.
2773 An archived subtree does not open during visibility cycling, and does
2774 not contribute to the agenda listings.
2775 After changing this, font-lock must be restarted in the relevant buffers to
2776 get the proper fontification."
2777 :group 'org-archive
2778 :group 'org-keywords
2779 :type 'string)
2781 (defcustom org-agenda-skip-archived-trees t
2782 "Non-nil means, the agenda will skip any items located in archived trees.
2783 An archived tree is a tree marked with the tag ARCHIVE. The use of this
2784 variable is no longer recommended, you should leave it at the value t.
2785 Instead, use the key `v' to cycle the archives-mode in the agenda."
2786 :group 'org-archive
2787 :group 'org-agenda-skip
2788 :type 'boolean)
2790 (defcustom org-cycle-open-archived-trees nil
2791 "Non-nil means, `org-cycle' will open archived trees.
2792 An archived tree is a tree marked with the tag ARCHIVE.
2793 When nil, archived trees will stay folded. You can still open them with
2794 normal outline commands like `show-all', but not with the cycling commands."
2795 :group 'org-archive
2796 :group 'org-cycle
2797 :type 'boolean)
2799 (defcustom org-sparse-tree-open-archived-trees nil
2800 "Non-nil means sparse tree construction shows matches in archived trees.
2801 When nil, matches in these trees are highlighted, but the trees are kept in
2802 collapsed state."
2803 :group 'org-archive
2804 :group 'org-sparse-trees
2805 :type 'boolean)
2807 (defun org-cycle-hide-archived-subtrees (state)
2808 "Re-hide all archived subtrees after a visibility state change."
2809 (when (and (not org-cycle-open-archived-trees)
2810 (not (memq state '(overview folded))))
2811 (save-excursion
2812 (let* ((globalp (memq state '(contents all)))
2813 (beg (if globalp (point-min) (point)))
2814 (end (if globalp (point-max) (org-end-of-subtree t))))
2815 (org-hide-archived-subtrees beg end)
2816 (goto-char beg)
2817 (if (looking-at (concat ".*:" org-archive-tag ":"))
2818 (message "%s" (substitute-command-keys
2819 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
2821 (defun org-force-cycle-archived ()
2822 "Cycle subtree even if it is archived."
2823 (interactive)
2824 (setq this-command 'org-cycle)
2825 (let ((org-cycle-open-archived-trees t))
2826 (call-interactively 'org-cycle)))
2828 (defun org-hide-archived-subtrees (beg end)
2829 "Re-hide all archived subtrees after a visibility state change."
2830 (save-excursion
2831 (let* ((re (concat ":" org-archive-tag ":")))
2832 (goto-char beg)
2833 (while (re-search-forward re end t)
2834 (and (org-on-heading-p) (hide-subtree))
2835 (org-end-of-subtree t)))))
2837 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
2839 (eval-and-compile
2840 (org-autoload "org-archive"
2841 '(org-add-archive-files org-archive-subtree
2842 org-archive-to-archive-sibling org-toggle-archive-tag)))
2844 ;; Autoload Column View Code
2846 (declare-function org-columns-number-to-string "org-colview")
2847 (declare-function org-columns-get-format-and-top-level "org-colview")
2848 (declare-function org-columns-compute "org-colview")
2850 (org-autoload (if (featurep 'xemacs) "org-colview-xemacs" "org-colview")
2851 '(org-columns-number-to-string org-columns-get-format-and-top-level
2852 org-columns-compute org-agenda-columns org-columns-remove-overlays
2853 org-columns org-insert-columns-dblock org-dblock-write:columnview))
2855 ;; Autoload ID code
2857 (declare-function org-id-store-link "org-id")
2858 (org-autoload "org-id"
2859 '(org-id-get-create org-id-new org-id-copy org-id-get
2860 org-id-get-with-outline-path-completion
2861 org-id-get-with-outline-drilling
2862 org-id-goto org-id-find org-id-store-link))
2864 ;;; Variables for pre-computed regular expressions, all buffer local
2866 (defvar org-drawer-regexp nil
2867 "Matches first line of a hidden block.")
2868 (make-variable-buffer-local 'org-drawer-regexp)
2869 (defvar org-todo-regexp nil
2870 "Matches any of the TODO state keywords.")
2871 (make-variable-buffer-local 'org-todo-regexp)
2872 (defvar org-not-done-regexp nil
2873 "Matches any of the TODO state keywords except the last one.")
2874 (make-variable-buffer-local 'org-not-done-regexp)
2875 (defvar org-todo-line-regexp nil
2876 "Matches a headline and puts TODO state into group 2 if present.")
2877 (make-variable-buffer-local 'org-todo-line-regexp)
2878 (defvar org-complex-heading-regexp nil
2879 "Matches a headline and puts everything into groups:
2880 group 1: the stars
2881 group 2: The todo keyword, maybe
2882 group 3: Priority cookie
2883 group 4: True headline
2884 group 5: Tags")
2885 (make-variable-buffer-local 'org-complex-heading-regexp)
2886 (defvar org-todo-line-tags-regexp nil
2887 "Matches a headline and puts TODO state into group 2 if present.
2888 Also put tags into group 4 if tags are present.")
2889 (make-variable-buffer-local 'org-todo-line-tags-regexp)
2890 (defvar org-nl-done-regexp nil
2891 "Matches newline followed by a headline with the DONE keyword.")
2892 (make-variable-buffer-local 'org-nl-done-regexp)
2893 (defvar org-looking-at-done-regexp nil
2894 "Matches the DONE keyword a point.")
2895 (make-variable-buffer-local 'org-looking-at-done-regexp)
2896 (defvar org-ds-keyword-length 12
2897 "Maximum length of the Deadline and SCHEDULED keywords.")
2898 (make-variable-buffer-local 'org-ds-keyword-length)
2899 (defvar org-deadline-regexp nil
2900 "Matches the DEADLINE keyword.")
2901 (make-variable-buffer-local 'org-deadline-regexp)
2902 (defvar org-deadline-time-regexp nil
2903 "Matches the DEADLINE keyword together with a time stamp.")
2904 (make-variable-buffer-local 'org-deadline-time-regexp)
2905 (defvar org-deadline-line-regexp nil
2906 "Matches the DEADLINE keyword and the rest of the line.")
2907 (make-variable-buffer-local 'org-deadline-line-regexp)
2908 (defvar org-scheduled-regexp nil
2909 "Matches the SCHEDULED keyword.")
2910 (make-variable-buffer-local 'org-scheduled-regexp)
2911 (defvar org-scheduled-time-regexp nil
2912 "Matches the SCHEDULED keyword together with a time stamp.")
2913 (make-variable-buffer-local 'org-scheduled-time-regexp)
2914 (defvar org-closed-time-regexp nil
2915 "Matches the CLOSED keyword together with a time stamp.")
2916 (make-variable-buffer-local 'org-closed-time-regexp)
2918 (defvar org-keyword-time-regexp nil
2919 "Matches any of the 4 keywords, together with the time stamp.")
2920 (make-variable-buffer-local 'org-keyword-time-regexp)
2921 (defvar org-keyword-time-not-clock-regexp nil
2922 "Matches any of the 3 keywords, together with the time stamp.")
2923 (make-variable-buffer-local 'org-keyword-time-not-clock-regexp)
2924 (defvar org-maybe-keyword-time-regexp nil
2925 "Matches a timestamp, possibly preceeded by a keyword.")
2926 (make-variable-buffer-local 'org-maybe-keyword-time-regexp)
2927 (defvar org-planning-or-clock-line-re nil
2928 "Matches a line with planning or clock info.")
2929 (make-variable-buffer-local 'org-planning-or-clock-line-re)
2931 (defconst org-plain-time-of-day-regexp
2932 (concat
2933 "\\(\\<[012]?[0-9]"
2934 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
2935 "\\(--?"
2936 "\\(\\<[012]?[0-9]"
2937 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
2938 "\\)?")
2939 "Regular expression to match a plain time or time range.
2940 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
2941 groups carry important information:
2942 0 the full match
2943 1 the first time, range or not
2944 8 the second time, if it is a range.")
2946 (defconst org-plain-time-extension-regexp
2947 (concat
2948 "\\(\\<[012]?[0-9]"
2949 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
2950 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
2951 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
2952 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
2953 groups carry important information:
2954 0 the full match
2955 7 hours of duration
2956 9 minutes of duration")
2958 (defconst org-stamp-time-of-day-regexp
2959 (concat
2960 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
2961 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
2962 "\\(--?"
2963 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
2964 "Regular expression to match a timestamp time or time range.
2965 After a match, the following groups carry important information:
2966 0 the full match
2967 1 date plus weekday, for backreferencing to make sure both times on same day
2968 2 the first time, range or not
2969 4 the second time, if it is a range.")
2971 (defconst org-startup-options
2972 '(("fold" org-startup-folded t)
2973 ("overview" org-startup-folded t)
2974 ("nofold" org-startup-folded nil)
2975 ("showall" org-startup-folded nil)
2976 ("content" org-startup-folded content)
2977 ("hidestars" org-hide-leading-stars t)
2978 ("showstars" org-hide-leading-stars nil)
2979 ("odd" org-odd-levels-only t)
2980 ("oddeven" org-odd-levels-only nil)
2981 ("align" org-startup-align-all-tables t)
2982 ("noalign" org-startup-align-all-tables nil)
2983 ("customtime" org-display-custom-times t)
2984 ("logdone" org-log-done time)
2985 ("lognotedone" org-log-done note)
2986 ("nologdone" org-log-done nil)
2987 ("lognoteclock-out" org-log-note-clock-out t)
2988 ("nolognoteclock-out" org-log-note-clock-out nil)
2989 ("logrepeat" org-log-repeat state)
2990 ("lognoterepeat" org-log-repeat note)
2991 ("nologrepeat" org-log-repeat nil)
2992 ("constcgs" constants-unit-system cgs)
2993 ("constSI" constants-unit-system SI))
2994 "Variable associated with STARTUP options for org-mode.
2995 Each element is a list of three items: The startup options as written
2996 in the #+STARTUP line, the corresponding variable, and the value to
2997 set this variable to if the option is found. An optional forth element PUSH
2998 means to push this value onto the list in the variable.")
3000 (defun org-set-regexps-and-options ()
3001 "Precompute regular expressions for current buffer."
3002 (when (org-mode-p)
3003 (org-set-local 'org-todo-kwd-alist nil)
3004 (org-set-local 'org-todo-key-alist nil)
3005 (org-set-local 'org-todo-key-trigger nil)
3006 (org-set-local 'org-todo-keywords-1 nil)
3007 (org-set-local 'org-done-keywords nil)
3008 (org-set-local 'org-todo-heads nil)
3009 (org-set-local 'org-todo-sets nil)
3010 (org-set-local 'org-todo-log-states nil)
3011 (org-set-local 'org-file-properties nil)
3012 (org-set-local 'org-file-tags nil)
3013 (let ((re (org-make-options-regexp
3014 '("CATEGORY" "SEQ_TODO" "TYP_TODO" "TODO" "COLUMNS"
3015 "STARTUP" "ARCHIVE" "FILETAGS" "TAGS" "LINK" "PRIORITIES"
3016 "CONSTANTS" "PROPERTY" "DRAWERS" "SETUPFILE")))
3017 (splitre "[ \t]+")
3018 kwds kws0 kwsa key log value cat arch tags const links hw dws
3019 tail sep kws1 prio props ftags drawers
3020 ext-setup-or-nil setup-contents (start 0))
3021 (save-excursion
3022 (save-restriction
3023 (widen)
3024 (goto-char (point-min))
3025 (while (or (and ext-setup-or-nil
3026 (string-match re ext-setup-or-nil start)
3027 (setq start (match-end 0)))
3028 (and (setq ext-setup-or-nil nil start 0)
3029 (re-search-forward re nil t)))
3030 (setq key (upcase (match-string 1 ext-setup-or-nil))
3031 value (org-match-string-no-properties 2 ext-setup-or-nil))
3032 (cond
3033 ((equal key "CATEGORY")
3034 (if (string-match "[ \t]+$" value)
3035 (setq value (replace-match "" t t value)))
3036 (setq cat value))
3037 ((member key '("SEQ_TODO" "TODO"))
3038 (push (cons 'sequence (org-split-string value splitre)) kwds))
3039 ((equal key "TYP_TODO")
3040 (push (cons 'type (org-split-string value splitre)) kwds))
3041 ((equal key "TAGS")
3042 (setq tags (append tags (org-split-string value splitre))))
3043 ((equal key "COLUMNS")
3044 (org-set-local 'org-columns-default-format value))
3045 ((equal key "LINK")
3046 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value)
3047 (push (cons (match-string 1 value)
3048 (org-trim (match-string 2 value)))
3049 links)))
3050 ((equal key "PRIORITIES")
3051 (setq prio (org-split-string value " +")))
3052 ((equal key "PROPERTY")
3053 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
3054 (push (cons (match-string 1 value) (match-string 2 value))
3055 props)))
3056 ((equal key "FILETAGS")
3057 (when (string-match "\\S-" value)
3058 (setq ftags
3059 (append
3060 ftags
3061 (apply 'append
3062 (mapcar (lambda (x) (org-split-string x ":"))
3063 (org-split-string value)))))))
3064 ((equal key "DRAWERS")
3065 (setq drawers (org-split-string value splitre)))
3066 ((equal key "CONSTANTS")
3067 (setq const (append const (org-split-string value splitre))))
3068 ((equal key "STARTUP")
3069 (let ((opts (org-split-string value splitre))
3070 l var val)
3071 (while (setq l (pop opts))
3072 (when (setq l (assoc l org-startup-options))
3073 (setq var (nth 1 l) val (nth 2 l))
3074 (if (not (nth 3 l))
3075 (set (make-local-variable var) val)
3076 (if (not (listp (symbol-value var)))
3077 (set (make-local-variable var) nil))
3078 (set (make-local-variable var) (symbol-value var))
3079 (add-to-list var val))))))
3080 ((equal key "ARCHIVE")
3081 (string-match " *$" value)
3082 (setq arch (replace-match "" t t value))
3083 (remove-text-properties 0 (length arch)
3084 '(face t fontified t) arch))
3085 ((equal key "SETUPFILE")
3086 (setq setup-contents (org-file-contents
3087 (expand-file-name
3088 (org-remove-double-quotes value))
3089 'noerror))
3090 (if (not ext-setup-or-nil)
3091 (setq ext-setup-or-nil setup-contents start 0)
3092 (setq ext-setup-or-nil
3093 (concat (substring ext-setup-or-nil 0 start)
3094 "\n" setup-contents "\n"
3095 (substring ext-setup-or-nil start)))))
3096 ))))
3097 (when cat
3098 (org-set-local 'org-category (intern cat))
3099 (push (cons "CATEGORY" cat) props))
3100 (when prio
3101 (if (< (length prio) 3) (setq prio '("A" "C" "B")))
3102 (setq prio (mapcar 'string-to-char prio))
3103 (org-set-local 'org-highest-priority (nth 0 prio))
3104 (org-set-local 'org-lowest-priority (nth 1 prio))
3105 (org-set-local 'org-default-priority (nth 2 prio)))
3106 (and props (org-set-local 'org-file-properties (nreverse props)))
3107 (and ftags (org-set-local 'org-file-tags ftags))
3108 (and drawers (org-set-local 'org-drawers drawers))
3109 (and arch (org-set-local 'org-archive-location arch))
3110 (and links (setq org-link-abbrev-alist-local (nreverse links)))
3111 ;; Process the TODO keywords
3112 (unless kwds
3113 ;; Use the global values as if they had been given locally.
3114 (setq kwds (default-value 'org-todo-keywords))
3115 (if (stringp (car kwds))
3116 (setq kwds (list (cons org-todo-interpretation
3117 (default-value 'org-todo-keywords)))))
3118 (setq kwds (reverse kwds)))
3119 (setq kwds (nreverse kwds))
3120 (let (inter kws kw)
3121 (while (setq kws (pop kwds))
3122 (setq inter (pop kws) sep (member "|" kws)
3123 kws0 (delete "|" (copy-sequence kws))
3124 kwsa nil
3125 kws1 (mapcar
3126 (lambda (x)
3127 ;; 1 2
3128 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x)
3129 (progn
3130 (setq kw (match-string 1 x)
3131 key (and (match-end 2) (match-string 2 x))
3132 log (org-extract-log-state-settings x))
3133 (push (cons kw (and key (string-to-char key))) kwsa)
3134 (and log (push log org-todo-log-states))
3136 (error "Invalid TODO keyword %s" x)))
3137 kws0)
3138 kwsa (if kwsa (append '((:startgroup))
3139 (nreverse kwsa)
3140 '((:endgroup))))
3141 hw (car kws1)
3142 dws (if sep (org-remove-keyword-keys (cdr sep)) (last kws1))
3143 tail (list inter hw (car dws) (org-last dws)))
3144 (add-to-list 'org-todo-heads hw 'append)
3145 (push kws1 org-todo-sets)
3146 (setq org-done-keywords (append org-done-keywords dws nil))
3147 (setq org-todo-key-alist (append org-todo-key-alist kwsa))
3148 (mapc (lambda (x) (push (cons x tail) org-todo-kwd-alist)) kws1)
3149 (setq org-todo-keywords-1 (append org-todo-keywords-1 kws1 nil)))
3150 (setq org-todo-sets (nreverse org-todo-sets)
3151 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
3152 org-todo-key-trigger (delq nil (mapcar 'cdr org-todo-key-alist))
3153 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist)))
3154 ;; Process the constants
3155 (when const
3156 (let (e cst)
3157 (while (setq e (pop const))
3158 (if (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)" e)
3159 (push (cons (match-string 1 e) (match-string 2 e)) cst)))
3160 (setq org-table-formula-constants-local cst)))
3162 ;; Process the tags.
3163 (when tags
3164 (let (e tgs)
3165 (while (setq e (pop tags))
3166 (cond
3167 ((equal e "{") (push '(:startgroup) tgs))
3168 ((equal e "}") (push '(:endgroup) tgs))
3169 ((string-match (org-re "^\\([[:alnum:]_@]+\\)(\\(.\\))$") e)
3170 (push (cons (match-string 1 e)
3171 (string-to-char (match-string 2 e)))
3172 tgs))
3173 (t (push (list e) tgs))))
3174 (org-set-local 'org-tag-alist nil)
3175 (while (setq e (pop tgs))
3176 (or (and (stringp (car e))
3177 (assoc (car e) org-tag-alist))
3178 (push e org-tag-alist)))))
3180 ;; Compute the regular expressions and other local variables
3181 (if (not org-done-keywords)
3182 (setq org-done-keywords (list (org-last org-todo-keywords-1))))
3183 (setq org-ds-keyword-length (+ 2 (max (length org-deadline-string)
3184 (length org-scheduled-string)
3185 (length org-clock-string)
3186 (length org-closed-string)))
3187 org-drawer-regexp
3188 (concat "^[ \t]*:\\("
3189 (mapconcat 'regexp-quote org-drawers "\\|")
3190 "\\):[ \t]*$")
3191 org-not-done-keywords
3192 (org-delete-all org-done-keywords (copy-sequence org-todo-keywords-1))
3193 org-todo-regexp
3194 (concat "\\<\\(" (mapconcat 'regexp-quote org-todo-keywords-1
3195 "\\|") "\\)\\>")
3196 org-not-done-regexp
3197 (concat "\\<\\("
3198 (mapconcat 'regexp-quote org-not-done-keywords "\\|")
3199 "\\)\\>")
3200 org-todo-line-regexp
3201 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
3202 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
3203 "\\)\\>\\)?[ \t]*\\(.*\\)")
3204 org-complex-heading-regexp
3205 (concat "^\\(\\*+\\)\\(?:[ \t]+\\("
3206 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
3207 "\\)\\>\\)?\\(?:[ \t]*\\(\\[#.\\]\\)\\)?[ \t]*\\(.*?\\)"
3208 "\\(?:[ \t]+\\(:[[:alnum:]_@:]+:\\)\\)?[ \t]*$")
3209 org-nl-done-regexp
3210 (concat "\n\\*+[ \t]+"
3211 "\\(?:" (mapconcat 'regexp-quote org-done-keywords "\\|")
3212 "\\)" "\\>")
3213 org-todo-line-tags-regexp
3214 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
3215 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
3216 (org-re
3217 "\\)\\>\\)? *\\(.*?\\([ \t]:[[:alnum:]:_@]+:[ \t]*\\)?$\\)"))
3218 org-looking-at-done-regexp
3219 (concat "^" "\\(?:"
3220 (mapconcat 'regexp-quote org-done-keywords "\\|") "\\)"
3221 "\\>")
3222 org-deadline-regexp (concat "\\<" org-deadline-string)
3223 org-deadline-time-regexp
3224 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
3225 org-deadline-line-regexp
3226 (concat "\\<\\(" org-deadline-string "\\).*")
3227 org-scheduled-regexp
3228 (concat "\\<" org-scheduled-string)
3229 org-scheduled-time-regexp
3230 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
3231 org-closed-time-regexp
3232 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
3233 org-keyword-time-regexp
3234 (concat "\\<\\(" org-scheduled-string
3235 "\\|" org-deadline-string
3236 "\\|" org-closed-string
3237 "\\|" org-clock-string "\\)"
3238 " *[[<]\\([^]>]+\\)[]>]")
3239 org-keyword-time-not-clock-regexp
3240 (concat "\\<\\(" org-scheduled-string
3241 "\\|" org-deadline-string
3242 "\\|" org-closed-string
3243 "\\)"
3244 " *[[<]\\([^]>]+\\)[]>]")
3245 org-maybe-keyword-time-regexp
3246 (concat "\\(\\<\\(" org-scheduled-string
3247 "\\|" org-deadline-string
3248 "\\|" org-closed-string
3249 "\\|" org-clock-string "\\)\\)?"
3250 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^]\r\n>]*?[]>]\\|<%%([^\r\n>]*>\\)")
3251 org-planning-or-clock-line-re
3252 (concat "\\(?:^[ \t]*\\(" org-scheduled-string
3253 "\\|" org-deadline-string
3254 "\\|" org-closed-string "\\|" org-clock-string
3255 "\\)\\>\\)")
3257 (org-compute-latex-and-specials-regexp)
3258 (org-set-font-lock-defaults))))
3260 (defun org-file-contents (file &optional noerror)
3261 "Return the contents of FILE, as a string."
3262 (if (or (not file)
3263 (not (file-readable-p file)))
3264 (if noerror
3265 (progn
3266 (message "Cannot read file %s" file)
3267 (ding) (sit-for 2)
3269 (error "Cannot read file %s" file))
3270 (with-temp-buffer
3271 (insert-file-contents file)
3272 (buffer-string))))
3274 (defun org-extract-log-state-settings (x)
3275 "Extract the log state setting from a TODO keyword string.
3276 This will extract info from a string like \"WAIT(w@/!)\"."
3277 (let (kw key log1 log2)
3278 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
3279 (setq kw (match-string 1 x)
3280 key (and (match-end 2) (match-string 2 x))
3281 log1 (and (match-end 3) (match-string 3 x))
3282 log2 (and (match-end 4) (match-string 4 x)))
3283 (and (or log1 log2)
3284 (list kw
3285 (and log1 (if (equal log1 "!") 'time 'note))
3286 (and log2 (if (equal log2 "!") 'time 'note)))))))
3288 (defun org-remove-keyword-keys (list)
3289 "Remove a pair of parenthesis at the end of each string in LIST."
3290 (mapcar (lambda (x)
3291 (if (string-match "(.*)$" x)
3292 (substring x 0 (match-beginning 0))
3294 list))
3296 ;; FIXME: this could be done much better, using second characters etc.
3297 (defun org-assign-fast-keys (alist)
3298 "Assign fast keys to a keyword-key alist.
3299 Respect keys that are already there."
3300 (let (new e k c c1 c2 (char ?a))
3301 (while (setq e (pop alist))
3302 (cond
3303 ((equal e '(:startgroup)) (push e new))
3304 ((equal e '(:endgroup)) (push e new))
3306 (setq k (car e) c2 nil)
3307 (if (cdr e)
3308 (setq c (cdr e))
3309 ;; automatically assign a character.
3310 (setq c1 (string-to-char
3311 (downcase (substring
3312 k (if (= (string-to-char k) ?@) 1 0)))))
3313 (if (or (rassoc c1 new) (rassoc c1 alist))
3314 (while (or (rassoc char new) (rassoc char alist))
3315 (setq char (1+ char)))
3316 (setq c2 c1))
3317 (setq c (or c2 char)))
3318 (push (cons k c) new))))
3319 (nreverse new)))
3321 ;;; Some variables used in various places
3323 (defvar org-window-configuration nil
3324 "Used in various places to store a window configuration.")
3325 (defvar org-finish-function nil
3326 "Function to be called when `C-c C-c' is used.
3327 This is for getting out of special buffers like remember.")
3330 ;; FIXME: Occasionally check by commenting these, to make sure
3331 ;; no other functions uses these, forgetting to let-bind them.
3332 (defvar entry)
3333 (defvar state)
3334 (defvar last-state)
3335 (defvar date)
3336 (defvar description)
3338 ;; Defined somewhere in this file, but used before definition.
3339 (defvar org-html-entities)
3340 (defvar org-struct-menu)
3341 (defvar org-org-menu)
3342 (defvar org-tbl-menu)
3343 (defvar org-agenda-keymap)
3345 ;;;; Define the Org-mode
3347 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
3348 (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."))
3351 ;; We use a before-change function to check if a table might need
3352 ;; an update.
3353 (defvar org-table-may-need-update t
3354 "Indicates that a table might need an update.
3355 This variable is set by `org-before-change-function'.
3356 `org-table-align' sets it back to nil.")
3357 (defun org-before-change-function (beg end)
3358 "Every change indicates that a table might need an update."
3359 (setq org-table-may-need-update t))
3360 (defvar org-mode-map)
3361 (defvar org-mode-hook nil)
3362 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
3363 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
3364 (defvar org-table-buffer-is-an nil)
3365 (defconst org-outline-regexp "\\*+ ")
3367 ;;;###autoload
3368 (define-derived-mode org-mode outline-mode "Org"
3369 "Outline-based notes management and organizer, alias
3370 \"Carsten's outline-mode for keeping track of everything.\"
3372 Org-mode develops organizational tasks around a NOTES file which
3373 contains information about projects as plain text. Org-mode is
3374 implemented on top of outline-mode, which is ideal to keep the content
3375 of large files well structured. It supports ToDo items, deadlines and
3376 time stamps, which magically appear in the diary listing of the Emacs
3377 calendar. Tables are easily created with a built-in table editor.
3378 Plain text URL-like links connect to websites, emails (VM), Usenet
3379 messages (Gnus), BBDB entries, and any files related to the project.
3380 For printing and sharing of notes, an Org-mode file (or a part of it)
3381 can be exported as a structured ASCII or HTML file.
3383 The following commands are available:
3385 \\{org-mode-map}"
3387 ;; Get rid of Outline menus, they are not needed
3388 ;; Need to do this here because define-derived-mode sets up
3389 ;; the keymap so late. Still, it is a waste to call this each time
3390 ;; we switch another buffer into org-mode.
3391 (if (featurep 'xemacs)
3392 (when (boundp 'outline-mode-menu-heading)
3393 ;; Assume this is Greg's port, it used easymenu
3394 (easy-menu-remove outline-mode-menu-heading)
3395 (easy-menu-remove outline-mode-menu-show)
3396 (easy-menu-remove outline-mode-menu-hide))
3397 (define-key org-mode-map [menu-bar headings] 'undefined)
3398 (define-key org-mode-map [menu-bar hide] 'undefined)
3399 (define-key org-mode-map [menu-bar show] 'undefined))
3401 (org-load-modules-maybe)
3402 (easy-menu-add org-org-menu)
3403 (easy-menu-add org-tbl-menu)
3404 (org-install-agenda-files-menu)
3405 (if org-descriptive-links (org-add-to-invisibility-spec '(org-link)))
3406 (org-add-to-invisibility-spec '(org-cwidth))
3407 (when (featurep 'xemacs)
3408 (org-set-local 'line-move-ignore-invisible t))
3409 (org-set-local 'outline-regexp org-outline-regexp)
3410 (org-set-local 'outline-level 'org-outline-level)
3411 (when (and org-ellipsis
3412 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
3413 (fboundp 'make-glyph-code))
3414 (unless org-display-table
3415 (setq org-display-table (make-display-table)))
3416 (set-display-table-slot
3417 org-display-table 4
3418 (vconcat (mapcar
3419 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
3420 org-ellipsis)))
3421 (if (stringp org-ellipsis) org-ellipsis "..."))))
3422 (setq buffer-display-table org-display-table))
3423 (org-set-regexps-and-options)
3424 ;; Calc embedded
3425 (org-set-local 'calc-embedded-open-mode "# ")
3426 (modify-syntax-entry ?# "<")
3427 (modify-syntax-entry ?@ "w")
3428 (if org-startup-truncated (setq truncate-lines t))
3429 (org-set-local 'font-lock-unfontify-region-function
3430 'org-unfontify-region)
3431 ;; Activate before-change-function
3432 (org-set-local 'org-table-may-need-update t)
3433 (org-add-hook 'before-change-functions 'org-before-change-function nil
3434 'local)
3435 ;; Check for running clock before killing a buffer
3436 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
3437 ;; Paragraphs and auto-filling
3438 (org-set-autofill-regexps)
3439 (setq indent-line-function 'org-indent-line-function)
3440 (org-update-radio-target-regexp)
3442 ;; Comment characters
3443 ; (org-set-local 'comment-start "#") ;; FIXME: this breaks wrapping
3444 (org-set-local 'comment-padding " ")
3446 ;; Align options lines
3447 (org-set-local
3448 'align-mode-rules-list
3449 '((org-in-buffer-settings
3450 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
3451 (modes . '(org-mode)))))
3453 ;; Imenu
3454 (org-set-local 'imenu-create-index-function
3455 'org-imenu-get-tree)
3457 ;; Make isearch reveal context
3458 (if (or (featurep 'xemacs)
3459 (not (boundp 'outline-isearch-open-invisible-function)))
3460 ;; Emacs 21 and XEmacs make use of the hook
3461 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
3462 ;; Emacs 22 deals with this through a special variable
3463 (org-set-local 'outline-isearch-open-invisible-function
3464 (lambda (&rest ignore) (org-show-context 'isearch))))
3466 ;; If empty file that did not turn on org-mode automatically, make it to.
3467 (if (and org-insert-mode-line-in-empty-file
3468 (interactive-p)
3469 (= (point-min) (point-max)))
3470 (insert "# -*- mode: org -*-\n\n"))
3472 (unless org-inhibit-startup
3473 (when org-startup-align-all-tables
3474 (let ((bmp (buffer-modified-p)))
3475 (org-table-map-tables 'org-table-align)
3476 (set-buffer-modified-p bmp)))
3477 (org-set-startup-visibility)))
3479 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
3481 (defun org-current-time ()
3482 "Current time, possibly rounded to `org-time-stamp-rounding-minutes'."
3483 (if (> (car org-time-stamp-rounding-minutes) 1)
3484 (let ((r (car org-time-stamp-rounding-minutes))
3485 (time (decode-time)))
3486 (apply 'encode-time
3487 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
3488 (nthcdr 2 time))))
3489 (current-time)))
3491 ;;;; Font-Lock stuff, including the activators
3493 (defvar org-mouse-map (make-sparse-keymap))
3494 (org-defkey org-mouse-map
3495 (if (featurep 'xemacs) [button2] [mouse-2]) 'org-open-at-mouse)
3496 (org-defkey org-mouse-map
3497 (if (featurep 'xemacs) [button3] [mouse-3]) 'org-find-file-at-mouse)
3498 (when org-mouse-1-follows-link
3499 (org-defkey org-mouse-map [follow-link] 'mouse-face))
3500 (when org-tab-follows-link
3501 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
3502 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
3503 (when org-return-follows-link
3504 (org-defkey org-mouse-map [(return)] 'org-open-at-point)
3505 (org-defkey org-mouse-map "\C-m" 'org-open-at-point))
3507 (require 'font-lock)
3509 (defconst org-non-link-chars "]\t\n\r<>")
3510 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "news"
3511 "shell" "elisp"))
3512 (defvar org-link-types-re nil
3513 "Matches a link that has a url-like prefix like \"http:\"")
3514 (defvar org-link-re-with-space nil
3515 "Matches a link with spaces, optional angular brackets around it.")
3516 (defvar org-link-re-with-space2 nil
3517 "Matches a link with spaces, optional angular brackets around it.")
3518 (defvar org-link-re-with-space3 nil
3519 "Matches a link with spaces, only for internal part in bracket links.")
3520 (defvar org-angle-link-re nil
3521 "Matches link with angular brackets, spaces are allowed.")
3522 (defvar org-plain-link-re nil
3523 "Matches plain link, without spaces.")
3524 (defvar org-bracket-link-regexp nil
3525 "Matches a link in double brackets.")
3526 (defvar org-bracket-link-analytic-regexp nil
3527 "Regular expression used to analyze links.
3528 Here is what the match groups contain after a match:
3529 1: http:
3530 2: http
3531 3: path
3532 4: [desc]
3533 5: desc")
3534 (defvar org-any-link-re nil
3535 "Regular expression matching any link.")
3537 (defun org-make-link-regexps ()
3538 "Update the link regular expressions.
3539 This should be called after the variable `org-link-types' has changed."
3540 (setq org-link-types-re
3541 (concat
3542 "\\`\\(" (mapconcat 'identity org-link-types "\\|") "\\):")
3543 org-link-re-with-space
3544 (concat
3545 "<?\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
3546 "\\([^" org-non-link-chars " ]"
3547 "[^" org-non-link-chars "]*"
3548 "[^" org-non-link-chars " ]\\)>?")
3549 org-link-re-with-space2
3550 (concat
3551 "<?\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
3552 "\\([^" org-non-link-chars " ]"
3553 "[^\t\n\r]*"
3554 "[^" org-non-link-chars " ]\\)>?")
3555 org-link-re-with-space3
3556 (concat
3557 "<?\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
3558 "\\([^" org-non-link-chars " ]"
3559 "[^\t\n\r]*\\)")
3560 org-angle-link-re
3561 (concat
3562 "<\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
3563 "\\([^" org-non-link-chars " ]"
3564 "[^" org-non-link-chars "]*"
3565 "\\)>")
3566 org-plain-link-re
3567 (concat
3568 "\\<\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
3569 "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
3570 org-bracket-link-regexp
3571 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
3572 org-bracket-link-analytic-regexp
3573 (concat
3574 "\\[\\["
3575 "\\(\\(" (mapconcat 'identity org-link-types "\\|") "\\):\\)?"
3576 "\\([^]]+\\)"
3577 "\\]"
3578 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
3579 "\\]")
3580 org-any-link-re
3581 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
3582 org-angle-link-re "\\)\\|\\("
3583 org-plain-link-re "\\)")))
3585 (org-make-link-regexps)
3587 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^\r\n>]*?\\)>"
3588 "Regular expression for fast time stamp matching.")
3589 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^\r\n>]*?\\)[]>]"
3590 "Regular expression for fast time stamp matching.")
3591 (defconst org-ts-regexp0 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]-+0-9>\r\n ]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
3592 "Regular expression matching time strings for analysis.
3593 This one does not require the space after the date, so it can be used
3594 on a string that terminates immediately after the date.")
3595 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) +\\([^]-+0-9>\r\n ]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
3596 "Regular expression matching time strings for analysis.")
3597 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
3598 "Regular expression matching time stamps, with groups.")
3599 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
3600 "Regular expression matching time stamps (also [..]), with groups.")
3601 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
3602 "Regular expression matching a time stamp range.")
3603 (defconst org-tr-regexp-both
3604 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
3605 "Regular expression matching a time stamp range.")
3606 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
3607 org-ts-regexp "\\)?")
3608 "Regular expression matching a time stamp or time stamp range.")
3609 (defconst org-tsr-regexp-both (concat org-ts-regexp-both "\\(--?-?"
3610 org-ts-regexp-both "\\)?")
3611 "Regular expression matching a time stamp or time stamp range.
3612 The time stamps may be either active or inactive.")
3614 (defvar org-emph-face nil)
3616 (defun org-do-emphasis-faces (limit)
3617 "Run through the buffer and add overlays to links."
3618 (let (rtn)
3619 (while (and (not rtn) (re-search-forward org-emph-re limit t))
3620 (if (not (= (char-after (match-beginning 3))
3621 (char-after (match-beginning 4))))
3622 (progn
3623 (setq rtn t)
3624 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
3625 'face
3626 (nth 1 (assoc (match-string 3)
3627 org-emphasis-alist)))
3628 (add-text-properties (match-beginning 2) (match-end 2)
3629 '(font-lock-multiline t))
3630 (when org-hide-emphasis-markers
3631 (add-text-properties (match-end 4) (match-beginning 5)
3632 '(invisible org-link))
3633 (add-text-properties (match-beginning 3) (match-end 3)
3634 '(invisible org-link)))))
3635 (backward-char 1))
3636 rtn))
3638 (defun org-emphasize (&optional char)
3639 "Insert or change an emphasis, i.e. a font like bold or italic.
3640 If there is an active region, change that region to a new emphasis.
3641 If there is no region, just insert the marker characters and position
3642 the cursor between them.
3643 CHAR should be either the marker character, or the first character of the
3644 HTML tag associated with that emphasis. If CHAR is a space, the means
3645 to remove the emphasis of the selected region.
3646 If char is not given (for example in an interactive call) it
3647 will be prompted for."
3648 (interactive)
3649 (let ((eal org-emphasis-alist) e det
3650 (erc org-emphasis-regexp-components)
3651 (prompt "")
3652 (string "") beg end move tag c s)
3653 (if (org-region-active-p)
3654 (setq beg (region-beginning) end (region-end)
3655 string (buffer-substring beg end))
3656 (setq move t))
3658 (while (setq e (pop eal))
3659 (setq tag (car (org-split-string (nth 2 e) "[ <>/]+"))
3660 c (aref tag 0))
3661 (push (cons c (string-to-char (car e))) det)
3662 (setq prompt (concat prompt (format " [%s%c]%s" (car e) c
3663 (substring tag 1)))))
3664 (setq det (nreverse det))
3665 (unless char
3666 (message "%s" (concat "Emphasis marker or tag:" prompt))
3667 (setq char (read-char-exclusive)))
3668 (setq char (or (cdr (assoc char det)) char))
3669 (if (equal char ?\ )
3670 (setq s "" move nil)
3671 (unless (assoc (char-to-string char) org-emphasis-alist)
3672 (error "No such emphasis marker: \"%c\"" char))
3673 (setq s (char-to-string char)))
3674 (while (and (> (length string) 1)
3675 (equal (substring string 0 1) (substring string -1))
3676 (assoc (substring string 0 1) org-emphasis-alist))
3677 (setq string (substring string 1 -1)))
3678 (setq string (concat s string s))
3679 (if beg (delete-region beg end))
3680 (unless (or (bolp)
3681 (string-match (concat "[" (nth 0 erc) "\n]")
3682 (char-to-string (char-before (point)))))
3683 (insert " "))
3684 (unless (string-match (concat "[" (nth 1 erc) "\n]")
3685 (char-to-string (char-after (point))))
3686 (insert " ") (backward-char 1))
3687 (insert string)
3688 (and move (backward-char 1))))
3690 (defconst org-nonsticky-props
3691 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text))
3694 (defun org-activate-plain-links (limit)
3695 "Run through the buffer and add overlays to links."
3696 (catch 'exit
3697 (let (f)
3698 (while (re-search-forward org-plain-link-re limit t)
3699 (setq f (get-text-property (match-beginning 0) 'face))
3700 (if (or (eq f 'org-tag)
3701 (and (listp f) (memq 'org-tag f)))
3703 (add-text-properties (match-beginning 0) (match-end 0)
3704 (list 'mouse-face 'highlight
3705 'rear-nonsticky org-nonsticky-props
3706 'keymap org-mouse-map
3708 (throw 'exit t))))))
3710 (defun org-activate-code (limit)
3711 (if (re-search-forward "^[ \t]*\\(: .*\n?\\)" limit t)
3712 (progn
3713 (remove-text-properties (match-beginning 0) (match-end 0)
3714 '(display t invisible t intangible t))
3715 t)))
3717 (defun org-activate-angle-links (limit)
3718 "Run through the buffer and add overlays to links."
3719 (if (re-search-forward org-angle-link-re limit t)
3720 (progn
3721 (add-text-properties (match-beginning 0) (match-end 0)
3722 (list 'mouse-face 'highlight
3723 'rear-nonsticky org-nonsticky-props
3724 'keymap org-mouse-map
3726 t)))
3728 (defun org-activate-bracket-links (limit)
3729 "Run through the buffer and add overlays to bracketed links."
3730 (if (re-search-forward org-bracket-link-regexp limit t)
3731 (let* ((help (concat "LINK: "
3732 (org-match-string-no-properties 1)))
3733 ;; FIXME: above we should remove the escapes.
3734 ;; but that requires another match, protecting match data,
3735 ;; a lot of overhead for font-lock.
3736 (ip (org-maybe-intangible
3737 (list 'invisible 'org-link 'rear-nonsticky org-nonsticky-props
3738 'keymap org-mouse-map 'mouse-face 'highlight
3739 'font-lock-multiline t 'help-echo help)))
3740 (vp (list 'rear-nonsticky org-nonsticky-props
3741 'keymap org-mouse-map 'mouse-face 'highlight
3742 ' font-lock-multiline t 'help-echo help)))
3743 ;; We need to remove the invisible property here. Table narrowing
3744 ;; may have made some of this invisible.
3745 (remove-text-properties (match-beginning 0) (match-end 0)
3746 '(invisible nil))
3747 (if (match-end 3)
3748 (progn
3749 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
3750 (add-text-properties (match-beginning 3) (match-end 3) vp)
3751 (add-text-properties (match-end 3) (match-end 0) ip))
3752 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
3753 (add-text-properties (match-beginning 1) (match-end 1) vp)
3754 (add-text-properties (match-end 1) (match-end 0) ip))
3755 t)))
3757 (defun org-activate-dates (limit)
3758 "Run through the buffer and add overlays to dates."
3759 (if (re-search-forward org-tsr-regexp-both limit t)
3760 (progn
3761 (add-text-properties (match-beginning 0) (match-end 0)
3762 (list 'mouse-face 'highlight
3763 'rear-nonsticky org-nonsticky-props
3764 'keymap org-mouse-map))
3765 (when org-display-custom-times
3766 (if (match-end 3)
3767 (org-display-custom-time (match-beginning 3) (match-end 3)))
3768 (org-display-custom-time (match-beginning 1) (match-end 1)))
3769 t)))
3771 (defvar org-target-link-regexp nil
3772 "Regular expression matching radio targets in plain text.")
3773 (make-variable-buffer-local 'org-target-link-regexp)
3774 (defvar org-target-regexp "<<\\([^<>\n\r]+\\)>>"
3775 "Regular expression matching a link target.")
3776 (defvar org-radio-target-regexp "<<<\\([^<>\n\r]+\\)>>>"
3777 "Regular expression matching a radio target.")
3778 (defvar org-any-target-regexp "<<<?\\([^<>\n\r]+\\)>>>?" ; FIXME, not exact, would match <<<aaa>> as a radio target.
3779 "Regular expression matching any target.")
3781 (defun org-activate-target-links (limit)
3782 "Run through the buffer and add overlays to target matches."
3783 (when org-target-link-regexp
3784 (let ((case-fold-search t))
3785 (if (re-search-forward org-target-link-regexp limit t)
3786 (progn
3787 (add-text-properties (match-beginning 0) (match-end 0)
3788 (list 'mouse-face 'highlight
3789 'rear-nonsticky org-nonsticky-props
3790 'keymap org-mouse-map
3791 'help-echo "Radio target link"
3792 'org-linked-text t))
3793 t)))))
3795 (defun org-update-radio-target-regexp ()
3796 "Find all radio targets in this file and update the regular expression."
3797 (interactive)
3798 (when (memq 'radio org-activate-links)
3799 (setq org-target-link-regexp
3800 (org-make-target-link-regexp (org-all-targets 'radio)))
3801 (org-restart-font-lock)))
3803 (defun org-hide-wide-columns (limit)
3804 (let (s e)
3805 (setq s (text-property-any (point) (or limit (point-max))
3806 'org-cwidth t))
3807 (when s
3808 (setq e (next-single-property-change s 'org-cwidth))
3809 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
3810 (goto-char e)
3811 t)))
3813 (defvar org-latex-and-specials-regexp nil
3814 "Regular expression for highlighting export special stuff.")
3815 (defvar org-match-substring-regexp)
3816 (defvar org-match-substring-with-braces-regexp)
3817 (defvar org-export-html-special-string-regexps)
3819 (defun org-compute-latex-and-specials-regexp ()
3820 "Compute regular expression for stuff treated specially by exporters."
3821 (if (not org-highlight-latex-fragments-and-specials)
3822 (org-set-local 'org-latex-and-specials-regexp nil)
3823 (require 'org-exp)
3824 (let*
3825 ((matchers (plist-get org-format-latex-options :matchers))
3826 (latexs (delq nil (mapcar (lambda (x) (if (member (car x) matchers) x))
3827 org-latex-regexps)))
3828 (options (org-combine-plists (org-default-export-plist)
3829 (org-infile-export-plist)))
3830 (org-export-with-sub-superscripts (plist-get options :sub-superscript))
3831 (org-export-with-LaTeX-fragments (plist-get options :LaTeX-fragments))
3832 (org-export-with-TeX-macros (plist-get options :TeX-macros))
3833 (org-export-html-expand (plist-get options :expand-quoted-html))
3834 (org-export-with-special-strings (plist-get options :special-strings))
3835 (re-sub
3836 (cond
3837 ((equal org-export-with-sub-superscripts '{})
3838 (list org-match-substring-with-braces-regexp))
3839 (org-export-with-sub-superscripts
3840 (list org-match-substring-regexp))
3841 (t nil)))
3842 (re-latex
3843 (if org-export-with-LaTeX-fragments
3844 (mapcar (lambda (x) (nth 1 x)) latexs)))
3845 (re-macros
3846 (if org-export-with-TeX-macros
3847 (list (concat "\\\\"
3848 (regexp-opt
3849 (append (mapcar 'car org-html-entities)
3850 (if (boundp 'org-latex-entities)
3851 org-latex-entities nil))
3852 'words))) ; FIXME
3854 ;; (list "\\\\\\(?:[a-zA-Z]+\\)")))
3855 (re-special (if org-export-with-special-strings
3856 (mapcar (lambda (x) (car x))
3857 org-export-html-special-string-regexps)))
3858 (re-rest
3859 (delq nil
3860 (list
3861 (if org-export-html-expand "@<[^>\n]+>")
3862 ))))
3863 (org-set-local
3864 'org-latex-and-specials-regexp
3865 (mapconcat 'identity (append re-latex re-sub re-macros re-special
3866 re-rest) "\\|")))))
3868 (defun org-do-latex-and-special-faces (limit)
3869 "Run through the buffer and add overlays to links."
3870 (when org-latex-and-specials-regexp
3871 (let (rtn d)
3872 (while (and (not rtn) (re-search-forward org-latex-and-specials-regexp
3873 limit t))
3874 (if (not (memq (car-safe (get-text-property (1+ (match-beginning 0))
3875 'face))
3876 '(org-code org-verbatim underline)))
3877 (progn
3878 (setq rtn t
3879 d (cond ((member (char-after (1+ (match-beginning 0)))
3880 '(?_ ?^)) 1)
3881 (t 0)))
3882 (font-lock-prepend-text-property
3883 (+ d (match-beginning 0)) (match-end 0)
3884 'face 'org-latex-and-export-specials)
3885 (add-text-properties (+ d (match-beginning 0)) (match-end 0)
3886 '(font-lock-multiline t)))))
3887 rtn)))
3889 (defun org-restart-font-lock ()
3890 "Restart font-lock-mode, to force refontification."
3891 (when (and (boundp 'font-lock-mode) font-lock-mode)
3892 (font-lock-mode -1)
3893 (font-lock-mode 1)))
3895 (defun org-all-targets (&optional radio)
3896 "Return a list of all targets in this file.
3897 With optional argument RADIO, only find radio targets."
3898 (let ((re (if radio org-radio-target-regexp org-target-regexp))
3899 rtn)
3900 (save-excursion
3901 (goto-char (point-min))
3902 (while (re-search-forward re nil t)
3903 (add-to-list 'rtn (downcase (org-match-string-no-properties 1))))
3904 rtn)))
3906 (defun org-make-target-link-regexp (targets)
3907 "Make regular expression matching all strings in TARGETS.
3908 The regular expression finds the targets also if there is a line break
3909 between words."
3910 (and targets
3911 (concat
3912 "\\<\\("
3913 (mapconcat
3914 (lambda (x)
3915 (while (string-match " +" x)
3916 (setq x (replace-match "\\s-+" t t x)))
3918 targets
3919 "\\|")
3920 "\\)\\>")))
3922 (defun org-activate-tags (limit)
3923 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@:]+:\\)[ \r\n]") limit t)
3924 (progn
3925 (add-text-properties (match-beginning 1) (match-end 1)
3926 (list 'mouse-face 'highlight
3927 'rear-nonsticky org-nonsticky-props
3928 'keymap org-mouse-map))
3929 t)))
3931 (defun org-outline-level ()
3932 (save-excursion
3933 (looking-at outline-regexp)
3934 (if (match-beginning 1)
3935 (+ (org-get-string-indentation (match-string 1)) 1000)
3936 (1- (- (match-end 0) (match-beginning 0))))))
3938 (defvar org-font-lock-keywords nil)
3940 (defconst org-property-re (org-re "^[ \t]*\\(:\\([-[:alnum:]_]+\\):\\)[ \t]*\\([^ \t\r\n].*\\)")
3941 "Regular expression matching a property line.")
3943 (defvar org-font-lock-hook nil
3944 "Functions to be called for special font lock stuff.")
3946 (defun org-font-lock-hook (limit)
3947 (run-hook-with-args 'org-font-lock-hook limit))
3949 (defun org-set-font-lock-defaults ()
3950 (let* ((em org-fontify-emphasized-text)
3951 (lk org-activate-links)
3952 (org-font-lock-extra-keywords
3953 (list
3954 ;; Call the hook
3955 '(org-font-lock-hook)
3956 ;; Headlines
3957 '("^\\(\\**\\)\\(\\* \\)\\(.*\\)" (1 (org-get-level-face 1))
3958 (2 (org-get-level-face 2)) (3 (org-get-level-face 3)))
3959 ;; Table lines
3960 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
3961 (1 'org-table t))
3962 ;; Table internals
3963 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
3964 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
3965 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
3966 ;; Drawers
3967 (list org-drawer-regexp '(0 'org-special-keyword t))
3968 (list "^[ \t]*:END:" '(0 'org-special-keyword t))
3969 ;; Properties
3970 (list org-property-re
3971 '(1 'org-special-keyword t)
3972 '(3 'org-property-value t))
3973 (if org-format-transports-properties-p
3974 '("| *\\(<[0-9]+>\\) *" (1 'org-formula t)))
3975 ;; Links
3976 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
3977 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
3978 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
3979 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
3980 (if (memq 'radio lk) '(org-activate-target-links (0 'org-link t)))
3981 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
3982 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
3983 '(org-hide-wide-columns (0 nil append))
3984 ;; TODO lines
3985 (list (concat "^\\*+[ \t]+" org-todo-regexp)
3986 '(1 (org-get-todo-face 1) t))
3987 ;; DONE
3988 (if org-fontify-done-headline
3989 (list (concat "^[*]+ +\\<\\("
3990 (mapconcat 'regexp-quote org-done-keywords "\\|")
3991 "\\)\\(.*\\)")
3992 '(2 'org-headline-done t))
3993 nil)
3994 ;; Priorities
3995 (list (concat "\\[#[A-Z0-9]\\]") '(0 'org-special-keyword t))
3996 ;; Tags
3997 '(org-font-lock-add-tag-faces)
3998 ;; Special keywords
3999 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
4000 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
4001 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
4002 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
4003 ;; Emphasis
4004 (if em
4005 (if (featurep 'xemacs)
4006 '(org-do-emphasis-faces (0 nil append))
4007 '(org-do-emphasis-faces)))
4008 ;; Checkboxes
4009 '("^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +\\(\\[[- X]\\]\\)"
4010 2 'bold prepend)
4011 (if org-provide-checkbox-statistics
4012 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
4013 (0 (org-get-checkbox-statistics-face) t)))
4014 ;; Description list items
4015 '("^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +\\(.*? ::\\)"
4016 2 'bold prepend)
4017 (list (concat "^\\*+ \\(.*:" org-archive-tag ":.*\\)")
4018 '(1 'org-archived prepend))
4019 ;; Specials
4020 '(org-do-latex-and-special-faces)
4021 ;; Code
4022 '(org-activate-code (1 'org-code t))
4023 ;; COMMENT
4024 (list (concat "^\\*+[ \t]+\\<\\(" org-comment-string
4025 "\\|" org-quote-string "\\)\\>")
4026 '(1 'org-special-keyword t))
4027 '("^#.*" (0 'font-lock-comment-face t))
4029 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
4030 ;; Now set the full font-lock-keywords
4031 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
4032 (org-set-local 'font-lock-defaults
4033 '(org-font-lock-keywords t nil nil backward-paragraph))
4034 (kill-local-variable 'font-lock-keywords) nil))
4036 (defvar org-m nil)
4037 (defvar org-l nil)
4038 (defvar org-f nil)
4039 (defun org-get-level-face (n)
4040 "Get the right face for match N in font-lock matching of headlines."
4041 (setq org-l (- (match-end 2) (match-beginning 1) 1))
4042 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
4043 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
4044 (cond
4045 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
4046 ((eq n 2) org-f)
4047 (t (if org-level-color-stars-only nil org-f))))
4049 (defun org-get-todo-face (kwd)
4050 "Get the right face for a TODO keyword KWD.
4051 If KWD is a number, get the corresponding match group."
4052 (if (numberp kwd) (setq kwd (match-string kwd)))
4053 (or (cdr (assoc kwd org-todo-keyword-faces))
4054 (and (member kwd org-done-keywords) 'org-done)
4055 'org-todo))
4057 (defun org-font-lock-add-tag-faces (limit)
4058 "Add the special tag faces."
4059 (when (and org-tag-faces org-tags-special-faces-re)
4060 (while (re-search-forward org-tags-special-faces-re limit t)
4061 (add-text-properties (match-beginning 1) (match-end 1)
4062 (list 'face (org-get-tag-face 1)
4063 'font-lock-fontified t))
4064 (backward-char 1))))
4066 (defun org-get-tag-face (kwd)
4067 "Get the right face for a TODO keyword KWD.
4068 If KWD is a number, get the corresponding match group."
4069 (if (numberp kwd) (setq kwd (match-string kwd)))
4070 (or (cdr (assoc kwd org-tag-faces))
4071 'org-tag))
4073 (defun org-unfontify-region (beg end &optional maybe_loudly)
4074 "Remove fontification and activation overlays from links."
4075 (font-lock-default-unfontify-region beg end)
4076 (let* ((buffer-undo-list t)
4077 (inhibit-read-only t) (inhibit-point-motion-hooks t)
4078 (inhibit-modification-hooks t)
4079 deactivate-mark buffer-file-name buffer-file-truename)
4080 (remove-text-properties beg end
4081 '(mouse-face t keymap t org-linked-text t
4082 invisible t intangible t))))
4084 ;;;; Visibility cycling, including org-goto and indirect buffer
4086 ;;; Cycling
4088 (defvar org-cycle-global-status nil)
4089 (make-variable-buffer-local 'org-cycle-global-status)
4090 (defvar org-cycle-subtree-status nil)
4091 (make-variable-buffer-local 'org-cycle-subtree-status)
4093 ;;;###autoload
4094 (defun org-cycle (&optional arg)
4095 "Visibility cycling for Org-mode.
4097 - When this function is called with a prefix argument, rotate the entire
4098 buffer through 3 states (global cycling)
4099 1. OVERVIEW: Show only top-level headlines.
4100 2. CONTENTS: Show all headlines of all levels, but no body text.
4101 3. SHOW ALL: Show everything.
4102 When called with two C-u C-u prefixes, switch to the startup visibility,
4103 determined by the variable `org-startup-folded', and by any VISIBILITY
4104 properties in the buffer.
4105 When called with three C-u C-u C-u prefixed, show the entire buffer,
4106 including drawers.
4108 - When point is at the beginning of a headline, rotate the subtree started
4109 by this line through 3 different states (local cycling)
4110 1. FOLDED: Only the main headline is shown.
4111 2. CHILDREN: The main headline and the direct children are shown.
4112 From this state, you can move to one of the children
4113 and zoom in further.
4114 3. SUBTREE: Show the entire subtree, including body text.
4116 - When there is a numeric prefix, go up to a heading with level ARG, do
4117 a `show-subtree' and return to the previous cursor position. If ARG
4118 is negative, go up that many levels.
4120 - When point is not at the beginning of a headline, execute the global
4121 binding for TAB, which is re-indenting the line. See the option
4122 `org-cycle-emulate-tab' for details.
4124 - Special case: if point is at the beginning of the buffer and there is
4125 no headline in line 1, this function will act as if called with prefix arg.
4126 But only if also the variable `org-cycle-global-at-bob' is t."
4127 (interactive "P")
4128 (org-load-modules-maybe)
4129 (let* ((outline-regexp
4130 (if (and (org-mode-p) org-cycle-include-plain-lists)
4131 "\\(?:\\*+ \\|\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) \\)"
4132 outline-regexp))
4133 (bob-special (and org-cycle-global-at-bob (bobp)
4134 (not (looking-at outline-regexp))))
4135 (org-cycle-hook
4136 (if bob-special
4137 (delq 'org-optimize-window-after-visibility-change
4138 (copy-sequence org-cycle-hook))
4139 org-cycle-hook))
4140 (pos (point)))
4142 (if (or bob-special (equal arg '(4)))
4143 ;; special case: use global cycling
4144 (setq arg t))
4146 (cond
4148 ((equal arg '(16))
4149 (org-set-startup-visibility)
4150 (message "Startup visibility, plus VISIBILITY properties"))
4152 ((equal arg '(64))
4153 (show-all)
4154 (message "Entire buffer visible, including drawers"))
4156 ((org-at-table-p 'any)
4157 ;; Enter the table or move to the next field in the table
4158 (or (org-table-recognize-table.el)
4159 (progn
4160 (if arg (org-table-edit-field t)
4161 (org-table-justify-field-maybe)
4162 (call-interactively 'org-table-next-field)))))
4164 ((eq arg t) ;; Global cycling
4166 (cond
4167 ((and (eq last-command this-command)
4168 (eq org-cycle-global-status 'overview))
4169 ;; We just created the overview - now do table of contents
4170 ;; This can be slow in very large buffers, so indicate action
4171 (message "CONTENTS...")
4172 (org-content)
4173 (message "CONTENTS...done")
4174 (setq org-cycle-global-status 'contents)
4175 (run-hook-with-args 'org-cycle-hook 'contents))
4177 ((and (eq last-command this-command)
4178 (eq org-cycle-global-status 'contents))
4179 ;; We just showed the table of contents - now show everything
4180 (show-all)
4181 (message "SHOW ALL")
4182 (setq org-cycle-global-status 'all)
4183 (run-hook-with-args 'org-cycle-hook 'all))
4186 ;; Default action: go to overview
4187 (org-overview)
4188 (message "OVERVIEW")
4189 (setq org-cycle-global-status 'overview)
4190 (run-hook-with-args 'org-cycle-hook 'overview))))
4192 ((and org-drawers org-drawer-regexp
4193 (save-excursion
4194 (beginning-of-line 1)
4195 (looking-at org-drawer-regexp)))
4196 ;; Toggle block visibility
4197 (org-flag-drawer
4198 (not (get-char-property (match-end 0) 'invisible))))
4200 ((integerp arg)
4201 ;; Show-subtree, ARG levels up from here.
4202 (save-excursion
4203 (org-back-to-heading)
4204 (outline-up-heading (if (< arg 0) (- arg)
4205 (- (funcall outline-level) arg)))
4206 (org-show-subtree)))
4208 ((and (save-excursion (beginning-of-line 1) (looking-at outline-regexp))
4209 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
4210 ;; At a heading: rotate between three different views
4211 (org-back-to-heading)
4212 (let ((goal-column 0) eoh eol eos)
4213 ;; First, some boundaries
4214 (save-excursion
4215 (org-back-to-heading)
4216 (save-excursion
4217 (beginning-of-line 2)
4218 (while (and (not (eobp)) ;; this is like `next-line'
4219 (get-char-property (1- (point)) 'invisible))
4220 (beginning-of-line 2)) (setq eol (point)))
4221 (outline-end-of-heading) (setq eoh (point))
4222 (org-end-of-subtree t)
4223 (unless (eobp)
4224 (skip-chars-forward " \t\n")
4225 (beginning-of-line 1) ; in case this is an item
4227 (setq eos (1- (point))))
4228 ;; Find out what to do next and set `this-command'
4229 (cond
4230 ((= eos eoh)
4231 ;; Nothing is hidden behind this heading
4232 (message "EMPTY ENTRY")
4233 (setq org-cycle-subtree-status nil)
4234 (save-excursion
4235 (goto-char eos)
4236 (outline-next-heading)
4237 (if (org-invisible-p) (org-flag-heading nil))))
4238 ((or (>= eol eos)
4239 (not (string-match "\\S-" (buffer-substring eol eos))))
4240 ;; Entire subtree is hidden in one line: open it
4241 (org-show-entry)
4242 (show-children)
4243 (message "CHILDREN")
4244 (save-excursion
4245 (goto-char eos)
4246 (outline-next-heading)
4247 (if (org-invisible-p) (org-flag-heading nil)))
4248 (setq org-cycle-subtree-status 'children)
4249 (run-hook-with-args 'org-cycle-hook 'children))
4250 ((and (eq last-command this-command)
4251 (eq org-cycle-subtree-status 'children))
4252 ;; We just showed the children, now show everything.
4253 (org-show-subtree)
4254 (message "SUBTREE")
4255 (setq org-cycle-subtree-status 'subtree)
4256 (run-hook-with-args 'org-cycle-hook 'subtree))
4258 ;; Default action: hide the subtree.
4259 (hide-subtree)
4260 (message "FOLDED")
4261 (setq org-cycle-subtree-status 'folded)
4262 (run-hook-with-args 'org-cycle-hook 'folded)))))
4264 ;; TAB emulation and template completion
4265 (buffer-read-only (org-back-to-heading))
4267 ((org-try-structure-completion))
4269 ((org-try-cdlatex-tab))
4271 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
4272 (or (not (bolp))
4273 (not (looking-at outline-regexp))))
4274 (call-interactively (global-key-binding "\t")))
4276 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
4277 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
4278 (or (and (eq org-cycle-emulate-tab 'white)
4279 (= (match-end 0) (point-at-eol)))
4280 (and (eq org-cycle-emulate-tab 'whitestart)
4281 (>= (match-end 0) pos))))
4283 (eq org-cycle-emulate-tab t))
4284 (call-interactively (global-key-binding "\t")))
4286 (t (save-excursion
4287 (org-back-to-heading)
4288 (org-cycle))))))
4290 ;;;###autoload
4291 (defun org-global-cycle (&optional arg)
4292 "Cycle the global visibility. For details see `org-cycle'.
4293 With C-u prefix arg, switch to startup visibility.
4294 With a numeric prefix, show all headlines up to that level."
4295 (interactive "P")
4296 (let ((org-cycle-include-plain-lists
4297 (if (org-mode-p) org-cycle-include-plain-lists nil)))
4298 (cond
4299 ((integerp arg)
4300 (show-all)
4301 (hide-sublevels arg)
4302 (setq org-cycle-global-status 'contents))
4303 ((equal arg '(4))
4304 (org-set-startup-visibility)
4305 (message "Startup visibility, plus VISIBILITY properties."))
4307 (org-cycle '(4))))))
4309 (defun org-set-startup-visibility ()
4310 "Set the visibility required by startup options and properties."
4311 (cond
4312 ((eq org-startup-folded t)
4313 (org-cycle '(4)))
4314 ((eq org-startup-folded 'content)
4315 (let ((this-command 'org-cycle) (last-command 'org-cycle))
4316 (org-cycle '(4)) (org-cycle '(4)))))
4317 (org-set-visibility-according-to-property 'no-cleanup)
4318 (org-cycle-hide-archived-subtrees 'all)
4319 (org-cycle-hide-drawers 'all)
4320 (org-cycle-show-empty-lines 'all))
4322 (defun org-set-visibility-according-to-property (&optional no-cleanup)
4323 "Switch subtree visibilities according to :VISIBILITY: property."
4324 (interactive)
4325 (let (state)
4326 (save-excursion
4327 (goto-char (point-min))
4328 (while (re-search-forward
4329 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
4330 nil t)
4331 (setq state (match-string 1))
4332 (save-excursion
4333 (org-back-to-heading t)
4334 (hide-subtree)
4335 (org-reveal)
4336 (cond
4337 ((equal state '("fold" "folded"))
4338 (hide-subtree))
4339 ((equal state "children")
4340 (org-show-hidden-entry)
4341 (show-children))
4342 ((equal state "content")
4343 (save-excursion
4344 (save-restriction
4345 (org-narrow-to-subtree)
4346 (org-content))))
4347 ((member state '("all" "showall"))
4348 (show-subtree)))))
4349 (unless no-cleanup
4350 (org-cycle-hide-archived-subtrees 'all)
4351 (org-cycle-hide-drawers 'all)
4352 (org-cycle-show-empty-lines 'all)))))
4354 (defun org-overview ()
4355 "Switch to overview mode, showing only top-level headlines.
4356 Really, this shows all headlines with level equal or greater than the level
4357 of the first headline in the buffer. This is important, because if the
4358 first headline is not level one, then (hide-sublevels 1) gives confusing
4359 results."
4360 (interactive)
4361 (let ((level (save-excursion
4362 (goto-char (point-min))
4363 (if (re-search-forward (concat "^" outline-regexp) nil t)
4364 (progn
4365 (goto-char (match-beginning 0))
4366 (funcall outline-level))))))
4367 (and level (hide-sublevels level))))
4369 (defun org-content (&optional arg)
4370 "Show all headlines in the buffer, like a table of contents.
4371 With numerical argument N, show content up to level N."
4372 (interactive "P")
4373 (save-excursion
4374 ;; Visit all headings and show their offspring
4375 (and (integerp arg) (org-overview))
4376 (goto-char (point-max))
4377 (catch 'exit
4378 (while (and (progn (condition-case nil
4379 (outline-previous-visible-heading 1)
4380 (error (goto-char (point-min))))
4382 (looking-at outline-regexp))
4383 (if (integerp arg)
4384 (show-children (1- arg))
4385 (show-branches))
4386 (if (bobp) (throw 'exit nil))))))
4389 (defun org-optimize-window-after-visibility-change (state)
4390 "Adjust the window after a change in outline visibility.
4391 This function is the default value of the hook `org-cycle-hook'."
4392 (when (get-buffer-window (current-buffer))
4393 (cond
4394 ; ((eq state 'overview) (org-first-headline-recenter 1))
4395 ; ((eq state 'overview) (org-beginning-of-line))
4396 ((eq state 'content) nil)
4397 ((eq state 'all) nil)
4398 ((eq state 'folded) nil)
4399 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
4400 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
4402 (defun org-compact-display-after-subtree-move ()
4403 (let (beg end)
4404 (save-excursion
4405 (if (org-up-heading-safe)
4406 (progn
4407 (hide-subtree)
4408 (show-entry)
4409 (show-children)
4410 (org-cycle-show-empty-lines 'children)
4411 (org-cycle-hide-drawers 'children))
4412 (org-overview)))))
4414 (defun org-cycle-show-empty-lines (state)
4415 "Show empty lines above all visible headlines.
4416 The region to be covered depends on STATE when called through
4417 `org-cycle-hook'. Lisp program can use t for STATE to get the
4418 entire buffer covered. Note that an empty line is only shown if there
4419 are at least `org-cycle-separator-lines' empty lines before the headline."
4420 (when (> org-cycle-separator-lines 0)
4421 (save-excursion
4422 (let* ((n org-cycle-separator-lines)
4423 (re (cond
4424 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
4425 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
4426 (t (let ((ns (number-to-string (- n 2))))
4427 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
4428 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
4429 beg end)
4430 (cond
4431 ((memq state '(overview contents t))
4432 (setq beg (point-min) end (point-max)))
4433 ((memq state '(children folded))
4434 (setq beg (point) end (progn (org-end-of-subtree t t)
4435 (beginning-of-line 2)
4436 (point)))))
4437 (when beg
4438 (goto-char beg)
4439 (while (re-search-forward re end t)
4440 (if (not (get-char-property (match-end 1) 'invisible))
4441 (outline-flag-region
4442 (match-beginning 1) (match-end 1) nil)))))))
4443 ;; Never hide empty lines at the end of the file.
4444 (save-excursion
4445 (goto-char (point-max))
4446 (outline-previous-heading)
4447 (outline-end-of-heading)
4448 (if (and (looking-at "[ \t\n]+")
4449 (= (match-end 0) (point-max)))
4450 (outline-flag-region (point) (match-end 0) nil))))
4452 (defun org-show-empty-lines-in-parent ()
4453 "Move to the parent and re-show empty lines before visible headlines."
4454 (save-excursion
4455 (let ((context (if (org-up-heading-safe) 'children 'overview)))
4456 (org-cycle-show-empty-lines context))))
4458 (defun org-cycle-hide-drawers (state)
4459 "Re-hide all drawers after a visibility state change."
4460 (when (and (org-mode-p)
4461 (not (memq state '(overview folded))))
4462 (save-excursion
4463 (let* ((globalp (memq state '(contents all)))
4464 (beg (if globalp (point-min) (point)))
4465 (end (if globalp (point-max) (org-end-of-subtree t))))
4466 (goto-char beg)
4467 (while (re-search-forward org-drawer-regexp end t)
4468 (org-flag-drawer t))))))
4470 (defun org-flag-drawer (flag)
4471 (save-excursion
4472 (beginning-of-line 1)
4473 (when (looking-at "^[ \t]*:[a-zA-Z][a-zA-Z0-9]*:")
4474 (let ((b (match-end 0))
4475 (outline-regexp org-outline-regexp))
4476 (if (re-search-forward
4477 "^[ \t]*:END:"
4478 (save-excursion (outline-next-heading) (point)) t)
4479 (outline-flag-region b (point-at-eol) flag)
4480 (error ":END: line missing"))))))
4482 (defun org-subtree-end-visible-p ()
4483 "Is the end of the current subtree visible?"
4484 (pos-visible-in-window-p
4485 (save-excursion (org-end-of-subtree t) (point))))
4487 (defun org-first-headline-recenter (&optional N)
4488 "Move cursor to the first headline and recenter the headline.
4489 Optional argument N means, put the headline into the Nth line of the window."
4490 (goto-char (point-min))
4491 (when (re-search-forward (concat "^\\(" outline-regexp "\\)") nil t)
4492 (beginning-of-line)
4493 (recenter (prefix-numeric-value N))))
4495 ;;; Org-goto
4497 (defvar org-goto-window-configuration nil)
4498 (defvar org-goto-marker nil)
4499 (defvar org-goto-map
4500 (let ((map (make-sparse-keymap)))
4501 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command mouse-drag-region universal-argument org-occur)) cmd)
4502 (while (setq cmd (pop cmds))
4503 (substitute-key-definition cmd cmd map global-map)))
4504 (suppress-keymap map)
4505 (org-defkey map "\C-m" 'org-goto-ret)
4506 (org-defkey map [(return)] 'org-goto-ret)
4507 (org-defkey map [(left)] 'org-goto-left)
4508 (org-defkey map [(right)] 'org-goto-right)
4509 (org-defkey map [(control ?g)] 'org-goto-quit)
4510 (org-defkey map "\C-i" 'org-cycle)
4511 (org-defkey map [(tab)] 'org-cycle)
4512 (org-defkey map [(down)] 'outline-next-visible-heading)
4513 (org-defkey map [(up)] 'outline-previous-visible-heading)
4514 (if org-goto-auto-isearch
4515 (if (fboundp 'define-key-after)
4516 (define-key-after map [t] 'org-goto-local-auto-isearch)
4517 nil)
4518 (org-defkey map "q" 'org-goto-quit)
4519 (org-defkey map "n" 'outline-next-visible-heading)
4520 (org-defkey map "p" 'outline-previous-visible-heading)
4521 (org-defkey map "f" 'outline-forward-same-level)
4522 (org-defkey map "b" 'outline-backward-same-level)
4523 (org-defkey map "u" 'outline-up-heading))
4524 (org-defkey map "/" 'org-occur)
4525 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
4526 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
4527 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
4528 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
4529 (org-defkey map "\C-c\C-u" 'outline-up-heading)
4530 map))
4532 (defconst org-goto-help
4533 "Browse buffer copy, to find location or copy text. Just type for auto-isearch.
4534 RET=jump to location [Q]uit and return to previous location
4535 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
4537 (defvar org-goto-start-pos) ; dynamically scoped parameter
4539 ;; FIXME: Docstring doe not mention both interfaces
4540 (defun org-goto (&optional alternative-interface)
4541 "Look up a different location in the current file, keeping current visibility.
4543 When you want look-up or go to a different location in a document, the
4544 fastest way is often to fold the entire buffer and then dive into the tree.
4545 This method has the disadvantage, that the previous location will be folded,
4546 which may not be what you want.
4548 This command works around this by showing a copy of the current buffer
4549 in an indirect buffer, in overview mode. You can dive into the tree in
4550 that copy, use org-occur and incremental search to find a location.
4551 When pressing RET or `Q', the command returns to the original buffer in
4552 which the visibility is still unchanged. After RET is will also jump to
4553 the location selected in the indirect buffer and expose the
4554 the headline hierarchy above."
4555 (interactive "P")
4556 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
4557 (org-refile-use-outline-path t)
4558 (interface
4559 (if (not alternative-interface)
4560 org-goto-interface
4561 (if (eq org-goto-interface 'outline)
4562 'outline-path-completion
4563 'outline)))
4564 (org-goto-start-pos (point))
4565 (selected-point
4566 (if (eq interface 'outline)
4567 (car (org-get-location (current-buffer) org-goto-help))
4568 (nth 3 (org-refile-get-location "Goto: ")))))
4569 (if selected-point
4570 (progn
4571 (org-mark-ring-push org-goto-start-pos)
4572 (goto-char selected-point)
4573 (if (or (org-invisible-p) (org-invisible-p2))
4574 (org-show-context 'org-goto)))
4575 (message "Quit"))))
4577 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
4578 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
4579 (defvar org-goto-local-auto-isearch-map) ; defined below
4581 (defun org-get-location (buf help)
4582 "Let the user select a location in the Org-mode buffer BUF.
4583 This function uses a recursive edit. It returns the selected position
4584 or nil."
4585 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
4586 (isearch-hide-immediately nil)
4587 (isearch-search-fun-function
4588 (lambda () 'org-goto-local-search-headings))
4589 (org-goto-selected-point org-goto-exit-command))
4590 (save-excursion
4591 (save-window-excursion
4592 (delete-other-windows)
4593 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
4594 (switch-to-buffer
4595 (condition-case nil
4596 (make-indirect-buffer (current-buffer) "*org-goto*")
4597 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
4598 (with-output-to-temp-buffer "*Help*"
4599 (princ help))
4600 (org-fit-window-to-buffer (get-buffer-window "*Help*"))
4601 (setq buffer-read-only nil)
4602 (let ((org-startup-truncated t)
4603 (org-startup-folded nil)
4604 (org-startup-align-all-tables nil))
4605 (org-mode)
4606 (org-overview))
4607 (setq buffer-read-only t)
4608 (if (and (boundp 'org-goto-start-pos)
4609 (integer-or-marker-p org-goto-start-pos))
4610 (let ((org-show-hierarchy-above t)
4611 (org-show-siblings t)
4612 (org-show-following-heading t))
4613 (goto-char org-goto-start-pos)
4614 (and (org-invisible-p) (org-show-context)))
4615 (goto-char (point-min)))
4616 (org-beginning-of-line)
4617 (message "Select location and press RET")
4618 (use-local-map org-goto-map)
4619 (recursive-edit)
4621 (kill-buffer "*org-goto*")
4622 (cons org-goto-selected-point org-goto-exit-command)))
4624 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
4625 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
4626 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
4627 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char)
4629 (defun org-goto-local-search-headings (string bound noerror)
4630 "Search and make sure that any matches are in headlines."
4631 (catch 'return
4632 (while (if isearch-forward
4633 (search-forward string bound noerror)
4634 (search-backward string bound noerror))
4635 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
4636 (and (member :headline context)
4637 (not (member :tags context))))
4638 (throw 'return (point))))))
4640 (defun org-goto-local-auto-isearch ()
4641 "Start isearch."
4642 (interactive)
4643 (goto-char (point-min))
4644 (let ((keys (this-command-keys)))
4645 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
4646 (isearch-mode t)
4647 (isearch-process-search-char (string-to-char keys)))))
4649 (defun org-goto-ret (&optional arg)
4650 "Finish `org-goto' by going to the new location."
4651 (interactive "P")
4652 (setq org-goto-selected-point (point)
4653 org-goto-exit-command 'return)
4654 (throw 'exit nil))
4656 (defun org-goto-left ()
4657 "Finish `org-goto' by going to the new location."
4658 (interactive)
4659 (if (org-on-heading-p)
4660 (progn
4661 (beginning-of-line 1)
4662 (setq org-goto-selected-point (point)
4663 org-goto-exit-command 'left)
4664 (throw 'exit nil))
4665 (error "Not on a heading")))
4667 (defun org-goto-right ()
4668 "Finish `org-goto' by going to the new location."
4669 (interactive)
4670 (if (org-on-heading-p)
4671 (progn
4672 (setq org-goto-selected-point (point)
4673 org-goto-exit-command 'right)
4674 (throw 'exit nil))
4675 (error "Not on a heading")))
4677 (defun org-goto-quit ()
4678 "Finish `org-goto' without cursor motion."
4679 (interactive)
4680 (setq org-goto-selected-point nil)
4681 (setq org-goto-exit-command 'quit)
4682 (throw 'exit nil))
4684 ;;; Indirect buffer display of subtrees
4686 (defvar org-indirect-dedicated-frame nil
4687 "This is the frame being used for indirect tree display.")
4688 (defvar org-last-indirect-buffer nil)
4690 (defun org-tree-to-indirect-buffer (&optional arg)
4691 "Create indirect buffer and narrow it to current subtree.
4692 With numerical prefix ARG, go up to this level and then take that tree.
4693 If ARG is negative, go up that many levels.
4694 If `org-indirect-buffer-display' is not `new-frame', the command removes the
4695 indirect buffer previously made with this command, to avoid proliferation of
4696 indirect buffers. However, when you call the command with a `C-u' prefix, or
4697 when `org-indirect-buffer-display' is `new-frame', the last buffer
4698 is kept so that you can work with several indirect buffers at the same time.
4699 If `org-indirect-buffer-display' is `dedicated-frame', the C-u prefix also
4700 requests that a new frame be made for the new buffer, so that the dedicated
4701 frame is not changed."
4702 (interactive "P")
4703 (let ((cbuf (current-buffer))
4704 (cwin (selected-window))
4705 (pos (point))
4706 beg end level heading ibuf)
4707 (save-excursion
4708 (org-back-to-heading t)
4709 (when (numberp arg)
4710 (setq level (org-outline-level))
4711 (if (< arg 0) (setq arg (+ level arg)))
4712 (while (> (setq level (org-outline-level)) arg)
4713 (outline-up-heading 1 t)))
4714 (setq beg (point)
4715 heading (org-get-heading))
4716 (org-end-of-subtree t) (setq end (point)))
4717 (if (and (buffer-live-p org-last-indirect-buffer)
4718 (not (eq org-indirect-buffer-display 'new-frame))
4719 (not arg))
4720 (kill-buffer org-last-indirect-buffer))
4721 (setq ibuf (org-get-indirect-buffer cbuf)
4722 org-last-indirect-buffer ibuf)
4723 (cond
4724 ((or (eq org-indirect-buffer-display 'new-frame)
4725 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
4726 (select-frame (make-frame))
4727 (delete-other-windows)
4728 (switch-to-buffer ibuf)
4729 (org-set-frame-title heading))
4730 ((eq org-indirect-buffer-display 'dedicated-frame)
4731 (raise-frame
4732 (select-frame (or (and org-indirect-dedicated-frame
4733 (frame-live-p org-indirect-dedicated-frame)
4734 org-indirect-dedicated-frame)
4735 (setq org-indirect-dedicated-frame (make-frame)))))
4736 (delete-other-windows)
4737 (switch-to-buffer ibuf)
4738 (org-set-frame-title (concat "Indirect: " heading)))
4739 ((eq org-indirect-buffer-display 'current-window)
4740 (switch-to-buffer ibuf))
4741 ((eq org-indirect-buffer-display 'other-window)
4742 (pop-to-buffer ibuf))
4743 (t (error "Invalid value.")))
4744 (if (featurep 'xemacs)
4745 (save-excursion (org-mode) (turn-on-font-lock)))
4746 (narrow-to-region beg end)
4747 (show-all)
4748 (goto-char pos)
4749 (and (window-live-p cwin) (select-window cwin))))
4751 (defun org-get-indirect-buffer (&optional buffer)
4752 (setq buffer (or buffer (current-buffer)))
4753 (let ((n 1) (base (buffer-name buffer)) bname)
4754 (while (buffer-live-p
4755 (get-buffer (setq bname (concat base "-" (number-to-string n)))))
4756 (setq n (1+ n)))
4757 (condition-case nil
4758 (make-indirect-buffer buffer bname 'clone)
4759 (error (make-indirect-buffer buffer bname)))))
4761 (defun org-set-frame-title (title)
4762 "Set the title of the current frame to the string TITLE."
4763 ;; FIXME: how to name a single frame in XEmacs???
4764 (unless (featurep 'xemacs)
4765 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
4767 ;;;; Structure editing
4769 ;;; Inserting headlines
4771 (defun org-insert-heading (&optional force-heading)
4772 "Insert a new heading or item with same depth at point.
4773 If point is in a plain list and FORCE-HEADING is nil, create a new list item.
4774 If point is at the beginning of a headline, insert a sibling before the
4775 current headline. If point is not at the beginning, do not split the line,
4776 but create the new headline after the current line."
4777 (interactive "P")
4778 (if (= (buffer-size) 0)
4779 (insert "\n* ")
4780 (when (or force-heading (not (org-insert-item)))
4781 (let* ((head (save-excursion
4782 (condition-case nil
4783 (progn
4784 (org-back-to-heading)
4785 (match-string 0))
4786 (error "*"))))
4787 (blank (cdr (assq 'heading org-blank-before-new-entry)))
4788 pos hide-previous previous-pos)
4789 (cond
4790 ((and (org-on-heading-p) (bolp)
4791 (or (bobp)
4792 (save-excursion (backward-char 1) (not (org-invisible-p)))))
4793 ;; insert before the current line
4794 (open-line (if blank 2 1)))
4795 ((and (bolp)
4796 (or (bobp)
4797 (save-excursion
4798 (backward-char 1) (not (org-invisible-p)))))
4799 ;; insert right here
4800 nil)
4802 ;; somewhere in the line
4803 (save-excursion
4804 (setq previous-pos (point-at-bol))
4805 (end-of-line)
4806 (setq hide-previous (org-invisible-p)))
4807 (and org-insert-heading-respect-content (org-show-subtree))
4808 (let ((split
4809 (and (org-get-alist-option org-M-RET-may-split-line 'headline)
4810 (save-excursion
4811 (let ((p (point)))
4812 (goto-char (point-at-bol))
4813 (and (looking-at org-complex-heading-regexp)
4814 (> p (match-beginning 4)))))))
4815 tags pos)
4816 (cond
4817 (org-insert-heading-respect-content
4818 (org-end-of-subtree nil t)
4819 (or (bolp) (newline))
4820 (open-line 1))
4821 ((org-on-heading-p)
4822 (when hide-previous
4823 (show-children)
4824 (org-show-entry))
4825 (looking-at ".*?\\([ \t]+\\(:[[:alnum:]_@:]+:\\)\\)?[ \t]*$")
4826 (setq tags (and (match-end 2) (match-string 2)))
4827 (and (match-end 1)
4828 (delete-region (match-beginning 1) (match-end 1)))
4829 (setq pos (point-at-bol))
4830 (or split (end-of-line 1))
4831 (delete-horizontal-space)
4832 (newline (if blank 2 1))
4833 (when tags
4834 (save-excursion
4835 (goto-char pos)
4836 (end-of-line 1)
4837 (insert " " tags)
4838 (org-set-tags nil 'align))))
4840 (or split (end-of-line 1))
4841 (newline (if blank 2 1)))))))
4842 (insert head) (just-one-space)
4843 (setq pos (point))
4844 (end-of-line 1)
4845 (unless (= (point) pos) (just-one-space) (backward-delete-char 1))
4846 (when (and org-insert-heading-respect-content hide-previous)
4847 (save-excursion
4848 (goto-char previous-pos)
4849 (hide-subtree)))
4850 (run-hooks 'org-insert-heading-hook)))))
4852 (defun org-get-heading (&optional no-tags)
4853 "Return the heading of the current entry, without the stars."
4854 (save-excursion
4855 (org-back-to-heading t)
4856 (if (looking-at
4857 (if no-tags
4858 (org-re "\\*+[ \t]+\\([^\n\r]*?\\)\\([ \t]+:[[:alnum:]:_@]+:[ \t]*\\)?$")
4859 "\\*+[ \t]+\\([^\r\n]*\\)"))
4860 (match-string 1) "")))
4862 (defun org-insert-heading-after-current ()
4863 "Insert a new heading with same level as current, after current subtree."
4864 (interactive)
4865 (org-back-to-heading)
4866 (org-insert-heading)
4867 (org-move-subtree-down)
4868 (end-of-line 1))
4870 (defun org-insert-heading-respect-content ()
4871 (interactive)
4872 (let ((org-insert-heading-respect-content t))
4873 (org-insert-heading t)))
4875 (defun org-insert-todo-heading-respect-content (&optional force-state)
4876 (interactive "P")
4877 (let ((org-insert-heading-respect-content t))
4878 (org-insert-todo-heading force-state t)))
4880 (defun org-insert-todo-heading (arg &optional force-heading)
4881 "Insert a new heading with the same level and TODO state as current heading.
4882 If the heading has no TODO state, or if the state is DONE, use the first
4883 state (TODO by default). Also with prefix arg, force first state."
4884 (interactive "P")
4885 (when (or force-heading (not (org-insert-item 'checkbox)))
4886 (org-insert-heading force-heading)
4887 (save-excursion
4888 (org-back-to-heading)
4889 (outline-previous-heading)
4890 (looking-at org-todo-line-regexp))
4891 (if (or arg
4892 (not (match-beginning 2))
4893 (member (match-string 2) org-done-keywords))
4894 (insert (car org-todo-keywords-1) " ")
4895 (insert (match-string 2) " "))
4896 (when org-provide-todo-statistics
4897 (org-update-parent-todo-statistics))))
4899 (defun org-insert-subheading (arg)
4900 "Insert a new subheading and demote it.
4901 Works for outline headings and for plain lists alike."
4902 (interactive "P")
4903 (org-insert-heading arg)
4904 (cond
4905 ((org-on-heading-p) (org-do-demote))
4906 ((org-at-item-p) (org-indent-item 1))))
4908 (defun org-insert-todo-subheading (arg)
4909 "Insert a new subheading with TODO keyword or checkbox and demote it.
4910 Works for outline headings and for plain lists alike."
4911 (interactive "P")
4912 (org-insert-todo-heading arg)
4913 (cond
4914 ((org-on-heading-p) (org-do-demote))
4915 ((org-at-item-p) (org-indent-item 1))))
4917 ;;; Promotion and Demotion
4919 (defun org-promote-subtree ()
4920 "Promote the entire subtree.
4921 See also `org-promote'."
4922 (interactive)
4923 (save-excursion
4924 (org-map-tree 'org-promote))
4925 (org-fix-position-after-promote))
4927 (defun org-demote-subtree ()
4928 "Demote the entire subtree. See `org-demote'.
4929 See also `org-promote'."
4930 (interactive)
4931 (save-excursion
4932 (org-map-tree 'org-demote))
4933 (org-fix-position-after-promote))
4936 (defun org-do-promote ()
4937 "Promote the current heading higher up the tree.
4938 If the region is active in `transient-mark-mode', promote all headings
4939 in the region."
4940 (interactive)
4941 (save-excursion
4942 (if (org-region-active-p)
4943 (org-map-region 'org-promote (region-beginning) (region-end))
4944 (org-promote)))
4945 (org-fix-position-after-promote))
4947 (defun org-do-demote ()
4948 "Demote the current heading lower down the tree.
4949 If the region is active in `transient-mark-mode', demote all headings
4950 in the region."
4951 (interactive)
4952 (save-excursion
4953 (if (org-region-active-p)
4954 (org-map-region 'org-demote (region-beginning) (region-end))
4955 (org-demote)))
4956 (org-fix-position-after-promote))
4958 (defun org-fix-position-after-promote ()
4959 "Make sure that after pro/demotion cursor position is right."
4960 (let ((pos (point)))
4961 (when (save-excursion
4962 (beginning-of-line 1)
4963 (looking-at org-todo-line-regexp)
4964 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
4965 (cond ((eobp) (insert " "))
4966 ((eolp) (insert " "))
4967 ((equal (char-after) ?\ ) (forward-char 1))))))
4969 (defun org-reduced-level (l)
4970 (if org-odd-levels-only (1+ (floor (/ l 2))) l))
4972 (defun org-get-valid-level (level &optional change)
4973 "Rectify a level change under the influence of `org-odd-levels-only'
4974 LEVEL is a current level, CHANGE is by how much the level should be
4975 modified. Even if CHANGE is nil, LEVEL may be returned modified because
4976 even level numbers will become the next higher odd number."
4977 (if org-odd-levels-only
4978 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
4979 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
4980 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
4981 (max 1 (+ level change))))
4983 (if (boundp 'define-obsolete-function-alias)
4984 (if (or (featurep 'xemacs) (< emacs-major-version 23))
4985 (define-obsolete-function-alias 'org-get-legal-level
4986 'org-get-valid-level)
4987 (define-obsolete-function-alias 'org-get-legal-level
4988 'org-get-valid-level "23.1")))
4990 (defun org-promote ()
4991 "Promote the current heading higher up the tree.
4992 If the region is active in `transient-mark-mode', promote all headings
4993 in the region."
4994 (org-back-to-heading t)
4995 (let* ((level (save-match-data (funcall outline-level)))
4996 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
4997 (diff (abs (- level (length up-head) -1))))
4998 (if (= level 1) (error "Cannot promote to level 0. UNDO to recover if necessary"))
4999 (replace-match up-head nil t)
5000 ;; Fixup tag positioning
5001 (and org-auto-align-tags (org-set-tags nil t))
5002 (if org-adapt-indentation (org-fixup-indentation (- diff)))))
5004 (defun org-demote ()
5005 "Demote the current heading lower down the tree.
5006 If the region is active in `transient-mark-mode', demote all headings
5007 in the region."
5008 (org-back-to-heading t)
5009 (let* ((level (save-match-data (funcall outline-level)))
5010 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
5011 (diff (abs (- level (length down-head) -1))))
5012 (replace-match down-head nil t)
5013 ;; Fixup tag positioning
5014 (and org-auto-align-tags (org-set-tags nil t))
5015 (if org-adapt-indentation (org-fixup-indentation diff))))
5017 (defun org-map-tree (fun)
5018 "Call FUN for every heading underneath the current one."
5019 (org-back-to-heading)
5020 (let ((level (funcall outline-level)))
5021 (save-excursion
5022 (funcall fun)
5023 (while (and (progn
5024 (outline-next-heading)
5025 (> (funcall outline-level) level))
5026 (not (eobp)))
5027 (funcall fun)))))
5029 (defun org-map-region (fun beg end)
5030 "Call FUN for every heading between BEG and END."
5031 (let ((org-ignore-region t))
5032 (save-excursion
5033 (setq end (copy-marker end))
5034 (goto-char beg)
5035 (if (and (re-search-forward (concat "^" outline-regexp) nil t)
5036 (< (point) end))
5037 (funcall fun))
5038 (while (and (progn
5039 (outline-next-heading)
5040 (< (point) end))
5041 (not (eobp)))
5042 (funcall fun)))))
5044 (defun org-fixup-indentation (diff)
5045 "Change the indentation in the current entry by DIFF
5046 However, if any line in the current entry has no indentation, or if it
5047 would end up with no indentation after the change, nothing at all is done."
5048 (save-excursion
5049 (let ((end (save-excursion (outline-next-heading)
5050 (point-marker)))
5051 (prohibit (if (> diff 0)
5052 "^\\S-"
5053 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
5054 col)
5055 (unless (save-excursion (end-of-line 1)
5056 (re-search-forward prohibit end t))
5057 (while (and (< (point) end)
5058 (re-search-forward "^[ \t]+" end t))
5059 (goto-char (match-end 0))
5060 (setq col (current-column))
5061 (if (< diff 0) (replace-match ""))
5062 (org-indent-to-column (+ diff col))))
5063 (move-marker end nil))))
5065 (defun org-convert-to-odd-levels ()
5066 "Convert an org-mode file with all levels allowed to one with odd levels.
5067 This will leave level 1 alone, convert level 2 to level 3, level 3 to
5068 level 5 etc."
5069 (interactive)
5070 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
5071 (let ((org-odd-levels-only nil) n)
5072 (save-excursion
5073 (goto-char (point-min))
5074 (while (re-search-forward "^\\*\\*+ " nil t)
5075 (setq n (- (length (match-string 0)) 2))
5076 (while (>= (setq n (1- n)) 0)
5077 (org-demote))
5078 (end-of-line 1))))))
5081 (defun org-convert-to-oddeven-levels ()
5082 "Convert an org-mode file with only odd levels to one with odd and even levels.
5083 This promotes level 3 to level 2, level 5 to level 3 etc. If the file contains a
5084 section with an even level, conversion would destroy the structure of the file. An error
5085 is signaled in this case."
5086 (interactive)
5087 (goto-char (point-min))
5088 ;; First check if there are no even levels
5089 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
5090 (org-show-context t)
5091 (error "Not all levels are odd in this file. Conversion not possible."))
5092 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
5093 (let ((org-odd-levels-only nil) n)
5094 (save-excursion
5095 (goto-char (point-min))
5096 (while (re-search-forward "^\\*\\*+ " nil t)
5097 (setq n (/ (1- (length (match-string 0))) 2))
5098 (while (>= (setq n (1- n)) 0)
5099 (org-promote))
5100 (end-of-line 1))))))
5102 (defun org-tr-level (n)
5103 "Make N odd if required."
5104 (if org-odd-levels-only (1+ (/ n 2)) n))
5106 ;;; Vertical tree motion, cutting and pasting of subtrees
5108 (defun org-move-subtree-up (&optional arg)
5109 "Move the current subtree up past ARG headlines of the same level."
5110 (interactive "p")
5111 (org-move-subtree-down (- (prefix-numeric-value arg))))
5113 (defun org-move-subtree-down (&optional arg)
5114 "Move the current subtree down past ARG headlines of the same level."
5115 (interactive "p")
5116 (setq arg (prefix-numeric-value arg))
5117 (let ((movfunc (if (> arg 0) 'outline-get-next-sibling
5118 'outline-get-last-sibling))
5119 (ins-point (make-marker))
5120 (cnt (abs arg))
5121 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
5122 ;; Select the tree
5123 (org-back-to-heading)
5124 (setq beg0 (point))
5125 (save-excursion
5126 (setq ne-beg (org-back-over-empty-lines))
5127 (setq beg (point)))
5128 (save-match-data
5129 (save-excursion (outline-end-of-heading)
5130 (setq folded (org-invisible-p)))
5131 (outline-end-of-subtree))
5132 (outline-next-heading)
5133 (setq ne-end (org-back-over-empty-lines))
5134 (setq end (point))
5135 (goto-char beg0)
5136 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
5137 ;; include less whitespace
5138 (save-excursion
5139 (goto-char beg)
5140 (forward-line (- ne-beg ne-end))
5141 (setq beg (point))))
5142 ;; Find insertion point, with error handling
5143 (while (> cnt 0)
5144 (or (and (funcall movfunc) (looking-at outline-regexp))
5145 (progn (goto-char beg0)
5146 (error "Cannot move past superior level or buffer limit")))
5147 (setq cnt (1- cnt)))
5148 (if (> arg 0)
5149 ;; Moving forward - still need to move over subtree
5150 (progn (org-end-of-subtree t t)
5151 (save-excursion
5152 (org-back-over-empty-lines)
5153 (or (bolp) (newline)))))
5154 (setq ne-ins (org-back-over-empty-lines))
5155 (move-marker ins-point (point))
5156 (setq txt (buffer-substring beg end))
5157 (org-save-markers-in-region beg end)
5158 (delete-region beg end)
5159 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
5160 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
5161 (let ((bbb (point)))
5162 (insert-before-markers txt)
5163 (org-reinstall-markers-in-region bbb)
5164 (move-marker ins-point bbb))
5165 (or (bolp) (insert "\n"))
5166 (setq ins-end (point))
5167 (goto-char ins-point)
5168 (org-skip-whitespace)
5169 (when (and (< arg 0)
5170 (org-first-sibling-p)
5171 (> ne-ins ne-beg))
5172 ;; Move whitespace back to beginning
5173 (save-excursion
5174 (goto-char ins-end)
5175 (let ((kill-whole-line t))
5176 (kill-line (- ne-ins ne-beg)) (point)))
5177 (insert (make-string (- ne-ins ne-beg) ?\n)))
5178 (move-marker ins-point nil)
5179 (org-compact-display-after-subtree-move)
5180 (org-show-empty-lines-in-parent)
5181 (unless folded
5182 (org-show-entry)
5183 (show-children)
5184 (org-cycle-hide-drawers 'children))))
5186 (defvar org-subtree-clip ""
5187 "Clipboard for cut and paste of subtrees.
5188 This is actually only a copy of the kill, because we use the normal kill
5189 ring. We need it to check if the kill was created by `org-copy-subtree'.")
5191 (defvar org-subtree-clip-folded nil
5192 "Was the last copied subtree folded?
5193 This is used to fold the tree back after pasting.")
5195 (defun org-cut-subtree (&optional n)
5196 "Cut the current subtree into the clipboard.
5197 With prefix arg N, cut this many sequential subtrees.
5198 This is a short-hand for marking the subtree and then cutting it."
5199 (interactive "p")
5200 (org-copy-subtree n 'cut))
5202 (defun org-copy-subtree (&optional n cut force-store-markers)
5203 "Cut the current subtree into the clipboard.
5204 With prefix arg N, cut this many sequential subtrees.
5205 This is a short-hand for marking the subtree and then copying it.
5206 If CUT is non-nil, actually cut the subtree.
5207 If FORCE-STORE-MARKERS is non-nil, store the relative locations
5208 of some markers in the region, even if CUT is non-nil. This is
5209 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
5210 (interactive "p")
5211 (let (beg end folded (beg0 (point)))
5212 (if (interactive-p)
5213 (org-back-to-heading nil) ; take what looks like a subtree
5214 (org-back-to-heading t)) ; take what is really there
5215 (org-back-over-empty-lines)
5216 (setq beg (point))
5217 (skip-chars-forward " \t\r\n")
5218 (save-match-data
5219 (save-excursion (outline-end-of-heading)
5220 (setq folded (org-invisible-p)))
5221 (condition-case nil
5222 (outline-forward-same-level (1- n))
5223 (error nil))
5224 (org-end-of-subtree t t))
5225 (org-back-over-empty-lines)
5226 (setq end (point))
5227 (goto-char beg0)
5228 (when (> end beg)
5229 (setq org-subtree-clip-folded folded)
5230 (when (or cut force-store-markers)
5231 (org-save-markers-in-region beg end))
5232 (if cut (kill-region beg end) (copy-region-as-kill beg end))
5233 (setq org-subtree-clip (current-kill 0))
5234 (message "%s: Subtree(s) with %d characters"
5235 (if cut "Cut" "Copied")
5236 (length org-subtree-clip)))))
5238 (defun org-paste-subtree (&optional level tree for-yank)
5239 "Paste the clipboard as a subtree, with modification of headline level.
5240 The entire subtree is promoted or demoted in order to match a new headline
5241 level.
5243 If the cursor is at the beginning of a headline, the same level as
5244 that headline is used to paste the tree
5246 If not, the new level is derived from the *visible* headings
5247 before and after the insertion point, and taken to be the inferior headline
5248 level of the two. So if the previous visible heading is level 3 and the
5249 next is level 4 (or vice versa), level 4 will be used for insertion.
5250 This makes sure that the subtree remains an independent subtree and does
5251 not swallow low level entries.
5253 You can also force a different level, either by using a numeric prefix
5254 argument, or by inserting the heading marker by hand. For example, if the
5255 cursor is after \"*****\", then the tree will be shifted to level 5.
5257 If optional TREE is given, use this text instead of the kill ring.
5259 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
5260 move back over whitespace before inserting, and move point to the end of
5261 the inserted text when done."
5262 (interactive "P")
5263 (unless (org-kill-is-subtree-p tree)
5264 (error "%s"
5265 (substitute-command-keys
5266 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
5267 (let* ((visp (not (org-invisible-p)))
5268 (txt (or tree (and kill-ring (current-kill 0))))
5269 (^re (concat "^\\(" outline-regexp "\\)"))
5270 (re (concat "\\(" outline-regexp "\\)"))
5271 (^re_ (concat "\\(\\*+\\)[ \t]*"))
5273 (old-level (if (string-match ^re txt)
5274 (- (match-end 0) (match-beginning 0) 1)
5275 -1))
5276 (force-level (cond (level (prefix-numeric-value level))
5277 ((and (looking-at "[ \t]*$")
5278 (string-match
5279 ^re_ (buffer-substring
5280 (point-at-bol) (point))))
5281 (- (match-end 1) (match-beginning 1)))
5282 ((and (bolp)
5283 (looking-at org-outline-regexp))
5284 (- (match-end 0) (point) 1))
5285 (t nil)))
5286 (previous-level (save-excursion
5287 (condition-case nil
5288 (progn
5289 (outline-previous-visible-heading 1)
5290 (if (looking-at re)
5291 (- (match-end 0) (match-beginning 0) 1)
5293 (error 1))))
5294 (next-level (save-excursion
5295 (condition-case nil
5296 (progn
5297 (or (looking-at outline-regexp)
5298 (outline-next-visible-heading 1))
5299 (if (looking-at re)
5300 (- (match-end 0) (match-beginning 0) 1)
5302 (error 1))))
5303 (new-level (or force-level (max previous-level next-level)))
5304 (shift (if (or (= old-level -1)
5305 (= new-level -1)
5306 (= old-level new-level))
5308 (- new-level old-level)))
5309 (delta (if (> shift 0) -1 1))
5310 (func (if (> shift 0) 'org-demote 'org-promote))
5311 (org-odd-levels-only nil)
5312 beg end newend)
5313 ;; Remove the forced level indicator
5314 (if force-level
5315 (delete-region (point-at-bol) (point)))
5316 ;; Paste
5317 (beginning-of-line 1)
5318 (unless for-yank (org-back-over-empty-lines))
5319 (setq beg (point))
5320 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
5321 (insert-before-markers txt)
5322 (unless (string-match "\n\\'" txt) (insert "\n"))
5323 (setq newend (point))
5324 (org-reinstall-markers-in-region beg)
5325 (setq end (point))
5326 (goto-char beg)
5327 (skip-chars-forward " \t\n\r")
5328 (setq beg (point))
5329 (if (and (org-invisible-p) visp)
5330 (save-excursion (outline-show-heading)))
5331 ;; Shift if necessary
5332 (unless (= shift 0)
5333 (save-restriction
5334 (narrow-to-region beg end)
5335 (while (not (= shift 0))
5336 (org-map-region func (point-min) (point-max))
5337 (setq shift (+ delta shift)))
5338 (goto-char (point-min))
5339 (setq newend (point-max))))
5340 (when (or (interactive-p) for-yank)
5341 (message "Clipboard pasted as level %d subtree" new-level))
5342 (if (and (not for-yank) ; in this case, org-yank will decide about folding
5343 kill-ring
5344 (eq org-subtree-clip (current-kill 0))
5345 org-subtree-clip-folded)
5346 ;; The tree was folded before it was killed/copied
5347 (hide-subtree))
5348 (and for-yank (goto-char newend))))
5350 (defun org-kill-is-subtree-p (&optional txt)
5351 "Check if the current kill is an outline subtree, or a set of trees.
5352 Returns nil if kill does not start with a headline, or if the first
5353 headline level is not the largest headline level in the tree.
5354 So this will actually accept several entries of equal levels as well,
5355 which is OK for `org-paste-subtree'.
5356 If optional TXT is given, check this string instead of the current kill."
5357 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
5358 (start-level (and kill
5359 (string-match (concat "\\`\\([ \t\n\r]*?\n\\)?\\("
5360 org-outline-regexp "\\)")
5361 kill)
5362 (- (match-end 2) (match-beginning 2) 1)))
5363 (re (concat "^" org-outline-regexp))
5364 (start (1+ (or (match-beginning 2) -1))))
5365 (if (not start-level)
5366 (progn
5367 nil) ;; does not even start with a heading
5368 (catch 'exit
5369 (while (setq start (string-match re kill (1+ start)))
5370 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
5371 (throw 'exit nil)))
5372 t))))
5374 (defvar org-markers-to-move nil
5375 "Markers that should be moved with a cut-and-paste operation.
5376 Those markers are stored together with their positions relative to
5377 the start of the region.")
5379 (defun org-save-markers-in-region (beg end)
5380 "Check markers in region.
5381 If these markers are between BEG and END, record their position relative
5382 to BEG, so that after moving the block of text, we can put the markers back
5383 into place.
5384 This function gets called just before an entry or tree gets cut from the
5385 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
5386 called immediately, to move the markers with the entries."
5387 (setq org-markers-to-move nil)
5388 (when (featurep 'org-clock)
5389 (org-clock-save-markers-for-cut-and-paste beg end))
5390 (when (featurep 'org-agenda)
5391 (org-agenda-save-markers-for-cut-and-paste beg end)))
5393 (defun org-check-and-save-marker (marker beg end)
5394 "Check if MARKER is between BEG and END.
5395 If yes, remember the marker and the distance to BEG."
5396 (when (and (marker-buffer marker)
5397 (equal (marker-buffer marker) (current-buffer)))
5398 (if (and (>= marker beg) (< marker end))
5399 (push (cons marker (- marker beg)) org-markers-to-move))))
5401 (defun org-reinstall-markers-in-region (beg)
5402 "Move all remembered markers to their position relative to BEG."
5403 (mapc (lambda (x)
5404 (move-marker (car x) (+ beg (cdr x))))
5405 org-markers-to-move)
5406 (setq org-markers-to-move nil))
5408 (defun org-narrow-to-subtree ()
5409 "Narrow buffer to the current subtree."
5410 (interactive)
5411 (save-excursion
5412 (save-match-data
5413 (narrow-to-region
5414 (progn (org-back-to-heading) (point))
5415 (progn (org-end-of-subtree t) (point))))))
5418 ;;; Outline Sorting
5420 (defun org-sort (with-case)
5421 "Call `org-sort-entries-or-items' or `org-table-sort-lines'.
5422 Optional argument WITH-CASE means sort case-sensitively."
5423 (interactive "P")
5424 (if (org-at-table-p)
5425 (org-call-with-arg 'org-table-sort-lines with-case)
5426 (org-call-with-arg 'org-sort-entries-or-items with-case)))
5428 (defun org-sort-remove-invisible (s)
5429 (remove-text-properties 0 (length s) org-rm-props s)
5430 (while (string-match org-bracket-link-regexp s)
5431 (setq s (replace-match (if (match-end 2)
5432 (match-string 3 s)
5433 (match-string 1 s)) t t s)))
5436 (defvar org-priority-regexp) ; defined later in the file
5438 (defun org-sort-entries-or-items
5439 (&optional with-case sorting-type getkey-func compare-func property)
5440 "Sort entries on a certain level of an outline tree.
5441 If there is an active region, the entries in the region are sorted.
5442 Else, if the cursor is before the first entry, sort the top-level items.
5443 Else, the children of the entry at point are sorted.
5445 Sorting can be alphabetically, numerically, and by date/time as given by
5446 the first time stamp in the entry. The command prompts for the sorting
5447 type unless it has been given to the function through the SORTING-TYPE
5448 argument, which needs to a character, any of (?n ?N ?a ?A ?t ?T ?p ?P ?f ?F).
5449 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
5450 called with point at the beginning of the record. It must return either
5451 a string or a number that should serve as the sorting key for that record.
5453 Comparing entries ignores case by default. However, with an optional argument
5454 WITH-CASE, the sorting considers case as well."
5455 (interactive "P")
5456 (let ((case-func (if with-case 'identity 'downcase))
5457 start beg end stars re re2
5458 txt what tmp plain-list-p)
5459 ;; Find beginning and end of region to sort
5460 (cond
5461 ((org-region-active-p)
5462 ;; we will sort the region
5463 (setq end (region-end)
5464 what "region")
5465 (goto-char (region-beginning))
5466 (if (not (org-on-heading-p)) (outline-next-heading))
5467 (setq start (point)))
5468 ((org-at-item-p)
5469 ;; we will sort this plain list
5470 (org-beginning-of-item-list) (setq start (point))
5471 (org-end-of-item-list) (setq end (point))
5472 (goto-char start)
5473 (setq plain-list-p t
5474 what "plain list"))
5475 ((or (org-on-heading-p)
5476 (condition-case nil (progn (org-back-to-heading) t) (error nil)))
5477 ;; we will sort the children of the current headline
5478 (org-back-to-heading)
5479 (setq start (point)
5480 end (progn (org-end-of-subtree t t)
5481 (org-back-over-empty-lines)
5482 (point))
5483 what "children")
5484 (goto-char start)
5485 (show-subtree)
5486 (outline-next-heading))
5488 ;; we will sort the top-level entries in this file
5489 (goto-char (point-min))
5490 (or (org-on-heading-p) (outline-next-heading))
5491 (setq start (point) end (point-max) what "top-level")
5492 (goto-char start)
5493 (show-all)))
5495 (setq beg (point))
5496 (if (>= beg end) (error "Nothing to sort"))
5498 (unless plain-list-p
5499 (looking-at "\\(\\*+\\)")
5500 (setq stars (match-string 1)
5501 re (concat "^" (regexp-quote stars) " +")
5502 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[^*]")
5503 txt (buffer-substring beg end))
5504 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
5505 (if (and (not (equal stars "*")) (string-match re2 txt))
5506 (error "Region to sort contains a level above the first entry")))
5508 (unless sorting-type
5509 (message
5510 (if plain-list-p
5511 "Sort %s: [a]lpha [n]umeric [t]ime [f]unc A/N/T/F means reversed:"
5512 "Sort %s: [a]lpha [n]umeric [t]ime [p]riority p[r]operty todo[o]rder [f]unc A/N/T/P/O/F means reversed:")
5513 what)
5514 (setq sorting-type (read-char-exclusive))
5516 (and (= (downcase sorting-type) ?f)
5517 (setq getkey-func
5518 (org-ido-completing-read "Sort using function: "
5519 obarray 'fboundp t nil nil))
5520 (setq getkey-func (intern getkey-func)))
5522 (and (= (downcase sorting-type) ?r)
5523 (setq property
5524 (org-ido-completing-read "Property: "
5525 (mapcar 'list (org-buffer-property-keys t))
5526 nil t))))
5528 (message "Sorting entries...")
5530 (save-restriction
5531 (narrow-to-region start end)
5533 (let ((dcst (downcase sorting-type))
5534 (now (current-time)))
5535 (sort-subr
5536 (/= dcst sorting-type)
5537 ;; This function moves to the beginning character of the "record" to
5538 ;; be sorted.
5539 (if plain-list-p
5540 (lambda nil
5541 (if (org-at-item-p) t (goto-char (point-max))))
5542 (lambda nil
5543 (if (re-search-forward re nil t)
5544 (goto-char (match-beginning 0))
5545 (goto-char (point-max)))))
5546 ;; This function moves to the last character of the "record" being
5547 ;; sorted.
5548 (if plain-list-p
5549 'org-end-of-item
5550 (lambda nil
5551 (save-match-data
5552 (condition-case nil
5553 (outline-forward-same-level 1)
5554 (error
5555 (goto-char (point-max)))))))
5557 ;; This function returns the value that gets sorted against.
5558 (if plain-list-p
5559 (lambda nil
5560 (when (looking-at "[ \t]*[-+*0-9.)]+[ \t]+")
5561 (cond
5562 ((= dcst ?n)
5563 (string-to-number (buffer-substring (match-end 0)
5564 (point-at-eol))))
5565 ((= dcst ?a)
5566 (buffer-substring (match-end 0) (point-at-eol)))
5567 ((= dcst ?t)
5568 (if (re-search-forward org-ts-regexp
5569 (point-at-eol) t)
5570 (org-time-string-to-time (match-string 0))
5571 now))
5572 ((= dcst ?f)
5573 (if getkey-func
5574 (progn
5575 (setq tmp (funcall getkey-func))
5576 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
5577 tmp)
5578 (error "Invalid key function `%s'" getkey-func)))
5579 (t (error "Invalid sorting type `%c'" sorting-type)))))
5580 (lambda nil
5581 (cond
5582 ((= dcst ?n)
5583 (if (looking-at org-complex-heading-regexp)
5584 (string-to-number (match-string 4))
5585 nil))
5586 ((= dcst ?a)
5587 (if (looking-at org-complex-heading-regexp)
5588 (funcall case-func (match-string 4))
5589 nil))
5590 ((= dcst ?t)
5591 (if (re-search-forward org-ts-regexp
5592 (save-excursion
5593 (forward-line 2)
5594 (point)) t)
5595 (org-time-string-to-time (match-string 0))
5596 now))
5597 ((= dcst ?p)
5598 (if (re-search-forward org-priority-regexp (point-at-eol) t)
5599 (string-to-char (match-string 2))
5600 org-default-priority))
5601 ((= dcst ?r)
5602 (or (org-entry-get nil property) ""))
5603 ((= dcst ?o)
5604 (if (looking-at org-complex-heading-regexp)
5605 (- 9999 (length (member (match-string 2)
5606 org-todo-keywords-1)))))
5607 ((= dcst ?f)
5608 (if getkey-func
5609 (progn
5610 (setq tmp (funcall getkey-func))
5611 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
5612 tmp)
5613 (error "Invalid key function `%s'" getkey-func)))
5614 (t (error "Invalid sorting type `%c'" sorting-type)))))
5616 (cond
5617 ((= dcst ?a) 'string<)
5618 ((= dcst ?t) 'time-less-p)
5619 ((= dcst ?f) compare-func)
5620 (t nil)))))
5621 (message "Sorting entries...done")))
5623 (defun org-do-sort (table what &optional with-case sorting-type)
5624 "Sort TABLE of WHAT according to SORTING-TYPE.
5625 The user will be prompted for the SORTING-TYPE if the call to this
5626 function does not specify it. WHAT is only for the prompt, to indicate
5627 what is being sorted. The sorting key will be extracted from
5628 the car of the elements of the table.
5629 If WITH-CASE is non-nil, the sorting will be case-sensitive."
5630 (unless sorting-type
5631 (message
5632 "Sort %s: [a]lphabetic. [n]umeric. [t]ime. A/N/T means reversed:"
5633 what)
5634 (setq sorting-type (read-char-exclusive)))
5635 (let ((dcst (downcase sorting-type))
5636 extractfun comparefun)
5637 ;; Define the appropriate functions
5638 (cond
5639 ((= dcst ?n)
5640 (setq extractfun 'string-to-number
5641 comparefun (if (= dcst sorting-type) '< '>)))
5642 ((= dcst ?a)
5643 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
5644 (lambda(x) (downcase (org-sort-remove-invisible x))))
5645 comparefun (if (= dcst sorting-type)
5646 'string<
5647 (lambda (a b) (and (not (string< a b))
5648 (not (string= a b)))))))
5649 ((= dcst ?t)
5650 (setq extractfun
5651 (lambda (x)
5652 (if (string-match org-ts-regexp x)
5653 (time-to-seconds
5654 (org-time-string-to-time (match-string 0 x)))
5656 comparefun (if (= dcst sorting-type) '< '>)))
5657 (t (error "Invalid sorting type `%c'" sorting-type)))
5659 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
5660 table)
5661 (lambda (a b) (funcall comparefun (car a) (car b))))))
5663 ;;; Editing source examples
5665 (defvar org-exit-edit-mode-map (make-sparse-keymap))
5666 (define-key org-exit-edit-mode-map "\C-c'" 'org-edit-src-exit)
5667 (defvar org-edit-src-force-single-line nil)
5668 (defvar org-edit-src-from-org-mode nil)
5669 (defvar org-edit-src-picture nil)
5671 (define-minor-mode org-exit-edit-mode
5672 "Minor mode installing a single key binding, \"C-c '\" to exit special edit.")
5674 (defun org-edit-src-code ()
5675 "Edit the source code example at point.
5676 An indirect buffer is created, and that buffer is then narrowed to the
5677 example at point and switched to the correct language mode. When done,
5678 exit by killing the buffer with \\[org-edit-src-exit]."
5679 (interactive)
5680 (let ((line (org-current-line))
5681 (case-fold-search t)
5682 (msg (substitute-command-keys
5683 "Edit, then exit with C-c ' (C-c and single quote)"))
5684 (info (org-edit-src-find-region-and-lang))
5685 (org-mode-p (eq major-mode 'org-mode))
5686 beg end lang lang-f single)
5687 (if (not info)
5689 (setq beg (nth 0 info)
5690 end (nth 1 info)
5691 lang (nth 2 info)
5692 single (nth 3 info)
5693 lang-f (intern (concat lang "-mode")))
5694 (unless (functionp lang-f)
5695 (error "No such language mode: %s" lang-f))
5696 (goto-line line)
5697 (if (get-buffer "*Org Edit Src Example*")
5698 (kill-buffer "*Org Edit Src Example*"))
5699 (switch-to-buffer (make-indirect-buffer (current-buffer)
5700 "*Org Edit Src Example*"))
5701 (narrow-to-region beg end)
5702 (remove-text-properties beg end '(display nil invisible nil
5703 intangible nil))
5704 (let ((org-inhibit-startup t))
5705 (funcall lang-f))
5706 (set (make-local-variable 'org-edit-src-force-single-line) single)
5707 (set (make-local-variable 'org-edit-src-from-org-mode) org-mode-p)
5708 (when org-mode-p
5709 (goto-char (point-min))
5710 (while (re-search-forward "^," nil t)
5711 (replace-match "")))
5712 (goto-line line)
5713 (org-exit-edit-mode)
5714 (org-set-local 'header-line-format msg)
5715 (message "%s" msg)
5716 t)))
5718 (defun org-edit-fixed-width-region ()
5719 "Edit the fixed-width ascii drawing at point.
5720 This must be a region where each line starts with a colon followed by
5721 a space character.
5722 An indirect buffer is created, and that buffer is then narrowed to the
5723 example at point and switched to artist-mode. When done,
5724 exit by killing the buffer with \\[org-edit-src-exit]."
5725 (interactive)
5726 (let ((line (org-current-line))
5727 (case-fold-search t)
5728 (msg (substitute-command-keys
5729 "Edit, then exit with C-c ' (C-c and single quote)"))
5730 (org-mode-p (eq major-mode 'org-mode))
5731 beg end lang lang-f)
5732 (beginning-of-line 1)
5733 (if (looking-at "[ \t]*[^:\n \t]")
5735 (if (looking-at "[ \t]*\\(\n\\|\\'\\)")
5736 (setq beg (point) end beg)
5737 (save-excursion
5738 (if (re-search-backward "^[ \t]*[^:]" nil 'move)
5739 (setq beg (point-at-bol 2))
5740 (setq beg (point))))
5741 (save-excursion
5742 (if (re-search-forward "^[ \t]*[^:]" nil 'move)
5743 (setq end (1- (match-beginning 0)))
5744 (setq end (point))))
5745 (goto-line line))
5746 (if (get-buffer "*Org Edit Picture*")
5747 (kill-buffer "*Org Edit Picture*"))
5748 (switch-to-buffer (make-indirect-buffer (current-buffer)
5749 "*Org Edit Picture*"))
5750 (narrow-to-region beg end)
5751 (remove-text-properties beg end '(display nil invisible nil
5752 intangible nil))
5753 (when (fboundp 'font-lock-unfontify-region)
5754 (font-lock-unfontify-region (point-min) (point-max)))
5755 (cond
5756 ((eq org-edit-fixed-width-region-mode 'artist-mode)
5757 (fundamental-mode)
5758 (artist-mode 1))
5759 (t (funcall org-edit-fixed-width-region-mode)))
5760 (set (make-local-variable 'org-edit-src-force-single-line) nil)
5761 (set (make-local-variable 'org-edit-src-from-org-mode) org-mode-p)
5762 (set (make-local-variable 'org-edit-src-picture) t)
5763 (goto-char (point-min))
5764 (while (re-search-forward "^[ \t]*: ?" nil t)
5765 (replace-match ""))
5766 (goto-line line)
5767 (org-exit-edit-mode)
5768 (org-set-local 'header-line-format msg)
5769 (message "%s" msg)
5770 t)))
5773 (defun org-edit-src-find-region-and-lang ()
5774 "Find the region and language for a local edit.
5775 Return a list with beginning and end of the region, a string representing
5776 the language, a switch telling of the content should be in a single line."
5777 (let ((re-list
5778 (append
5779 org-edit-src-region-extra
5781 ("<src\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</src>" lang)
5782 ("<literal\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</literal>" style)
5783 ("<example>[ \t]*\n?" "\n?[ \t]*</example>" "fundamental")
5784 ("<lisp>[ \t]*\n?" "\n?[ \t]*</lisp>" "emacs-lisp")
5785 ("<perl>[ \t]*\n?" "\n?[ \t]*</perl>" "perl")
5786 ("<python>[ \t]*\n?" "\n?[ \t]*</python>" "python")
5787 ("<ruby>[ \t]*\n?" "\n?[ \t]*</ruby>" "ruby")
5788 ("^#\\+begin_src\\( \\([^ \t\n]+\\)\\)?.*\n" "\n#\\+end_src" 2)
5789 ("^#\\+begin_example.*\n" "\n#\\+end_example" "fundamental")
5790 ("^#\\+html:" "\n" "html" single-line)
5791 ("^#\\+begin_html.*\n" "\n#\\+end_html" "html")
5792 ("^#\\+begin_latex.*\n" "\n#\\+end_latex" "latex")
5793 ("^#\\+latex:" "\n" "latex" single-line)
5794 ("^#\\+begin_ascii.*\n" "\n#\\+end_ascii" "fundamental")
5795 ("^#\\+ascii:" "\n" "ascii" single-line)
5797 (pos (point))
5798 re re1 re2 single beg end lang)
5799 (catch 'exit
5800 (while (setq entry (pop re-list))
5801 (setq re1 (car entry) re2 (nth 1 entry) lang (nth 2 entry)
5802 single (nth 3 entry))
5803 (save-excursion
5804 (if (or (looking-at re1)
5805 (re-search-backward re1 nil t))
5806 (progn
5807 (setq beg (match-end 0) lang (org-edit-src-get-lang lang))
5808 (if (and (re-search-forward re2 nil t)
5809 (>= (match-end 0) pos))
5810 (throw 'exit (list beg (match-beginning 0) lang single))))
5811 (if (or (looking-at re2)
5812 (re-search-forward re2 nil t))
5813 (progn
5814 (setq end (match-beginning 0))
5815 (if (and (re-search-backward re1 nil t)
5816 (<= (match-beginning 0) pos))
5817 (throw 'exit
5818 (list (match-end 0) end
5819 (org-edit-src-get-lang lang) single)))))))))))
5821 (defun org-edit-src-get-lang (lang)
5822 "Extract the src language."
5823 (let ((m (match-string 0)))
5824 (cond
5825 ((stringp lang) lang)
5826 ((integerp lang) (match-string lang))
5827 ((and (eq lang 'lang)
5828 (string-match "\\<lang=\"\\([^ \t\n\"]+\\)\"" m))
5829 (match-string 1 m))
5830 ((and (eq lang 'style)
5831 (string-match "\\<style=\"\\([^ \t\n\"]+\\)\"" m))
5832 (match-string 1 m))
5833 (t "fundamental"))))
5835 (defun org-edit-src-exit ()
5836 "Exit special edit and protect problematic lines."
5837 (interactive)
5838 (unless (buffer-base-buffer (current-buffer))
5839 (error "This is not an indirect buffer, something is wrong..."))
5840 (unless (> (point-min) 1)
5841 (error "This buffer is not narrowed, something is wrong..."))
5842 (goto-char (point-min))
5843 (if (looking-at "[ \t\n]*\n") (replace-match ""))
5844 (if (re-search-forward "\n[ \t\n]*\\'" nil t) (replace-match ""))
5845 (when (org-bound-and-true-p org-edit-src-force-single-line)
5846 (goto-char (point-min))
5847 (while (re-search-forward "\n" nil t)
5848 (replace-match " "))
5849 (goto-char (point-min))
5850 (if (looking-at "\\s-*") (replace-match " "))
5851 (if (re-search-forward "\\s-+\\'" nil t)
5852 (replace-match "")))
5853 (when (org-bound-and-true-p org-edit-src-from-org-mode)
5854 (goto-char (point-min))
5855 (while (re-search-forward (if (org-mode-p) "^\\(.\\)" "^\\([*#]\\)") nil t)
5856 (replace-match ",\\1"))
5857 (when font-lock-mode
5858 (font-lock-unfontify-region (point-min) (point-max)))
5859 (put-text-property (point-min) (point-max) 'font-lock-fontified t))
5860 (when (org-bound-and-true-p org-edit-src-picture)
5861 (untabify (point-min) (point-max))
5862 (goto-char (point-min))
5863 (while (re-search-forward "^" nil t)
5864 (replace-match ": "))
5865 (when font-lock-mode
5866 (font-lock-unfontify-region (point-min) (point-max)))
5867 (put-text-property (point-min) (point-max) 'font-lock-fontified t))
5868 (kill-buffer (current-buffer))
5869 (and (org-mode-p) (org-restart-font-lock)))
5872 ;;; The orgstruct minor mode
5874 ;; Define a minor mode which can be used in other modes in order to
5875 ;; integrate the org-mode structure editing commands.
5877 ;; This is really a hack, because the org-mode structure commands use
5878 ;; keys which normally belong to the major mode. Here is how it
5879 ;; works: The minor mode defines all the keys necessary to operate the
5880 ;; structure commands, but wraps the commands into a function which
5881 ;; tests if the cursor is currently at a headline or a plain list
5882 ;; item. If that is the case, the structure command is used,
5883 ;; temporarily setting many Org-mode variables like regular
5884 ;; expressions for filling etc. However, when any of those keys is
5885 ;; used at a different location, function uses `key-binding' to look
5886 ;; up if the key has an associated command in another currently active
5887 ;; keymap (minor modes, major mode, global), and executes that
5888 ;; command. There might be problems if any of the keys is otherwise
5889 ;; used as a prefix key.
5891 ;; Another challenge is that the key binding for TAB can be tab or \C-i,
5892 ;; likewise the binding for RET can be return or \C-m. Orgtbl-mode
5893 ;; addresses this by checking explicitly for both bindings.
5895 (defvar orgstruct-mode-map (make-sparse-keymap)
5896 "Keymap for the minor `orgstruct-mode'.")
5898 (defvar org-local-vars nil
5899 "List of local variables, for use by `orgstruct-mode'")
5901 ;;;###autoload
5902 (define-minor-mode orgstruct-mode
5903 "Toggle the minor more `orgstruct-mode'.
5904 This mode is for using Org-mode structure commands in other modes.
5905 The following key behave as if Org-mode was active, if the cursor
5906 is on a headline, or on a plain list item (both in the definition
5907 of Org-mode).
5909 M-up Move entry/item up
5910 M-down Move entry/item down
5911 M-left Promote
5912 M-right Demote
5913 M-S-up Move entry/item up
5914 M-S-down Move entry/item down
5915 M-S-left Promote subtree
5916 M-S-right Demote subtree
5917 M-q Fill paragraph and items like in Org-mode
5918 C-c ^ Sort entries
5919 C-c - Cycle list bullet
5920 TAB Cycle item visibility
5921 M-RET Insert new heading/item
5922 S-M-RET Insert new TODO heading / Checkbox item
5923 C-c C-c Set tags / toggle checkbox"
5924 nil " OrgStruct" nil
5925 (org-load-modules-maybe)
5926 (and (orgstruct-setup) (defun orgstruct-setup () nil)))
5928 ;;;###autoload
5929 (defun turn-on-orgstruct ()
5930 "Unconditionally turn on `orgstruct-mode'."
5931 (orgstruct-mode 1))
5933 ;;;###autoload
5934 (defun turn-on-orgstruct++ ()
5935 "Unconditionally turn on `orgstruct-mode', and force org-mode indentations.
5936 In addition to setting orgstruct-mode, this also exports all indentation and
5937 autofilling variables from org-mode into the buffer. Note that turning
5938 off orgstruct-mode will *not* remove these additional settings."
5939 (orgstruct-mode 1)
5940 (let (var val)
5941 (mapc
5942 (lambda (x)
5943 (when (string-match
5944 "^\\(paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
5945 (symbol-name (car x)))
5946 (setq var (car x) val (nth 1 x))
5947 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
5948 org-local-vars)))
5950 (defun orgstruct-error ()
5951 "Error when there is no default binding for a structure key."
5952 (interactive)
5953 (error "This key has no function outside structure elements"))
5955 (defun orgstruct-setup ()
5956 "Setup orgstruct keymaps."
5957 (let ((nfunc 0)
5958 (bindings
5959 (list
5960 '([(meta up)] org-metaup)
5961 '([(meta down)] org-metadown)
5962 '([(meta left)] org-metaleft)
5963 '([(meta right)] org-metaright)
5964 '([(meta shift up)] org-shiftmetaup)
5965 '([(meta shift down)] org-shiftmetadown)
5966 '([(meta shift left)] org-shiftmetaleft)
5967 '([(meta shift right)] org-shiftmetaright)
5968 '([(shift up)] org-shiftup)
5969 '([(shift down)] org-shiftdown)
5970 '([(shift left)] org-shiftleft)
5971 '([(shift right)] org-shiftright)
5972 '("\C-c\C-c" org-ctrl-c-ctrl-c)
5973 '("\M-q" fill-paragraph)
5974 '("\C-c^" org-sort)
5975 '("\C-c-" org-cycle-list-bullet)))
5976 elt key fun cmd)
5977 (while (setq elt (pop bindings))
5978 (setq nfunc (1+ nfunc))
5979 (setq key (org-key (car elt))
5980 fun (nth 1 elt)
5981 cmd (orgstruct-make-binding fun nfunc key))
5982 (org-defkey orgstruct-mode-map key cmd))
5984 ;; Special treatment needed for TAB and RET
5985 (org-defkey orgstruct-mode-map [(tab)]
5986 (orgstruct-make-binding 'org-cycle 102 [(tab)] "\C-i"))
5987 (org-defkey orgstruct-mode-map "\C-i"
5988 (orgstruct-make-binding 'org-cycle 103 "\C-i" [(tab)]))
5990 (org-defkey orgstruct-mode-map "\M-\C-m"
5991 (orgstruct-make-binding 'org-insert-heading 105
5992 "\M-\C-m" [(meta return)]))
5993 (org-defkey orgstruct-mode-map [(meta return)]
5994 (orgstruct-make-binding 'org-insert-heading 106
5995 [(meta return)] "\M-\C-m"))
5997 (org-defkey orgstruct-mode-map [(shift meta return)]
5998 (orgstruct-make-binding 'org-insert-todo-heading 107
5999 [(meta return)] "\M-\C-m"))
6001 (unless org-local-vars
6002 (setq org-local-vars (org-get-local-variables)))
6006 (defun orgstruct-make-binding (fun n &rest keys)
6007 "Create a function for binding in the structure minor mode.
6008 FUN is the command to call inside a table. N is used to create a unique
6009 command name. KEYS are keys that should be checked in for a command
6010 to execute outside of tables."
6011 (eval
6012 (list 'defun
6013 (intern (concat "orgstruct-hijacker-command-" (int-to-string n)))
6014 '(arg)
6015 (concat "In Structure, run `" (symbol-name fun) "'.\n"
6016 "Outside of structure, run the binding of `"
6017 (mapconcat (lambda (x) (format "%s" x)) keys "' or `")
6018 "'.")
6019 '(interactive "p")
6020 (list 'if
6021 '(org-context-p 'headline 'item)
6022 (list 'org-run-like-in-org-mode (list 'quote fun))
6023 (list 'let '(orgstruct-mode)
6024 (list 'call-interactively
6025 (append '(or)
6026 (mapcar (lambda (k)
6027 (list 'key-binding k))
6028 keys)
6029 '('orgstruct-error))))))))
6031 (defun org-context-p (&rest contexts)
6032 "Check if local context is any of CONTEXTS.
6033 Possible values in the list of contexts are `table', `headline', and `item'."
6034 (let ((pos (point)))
6035 (goto-char (point-at-bol))
6036 (prog1 (or (and (memq 'table contexts)
6037 (looking-at "[ \t]*|"))
6038 (and (memq 'headline contexts)
6039 ;;????????? (looking-at "\\*+"))
6040 (looking-at outline-regexp))
6041 (and (memq 'item contexts)
6042 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)")))
6043 (goto-char pos))))
6045 (defun org-get-local-variables ()
6046 "Return a list of all local variables in an org-mode buffer."
6047 (let (varlist)
6048 (with-current-buffer (get-buffer-create "*Org tmp*")
6049 (erase-buffer)
6050 (org-mode)
6051 (setq varlist (buffer-local-variables)))
6052 (kill-buffer "*Org tmp*")
6053 (delq nil
6054 (mapcar
6055 (lambda (x)
6056 (setq x
6057 (if (symbolp x)
6058 (list x)
6059 (list (car x) (list 'quote (cdr x)))))
6060 (if (string-match
6061 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
6062 (symbol-name (car x)))
6063 x nil))
6064 varlist))))
6066 ;;;###autoload
6067 (defun org-run-like-in-org-mode (cmd)
6068 (org-load-modules-maybe)
6069 (unless org-local-vars
6070 (setq org-local-vars (org-get-local-variables)))
6071 (eval (list 'let org-local-vars
6072 (list 'call-interactively (list 'quote cmd)))))
6074 ;;;; Archiving
6076 (defun org-get-category (&optional pos)
6077 "Get the category applying to position POS."
6078 (get-text-property (or pos (point)) 'org-category))
6080 (defun org-refresh-category-properties ()
6081 "Refresh category text properties in the buffer."
6082 (let ((def-cat (cond
6083 ((null org-category)
6084 (if buffer-file-name
6085 (file-name-sans-extension
6086 (file-name-nondirectory buffer-file-name))
6087 "???"))
6088 ((symbolp org-category) (symbol-name org-category))
6089 (t org-category)))
6090 beg end cat pos optionp)
6091 (org-unmodified
6092 (save-excursion
6093 (save-restriction
6094 (widen)
6095 (goto-char (point-min))
6096 (put-text-property (point) (point-max) 'org-category def-cat)
6097 (while (re-search-forward
6098 "^\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
6099 (setq pos (match-end 0)
6100 optionp (equal (char-after (match-beginning 0)) ?#)
6101 cat (org-trim (match-string 2)))
6102 (if optionp
6103 (setq beg (point-at-bol) end (point-max))
6104 (org-back-to-heading t)
6105 (setq beg (point) end (org-end-of-subtree t t)))
6106 (put-text-property beg end 'org-category cat)
6107 (goto-char pos)))))))
6110 ;;;; Link Stuff
6112 ;;; Link abbreviations
6114 (defun org-link-expand-abbrev (link)
6115 "Apply replacements as defined in `org-link-abbrev-alist."
6116 (if (string-match "^\\([a-zA-Z][-_a-zA-Z0-9]*\\)\\(::?\\(.*\\)\\)?$" link)
6117 (let* ((key (match-string 1 link))
6118 (as (or (assoc key org-link-abbrev-alist-local)
6119 (assoc key org-link-abbrev-alist)))
6120 (tag (and (match-end 2) (match-string 3 link)))
6121 rpl)
6122 (if (not as)
6123 link
6124 (setq rpl (cdr as))
6125 (cond
6126 ((symbolp rpl) (funcall rpl tag))
6127 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
6128 ((string-match "%h" rpl)
6129 (replace-match (url-hexify-string (or tag "")) t t rpl))
6130 (t (concat rpl tag)))))
6131 link))
6133 ;;; Storing and inserting links
6135 (defvar org-insert-link-history nil
6136 "Minibuffer history for links inserted with `org-insert-link'.")
6138 (defvar org-stored-links nil
6139 "Contains the links stored with `org-store-link'.")
6141 (defvar org-store-link-plist nil
6142 "Plist with info about the most recently link created with `org-store-link'.")
6144 (defvar org-link-protocols nil
6145 "Link protocols added to Org-mode using `org-add-link-type'.")
6147 (defvar org-store-link-functions nil
6148 "List of functions that are called to create and store a link.
6149 Each function will be called in turn until one returns a non-nil
6150 value. Each function should check if it is responsible for creating
6151 this link (for example by looking at the major mode).
6152 If not, it must exit and return nil.
6153 If yes, it should return a non-nil value after a calling
6154 `org-store-link-props' with a list of properties and values.
6155 Special properties are:
6157 :type The link prefix. like \"http\". This must be given.
6158 :link The link, like \"http://www.astro.uva.nl/~dominik\".
6159 This is obligatory as well.
6160 :description Optional default description for the second pair
6161 of brackets in an Org-mode link. The user can still change
6162 this when inserting this link into an Org-mode buffer.
6164 In addition to these, any additional properties can be specified
6165 and then used in remember templates.")
6167 (defun org-add-link-type (type &optional follow export)
6168 "Add TYPE to the list of `org-link-types'.
6169 Re-compute all regular expressions depending on `org-link-types'
6171 FOLLOW and EXPORT are two functions.
6173 FOLLOW should take the link path as the single argument and do whatever
6174 is necessary to follow the link, for example find a file or display
6175 a mail message.
6177 EXPORT should format the link path for export to one of the export formats.
6178 It should be a function accepting three arguments:
6180 path the path of the link, the text after the prefix (like \"http:\")
6181 desc the description of the link, if any, nil if there was no description
6182 format the export format, a symbol like `html' or `latex'.
6184 The function may use the FORMAT information to return different values
6185 depending on the format. The return value will be put literally into
6186 the exported file.
6187 Org-mode has a built-in default for exporting links. If you are happy with
6188 this default, there is no need to define an export function for the link
6189 type. For a simple example of an export function, see `org-bbdb.el'."
6190 (add-to-list 'org-link-types type t)
6191 (org-make-link-regexps)
6192 (if (assoc type org-link-protocols)
6193 (setcdr (assoc type org-link-protocols) (list follow export))
6194 (push (list type follow export) org-link-protocols)))
6196 ;;;###autoload
6197 (defun org-store-link (arg)
6198 "\\<org-mode-map>Store an org-link to the current location.
6199 This link is added to `org-stored-links' and can later be inserted
6200 into an org-buffer with \\[org-insert-link].
6202 For some link types, a prefix arg is interpreted:
6203 For links to usenet articles, arg negates `org-gnus-prefer-web-links'.
6204 For file links, arg negates `org-context-in-file-links'."
6205 (interactive "P")
6206 (org-load-modules-maybe)
6207 (setq org-store-link-plist nil) ; reset
6208 (let (link cpltxt desc description search txt)
6209 (cond
6211 ((run-hook-with-args-until-success 'org-store-link-functions)
6212 (setq link (plist-get org-store-link-plist :link)
6213 desc (or (plist-get org-store-link-plist :description) link)))
6215 ((eq major-mode 'calendar-mode)
6216 (let ((cd (calendar-cursor-to-date)))
6217 (setq link
6218 (format-time-string
6219 (car org-time-stamp-formats)
6220 (apply 'encode-time
6221 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
6222 nil nil nil))))
6223 (org-store-link-props :type "calendar" :date cd)))
6225 ((eq major-mode 'w3-mode)
6226 (setq cpltxt (url-view-url t)
6227 link (org-make-link cpltxt))
6228 (org-store-link-props :type "w3" :url (url-view-url t)))
6230 ((eq major-mode 'w3m-mode)
6231 (setq cpltxt (or w3m-current-title w3m-current-url)
6232 link (org-make-link w3m-current-url))
6233 (org-store-link-props :type "w3m" :url (url-view-url t)))
6235 ((setq search (run-hook-with-args-until-success
6236 'org-create-file-search-functions))
6237 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
6238 "::" search))
6239 (setq cpltxt (or description link)))
6241 ((eq major-mode 'image-mode)
6242 (setq cpltxt (concat "file:"
6243 (abbreviate-file-name buffer-file-name))
6244 link (org-make-link cpltxt))
6245 (org-store-link-props :type "image" :file buffer-file-name))
6247 ((eq major-mode 'dired-mode)
6248 ;; link to the file in the current line
6249 (setq cpltxt (concat "file:"
6250 (abbreviate-file-name
6251 (expand-file-name
6252 (dired-get-filename nil t))))
6253 link (org-make-link cpltxt)))
6255 ((and buffer-file-name (org-mode-p))
6256 (cond
6257 ((org-in-regexp "<<\\(.*?\\)>>")
6258 (setq cpltxt
6259 (concat "file:"
6260 (abbreviate-file-name buffer-file-name)
6261 "::" (match-string 1))
6262 link (org-make-link cpltxt)))
6263 ((and (featurep 'org-id)
6264 (or (eq org-link-to-org-use-id t)
6265 (and (eq org-link-to-org-use-id 'create-if-interactive)
6266 (interactive-p))
6267 (and org-link-to-org-use-id
6268 (condition-case nil
6269 (org-entry-get nil "ID")
6270 (error nil)))))
6271 ;; We can make a link using the ID.
6272 (setq link (condition-case nil
6273 (org-id-store-link)
6274 (error
6275 ;; probably before first headline, link to file only
6276 (concat "file:"
6277 (abbreviate-file-name buffer-file-name))))))
6279 ;; Just link to current headline
6280 (setq cpltxt (concat "file:"
6281 (abbreviate-file-name buffer-file-name)))
6282 ;; Add a context search string
6283 (when (org-xor org-context-in-file-links arg)
6284 (setq txt (cond
6285 ((org-on-heading-p) nil)
6286 ((org-region-active-p)
6287 (buffer-substring (region-beginning) (region-end)))
6288 (t nil)))
6289 (when (or (null txt) (string-match "\\S-" txt))
6290 (setq cpltxt
6291 (concat cpltxt "::"
6292 (condition-case nil
6293 (org-make-org-heading-search-string txt)
6294 (error "")))
6295 desc "NONE")))
6296 (if (string-match "::\\'" cpltxt)
6297 (setq cpltxt (substring cpltxt 0 -2)))
6298 (setq link (org-make-link cpltxt)))))
6300 ((buffer-file-name (buffer-base-buffer))
6301 ;; Just link to this file here.
6302 (setq cpltxt (concat "file:"
6303 (abbreviate-file-name
6304 (buffer-file-name (buffer-base-buffer)))))
6305 ;; Add a context string
6306 (when (org-xor org-context-in-file-links arg)
6307 (setq txt (if (org-region-active-p)
6308 (buffer-substring (region-beginning) (region-end))
6309 (buffer-substring (point-at-bol) (point-at-eol))))
6310 ;; Only use search option if there is some text.
6311 (when (string-match "\\S-" txt)
6312 (setq cpltxt
6313 (concat cpltxt "::" (org-make-org-heading-search-string txt))
6314 desc "NONE")))
6315 (setq link (org-make-link cpltxt)))
6317 ((interactive-p)
6318 (error "Cannot link to a buffer which is not visiting a file"))
6320 (t (setq link nil)))
6322 (if (consp link) (setq cpltxt (car link) link (cdr link)))
6323 (setq link (or link cpltxt)
6324 desc (or desc cpltxt))
6325 (if (equal desc "NONE") (setq desc nil))
6327 (if (and (interactive-p) link)
6328 (progn
6329 (setq org-stored-links
6330 (cons (list link desc) org-stored-links))
6331 (message "Stored: %s" (or desc link)))
6332 (and link (org-make-link-string link desc)))))
6334 (defun org-store-link-props (&rest plist)
6335 "Store link properties, extract names and addresses."
6336 (let (x adr)
6337 (when (setq x (plist-get plist :from))
6338 (setq adr (mail-extract-address-components x))
6339 (setq plist (plist-put plist :fromname (car adr)))
6340 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
6341 (when (setq x (plist-get plist :to))
6342 (setq adr (mail-extract-address-components x))
6343 (setq plist (plist-put plist :toname (car adr)))
6344 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
6345 (let ((from (plist-get plist :from))
6346 (to (plist-get plist :to)))
6347 (when (and from to org-from-is-user-regexp)
6348 (setq plist
6349 (plist-put plist :fromto
6350 (if (string-match org-from-is-user-regexp from)
6351 (concat "to %t")
6352 (concat "from %f"))))))
6353 (setq org-store-link-plist plist))
6355 (defun org-add-link-props (&rest plist)
6356 "Add these properties to the link property list."
6357 (let (key value)
6358 (while plist
6359 (setq key (pop plist) value (pop plist))
6360 (setq org-store-link-plist
6361 (plist-put org-store-link-plist key value)))))
6363 (defun org-email-link-description (&optional fmt)
6364 "Return the description part of an email link.
6365 This takes information from `org-store-link-plist' and formats it
6366 according to FMT (default from `org-email-link-description-format')."
6367 (setq fmt (or fmt org-email-link-description-format))
6368 (let* ((p org-store-link-plist)
6369 (to (plist-get p :toaddress))
6370 (from (plist-get p :fromaddress))
6371 (table
6372 (list
6373 (cons "%c" (plist-get p :fromto))
6374 (cons "%F" (plist-get p :from))
6375 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
6376 (cons "%T" (plist-get p :to))
6377 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
6378 (cons "%s" (plist-get p :subject))
6379 (cons "%m" (plist-get p :message-id)))))
6380 (when (string-match "%c" fmt)
6381 ;; Check if the user wrote this message
6382 (if (and org-from-is-user-regexp from to
6383 (save-match-data (string-match org-from-is-user-regexp from)))
6384 (setq fmt (replace-match "to %t" t t fmt))
6385 (setq fmt (replace-match "from %f" t t fmt))))
6386 (org-replace-escapes fmt table)))
6388 (defun org-make-org-heading-search-string (&optional string heading)
6389 "Make search string for STRING or current headline."
6390 (interactive)
6391 (let ((s (or string (org-get-heading))))
6392 (unless (and string (not heading))
6393 ;; We are using a headline, clean up garbage in there.
6394 (if (string-match org-todo-regexp s)
6395 (setq s (replace-match "" t t s)))
6396 (if (string-match (org-re ":[[:alnum:]_@:]+:[ \t]*$") s)
6397 (setq s (replace-match "" t t s)))
6398 (setq s (org-trim s))
6399 (if (string-match (concat "^\\(" org-quote-string "\\|"
6400 org-comment-string "\\)") s)
6401 (setq s (replace-match "" t t s)))
6402 (while (string-match org-ts-regexp s)
6403 (setq s (replace-match "" t t s))))
6404 (while (string-match "[^a-zA-Z_0-9 \t]+" s)
6405 (setq s (replace-match " " t t s)))
6406 (or string (setq s (concat "*" s))) ; Add * for headlines
6407 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
6409 (defun org-make-link (&rest strings)
6410 "Concatenate STRINGS."
6411 (apply 'concat strings))
6413 (defun org-make-link-string (link &optional description)
6414 "Make a link with brackets, consisting of LINK and DESCRIPTION."
6415 (unless (string-match "\\S-" link)
6416 (error "Empty link"))
6417 (when (stringp description)
6418 ;; Remove brackets from the description, they are fatal.
6419 (while (string-match "\\[" description)
6420 (setq description (replace-match "{" t t description)))
6421 (while (string-match "\\]" description)
6422 (setq description (replace-match "}" t t description))))
6423 (when (equal (org-link-escape link) description)
6424 ;; No description needed, it is identical
6425 (setq description nil))
6426 (when (and (not description)
6427 (not (equal link (org-link-escape link))))
6428 (setq description (org-extract-attributes link)))
6429 (concat "[[" (org-link-escape link) "]"
6430 (if description (concat "[" description "]") "")
6431 "]"))
6433 (defconst org-link-escape-chars
6434 '((?\ . "%20")
6435 (?\[ . "%5B")
6436 (?\] . "%5D")
6437 (?\340 . "%E0") ; `a
6438 (?\342 . "%E2") ; ^a
6439 (?\347 . "%E7") ; ,c
6440 (?\350 . "%E8") ; `e
6441 (?\351 . "%E9") ; 'e
6442 (?\352 . "%EA") ; ^e
6443 (?\356 . "%EE") ; ^i
6444 (?\364 . "%F4") ; ^o
6445 (?\371 . "%F9") ; `u
6446 (?\373 . "%FB") ; ^u
6447 (?\; . "%3B")
6448 (?? . "%3F")
6449 (?= . "%3D")
6450 (?+ . "%2B")
6452 "Association list of escapes for some characters problematic in links.
6453 This is the list that is used for internal purposes.")
6455 (defconst org-link-escape-chars-browser
6456 '((?\ . "%20")) ; 32 for the SPC char
6457 "Association list of escapes for some characters problematic in links.
6458 This is the list that is used before handing over to the browser.")
6460 (defun org-link-escape (text &optional table)
6461 "Escape characters in TEXT that are problematic for links."
6462 (setq table (or table org-link-escape-chars))
6463 (when text
6464 (let ((re (mapconcat (lambda (x) (regexp-quote
6465 (char-to-string (car x))))
6466 table "\\|")))
6467 (while (string-match re text)
6468 (setq text
6469 (replace-match
6470 (cdr (assoc (string-to-char (match-string 0 text))
6471 table))
6472 t t text)))
6473 text)))
6475 (defun org-link-unescape (text &optional table)
6476 "Reverse the action of `org-link-escape'."
6477 (setq table (or table org-link-escape-chars))
6478 (when text
6479 (let ((re (mapconcat (lambda (x) (regexp-quote (cdr x)))
6480 table "\\|")))
6481 (while (string-match re text)
6482 (setq text
6483 (replace-match
6484 (char-to-string (car (rassoc (match-string 0 text) table)))
6485 t t text)))
6486 text)))
6488 (defun org-xor (a b)
6489 "Exclusive or."
6490 (if a (not b) b))
6492 (defun org-get-header (header)
6493 "Find a header field in the current buffer."
6494 (save-excursion
6495 (goto-char (point-min))
6496 (let ((case-fold-search t) s)
6497 (cond
6498 ((eq header 'from)
6499 (if (re-search-forward "^From:\\s-+\\(.*\\)" nil t)
6500 (setq s (match-string 1)))
6501 (while (string-match "\"" s)
6502 (setq s (replace-match "" t t s)))
6503 (if (string-match "[<(].*" s)
6504 (setq s (replace-match "" t t s))))
6505 ((eq header 'message-id)
6506 (if (re-search-forward "^message-id:\\s-+\\(.*\\)" nil t)
6507 (setq s (match-string 1))))
6508 ((eq header 'subject)
6509 (if (re-search-forward "^subject:\\s-+\\(.*\\)" nil t)
6510 (setq s (match-string 1)))))
6511 (if (string-match "\\`[ \t\]+" s) (setq s (replace-match "" t t s)))
6512 (if (string-match "[ \t\]+\\'" s) (setq s (replace-match "" t t s)))
6513 s)))
6516 (defun org-fixup-message-id-for-http (s)
6517 "Replace special characters in a message id, so it can be used in an http query."
6518 (while (string-match "<" s)
6519 (setq s (replace-match "%3C" t t s)))
6520 (while (string-match ">" s)
6521 (setq s (replace-match "%3E" t t s)))
6522 (while (string-match "@" s)
6523 (setq s (replace-match "%40" t t s)))
6526 ;;;###autoload
6527 (defun org-insert-link-global ()
6528 "Insert a link like Org-mode does.
6529 This command can be called in any mode to insert a link in Org-mode syntax."
6530 (interactive)
6531 (org-load-modules-maybe)
6532 (org-run-like-in-org-mode 'org-insert-link))
6534 (defun org-insert-link (&optional complete-file link-location)
6535 "Insert a link. At the prompt, enter the link.
6537 Completion can be used to insert any of the link protocol prefixes like
6538 http or ftp in use.
6540 The history can be used to select a link previously stored with
6541 `org-store-link'. When the empty string is entered (i.e. if you just
6542 press RET at the prompt), the link defaults to the most recently
6543 stored link. As SPC triggers completion in the minibuffer, you need to
6544 use M-SPC or C-q SPC to force the insertion of a space character.
6546 You will also be prompted for a description, and if one is given, it will
6547 be displayed in the buffer instead of the link.
6549 If there is already a link at point, this command will allow you to edit link
6550 and description parts.
6552 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
6553 be selected using completion. The path to the file will be relative to the
6554 current directory if the file is in the current directory or a subdirectory.
6555 Otherwise, the link will be the absolute path as completed in the minibuffer
6556 \(i.e. normally ~/path/to/file). You can configure this behavior using the
6557 option `org-link-file-path-type'.
6559 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
6560 the current directory or below.
6562 With three \\[universal-argument] prefixes, negate the meaning of
6563 `org-keep-stored-link-after-insertion'.
6565 If `org-make-link-description-function' is non-nil, this function will be
6566 called with the link target, and the result will be the default
6567 link description.
6569 If the LINK-LOCATION parameter is non-nil, this value will be
6570 used as the link location instead of reading one interactively."
6571 (interactive "P")
6572 (let* ((wcf (current-window-configuration))
6573 (region (if (org-region-active-p)
6574 (buffer-substring (region-beginning) (region-end))))
6575 (remove (and region (list (region-beginning) (region-end))))
6576 (desc region)
6577 tmphist ; byte-compile incorrectly complains about this
6578 (link link-location)
6579 entry file)
6580 (cond
6581 (link-location) ; specified by arg, just use it.
6582 ((org-in-regexp org-bracket-link-regexp 1)
6583 ;; We do have a link at point, and we are going to edit it.
6584 (setq remove (list (match-beginning 0) (match-end 0)))
6585 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
6586 (setq link (read-string "Link: "
6587 (org-link-unescape
6588 (org-match-string-no-properties 1)))))
6589 ((or (org-in-regexp org-angle-link-re)
6590 (org-in-regexp org-plain-link-re))
6591 ;; Convert to bracket link
6592 (setq remove (list (match-beginning 0) (match-end 0))
6593 link (read-string "Link: "
6594 (org-remove-angle-brackets (match-string 0)))))
6595 ((member complete-file '((4) (16)))
6596 ;; Completing read for file names.
6597 (setq file (read-file-name "File: "))
6598 (let ((pwd (file-name-as-directory (expand-file-name ".")))
6599 (pwd1 (file-name-as-directory (abbreviate-file-name
6600 (expand-file-name ".")))))
6601 (cond
6602 ((equal complete-file '(16))
6603 (setq link (org-make-link
6604 "file:"
6605 (abbreviate-file-name (expand-file-name file)))))
6606 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
6607 (setq link (org-make-link "file:" (match-string 1 file))))
6608 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
6609 (expand-file-name file))
6610 (setq link (org-make-link
6611 "file:" (match-string 1 (expand-file-name file)))))
6612 (t (setq link (org-make-link "file:" file))))))
6614 ;; Read link, with completion for stored links.
6615 (with-output-to-temp-buffer "*Org Links*"
6616 (princ "Insert a link. Use TAB to complete valid link prefixes.\n")
6617 (when org-stored-links
6618 (princ "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
6619 (princ (mapconcat
6620 (lambda (x)
6621 (if (nth 1 x) (concat (car x) " (" (nth 1 x) ")") (car x)))
6622 (reverse org-stored-links) "\n"))))
6623 (let ((cw (selected-window)))
6624 (select-window (get-buffer-window "*Org Links*"))
6625 (org-fit-window-to-buffer)
6626 (setq truncate-lines t)
6627 (select-window cw))
6628 ;; Fake a link history, containing the stored links.
6629 (setq tmphist (append (mapcar 'car org-stored-links)
6630 org-insert-link-history))
6631 (unwind-protect
6632 (setq link (org-completing-read
6633 "Link: "
6634 (append
6635 (mapcar (lambda (x) (list (concat (car x) ":")))
6636 (append org-link-abbrev-alist-local org-link-abbrev-alist))
6637 (mapcar (lambda (x) (list (concat x ":")))
6638 org-link-types))
6639 nil nil nil
6640 'tmphist
6641 (or (car (car org-stored-links)))))
6642 (set-window-configuration wcf)
6643 (kill-buffer "*Org Links*"))
6644 (setq entry (assoc link org-stored-links))
6645 (or entry (push link org-insert-link-history))
6646 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
6647 (not org-keep-stored-link-after-insertion))
6648 (setq org-stored-links (delq (assoc link org-stored-links)
6649 org-stored-links)))
6650 (setq desc (or desc (nth 1 entry)))))
6652 (if (string-match org-plain-link-re link)
6653 ;; URL-like link, normalize the use of angular brackets.
6654 (setq link (org-make-link (org-remove-angle-brackets link))))
6656 ;; Check if we are linking to the current file with a search option
6657 ;; If yes, simplify the link by using only the search option.
6658 (when (and buffer-file-name
6659 (string-match "^file:\\(.+?\\)::\\([^>]+\\)" link))
6660 (let* ((path (match-string 1 link))
6661 (case-fold-search nil)
6662 (search (match-string 2 link)))
6663 (save-match-data
6664 (if (equal (file-truename buffer-file-name) (file-truename path))
6665 ;; We are linking to this same file, with a search option
6666 (setq link search)))))
6668 ;; Check if we can/should use a relative path. If yes, simplify the link
6669 (when (string-match "^file:\\(.*\\)" link)
6670 (let* ((path (match-string 1 link))
6671 (origpath path)
6672 (case-fold-search nil))
6673 (cond
6674 ((or (eq org-link-file-path-type 'absolute)
6675 (equal complete-file '(16)))
6676 (setq path (abbreviate-file-name (expand-file-name path))))
6677 ((eq org-link-file-path-type 'noabbrev)
6678 (setq path (expand-file-name path)))
6679 ((eq org-link-file-path-type 'relative)
6680 (setq path (file-relative-name path)))
6682 (save-match-data
6683 (if (string-match (concat "^" (regexp-quote
6684 (file-name-as-directory
6685 (expand-file-name "."))))
6686 (expand-file-name path))
6687 ;; We are linking a file with relative path name.
6688 (setq path (substring (expand-file-name path)
6689 (match-end 0)))
6690 (setq path (abbreviate-file-name (expand-file-name path)))))))
6691 (setq link (concat "file:" path))
6692 (if (equal desc origpath)
6693 (setq desc path))))
6695 (if org-make-link-description-function
6696 (setq desc (funcall org-make-link-description-function link desc)))
6698 (setq desc (read-string "Description: " desc))
6699 (unless (string-match "\\S-" desc) (setq desc nil))
6700 (if remove (apply 'delete-region remove))
6701 (insert (org-make-link-string link desc))))
6703 (defun org-completing-read (&rest args)
6704 "Completing-read with SPACE being a normal character."
6705 (let ((minibuffer-local-completion-map
6706 (copy-keymap minibuffer-local-completion-map)))
6707 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
6708 (apply 'org-ido-completing-read args)))
6710 (defun org-ido-completing-read (&rest args)
6711 "Completing-read using `ido-mode' speedups if available"
6712 (if (and org-completion-use-ido
6713 (fboundp 'ido-completing-read)
6714 (boundp 'ido-mode) ido-mode
6715 (listp (second args)))
6716 (apply 'ido-completing-read (concat (car args)) (cdr args))
6717 (apply 'completing-read args)))
6719 (defun org-extract-attributes (s)
6720 "Extract the attributes cookie from a string and set as text property."
6721 (let (a attr (start 0) key value)
6722 (save-match-data
6723 (when (string-match "{{\\([^}]+\\)}}$" s)
6724 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
6725 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
6726 (setq key (match-string 1 a) value (match-string 2 a)
6727 start (match-end 0)
6728 attr (plist-put attr (intern key) value))))
6729 (org-add-props s nil 'org-attr attr))
6732 (defun org-attributes-to-string (plist)
6733 "Format a property list into an HTML attribute list."
6734 (let ((s "") key value)
6735 (while plist
6736 (setq key (pop plist) value (pop plist))
6737 (and value
6738 (setq s (concat s " " (symbol-name key) "=\"" value "\""))))
6741 ;;; Opening/following a link
6743 (defvar org-link-search-failed nil)
6745 (defun org-next-link ()
6746 "Move forward to the next link.
6747 If the link is in hidden text, expose it."
6748 (interactive)
6749 (when (and org-link-search-failed (eq this-command last-command))
6750 (goto-char (point-min))
6751 (message "Link search wrapped back to beginning of buffer"))
6752 (setq org-link-search-failed nil)
6753 (let* ((pos (point))
6754 (ct (org-context))
6755 (a (assoc :link ct)))
6756 (if a (goto-char (nth 2 a)))
6757 (if (re-search-forward org-any-link-re nil t)
6758 (progn
6759 (goto-char (match-beginning 0))
6760 (if (org-invisible-p) (org-show-context)))
6761 (goto-char pos)
6762 (setq org-link-search-failed t)
6763 (error "No further link found"))))
6765 (defun org-previous-link ()
6766 "Move backward to the previous link.
6767 If the link is in hidden text, expose it."
6768 (interactive)
6769 (when (and org-link-search-failed (eq this-command last-command))
6770 (goto-char (point-max))
6771 (message "Link search wrapped back to end of buffer"))
6772 (setq org-link-search-failed nil)
6773 (let* ((pos (point))
6774 (ct (org-context))
6775 (a (assoc :link ct)))
6776 (if a (goto-char (nth 1 a)))
6777 (if (re-search-backward org-any-link-re nil t)
6778 (progn
6779 (goto-char (match-beginning 0))
6780 (if (org-invisible-p) (org-show-context)))
6781 (goto-char pos)
6782 (setq org-link-search-failed t)
6783 (error "No further link found"))))
6785 (defun org-translate-link (s)
6786 "Translate a link string if a translation function has been defined."
6787 (if (and org-link-translation-function
6788 (fboundp org-link-translation-function)
6789 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
6790 (progn
6791 (setq s (funcall org-link-translation-function
6792 (match-string 1) (match-string 2)))
6793 (concat (car s) ":" (cdr s)))
6796 (defun org-translate-link-from-planner (type path)
6797 "Translate a link from Emacs Planner syntax so that Org can follow it.
6798 This is still an experimental function, your mileage may vary."
6799 (cond
6800 ((member type '("http" "https" "news" "ftp"))
6801 ;; standard Internet links are the same.
6802 nil)
6803 ((and (equal type "irc") (string-match "^//" path))
6804 ;; Planner has two / at the beginning of an irc link, we have 1.
6805 ;; We should have zero, actually....
6806 (setq path (substring path 1)))
6807 ((and (equal type "lisp") (string-match "^/" path))
6808 ;; Planner has a slash, we do not.
6809 (setq type "elisp" path (substring path 1)))
6810 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
6811 ;; A typical message link. Planner has the id after the fina slash,
6812 ;; we separate it with a hash mark
6813 (setq path (concat (match-string 1 path) "#"
6814 (org-remove-angle-brackets (match-string 2 path)))))
6816 (cons type path))
6818 (defun org-find-file-at-mouse (ev)
6819 "Open file link or URL at mouse."
6820 (interactive "e")
6821 (mouse-set-point ev)
6822 (org-open-at-point 'in-emacs))
6824 (defun org-open-at-mouse (ev)
6825 "Open file link or URL at mouse."
6826 (interactive "e")
6827 (mouse-set-point ev)
6828 (if (eq major-mode 'org-agenda-mode)
6829 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
6830 (org-open-at-point))
6832 (defvar org-window-config-before-follow-link nil
6833 "The window configuration before following a link.
6834 This is saved in case the need arises to restore it.")
6836 (defvar org-open-link-marker (make-marker)
6837 "Marker pointing to the location where `org-open-at-point; was called.")
6839 ;;;###autoload
6840 (defun org-open-at-point-global ()
6841 "Follow a link like Org-mode does.
6842 This command can be called in any mode to follow a link that has
6843 Org-mode syntax."
6844 (interactive)
6845 (org-run-like-in-org-mode 'org-open-at-point))
6847 ;;;###autoload
6848 (defun org-open-link-from-string (s &optional arg)
6849 "Open a link in the string S, as if it was in Org-mode."
6850 (interactive "sLink: \nP")
6851 (with-temp-buffer
6852 (let ((org-inhibit-startup t))
6853 (org-mode)
6854 (insert s)
6855 (goto-char (point-min))
6856 (org-open-at-point arg))))
6858 (defun org-open-at-point (&optional in-emacs)
6859 "Open link at or after point.
6860 If there is no link at point, this function will search forward up to
6861 the end of the current subtree.
6862 Normally, files will be opened by an appropriate application. If the
6863 optional argument IN-EMACS is non-nil, Emacs will visit the file.
6864 With a double prefix argument, try to open outside of Emacs, in the
6865 application the system uses for this file type."
6866 (interactive "P")
6867 (org-load-modules-maybe)
6868 (move-marker org-open-link-marker (point))
6869 (setq org-window-config-before-follow-link (current-window-configuration))
6870 (org-remove-occur-highlights nil nil t)
6871 (if (org-at-timestamp-p t)
6872 (org-follow-timestamp-link)
6873 (let (type path link line search (pos (point)))
6874 (catch 'match
6875 (save-excursion
6876 (skip-chars-forward "^]\n\r")
6877 (when (org-in-regexp org-bracket-link-regexp)
6878 (setq link (org-extract-attributes
6879 (org-link-unescape (org-match-string-no-properties 1))))
6880 (while (string-match " *\n *" link)
6881 (setq link (replace-match " " t t link)))
6882 (setq link (org-link-expand-abbrev link))
6883 (cond
6884 ((or (file-name-absolute-p link)
6885 (string-match "^\\.\\.?/" link))
6886 (setq type "file" path link))
6887 ((string-match org-link-re-with-space3 link)
6888 (setq type (match-string 1 link) path (match-string 2 link)))
6889 (t (setq type "thisfile" path link)))
6890 (throw 'match t)))
6892 (when (get-text-property (point) 'org-linked-text)
6893 (setq type "thisfile"
6894 pos (if (get-text-property (1+ (point)) 'org-linked-text)
6895 (1+ (point)) (point))
6896 path (buffer-substring
6897 (previous-single-property-change pos 'org-linked-text)
6898 (next-single-property-change pos 'org-linked-text)))
6899 (throw 'match t))
6901 (save-excursion
6902 (when (or (org-in-regexp org-angle-link-re)
6903 (org-in-regexp org-plain-link-re))
6904 (setq type (match-string 1) path (match-string 2))
6905 (throw 'match t)))
6906 (when (org-in-regexp "\\<\\([^><\n]+\\)\\>")
6907 (setq type "tree-match"
6908 path (match-string 1))
6909 (throw 'match t))
6910 (save-excursion
6911 (when (org-in-regexp (org-re "\\(:[[:alnum:]_@:]+\\):[ \t]*$"))
6912 (setq type "tags"
6913 path (match-string 1))
6914 (while (string-match ":" path)
6915 (setq path (replace-match "+" t t path)))
6916 (throw 'match t))))
6917 (unless path
6918 (error "No link found"))
6919 ;; Remove any trailing spaces in path
6920 (if (string-match " +\\'" path)
6921 (setq path (replace-match "" t t path)))
6922 (if (and org-link-translation-function
6923 (fboundp org-link-translation-function))
6924 ;; Check if we need to translate the link
6925 (let ((tmp (funcall org-link-translation-function type path)))
6926 (setq type (car tmp) path (cdr tmp))))
6928 (cond
6930 ((assoc type org-link-protocols)
6931 (funcall (nth 1 (assoc type org-link-protocols)) path))
6933 ((equal type "mailto")
6934 (let ((cmd (car org-link-mailto-program))
6935 (args (cdr org-link-mailto-program)) args1
6936 (address path) (subject "") a)
6937 (if (string-match "\\(.*\\)::\\(.*\\)" path)
6938 (setq address (match-string 1 path)
6939 subject (org-link-escape (match-string 2 path))))
6940 (while args
6941 (cond
6942 ((not (stringp (car args))) (push (pop args) args1))
6943 (t (setq a (pop args))
6944 (if (string-match "%a" a)
6945 (setq a (replace-match address t t a)))
6946 (if (string-match "%s" a)
6947 (setq a (replace-match subject t t a)))
6948 (push a args1))))
6949 (apply cmd (nreverse args1))))
6951 ((member type '("http" "https" "ftp" "news"))
6952 (browse-url (concat type ":" (org-link-escape
6953 path org-link-escape-chars-browser))))
6955 ((member type '("message"))
6956 (browse-url (concat type ":" path)))
6958 ((string= type "tags")
6959 (org-tags-view in-emacs path))
6960 ((string= type "thisfile")
6961 (if in-emacs
6962 (switch-to-buffer-other-window
6963 (org-get-buffer-for-internal-link (current-buffer)))
6964 (org-mark-ring-push))
6965 (let ((cmd `(org-link-search
6966 ,path
6967 ,(cond ((equal in-emacs '(4)) 'occur)
6968 ((equal in-emacs '(16)) 'org-occur)
6969 (t nil))
6970 ,pos)))
6971 (condition-case nil (eval cmd)
6972 (error (progn (widen) (eval cmd))))))
6974 ((string= type "tree-match")
6975 (org-occur (concat "\\[" (regexp-quote path) "\\]")))
6977 ((string= type "file")
6978 (if (string-match "::\\([0-9]+\\)\\'" path)
6979 (setq line (string-to-number (match-string 1 path))
6980 path (substring path 0 (match-beginning 0)))
6981 (if (string-match "::\\(.+\\)\\'" path)
6982 (setq search (match-string 1 path)
6983 path (substring path 0 (match-beginning 0)))))
6984 (if (string-match "[*?{]" (file-name-nondirectory path))
6985 (dired path)
6986 (org-open-file path in-emacs line search)))
6988 ((string= type "news")
6989 (require 'org-gnus)
6990 (org-gnus-follow-link path))
6992 ((string= type "shell")
6993 (let ((cmd path))
6994 (if (or (not org-confirm-shell-link-function)
6995 (funcall org-confirm-shell-link-function
6996 (format "Execute \"%s\" in shell? "
6997 (org-add-props cmd nil
6998 'face 'org-warning))))
6999 (progn
7000 (message "Executing %s" cmd)
7001 (shell-command cmd))
7002 (error "Abort"))))
7004 ((string= type "elisp")
7005 (let ((cmd path))
7006 (if (or (not org-confirm-elisp-link-function)
7007 (funcall org-confirm-elisp-link-function
7008 (format "Execute \"%s\" as elisp? "
7009 (org-add-props cmd nil
7010 'face 'org-warning))))
7011 (message "%s => %s" cmd
7012 (if (equal (string-to-char cmd) ?\()
7013 (eval (read cmd))
7014 (call-interactively (read cmd))))
7015 (error "Abort"))))
7018 (browse-url-at-point)))))
7019 (move-marker org-open-link-marker nil)
7020 (run-hook-with-args 'org-follow-link-hook))
7022 ;;;; Time estimates
7024 (defun org-get-effort (&optional pom)
7025 "Get the effort estimate for the current entry."
7026 (org-entry-get pom org-effort-property))
7028 ;;; File search
7030 (defvar org-create-file-search-functions nil
7031 "List of functions to construct the right search string for a file link.
7032 These functions are called in turn with point at the location to
7033 which the link should point.
7035 A function in the hook should first test if it would like to
7036 handle this file type, for example by checking the major-mode or
7037 the file extension. If it decides not to handle this file, it
7038 should just return nil to give other functions a chance. If it
7039 does handle the file, it must return the search string to be used
7040 when following the link. The search string will be part of the
7041 file link, given after a double colon, and `org-open-at-point'
7042 will automatically search for it. If special measures must be
7043 taken to make the search successful, another function should be
7044 added to the companion hook `org-execute-file-search-functions',
7045 which see.
7047 A function in this hook may also use `setq' to set the variable
7048 `description' to provide a suggestion for the descriptive text to
7049 be used for this link when it gets inserted into an Org-mode
7050 buffer with \\[org-insert-link].")
7052 (defvar org-execute-file-search-functions nil
7053 "List of functions to execute a file search triggered by a link.
7055 Functions added to this hook must accept a single argument, the
7056 search string that was part of the file link, the part after the
7057 double colon. The function must first check if it would like to
7058 handle this search, for example by checking the major-mode or the
7059 file extension. If it decides not to handle this search, it
7060 should just return nil to give other functions a chance. If it
7061 does handle the search, it must return a non-nil value to keep
7062 other functions from trying.
7064 Each function can access the current prefix argument through the
7065 variable `current-prefix-argument'. Note that a single prefix is
7066 used to force opening a link in Emacs, so it may be good to only
7067 use a numeric or double prefix to guide the search function.
7069 In case this is needed, a function in this hook can also restore
7070 the window configuration before `org-open-at-point' was called using:
7072 (set-window-configuration org-window-config-before-follow-link)")
7074 (defun org-link-search (s &optional type avoid-pos)
7075 "Search for a link search option.
7076 If S is surrounded by forward slashes, it is interpreted as a
7077 regular expression. In org-mode files, this will create an `org-occur'
7078 sparse tree. In ordinary files, `occur' will be used to list matches.
7079 If the current buffer is in `dired-mode', grep will be used to search
7080 in all files. If AVOID-POS is given, ignore matches near that position."
7081 (let ((case-fold-search t)
7082 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
7083 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
7084 (append '(("") (" ") ("\t") ("\n"))
7085 org-emphasis-alist)
7086 "\\|") "\\)"))
7087 (pos (point))
7088 (pre nil) (post nil)
7089 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
7090 (cond
7091 ;; First check if there are any special
7092 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
7093 ;; Now try the builtin stuff
7094 ((save-excursion
7095 (goto-char (point-min))
7096 (and
7097 (re-search-forward
7098 (concat "<<" (regexp-quote s0) ">>") nil t)
7099 (setq type 'dedicated
7100 pos (match-beginning 0))))
7101 ;; There is an exact target for this
7102 (goto-char pos))
7103 ((string-match "^/\\(.*\\)/$" s)
7104 ;; A regular expression
7105 (cond
7106 ((org-mode-p)
7107 (org-occur (match-string 1 s)))
7108 ;;((eq major-mode 'dired-mode)
7109 ;; (grep (concat "grep -n -e '" (match-string 1 s) "' *")))
7110 (t (org-do-occur (match-string 1 s)))))
7112 ;; A normal search strings
7113 (when (equal (string-to-char s) ?*)
7114 ;; Anchor on headlines, post may include tags.
7115 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
7116 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@:+]:[ \t]*\\)?$")
7117 s (substring s 1)))
7118 (remove-text-properties
7119 0 (length s)
7120 '(face nil mouse-face nil keymap nil fontified nil) s)
7121 ;; Make a series of regular expressions to find a match
7122 (setq words (org-split-string s "[ \n\r\t]+")
7124 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
7125 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
7126 "\\)" markers)
7127 re2a_ (concat "\\(" (mapconcat 'downcase words "[ \t\r\n]+") "\\)[ \t\r\n]")
7128 re2a (concat "[ \t\r\n]" re2a_)
7129 re4_ (concat "\\(" (mapconcat 'downcase words "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
7130 re4 (concat "[^a-zA-Z_]" re4_)
7132 re1 (concat pre re2 post)
7133 re3 (concat pre (if pre re4_ re4) post)
7134 re5 (concat pre ".*" re4)
7135 re2 (concat pre re2)
7136 re2a (concat pre (if pre re2a_ re2a))
7137 re4 (concat pre (if pre re4_ re4))
7138 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
7139 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
7140 re5 "\\)"
7142 (cond
7143 ((eq type 'org-occur) (org-occur reall))
7144 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
7145 (t (goto-char (point-min))
7146 (setq type 'fuzzy)
7147 (if (or (and (org-search-not-self 1 re0 nil t) (setq type 'dedicated))
7148 (org-search-not-self 1 re1 nil t)
7149 (org-search-not-self 1 re2 nil t)
7150 (org-search-not-self 1 re2a nil t)
7151 (org-search-not-self 1 re3 nil t)
7152 (org-search-not-self 1 re4 nil t)
7153 (org-search-not-self 1 re5 nil t)
7155 (goto-char (match-beginning 1))
7156 (goto-char pos)
7157 (error "No match")))))
7159 ;; Normal string-search
7160 (goto-char (point-min))
7161 (if (search-forward s nil t)
7162 (goto-char (match-beginning 0))
7163 (error "No match"))))
7164 (and (org-mode-p) (org-show-context 'link-search))
7165 type))
7167 (defun org-search-not-self (group &rest args)
7168 "Execute `re-search-forward', but only accept matches that do not
7169 enclose the position of `org-open-link-marker'."
7170 (let ((m org-open-link-marker))
7171 (catch 'exit
7172 (while (apply 're-search-forward args)
7173 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
7174 (goto-char (match-end group))
7175 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
7176 (> (match-beginning 0) (marker-position m))
7177 (< (match-end 0) (marker-position m)))
7178 (save-match-data
7179 (or (not (org-in-regexp
7180 org-bracket-link-analytic-regexp 1))
7181 (not (match-end 4)) ; no description
7182 (and (<= (match-beginning 4) (point))
7183 (>= (match-end 4) (point))))))
7184 (throw 'exit (point))))))))
7186 (defun org-get-buffer-for-internal-link (buffer)
7187 "Return a buffer to be used for displaying the link target of internal links."
7188 (cond
7189 ((not org-display-internal-link-with-indirect-buffer)
7190 buffer)
7191 ((string-match "(Clone)$" (buffer-name buffer))
7192 (message "Buffer is already a clone, not making another one")
7193 ;; we also do not modify visibility in this case
7194 buffer)
7195 (t ; make a new indirect buffer for displaying the link
7196 (let* ((bn (buffer-name buffer))
7197 (ibn (concat bn "(Clone)"))
7198 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
7199 (with-current-buffer ib (org-overview))
7200 ib))))
7202 (defun org-do-occur (regexp &optional cleanup)
7203 "Call the Emacs command `occur'.
7204 If CLEANUP is non-nil, remove the printout of the regular expression
7205 in the *Occur* buffer. This is useful if the regex is long and not useful
7206 to read."
7207 (occur regexp)
7208 (when cleanup
7209 (let ((cwin (selected-window)) win beg end)
7210 (when (setq win (get-buffer-window "*Occur*"))
7211 (select-window win))
7212 (goto-char (point-min))
7213 (when (re-search-forward "match[a-z]+" nil t)
7214 (setq beg (match-end 0))
7215 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
7216 (setq end (1- (match-beginning 0)))))
7217 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
7218 (goto-char (point-min))
7219 (select-window cwin))))
7221 ;;; The mark ring for links jumps
7223 (defvar org-mark-ring nil
7224 "Mark ring for positions before jumps in Org-mode.")
7225 (defvar org-mark-ring-last-goto nil
7226 "Last position in the mark ring used to go back.")
7227 ;; Fill and close the ring
7228 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
7229 (loop for i from 1 to org-mark-ring-length do
7230 (push (make-marker) org-mark-ring))
7231 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
7232 org-mark-ring)
7234 (defun org-mark-ring-push (&optional pos buffer)
7235 "Put the current position or POS into the mark ring and rotate it."
7236 (interactive)
7237 (setq pos (or pos (point)))
7238 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
7239 (move-marker (car org-mark-ring)
7240 (or pos (point))
7241 (or buffer (current-buffer)))
7242 (message "%s"
7243 (substitute-command-keys
7244 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
7246 (defun org-mark-ring-goto (&optional n)
7247 "Jump to the previous position in the mark ring.
7248 With prefix arg N, jump back that many stored positions. When
7249 called several times in succession, walk through the entire ring.
7250 Org-mode commands jumping to a different position in the current file,
7251 or to another Org-mode file, automatically push the old position
7252 onto the ring."
7253 (interactive "p")
7254 (let (p m)
7255 (if (eq last-command this-command)
7256 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
7257 (setq p org-mark-ring))
7258 (setq org-mark-ring-last-goto p)
7259 (setq m (car p))
7260 (switch-to-buffer (marker-buffer m))
7261 (goto-char m)
7262 (if (or (org-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
7264 (defun org-remove-angle-brackets (s)
7265 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
7266 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
7268 (defun org-add-angle-brackets (s)
7269 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
7270 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
7272 (defun org-remove-double-quotes (s)
7273 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
7274 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
7277 ;;; Following specific links
7279 (defun org-follow-timestamp-link ()
7280 (cond
7281 ((org-at-date-range-p t)
7282 (let ((org-agenda-start-on-weekday)
7283 (t1 (match-string 1))
7284 (t2 (match-string 2)))
7285 (setq t1 (time-to-days (org-time-string-to-time t1))
7286 t2 (time-to-days (org-time-string-to-time t2)))
7287 (org-agenda-list nil t1 (1+ (- t2 t1)))))
7288 ((org-at-timestamp-p t)
7289 (org-agenda-list nil (time-to-days (org-time-string-to-time
7290 (substring (match-string 1) 0 10)))
7292 (t (error "This should not happen"))))
7295 ;;; Following file links
7296 (defvar org-wait nil)
7297 (defun org-open-file (path &optional in-emacs line search)
7298 "Open the file at PATH.
7299 First, this expands any special file name abbreviations. Then the
7300 configuration variable `org-file-apps' is checked if it contains an
7301 entry for this file type, and if yes, the corresponding command is launched.
7303 If no application is found, Emacs simply visits the file.
7305 With optional prefix argument IN-EMACS, Emacs will visit the file.
7306 With a double C-c C-u prefix arg, Org tries to avoid opening in Emacs
7307 and o use an external application to visit the file.
7309 Optional LINE specifies a line to go to, optional SEARCH a string to
7310 search for. If LINE or SEARCH is given, the file will always be
7311 opened in Emacs.
7312 If the file does not exist, an error is thrown."
7313 (setq in-emacs (or in-emacs line search))
7314 (let* ((file (if (equal path "")
7315 buffer-file-name
7316 (substitute-in-file-name (expand-file-name path))))
7317 (apps (append org-file-apps (org-default-apps)))
7318 (remp (and (assq 'remote apps) (org-file-remote-p file)))
7319 (dirp (if remp nil (file-directory-p file)))
7320 (file (if (and dirp org-open-directory-means-index-dot-org)
7321 (concat (file-name-as-directory file) "index.org")
7322 file))
7323 (a-m-a-p (assq 'auto-mode apps))
7324 (dfile (downcase file))
7325 (old-buffer (current-buffer))
7326 (old-pos (point))
7327 (old-mode major-mode)
7328 ext cmd)
7329 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
7330 (setq ext (match-string 1 dfile))
7331 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
7332 (setq ext (match-string 1 dfile))))
7333 (cond
7334 ((equal in-emacs '(16))
7335 (setq cmd (cdr (assoc 'system apps))))
7336 (in-emacs (setq cmd 'emacs))
7338 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
7339 (and dirp (cdr (assoc 'directory apps)))
7340 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
7341 'string-match)
7342 (cdr (assoc ext apps))
7343 (cdr (assoc t apps))))))
7344 (when (eq cmd 'system)
7345 (setq cmd (cdr (assoc 'system apps))))
7346 (when (eq cmd 'default)
7347 (setq cmd (cdr (assoc t apps))))
7348 (when (eq cmd 'mailcap)
7349 (require 'mailcap)
7350 (mailcap-parse-mailcaps)
7351 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
7352 (command (mailcap-mime-info mime-type)))
7353 (if (stringp command)
7354 (setq cmd command)
7355 (setq cmd 'emacs))))
7356 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
7357 (not (file-exists-p file))
7358 (not org-open-non-existing-files))
7359 (error "No such file: %s" file))
7360 (cond
7361 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
7362 ;; Remove quotes around the file name - we'll use shell-quote-argument.
7363 (while (string-match "['\"]%s['\"]" cmd)
7364 (setq cmd (replace-match "%s" t t cmd)))
7365 (while (string-match "%s" cmd)
7366 (setq cmd (replace-match
7367 (save-match-data
7368 (shell-quote-argument
7369 (convert-standard-filename file)))
7370 t t cmd)))
7371 (save-window-excursion
7372 (start-process-shell-command cmd nil cmd)
7373 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))
7375 ((or (stringp cmd)
7376 (eq cmd 'emacs))
7377 (funcall (cdr (assq 'file org-link-frame-setup)) file)
7378 (widen)
7379 (if line (goto-line line)
7380 (if search (org-link-search search))))
7381 ((consp cmd)
7382 (let ((file (convert-standard-filename file)))
7383 (eval cmd)))
7384 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
7385 (and (org-mode-p) (eq old-mode 'org-mode)
7386 (or (not (equal old-buffer (current-buffer)))
7387 (not (equal old-pos (point))))
7388 (org-mark-ring-push old-pos old-buffer))))
7390 (defun org-default-apps ()
7391 "Return the default applications for this operating system."
7392 (cond
7393 ((eq system-type 'darwin)
7394 org-file-apps-defaults-macosx)
7395 ((eq system-type 'windows-nt)
7396 org-file-apps-defaults-windowsnt)
7397 (t org-file-apps-defaults-gnu)))
7399 (defun org-apps-regexp-alist (list &optional add-auto-mode)
7400 "Convert extensions to regular expressions in the cars of LIST.
7401 Also, weed out any non-string entries, because the return value is used
7402 only for regexp matching.
7403 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
7404 point to the symbol `emacs', indicating that the file should
7405 be opened in Emacs."
7406 (append
7407 (delq nil
7408 (mapcar (lambda (x)
7409 (if (not (stringp (car x)))
7411 (if (string-match "\\W" (car x))
7413 (cons (concat "\\." (car x) "\\'") (cdr x)))))
7414 list))
7415 (if add-auto-mode
7416 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
7418 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
7419 (defun org-file-remote-p (file)
7420 "Test whether FILE specifies a location on a remote system.
7421 Return non-nil if the location is indeed remote.
7423 For example, the filename \"/user@host:/foo\" specifies a location
7424 on the system \"/user@host:\"."
7425 (cond ((fboundp 'file-remote-p)
7426 (file-remote-p file))
7427 ((fboundp 'tramp-handle-file-remote-p)
7428 (tramp-handle-file-remote-p file))
7429 ((and (boundp 'ange-ftp-name-format)
7430 (string-match (car ange-ftp-name-format) file))
7432 (t nil)))
7435 ;;;; Refiling
7437 (defun org-get-org-file ()
7438 "Read a filename, with default directory `org-directory'."
7439 (let ((default (or org-default-notes-file remember-data-file)))
7440 (read-file-name (format "File name [%s]: " default)
7441 (file-name-as-directory org-directory)
7442 default)))
7444 (defun org-notes-order-reversed-p ()
7445 "Check if the current file should receive notes in reversed order."
7446 (cond
7447 ((not org-reverse-note-order) nil)
7448 ((eq t org-reverse-note-order) t)
7449 ((not (listp org-reverse-note-order)) nil)
7450 (t (catch 'exit
7451 (let ((all org-reverse-note-order)
7452 entry)
7453 (while (setq entry (pop all))
7454 (if (string-match (car entry) buffer-file-name)
7455 (throw 'exit (cdr entry))))
7456 nil)))))
7458 (defvar org-refile-target-table nil
7459 "The list of refile targets, created by `org-refile'.")
7461 (defvar org-agenda-new-buffers nil
7462 "Buffers created to visit agenda files.")
7464 (defun org-get-refile-targets (&optional default-buffer)
7465 "Produce a table with refile targets."
7466 (let ((entries (or org-refile-targets '((nil . (:level . 1)))))
7467 targets txt re files f desc descre fast-path-p level)
7468 (message "Getting targets...")
7469 (with-current-buffer (or default-buffer (current-buffer))
7470 (while (setq entry (pop entries))
7471 (setq files (car entry) desc (cdr entry))
7472 (setq fast-path-p nil)
7473 (cond
7474 ((null files) (setq files (list (current-buffer))))
7475 ((eq files 'org-agenda-files)
7476 (setq files (org-agenda-files 'unrestricted)))
7477 ((and (symbolp files) (fboundp files))
7478 (setq files (funcall files)))
7479 ((and (symbolp files) (boundp files))
7480 (setq files (symbol-value files))))
7481 (if (stringp files) (setq files (list files)))
7482 (cond
7483 ((eq (car desc) :tag)
7484 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
7485 ((eq (car desc) :todo)
7486 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
7487 ((eq (car desc) :regexp)
7488 (setq descre (cdr desc)))
7489 ((eq (car desc) :level)
7490 (setq descre (concat "^\\*\\{" (number-to-string
7491 (if org-odd-levels-only
7492 (1- (* 2 (cdr desc)))
7493 (cdr desc)))
7494 "\\}[ \t]")))
7495 ((eq (car desc) :maxlevel)
7496 (setq fast-path-p t)
7497 (setq descre (concat "^\\*\\{1," (number-to-string
7498 (if org-odd-levels-only
7499 (1- (* 2 (cdr desc)))
7500 (cdr desc)))
7501 "\\}[ \t]")))
7502 (t (error "Bad refiling target description %s" desc)))
7503 (while (setq f (pop files))
7504 (save-excursion
7505 (set-buffer (if (bufferp f) f (org-get-agenda-file-buffer f)))
7506 (if (bufferp f) (setq f (buffer-file-name (buffer-base-buffer f))))
7507 (save-excursion
7508 (save-restriction
7509 (widen)
7510 (goto-char (point-min))
7511 (while (re-search-forward descre nil t)
7512 (goto-char (point-at-bol))
7513 (when (looking-at org-complex-heading-regexp)
7514 (setq level (org-reduced-level (- (match-end 1) (match-beginning 1)))
7515 txt (org-link-display-format (match-string 4))
7516 re (concat "^" (regexp-quote
7517 (buffer-substring (match-beginning 1)
7518 (match-end 4)))))
7519 (if (match-end 5) (setq re (concat re "[ \t]+"
7520 (regexp-quote
7521 (match-string 5)))))
7522 (setq re (concat re "[ \t]*$"))
7523 (when org-refile-use-outline-path
7524 (setq txt (mapconcat 'org-protect-slash
7525 (append
7526 (if (eq org-refile-use-outline-path 'file)
7527 (list (file-name-nondirectory
7528 (buffer-file-name (buffer-base-buffer))))
7529 (if (eq org-refile-use-outline-path 'full-file-path)
7530 (list (buffer-file-name (buffer-base-buffer)))))
7531 (org-get-outline-path fast-path-p level txt)
7532 (list txt))
7533 "/")))
7534 (push (list txt f re (point)) targets))
7535 (goto-char (point-at-eol))))))))
7536 (message "Getting targets...done")
7537 (nreverse targets))))
7539 (defun org-protect-slash (s)
7540 (while (string-match "/" s)
7541 (setq s (replace-match "\\" t t s)))
7544 (defvar org-olpa (make-vector 20 nil))
7546 (defun org-get-outline-path (&optional fastp level heading)
7547 "Return the outline path to the current entry, as a list."
7548 (if fastp
7549 (progn
7550 (if (> level 19)
7551 (error "Outline path failure, more than 19 levels."))
7552 (loop for i from level upto 19 do
7553 (aset org-olpa i nil))
7554 (prog1
7555 (delq nil (append org-olpa nil))
7556 (aset org-olpa level heading)))
7557 (let (rtn)
7558 (save-excursion
7559 (while (org-up-heading-safe)
7560 (when (looking-at org-complex-heading-regexp)
7561 (push (org-match-string-no-properties 4) rtn)))
7562 rtn))))
7564 (defvar org-refile-history nil
7565 "History for refiling operations.")
7567 (defun org-refile (&optional goto default-buffer)
7568 "Move the entry at point to another heading.
7569 The list of target headings is compiled using the information in
7570 `org-refile-targets', which see. This list is created before each use
7571 and will therefore always be up-to-date.
7573 At the target location, the entry is filed as a subitem of the target heading.
7574 Depending on `org-reverse-note-order', the new subitem will either be the
7575 first or the last subitem.
7577 If there is an active region, all entries in that region will be moved.
7578 However, the region must fulfil the requirement that the first heading
7579 is the first one sets the top-level of the moved text - at most siblings
7580 below it are allowed.
7582 With prefix arg GOTO, the command will only visit the target location,
7583 not actually move anything.
7584 With a double prefix `C-u C-u', go to the location where the last refiling
7585 operation has put the subtree."
7586 (interactive "P")
7587 (let* ((cbuf (current-buffer))
7588 (regionp (org-region-active-p))
7589 (region-start (and regionp (region-beginning)))
7590 (region-end (and regionp (region-end)))
7591 (region-length (and regionp (- region-end region-start)))
7592 (filename (buffer-file-name (buffer-base-buffer cbuf)))
7593 pos it nbuf file re level reversed)
7594 (when regionp (goto-char region-start)
7595 (unless (org-kill-is-subtree-p
7596 (buffer-substring region-start region-end))
7597 (error "The region is not a (sequence of) subtree(s)")))
7598 (if (equal goto '(16))
7599 (org-refile-goto-last-stored)
7600 (when (setq it (org-refile-get-location
7601 (if goto "Goto: " "Refile to: ") default-buffer))
7602 (setq file (nth 1 it)
7603 re (nth 2 it)
7604 pos (nth 3 it))
7605 (if (and (equal (buffer-file-name) file)
7606 (if regionp
7607 (and (>= pos region-start)
7608 (<= pos region-end))
7609 (and (>= pos (point))
7610 (< pos (save-excursion
7611 (org-end-of-subtree t t))))))
7612 (error "Cannot refile to position inside the tree or region"))
7614 (setq nbuf (or (find-buffer-visiting file)
7615 (find-file-noselect file)))
7616 (if goto
7617 (progn
7618 (switch-to-buffer nbuf)
7619 (goto-char pos)
7620 (org-show-context 'org-goto))
7621 (if regionp
7622 (progn
7623 (kill-new (buffer-substring region-start region-end))
7624 (org-save-markers-in-region region-start region-end))
7625 (org-copy-subtree 1 nil t))
7626 (save-excursion
7627 (set-buffer (setq nbuf (or (find-buffer-visiting file)
7628 (find-file-noselect file))))
7629 (setq reversed (org-notes-order-reversed-p))
7630 (save-excursion
7631 (save-restriction
7632 (widen)
7633 (goto-char pos)
7634 (looking-at outline-regexp)
7635 (setq level (org-get-valid-level (funcall outline-level) 1))
7636 (goto-char
7637 (if reversed
7638 (or (outline-next-heading) (point-max))
7639 (or (save-excursion (outline-get-next-sibling))
7640 (org-end-of-subtree t t)
7641 (point-max))))
7642 (if (not (bolp)) (newline))
7643 (bookmark-set "org-refile-last-stored")
7644 (org-paste-subtree level))))
7645 (if regionp
7646 (delete-region (point) (+ (point) region-length))
7647 (org-cut-subtree))
7648 (setq org-markers-to-move nil)
7649 (message "Refiled to \"%s\"" (car it)))))))
7651 (defun org-refile-goto-last-stored ()
7652 "Go to the location where the last refile was stored."
7653 (interactive)
7654 (bookmark-jump "org-refile-last-stored")
7655 (message "This is the location of the last refile"))
7657 (defun org-refile-get-location (&optional prompt default-buffer)
7658 "Prompt the user for a refile location, using PROMPT."
7659 (let ((org-refile-targets org-refile-targets)
7660 (org-refile-use-outline-path org-refile-use-outline-path))
7661 (setq org-refile-target-table (org-get-refile-targets default-buffer)))
7662 (unless org-refile-target-table
7663 (error "No refile targets"))
7664 (let* ((cbuf (current-buffer))
7665 (cfunc (if (and org-refile-use-outline-path
7666 org-outline-path-complete-in-steps)
7667 'org-olpath-completing-read
7668 'org-ido-completing-read))
7669 (extra (if org-refile-use-outline-path "/" ""))
7670 (filename (buffer-file-name (buffer-base-buffer cbuf)))
7671 (tbl (mapcar
7672 (lambda (x)
7673 (if (not (equal filename (nth 1 x)))
7674 (cons (concat (car x) extra " ("
7675 (file-name-nondirectory (nth 1 x)) ")")
7676 (cdr x))
7677 (cons (concat (car x) extra) (cdr x))))
7678 org-refile-target-table))
7679 (completion-ignore-case t))
7680 (assoc (funcall cfunc prompt tbl nil t nil 'org-refile-history)
7681 tbl)))
7683 (defun org-olpath-completing-read (prompt collection &rest args)
7684 "Read an outline path like a file name."
7685 (let ((thetable collection))
7686 (apply
7687 'org-ido-completing-read prompt
7688 (lambda (string predicate &optional flag)
7689 (let (rtn r s f (l (length string)))
7690 (cond
7691 ((eq flag nil)
7692 ;; try completion
7693 (try-completion string thetable))
7694 ((eq flag t)
7695 ;; all-completions
7696 (setq rtn (all-completions string thetable predicate))
7697 (mapcar
7698 (lambda (x)
7699 (setq r (substring x l))
7700 (if (string-match " ([^)]*)$" x)
7701 (setq f (match-string 0 x))
7702 (setq f ""))
7703 (if (string-match "/" r)
7704 (concat string (substring r 0 (match-end 0)) f)
7706 rtn))
7707 ((eq flag 'lambda)
7708 ;; exact match?
7709 (assoc string thetable)))
7711 args)))
7713 ;;;; Dynamic blocks
7715 (defun org-find-dblock (name)
7716 "Find the first dynamic block with name NAME in the buffer.
7717 If not found, stay at current position and return nil."
7718 (let (pos)
7719 (save-excursion
7720 (goto-char (point-min))
7721 (setq pos (and (re-search-forward (concat "^#\\+BEGIN:[ \t]+" name "\\>")
7722 nil t)
7723 (match-beginning 0))))
7724 (if pos (goto-char pos))
7725 pos))
7727 (defconst org-dblock-start-re
7728 "^#\\+BEGIN:[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
7729 "Matches the startline of a dynamic block, with parameters.")
7731 (defconst org-dblock-end-re "^#\\+END\\([: \t\r\n]\\|$\\)"
7732 "Matches the end of a dynamic block.")
7734 (defun org-create-dblock (plist)
7735 "Create a dynamic block section, with parameters taken from PLIST.
7736 PLIST must contain a :name entry which is used as name of the block."
7737 (unless (bolp) (newline))
7738 (let ((name (plist-get plist :name)))
7739 (insert "#+BEGIN: " name)
7740 (while plist
7741 (if (eq (car plist) :name)
7742 (setq plist (cddr plist))
7743 (insert " " (prin1-to-string (pop plist)))))
7744 (insert "\n\n#+END:\n")
7745 (beginning-of-line -2)))
7747 (defun org-prepare-dblock ()
7748 "Prepare dynamic block for refresh.
7749 This empties the block, puts the cursor at the insert position and returns
7750 the property list including an extra property :name with the block name."
7751 (unless (looking-at org-dblock-start-re)
7752 (error "Not at a dynamic block"))
7753 (let* ((begdel (1+ (match-end 0)))
7754 (name (org-no-properties (match-string 1)))
7755 (params (append (list :name name)
7756 (read (concat "(" (match-string 3) ")")))))
7757 (unless (re-search-forward org-dblock-end-re nil t)
7758 (error "Dynamic block not terminated"))
7759 (setq params
7760 (append params
7761 (list :content (buffer-substring
7762 begdel (match-beginning 0)))))
7763 (delete-region begdel (match-beginning 0))
7764 (goto-char begdel)
7765 (open-line 1)
7766 params))
7768 (defun org-map-dblocks (&optional command)
7769 "Apply COMMAND to all dynamic blocks in the current buffer.
7770 If COMMAND is not given, use `org-update-dblock'."
7771 (let ((cmd (or command 'org-update-dblock))
7772 pos)
7773 (save-excursion
7774 (goto-char (point-min))
7775 (while (re-search-forward org-dblock-start-re nil t)
7776 (goto-char (setq pos (match-beginning 0)))
7777 (condition-case nil
7778 (funcall cmd)
7779 (error (message "Error during update of dynamic block")))
7780 (goto-char pos)
7781 (unless (re-search-forward org-dblock-end-re nil t)
7782 (error "Dynamic block not terminated"))))))
7784 (defun org-dblock-update (&optional arg)
7785 "User command for updating dynamic blocks.
7786 Update the dynamic block at point. With prefix ARG, update all dynamic
7787 blocks in the buffer."
7788 (interactive "P")
7789 (if arg
7790 (org-update-all-dblocks)
7791 (or (looking-at org-dblock-start-re)
7792 (org-beginning-of-dblock))
7793 (org-update-dblock)))
7795 (defun org-update-dblock ()
7796 "Update the dynamic block at point
7797 This means to empty the block, parse for parameters and then call
7798 the correct writing function."
7799 (save-window-excursion
7800 (let* ((pos (point))
7801 (line (org-current-line))
7802 (params (org-prepare-dblock))
7803 (name (plist-get params :name))
7804 (cmd (intern (concat "org-dblock-write:" name))))
7805 (message "Updating dynamic block `%s' at line %d..." name line)
7806 (funcall cmd params)
7807 (message "Updating dynamic block `%s' at line %d...done" name line)
7808 (goto-char pos))))
7810 (defun org-beginning-of-dblock ()
7811 "Find the beginning of the dynamic block at point.
7812 Error if there is no such block at point."
7813 (let ((pos (point))
7814 beg)
7815 (end-of-line 1)
7816 (if (and (re-search-backward org-dblock-start-re nil t)
7817 (setq beg (match-beginning 0))
7818 (re-search-forward org-dblock-end-re nil t)
7819 (> (match-end 0) pos))
7820 (goto-char beg)
7821 (goto-char pos)
7822 (error "Not in a dynamic block"))))
7824 (defun org-update-all-dblocks ()
7825 "Update all dynamic blocks in the buffer.
7826 This function can be used in a hook."
7827 (when (org-mode-p)
7828 (org-map-dblocks 'org-update-dblock)))
7831 ;;;; Completion
7833 (defconst org-additional-option-like-keywords
7834 '("BEGIN_HTML" "BEGIN_LaTeX" "END_HTML" "END_LaTeX"
7835 "ORGTBL" "HTML:" "LaTeX:" "BEGIN:" "END:" "TBLFM"
7836 "BEGIN_EXAMPLE" "END_EXAMPLE"
7837 "BEGIN_QUOTE" "END_QUOTE"
7838 "BEGIN_VERSE" "END_VERSE"
7839 "BEGIN_SRC" "END_SRC"
7840 "CAPTION" "LABEL" "ATTR_HTML" "ATTR_LaTeX"))
7842 (defcustom org-structure-template-alist
7844 ("s" "#+begin_src ?\n\n#+end_src"
7845 "<src lang=\"?\">\n\n</src>")
7846 ("e" "#+begin_example\n?\n#+end_example"
7847 "<example>\n?\n</example>")
7848 ("q" "#+begin_quote\n?\n#+end_quote"
7849 "<quote>\n?\n</quote>")
7850 ("v" "#+begin_verse\n?\n#+end_verse"
7851 "<verse>\n?\n/verse>")
7852 ("l" "#+begin_latex\n?\n#+end_latex"
7853 "<literal style=\"latex\">\n?\n</literal>")
7854 ("L" "#+latex: "
7855 "<literal style=\"latex\">?</literal>")
7856 ("h" "#+begin_html\n?\n#+end_html"
7857 "<literal style=\"html\">\n?\n</literal>")
7858 ("H" "#+html: "
7859 "<literal style=\"html\">?</literal>")
7860 ("a" "#+begin_ascii\n?\n#+end_ascii")
7861 ("A" "#+ascii: ")
7862 ("i" "#+include %file ?"
7863 "<include file=%file markup=\"?\">")
7865 "Structure completion elements.
7866 This is a list of abbreviation keys and values. The value gets inserted
7867 it you type @samp{.} followed by the key and then the completion key,
7868 usually `M-TAB'. %file will be replaced by a file name after prompting
7869 for the file using completion.
7870 There are two templates for each key, the first uses the original Org syntax,
7871 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
7872 the default when the /org-mtags.el/ module has been loaded. See also the
7873 variable `org-mtags-prefer-muse-templates'.
7874 This is an experimental feature, it is undecided if it is going to stay in."
7875 :group 'org-completion
7876 :type '(repeat
7877 (string :tag "Key")
7878 (string :tag "Template")
7879 (string :tag "Muse Template")))
7881 (defun org-try-structure-completion ()
7882 "Try to complete a structure template before point.
7883 This looks for strings like \"<e\" on an otherwise empty line and
7884 expands them."
7885 (let ((l (buffer-substring (point-at-bol) (point)))
7887 (when (and (looking-at "[ \t]*$")
7888 (string-match "^[ \t]*<\\([a-z]+\\)$"l)
7889 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
7890 (org-complete-expand-structure-template (+ -1 (point-at-bol)
7891 (match-beginning 1)) a)
7892 t)))
7894 (defun org-complete-expand-structure-template (start cell)
7895 "Expand a structure template."
7896 (let* ((musep (org-bound-and-true-p org-mtags-prefer-muse-templates))
7897 (rpl (nth (if musep 2 1) cell)))
7898 (delete-region start (point))
7899 (when (string-match "\\`#\\+" rpl)
7900 (cond
7901 ((bolp))
7902 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
7903 (delete-region (point-at-bol) (point)))
7904 (t (newline))))
7905 (setq start (point))
7906 (if (string-match "%file" rpl)
7907 (setq rpl (replace-match
7908 (concat
7909 "\""
7910 (save-match-data
7911 (abbreviate-file-name (read-file-name "Include file: ")))
7912 "\"")
7913 t t rpl)))
7914 (insert rpl)
7915 (if (re-search-backward "\\?" start t) (delete-char 1))))
7918 (defun org-complete (&optional arg)
7919 "Perform completion on word at point.
7920 At the beginning of a headline, this completes TODO keywords as given in
7921 `org-todo-keywords'.
7922 If the current word is preceded by a backslash, completes the TeX symbols
7923 that are supported for HTML support.
7924 If the current word is preceded by \"#+\", completes special words for
7925 setting file options.
7926 In the line after \"#+STARTUP:, complete valid keywords.\"
7927 At all other locations, this simply calls the value of
7928 `org-completion-fallback-command'."
7929 (interactive "P")
7930 (org-without-partial-completion
7931 (catch 'exit
7932 (let* ((a nil)
7933 (end (point))
7934 (beg1 (save-excursion
7935 (skip-chars-backward (org-re "[:alnum:]_@"))
7936 (point)))
7937 (beg (save-excursion
7938 (skip-chars-backward "a-zA-Z0-9_:$")
7939 (point)))
7940 (confirm (lambda (x) (stringp (car x))))
7941 (searchhead (equal (char-before beg) ?*))
7942 (struct
7943 (when (and (member (char-before beg1) '(?. ?<))
7944 (setq a (assoc (buffer-substring beg1 (point))
7945 org-structure-template-alist)))
7946 (org-complete-expand-structure-template (1- beg1) a)
7947 (throw 'exit t)))
7948 (tag (and (equal (char-before beg1) ?:)
7949 (equal (char-after (point-at-bol)) ?*)))
7950 (prop (and (equal (char-before beg1) ?:)
7951 (not (equal (char-after (point-at-bol)) ?*))))
7952 (texp (equal (char-before beg) ?\\))
7953 (link (equal (char-before beg) ?\[))
7954 (opt (equal (buffer-substring (max (point-at-bol) (- beg 2))
7955 beg)
7956 "#+"))
7957 (startup (string-match "^#\\+STARTUP:.*"
7958 (buffer-substring (point-at-bol) (point))))
7959 (completion-ignore-case opt)
7960 (type nil)
7961 (tbl nil)
7962 (table (cond
7963 (opt
7964 (setq type :opt)
7965 (require 'org-exp)
7966 (append
7967 (mapcar
7968 (lambda (x)
7969 (string-match "^#\\+\\(\\([A-Z_]+:?\\).*\\)" x)
7970 (cons (match-string 2 x) (match-string 1 x)))
7971 (org-split-string (org-get-current-options) "\n"))
7972 (mapcar 'list org-additional-option-like-keywords)))
7973 (startup
7974 (setq type :startup)
7975 org-startup-options)
7976 (link (append org-link-abbrev-alist-local
7977 org-link-abbrev-alist))
7978 (texp
7979 (setq type :tex)
7980 org-html-entities)
7981 ((string-match "\\`\\*+[ \t]+\\'"
7982 (buffer-substring (point-at-bol) beg))
7983 (setq type :todo)
7984 (mapcar 'list org-todo-keywords-1))
7985 (searchhead
7986 (setq type :searchhead)
7987 (save-excursion
7988 (goto-char (point-min))
7989 (while (re-search-forward org-todo-line-regexp nil t)
7990 (push (list
7991 (org-make-org-heading-search-string
7992 (match-string 3) t))
7993 tbl)))
7994 tbl)
7995 (tag (setq type :tag beg beg1)
7996 (or org-tag-alist (org-get-buffer-tags)))
7997 (prop (setq type :prop beg beg1)
7998 (mapcar 'list (org-buffer-property-keys nil t t)))
7999 (t (progn
8000 (call-interactively org-completion-fallback-command)
8001 (throw 'exit nil)))))
8002 (pattern (buffer-substring-no-properties beg end))
8003 (completion (try-completion pattern table confirm)))
8004 (cond ((eq completion t)
8005 (if (not (assoc (upcase pattern) table))
8006 (message "Already complete")
8007 (if (and (equal type :opt)
8008 (not (member (car (assoc (upcase pattern) table))
8009 org-additional-option-like-keywords)))
8010 (insert (substring (cdr (assoc (upcase pattern) table))
8011 (length pattern)))
8012 (if (memq type '(:tag :prop)) (insert ":")))))
8013 ((null completion)
8014 (message "Can't find completion for \"%s\"" pattern)
8015 (ding))
8016 ((not (string= pattern completion))
8017 (delete-region beg end)
8018 (if (string-match " +$" completion)
8019 (setq completion (replace-match "" t t completion)))
8020 (insert completion)
8021 (if (get-buffer-window "*Completions*")
8022 (delete-window (get-buffer-window "*Completions*")))
8023 (if (assoc completion table)
8024 (if (eq type :todo) (insert " ")
8025 (if (memq type '(:tag :prop)) (insert ":"))))
8026 (if (and (equal type :opt) (assoc completion table))
8027 (message "%s" (substitute-command-keys
8028 "Press \\[org-complete] again to insert example settings"))))
8030 (message "Making completion list...")
8031 (let ((list (sort (all-completions pattern table confirm)
8032 'string<)))
8033 (with-output-to-temp-buffer "*Completions*"
8034 (condition-case nil
8035 ;; Protection needed for XEmacs and emacs 21
8036 (display-completion-list list pattern)
8037 (error (display-completion-list list)))))
8038 (message "Making completion list...%s" "done")))))))
8040 ;;;; TODO, DEADLINE, Comments
8042 (defun org-toggle-comment ()
8043 "Change the COMMENT state of an entry."
8044 (interactive)
8045 (save-excursion
8046 (org-back-to-heading)
8047 (let (case-fold-search)
8048 (if (looking-at (concat outline-regexp
8049 "\\( *\\<" org-comment-string "\\>[ \t]*\\)"))
8050 (replace-match "" t t nil 1)
8051 (if (looking-at outline-regexp)
8052 (progn
8053 (goto-char (match-end 0))
8054 (insert org-comment-string " ")))))))
8056 (defvar org-last-todo-state-is-todo nil
8057 "This is non-nil when the last TODO state change led to a TODO state.
8058 If the last change removed the TODO tag or switched to DONE, then
8059 this is nil.")
8061 (defvar org-setting-tags nil) ; dynamically skipped
8063 (defun org-parse-local-options (string var)
8064 "Parse STRING for startup setting relevant for variable VAR."
8065 (let ((rtn (symbol-value var))
8066 e opts)
8067 (save-match-data
8068 (if (or (not string) (not (string-match "\\S-" string)))
8070 (setq opts (delq nil (mapcar (lambda (x)
8071 (setq e (assoc x org-startup-options))
8072 (if (eq (nth 1 e) var) e nil))
8073 (org-split-string string "[ \t]+"))))
8074 (if (not opts)
8076 (setq rtn nil)
8077 (while (setq e (pop opts))
8078 (if (not (nth 3 e))
8079 (setq rtn (nth 2 e))
8080 (if (not (listp rtn)) (setq rtn nil))
8081 (push (nth 2 e) rtn)))
8082 rtn)))))
8084 (defvar org-blocker-hook nil
8085 "Hook for functions that are allowed to block a state change.
8087 Each function gets as its single argument a property list, see
8088 `org-trigger-hook' for more information about this list.
8090 If any of the functions in this hook returns nil, the state change
8091 is blocked.")
8093 (defvar org-trigger-hook nil
8094 "Hook for functions that are triggered by a state change.
8096 Each function gets as its single argument a property list with at least
8097 the following elements:
8099 (:type type-of-change :position pos-at-entry-start
8100 :from old-state :to new-state)
8102 Depending on the type, more properties may be present.
8104 This mechanism is currently implemented for:
8106 TODO state changes
8107 ------------------
8108 :type todo-state-change
8109 :from previous state (keyword as a string), or nil
8110 :to new state (keyword as a string), or nil")
8112 (defvar org-agenda-headline-snapshot-before-repeat)
8113 (defun org-todo (&optional arg)
8114 "Change the TODO state of an item.
8115 The state of an item is given by a keyword at the start of the heading,
8116 like
8117 *** TODO Write paper
8118 *** DONE Call mom
8120 The different keywords are specified in the variable `org-todo-keywords'.
8121 By default the available states are \"TODO\" and \"DONE\".
8122 So for this example: when the item starts with TODO, it is changed to DONE.
8123 When it starts with DONE, the DONE is removed. And when neither TODO nor
8124 DONE are present, add TODO at the beginning of the heading.
8126 With C-u prefix arg, use completion to determine the new state.
8127 With numeric prefix arg, switch to that state.
8129 For calling through lisp, arg is also interpreted in the following way:
8130 'none -> empty state
8131 \"\"(empty string) -> switch to empty state
8132 'done -> switch to DONE
8133 'nextset -> switch to the next set of keywords
8134 'previousset -> switch to the previous set of keywords
8135 \"WAITING\" -> switch to the specified keyword, but only if it
8136 really is a member of `org-todo-keywords'."
8137 (interactive "P")
8138 (save-excursion
8139 (catch 'exit
8140 (org-back-to-heading)
8141 (if (looking-at outline-regexp) (goto-char (1- (match-end 0))))
8142 (or (looking-at (concat " +" org-todo-regexp " *"))
8143 (looking-at " *"))
8144 (let* ((match-data (match-data))
8145 (startpos (point-at-bol))
8146 (logging (save-match-data (org-entry-get nil "LOGGING" t)))
8147 (org-log-done org-log-done)
8148 (org-log-repeat org-log-repeat)
8149 (org-todo-log-states org-todo-log-states)
8150 (this (match-string 1))
8151 (hl-pos (match-beginning 0))
8152 (head (org-get-todo-sequence-head this))
8153 (ass (assoc head org-todo-kwd-alist))
8154 (interpret (nth 1 ass))
8155 (done-word (nth 3 ass))
8156 (final-done-word (nth 4 ass))
8157 (last-state (or this ""))
8158 (completion-ignore-case t)
8159 (member (member this org-todo-keywords-1))
8160 (tail (cdr member))
8161 (state (cond
8162 ((and org-todo-key-trigger
8163 (or (and (equal arg '(4)) (eq org-use-fast-todo-selection 'prefix))
8164 (and (not arg) org-use-fast-todo-selection
8165 (not (eq org-use-fast-todo-selection 'prefix)))))
8166 ;; Use fast selection
8167 (org-fast-todo-selection))
8168 ((and (equal arg '(4))
8169 (or (not org-use-fast-todo-selection)
8170 (not org-todo-key-trigger)))
8171 ;; Read a state with completion
8172 (org-ido-completing-read "State: " (mapcar (lambda(x) (list x))
8173 org-todo-keywords-1)
8174 nil t))
8175 ((eq arg 'right)
8176 (if this
8177 (if tail (car tail) nil)
8178 (car org-todo-keywords-1)))
8179 ((eq arg 'left)
8180 (if (equal member org-todo-keywords-1)
8182 (if this
8183 (nth (- (length org-todo-keywords-1) (length tail) 2)
8184 org-todo-keywords-1)
8185 (org-last org-todo-keywords-1))))
8186 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
8187 (setq arg nil))) ; hack to fall back to cycling
8188 (arg
8189 ;; user or caller requests a specific state
8190 (cond
8191 ((equal arg "") nil)
8192 ((eq arg 'none) nil)
8193 ((eq arg 'done) (or done-word (car org-done-keywords)))
8194 ((eq arg 'nextset)
8195 (or (car (cdr (member head org-todo-heads)))
8196 (car org-todo-heads)))
8197 ((eq arg 'previousset)
8198 (let ((org-todo-heads (reverse org-todo-heads)))
8199 (or (car (cdr (member head org-todo-heads)))
8200 (car org-todo-heads))))
8201 ((car (member arg org-todo-keywords-1)))
8202 ((nth (1- (prefix-numeric-value arg))
8203 org-todo-keywords-1))))
8204 ((null member) (or head (car org-todo-keywords-1)))
8205 ((equal this final-done-word) nil) ;; -> make empty
8206 ((null tail) nil) ;; -> first entry
8207 ((eq interpret 'sequence)
8208 (car tail))
8209 ((memq interpret '(type priority))
8210 (if (eq this-command last-command)
8211 (car tail)
8212 (if (> (length tail) 0)
8213 (or done-word (car org-done-keywords))
8214 nil)))
8215 (t nil)))
8216 (next (if state (concat " " state " ") " "))
8217 (change-plist (list :type 'todo-state-change :from this :to state
8218 :position startpos))
8219 dolog now-done-p)
8220 (when org-blocker-hook
8221 (unless (save-excursion
8222 (save-match-data
8223 (run-hook-with-args-until-failure
8224 'org-blocker-hook change-plist)))
8225 (if (interactive-p)
8226 (error "TODO state change from %s to %s blocked" this state)
8227 ;; fail silently
8228 (message "TODO state change from %s to %s blocked" this state)
8229 (throw 'exit nil))))
8230 (store-match-data match-data)
8231 (replace-match next t t)
8232 (unless (pos-visible-in-window-p hl-pos)
8233 (message "TODO state changed to %s" (org-trim next)))
8234 (unless head
8235 (setq head (org-get-todo-sequence-head state)
8236 ass (assoc head org-todo-kwd-alist)
8237 interpret (nth 1 ass)
8238 done-word (nth 3 ass)
8239 final-done-word (nth 4 ass)))
8240 (when (memq arg '(nextset previousset))
8241 (message "Keyword-Set %d/%d: %s"
8242 (- (length org-todo-sets) -1
8243 (length (memq (assoc state org-todo-sets) org-todo-sets)))
8244 (length org-todo-sets)
8245 (mapconcat 'identity (assoc state org-todo-sets) " ")))
8246 (setq org-last-todo-state-is-todo
8247 (not (member state org-done-keywords)))
8248 (setq now-done-p (and (member state org-done-keywords)
8249 (not (member this org-done-keywords))))
8250 (and logging (org-local-logging logging))
8251 (when (and (or org-todo-log-states org-log-done)
8252 (not (memq arg '(nextset previousset))))
8253 ;; we need to look at recording a time and note
8254 (setq dolog (or (nth 1 (assoc state org-todo-log-states))
8255 (nth 2 (assoc this org-todo-log-states))))
8256 (when (and state
8257 (member state org-not-done-keywords)
8258 (not (member this org-not-done-keywords)))
8259 ;; This is now a todo state and was not one before
8260 ;; If there was a CLOSED time stamp, get rid of it.
8261 (org-add-planning-info nil nil 'closed))
8262 (when (and now-done-p org-log-done)
8263 ;; It is now done, and it was not done before
8264 (org-add-planning-info 'closed (org-current-time))
8265 (if (and (not dolog) (eq 'note org-log-done))
8266 (org-add-log-setup 'done state 'findpos 'note)))
8267 (when (and state dolog)
8268 ;; This is a non-nil state, and we need to log it
8269 (org-add-log-setup 'state state 'findpos dolog)))
8270 ;; Fixup tag positioning
8271 (org-todo-trigger-tag-changes state)
8272 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
8273 (when org-provide-todo-statistics
8274 (org-update-parent-todo-statistics))
8275 (run-hooks 'org-after-todo-state-change-hook)
8276 (if (and arg (not (member state org-done-keywords)))
8277 (setq head (org-get-todo-sequence-head state)))
8278 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
8279 ;; Do we need to trigger a repeat?
8280 (when now-done-p
8281 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
8282 ;; This is for the agenda, take a snapshot of the headline.
8283 (save-match-data
8284 (setq org-agenda-headline-snapshot-before-repeat
8285 (org-get-heading))))
8286 (org-auto-repeat-maybe state))
8287 ;; Fixup cursor location if close to the keyword
8288 (if (and (outline-on-heading-p)
8289 (not (bolp))
8290 (save-excursion (beginning-of-line 1)
8291 (looking-at org-todo-line-regexp))
8292 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
8293 (progn
8294 (goto-char (or (match-end 2) (match-end 1)))
8295 (just-one-space)))
8296 (when org-trigger-hook
8297 (save-excursion
8298 (run-hook-with-args 'org-trigger-hook change-plist)))))))
8300 (defun org-update-parent-todo-statistics ()
8301 "Update any statistics cookie in the parent of the current headline."
8302 (interactive)
8303 (let ((box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
8304 level (cnt-all 0) (cnt-done 0) is-percent kwd)
8305 (catch 'exit
8306 (save-excursion
8307 (setq level (org-up-heading-safe))
8308 (unless (and level
8309 (re-search-forward box-re (point-at-eol) t))
8310 (throw 'exit nil))
8311 (setq is-percent (match-end 2))
8312 (save-match-data
8313 (unless (outline-next-heading) (throw 'exit nil))
8314 (while (looking-at org-todo-line-regexp)
8315 (setq kwd (match-string 2))
8316 (and kwd (setq cnt-all (1+ cnt-all)))
8317 (and (member kwd org-done-keywords)
8318 (setq cnt-done (1+ cnt-done)))
8319 (condition-case nil
8320 (org-forward-same-level 1)
8321 (error (end-of-line 1)))))
8322 (replace-match
8323 (if is-percent
8324 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
8325 (format "[%d/%d]" cnt-done cnt-all)))
8326 (run-hook-with-args 'org-after-todo-statistics-hook
8327 cnt-done (- cnt-all cnt-done))))))
8329 (defvar org-after-todo-statistics-hook nil
8330 "Hook that is called after a TODO statistics cookie has been updated.
8331 Each function is called with two arguments: the number of not-done entries
8332 and the number of done entries.
8334 For example, the following function, when added to this hook, will switch
8335 an entry to DONE when all children are done, and back to TODO when new
8336 entries are set to a TODO status. Note that this hook is only called
8337 when there is a statistics cookie in the headline!
8339 (defun org-summary-todo (n-done n-not-done)
8340 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
8341 (let (org-log-done org-log-states) ; turn off logging
8342 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
8345 (defun org-todo-trigger-tag-changes (state)
8346 "Apply the changes defined in `org-todo-state-tags-triggers'."
8347 (let ((l org-todo-state-tags-triggers)
8348 changes)
8349 (when (or (not state) (equal state ""))
8350 (setq changes (append changes (cdr (assoc "" l)))))
8351 (when (and (stringp state) (> (length state) 0))
8352 (setq changes (append changes (cdr (assoc state l)))))
8353 (when (member state org-not-done-keywords)
8354 (setq changes (append changes (cdr (assoc 'todo l)))))
8355 (when (member state org-done-keywords)
8356 (setq changes (append changes (cdr (assoc 'done l)))))
8357 (dolist (c changes)
8358 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
8360 (defun org-local-logging (value)
8361 "Get logging settings from a property VALUE."
8362 (let* (words w a)
8363 ;; directly set the variables, they are already local.
8364 (setq org-log-done nil
8365 org-log-repeat nil
8366 org-todo-log-states nil)
8367 (setq words (org-split-string value))
8368 (while (setq w (pop words))
8369 (cond
8370 ((setq a (assoc w org-startup-options))
8371 (and (member (nth 1 a) '(org-log-done org-log-repeat))
8372 (set (nth 1 a) (nth 2 a))))
8373 ((setq a (org-extract-log-state-settings w))
8374 (and (member (car a) org-todo-keywords-1)
8375 (push a org-todo-log-states)))))))
8377 (defun org-get-todo-sequence-head (kwd)
8378 "Return the head of the TODO sequence to which KWD belongs.
8379 If KWD is not set, check if there is a text property remembering the
8380 right sequence."
8381 (let (p)
8382 (cond
8383 ((not kwd)
8384 (or (get-text-property (point-at-bol) 'org-todo-head)
8385 (progn
8386 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
8387 nil (point-at-eol)))
8388 (get-text-property p 'org-todo-head))))
8389 ((not (member kwd org-todo-keywords-1))
8390 (car org-todo-keywords-1))
8391 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
8393 (defun org-fast-todo-selection ()
8394 "Fast TODO keyword selection with single keys.
8395 Returns the new TODO keyword, or nil if no state change should occur."
8396 (let* ((fulltable org-todo-key-alist)
8397 (done-keywords org-done-keywords) ;; needed for the faces.
8398 (maxlen (apply 'max (mapcar
8399 (lambda (x)
8400 (if (stringp (car x)) (string-width (car x)) 0))
8401 fulltable)))
8402 (expert nil)
8403 (fwidth (+ maxlen 3 1 3))
8404 (ncol (/ (- (window-width) 4) fwidth))
8405 tg cnt e c tbl
8406 groups ingroup)
8407 (save-window-excursion
8408 (if expert
8409 (set-buffer (get-buffer-create " *Org todo*"))
8410 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
8411 (erase-buffer)
8412 (org-set-local 'org-done-keywords done-keywords)
8413 (setq tbl fulltable cnt 0)
8414 (while (setq e (pop tbl))
8415 (cond
8416 ((equal e '(:startgroup))
8417 (push '() groups) (setq ingroup t)
8418 (when (not (= cnt 0))
8419 (setq cnt 0)
8420 (insert "\n"))
8421 (insert "{ "))
8422 ((equal e '(:endgroup))
8423 (setq ingroup nil cnt 0)
8424 (insert "}\n"))
8426 (setq tg (car e) c (cdr e))
8427 (if ingroup (push tg (car groups)))
8428 (setq tg (org-add-props tg nil 'face
8429 (org-get-todo-face tg)))
8430 (if (and (= cnt 0) (not ingroup)) (insert " "))
8431 (insert "[" c "] " tg (make-string
8432 (- fwidth 4 (length tg)) ?\ ))
8433 (when (= (setq cnt (1+ cnt)) ncol)
8434 (insert "\n")
8435 (if ingroup (insert " "))
8436 (setq cnt 0)))))
8437 (insert "\n")
8438 (goto-char (point-min))
8439 (if (not expert) (org-fit-window-to-buffer))
8440 (message "[a-z..]:Set [SPC]:clear")
8441 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
8442 (cond
8443 ((or (= c ?\C-g)
8444 (and (= c ?q) (not (rassoc c fulltable))))
8445 (setq quit-flag t))
8446 ((= c ?\ ) nil)
8447 ((setq e (rassoc c fulltable) tg (car e))
8449 (t (setq quit-flag t))))))
8451 (defun org-entry-is-todo-p ()
8452 (member (org-get-todo-state) org-not-done-keywords))
8454 (defun org-entry-is-done-p ()
8455 (member (org-get-todo-state) org-done-keywords))
8457 (defun org-get-todo-state ()
8458 (save-excursion
8459 (org-back-to-heading t)
8460 (and (looking-at org-todo-line-regexp)
8461 (match-end 2)
8462 (match-string 2))))
8464 (defun org-at-date-range-p (&optional inactive-ok)
8465 "Is the cursor inside a date range?"
8466 (interactive)
8467 (save-excursion
8468 (catch 'exit
8469 (let ((pos (point)))
8470 (skip-chars-backward "^[<\r\n")
8471 (skip-chars-backward "<[")
8472 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
8473 (>= (match-end 0) pos)
8474 (throw 'exit t))
8475 (skip-chars-backward "^<[\r\n")
8476 (skip-chars-backward "<[")
8477 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
8478 (>= (match-end 0) pos)
8479 (throw 'exit t)))
8480 nil)))
8482 (defun org-get-repeat ()
8483 "Check if there is a deadline/schedule with repeater in this entry."
8484 (save-match-data
8485 (save-excursion
8486 (org-back-to-heading t)
8487 (if (re-search-forward
8488 org-repeat-re (save-excursion (outline-next-heading) (point)) t)
8489 (match-string 1)))))
8491 (defvar org-last-changed-timestamp)
8492 (defvar org-last-inserted-timestamp)
8493 (defvar org-log-post-message)
8494 (defvar org-log-note-purpose)
8495 (defvar org-log-note-how)
8496 (defvar org-log-note-extra)
8497 (defun org-auto-repeat-maybe (done-word)
8498 "Check if the current headline contains a repeated deadline/schedule.
8499 If yes, set TODO state back to what it was and change the base date
8500 of repeating deadline/scheduled time stamps to new date.
8501 This function is run automatically after each state change to a DONE state."
8502 ;; last-state is dynamically scoped into this function
8503 (let* ((repeat (org-get-repeat))
8504 (aa (assoc last-state org-todo-kwd-alist))
8505 (interpret (nth 1 aa))
8506 (head (nth 2 aa))
8507 (whata '(("d" . day) ("m" . month) ("y" . year)))
8508 (msg "Entry repeats: ")
8509 (org-log-done nil)
8510 (org-todo-log-states nil)
8511 (nshiftmax 10) (nshift 0)
8512 re type n what ts mb0 time)
8513 (when repeat
8514 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
8515 (org-todo (if (eq interpret 'type) last-state head))
8516 (when org-log-repeat
8517 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
8518 (memq 'org-add-log-note post-command-hook))
8519 ;; OK, we are already setup for some record
8520 (if (eq org-log-repeat 'note)
8521 ;; make sure we take a note, not only a time stamp
8522 (setq org-log-note-how 'note))
8523 ;; Set up for taking a record
8524 (org-add-log-setup 'state (or done-word (car org-done-keywords))
8525 'findpos org-log-repeat)))
8526 (org-back-to-heading t)
8527 (org-add-planning-info nil nil 'closed)
8528 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
8529 org-deadline-time-regexp "\\)\\|\\("
8530 org-ts-regexp "\\)"))
8531 (while (re-search-forward
8532 re (save-excursion (outline-next-heading) (point)) t)
8533 (setq type (if (match-end 1) org-scheduled-string
8534 (if (match-end 3) org-deadline-string "Plain:"))
8535 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0)))
8536 mb0 (match-beginning 0))
8537 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts)
8538 (setq n (string-to-number (match-string 2 ts))
8539 what (match-string 3 ts))
8540 (if (equal what "w") (setq n (* n 7) what "d"))
8541 ;; Preparation, see if we need to modify the start date for the change
8542 (when (match-end 1)
8543 (setq time (save-match-data (org-time-string-to-time ts)))
8544 (cond
8545 ((equal (match-string 1 ts) ".")
8546 ;; Shift starting date to today
8547 (org-timestamp-change
8548 (- (time-to-days (current-time)) (time-to-days time))
8549 'day))
8550 ((equal (match-string 1 ts) "+")
8551 (while (or (= nshift 0)
8552 (<= (time-to-days time) (time-to-days (current-time))))
8553 (when (= (incf nshift) nshiftmax)
8554 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
8555 (error "Abort")))
8556 (org-timestamp-change n (cdr (assoc what whata)))
8557 (org-at-timestamp-p t)
8558 (setq ts (match-string 1))
8559 (setq time (save-match-data (org-time-string-to-time ts))))
8560 (org-timestamp-change (- n) (cdr (assoc what whata)))
8561 ;; rematch, so that we have everything in place for the real shift
8562 (org-at-timestamp-p t)
8563 (setq ts (match-string 1))
8564 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts))))
8565 (org-timestamp-change n (cdr (assoc what whata)))
8566 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
8567 (setq org-log-post-message msg)
8568 (message "%s" msg))))
8570 (defun org-show-todo-tree (arg)
8571 "Make a compact tree which shows all headlines marked with TODO.
8572 The tree will show the lines where the regexp matches, and all higher
8573 headlines above the match.
8574 With a \\[universal-argument] prefix, also show the DONE entries.
8575 With a numeric prefix N, construct a sparse tree for the Nth element
8576 of `org-todo-keywords-1'."
8577 (interactive "P")
8578 (let ((case-fold-search nil)
8579 (kwd-re
8580 (cond ((null arg) org-not-done-regexp)
8581 ((equal arg '(4))
8582 (let ((kwd (org-ido-completing-read "Keyword (or KWD1|KWD2|...): "
8583 (mapcar 'list org-todo-keywords-1))))
8584 (concat "\\("
8585 (mapconcat 'identity (org-split-string kwd "|") "\\|")
8586 "\\)\\>")))
8587 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
8588 (regexp-quote (nth (1- (prefix-numeric-value arg))
8589 org-todo-keywords-1)))
8590 (t (error "Invalid prefix argument: %s" arg)))))
8591 (message "%d TODO entries found"
8592 (org-occur (concat "^" outline-regexp " *" kwd-re )))))
8594 (defun org-deadline (&optional remove time)
8595 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
8596 With argument REMOVE, remove any deadline from the item.
8597 When TIME is set, it should be an internal time specification, and the
8598 scheduling will use the corresponding date."
8599 (interactive "P")
8600 (if remove
8601 (progn
8602 (org-remove-timestamp-with-keyword org-deadline-string)
8603 (message "Item no longer has a deadline."))
8604 (if (org-get-repeat)
8605 (error "Cannot change deadline on task with repeater, please do that by hand")
8606 (org-add-planning-info 'deadline time 'closed)
8607 (message "Deadline on %s" org-last-inserted-timestamp))))
8609 (defun org-schedule (&optional remove time)
8610 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
8611 With argument REMOVE, remove any scheduling date from the item.
8612 When TIME is set, it should be an internal time specification, and the
8613 scheduling will use the corresponding date."
8614 (interactive "P")
8615 (if remove
8616 (progn
8617 (org-remove-timestamp-with-keyword org-scheduled-string)
8618 (message "Item is no longer scheduled."))
8619 (if (org-get-repeat)
8620 (error "Cannot reschedule task with repeater, please do that by hand")
8621 (org-add-planning-info 'scheduled time 'closed)
8622 (message "Scheduled to %s" org-last-inserted-timestamp))))
8624 (defun org-remove-timestamp-with-keyword (keyword)
8625 "Remove all time stamps with KEYWORD in the current entry."
8626 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
8627 beg)
8628 (save-excursion
8629 (org-back-to-heading t)
8630 (setq beg (point))
8631 (org-end-of-subtree t t)
8632 (while (re-search-backward re beg t)
8633 (replace-match "")
8634 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
8635 (equal (char-before) ?\ ))
8636 (backward-delete-char 1)
8637 (if (string-match "^[ \t]*$" (buffer-substring
8638 (point-at-bol) (point-at-eol)))
8639 (delete-region (point-at-bol)
8640 (min (point-max) (1+ (point-at-eol))))))))))
8642 (defun org-add-planning-info (what &optional time &rest remove)
8643 "Insert new timestamp with keyword in the line directly after the headline.
8644 WHAT indicates what kind of time stamp to add. TIME indicated the time to use.
8645 If non is given, the user is prompted for a date.
8646 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
8647 be removed."
8648 (interactive)
8649 (let (org-time-was-given org-end-time-was-given ts
8650 end default-time default-input)
8652 (when (and (not time) (memq what '(scheduled deadline)))
8653 ;; Try to get a default date/time from existing timestamp
8654 (save-excursion
8655 (org-back-to-heading t)
8656 (setq end (save-excursion (outline-next-heading) (point)))
8657 (when (re-search-forward (if (eq what 'scheduled)
8658 org-scheduled-time-regexp
8659 org-deadline-time-regexp)
8660 end t)
8661 (setq ts (match-string 1)
8662 default-time
8663 (apply 'encode-time (org-parse-time-string ts))
8664 default-input (and ts (org-get-compact-tod ts))))))
8665 (when what
8666 ;; If necessary, get the time from the user
8667 (setq time (or time (org-read-date nil 'to-time nil nil
8668 default-time default-input))))
8670 (when (and org-insert-labeled-timestamps-at-point
8671 (member what '(scheduled deadline)))
8672 (insert
8673 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
8674 (org-insert-time-stamp time org-time-was-given
8675 nil nil nil (list org-end-time-was-given))
8676 (setq what nil))
8677 (save-excursion
8678 (save-restriction
8679 (let (col list elt ts buffer-invisibility-spec)
8680 (org-back-to-heading t)
8681 (looking-at (concat outline-regexp "\\( *\\)[^\r\n]*"))
8682 (goto-char (match-end 1))
8683 (setq col (current-column))
8684 (goto-char (match-end 0))
8685 (if (eobp) (insert "\n") (forward-char 1))
8686 (if (and (not (looking-at outline-regexp))
8687 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
8688 "[^\r\n]*"))
8689 (not (equal (match-string 1) org-clock-string)))
8690 (narrow-to-region (match-beginning 0) (match-end 0))
8691 (insert-before-markers "\n")
8692 (backward-char 1)
8693 (narrow-to-region (point) (point))
8694 (and org-adapt-indentation (org-indent-to-column col)))
8695 ;; Check if we have to remove something.
8696 (setq list (cons what remove))
8697 (while list
8698 (setq elt (pop list))
8699 (goto-char (point-min))
8700 (when (or (and (eq elt 'scheduled)
8701 (re-search-forward org-scheduled-time-regexp nil t))
8702 (and (eq elt 'deadline)
8703 (re-search-forward org-deadline-time-regexp nil t))
8704 (and (eq elt 'closed)
8705 (re-search-forward org-closed-time-regexp nil t)))
8706 (replace-match "")
8707 (if (looking-at "--+<[^>]+>") (replace-match ""))
8708 (if (looking-at " +") (replace-match ""))))
8709 (goto-char (point-max))
8710 (when what
8711 (insert
8712 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
8713 (cond ((eq what 'scheduled) org-scheduled-string)
8714 ((eq what 'deadline) org-deadline-string)
8715 ((eq what 'closed) org-closed-string))
8716 " ")
8717 (setq ts (org-insert-time-stamp
8718 time
8719 (or org-time-was-given
8720 (and (eq what 'closed) org-log-done-with-time))
8721 (eq what 'closed)
8722 nil nil (list org-end-time-was-given)))
8723 (end-of-line 1))
8724 (goto-char (point-min))
8725 (widen)
8726 (if (and (looking-at "[ \t]+\n")
8727 (equal (char-before) ?\n))
8728 (delete-region (1- (point)) (point-at-eol)))
8729 ts)))))
8731 (defvar org-log-note-marker (make-marker))
8732 (defvar org-log-note-purpose nil)
8733 (defvar org-log-note-state nil)
8734 (defvar org-log-note-how nil)
8735 (defvar org-log-note-extra nil)
8736 (defvar org-log-note-window-configuration nil)
8737 (defvar org-log-note-return-to (make-marker))
8738 (defvar org-log-post-message nil
8739 "Message to be displayed after a log note has been stored.
8740 The auto-repeater uses this.")
8742 (defun org-add-note ()
8743 "Add a note to the current entry.
8744 This is done in the same way as adding a state change note."
8745 (interactive)
8746 (org-add-log-setup 'note nil 'findpos nil))
8748 (defvar org-property-end-re)
8749 (defun org-add-log-setup (&optional purpose state findpos how &optional extra)
8750 "Set up the post command hook to take a note.
8751 If this is about to TODO state change, the new state is expected in STATE.
8752 When FINDPOS is non-nil, find the correct position for the note in
8753 the current entry. If not, assume that it can be inserted at point.
8754 HOW is an indicator what kind of note should be created.
8755 EXTRA is additional text that will be inserted into the notes buffer."
8756 (save-restriction
8757 (save-excursion
8758 (when findpos
8759 (org-back-to-heading t)
8760 (narrow-to-region (point) (save-excursion
8761 (outline-next-heading) (point)))
8762 (looking-at (concat outline-regexp "\\( *\\)[^\r\n]*"
8763 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
8764 "[^\r\n]*\\)?"))
8765 (goto-char (match-end 0))
8766 (when (and org-log-state-notes-insert-after-drawers
8767 (save-excursion
8768 (forward-line) (looking-at org-drawer-regexp)))
8769 (progn (forward-line)
8770 (while (looking-at org-drawer-regexp)
8771 (goto-char (match-end 0))
8772 (re-search-forward org-property-end-re (point-max) t)
8773 (forward-line))
8774 (forward-line -1)))
8775 (unless org-log-states-order-reversed
8776 (and (= (char-after) ?\n) (forward-char 1))
8777 (org-skip-over-state-notes)
8778 (skip-chars-backward " \t\n\r")))
8779 (move-marker org-log-note-marker (point))
8780 (setq org-log-note-purpose purpose
8781 org-log-note-state state
8782 org-log-note-how how
8783 org-log-note-extra extra)
8784 (add-hook 'post-command-hook 'org-add-log-note 'append))))
8786 (defun org-skip-over-state-notes ()
8787 "Skip past the list of State notes in an entry."
8788 (if (looking-at "\n[ \t]*- State") (forward-char 1))
8789 (while (looking-at "[ \t]*- State")
8790 (condition-case nil
8791 (org-next-item)
8792 (error (org-end-of-item)))))
8794 (defun org-add-log-note (&optional purpose)
8795 "Pop up a window for taking a note, and add this note later at point."
8796 (remove-hook 'post-command-hook 'org-add-log-note)
8797 (setq org-log-note-window-configuration (current-window-configuration))
8798 (delete-other-windows)
8799 (move-marker org-log-note-return-to (point))
8800 (switch-to-buffer (marker-buffer org-log-note-marker))
8801 (goto-char org-log-note-marker)
8802 (org-switch-to-buffer-other-window "*Org Note*")
8803 (erase-buffer)
8804 (if (memq org-log-note-how '(time state))
8805 (let (current-prefix-arg) (org-store-log-note))
8806 (let ((org-inhibit-startup t)) (org-mode))
8807 (insert (format "# Insert note for %s.
8808 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
8809 (cond
8810 ((eq org-log-note-purpose 'clock-out) "stopped clock")
8811 ((eq org-log-note-purpose 'done) "closed todo item")
8812 ((eq org-log-note-purpose 'state)
8813 (format "state change to \"%s\"" org-log-note-state))
8814 ((eq org-log-note-purpose 'note)
8815 "this entry")
8816 (t (error "This should not happen")))))
8817 (if org-log-note-extra (insert org-log-note-extra))
8818 (org-set-local 'org-finish-function 'org-store-log-note)))
8820 (defvar org-note-abort nil) ; dynamically scoped
8821 (defun org-store-log-note ()
8822 "Finish taking a log note, and insert it to where it belongs."
8823 (let ((txt (buffer-string))
8824 (note (cdr (assq org-log-note-purpose org-log-note-headings)))
8825 lines ind)
8826 (kill-buffer (current-buffer))
8827 (while (string-match "\\`#.*\n[ \t\n]*" txt)
8828 (setq txt (replace-match "" t t txt)))
8829 (if (string-match "\\s-+\\'" txt)
8830 (setq txt (replace-match "" t t txt)))
8831 (setq lines (org-split-string txt "\n"))
8832 (when (and note (string-match "\\S-" note))
8833 (setq note
8834 (org-replace-escapes
8835 note
8836 (list (cons "%u" (user-login-name))
8837 (cons "%U" user-full-name)
8838 (cons "%t" (format-time-string
8839 (org-time-stamp-format 'long 'inactive)
8840 (current-time)))
8841 (cons "%s" (if org-log-note-state
8842 (concat "\"" org-log-note-state "\"")
8843 "")))))
8844 (if lines (setq note (concat note " \\\\")))
8845 (push note lines))
8846 (when (or current-prefix-arg org-note-abort) (setq lines nil))
8847 (when lines
8848 (save-excursion
8849 (set-buffer (marker-buffer org-log-note-marker))
8850 (save-excursion
8851 (goto-char org-log-note-marker)
8852 (move-marker org-log-note-marker nil)
8853 (end-of-line 1)
8854 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
8855 (indent-relative nil)
8856 (insert "- " (pop lines))
8857 (org-indent-line-function)
8858 (beginning-of-line 1)
8859 (looking-at "[ \t]*")
8860 (setq ind (concat (match-string 0) " "))
8861 (end-of-line 1)
8862 (while lines (insert "\n" ind (pop lines)))))))
8863 (set-window-configuration org-log-note-window-configuration)
8864 (with-current-buffer (marker-buffer org-log-note-return-to)
8865 (goto-char org-log-note-return-to))
8866 (move-marker org-log-note-return-to nil)
8867 (and org-log-post-message (message "%s" org-log-post-message)))
8869 (defun org-sparse-tree (&optional arg)
8870 "Create a sparse tree, prompt for the details.
8871 This command can create sparse trees. You first need to select the type
8872 of match used to create the tree:
8874 t Show entries with a specific TODO keyword.
8875 T Show entries selected by a tags match.
8876 p Enter a property name and its value (both with completion on existing
8877 names/values) and show entries with that property.
8878 r Show entries matching a regular expression
8879 d Show deadlines due within `org-deadline-warning-days'."
8880 (interactive "P")
8881 (let (ans kwd value)
8882 (message "Sparse tree: [/]regexp [t]odo-kwd [T]ag [p]roperty [d]eadlines [b]efore-date")
8883 (setq ans (read-char-exclusive))
8884 (cond
8885 ((equal ans ?d)
8886 (call-interactively 'org-check-deadlines))
8887 ((equal ans ?b)
8888 (call-interactively 'org-check-before-date))
8889 ((equal ans ?t)
8890 (org-show-todo-tree '(4)))
8891 ((equal ans ?T)
8892 (call-interactively 'org-tags-sparse-tree))
8893 ((member ans '(?p ?P))
8894 (setq kwd (org-ido-completing-read "Property: "
8895 (mapcar 'list (org-buffer-property-keys))))
8896 (setq value (org-ido-completing-read "Value: "
8897 (mapcar 'list (org-property-values kwd))))
8898 (unless (string-match "\\`{.*}\\'" value)
8899 (setq value (concat "\"" value "\"")))
8900 (org-tags-sparse-tree arg (concat kwd "=" value)))
8901 ((member ans '(?r ?R ?/))
8902 (call-interactively 'org-occur))
8903 (t (error "No such sparse tree command \"%c\"" ans)))))
8905 (defvar org-occur-highlights nil
8906 "List of overlays used for occur matches.")
8907 (make-variable-buffer-local 'org-occur-highlights)
8908 (defvar org-occur-parameters nil
8909 "Parameters of the active org-occur calls.
8910 This is a list, each call to org-occur pushes as cons cell,
8911 containing the regular expression and the callback, onto the list.
8912 The list can contain several entries if `org-occur' has been called
8913 several time with the KEEP-PREVIOUS argument. Otherwise, this list
8914 will only contain one set of parameters. When the highlights are
8915 removed (for example with `C-c C-c', or with the next edit (depending
8916 on `org-remove-highlights-with-change'), this variable is emptied
8917 as well.")
8918 (make-variable-buffer-local 'org-occur-parameters)
8920 (defun org-occur (regexp &optional keep-previous callback)
8921 "Make a compact tree which shows all matches of REGEXP.
8922 The tree will show the lines where the regexp matches, and all higher
8923 headlines above the match. It will also show the heading after the match,
8924 to make sure editing the matching entry is easy.
8925 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
8926 call to `org-occur' will be kept, to allow stacking of calls to this
8927 command.
8928 If CALLBACK is non-nil, it is a function which is called to confirm
8929 that the match should indeed be shown."
8930 (interactive "sRegexp: \nP")
8931 (unless keep-previous
8932 (org-remove-occur-highlights nil nil t))
8933 (push (cons regexp callback) org-occur-parameters)
8934 (let ((cnt 0))
8935 (save-excursion
8936 (goto-char (point-min))
8937 (if (or (not keep-previous) ; do not want to keep
8938 (not org-occur-highlights)) ; no previous matches
8939 ;; hide everything
8940 (org-overview))
8941 (while (re-search-forward regexp nil t)
8942 (when (or (not callback)
8943 (save-match-data (funcall callback)))
8944 (setq cnt (1+ cnt))
8945 (when org-highlight-sparse-tree-matches
8946 (org-highlight-new-match (match-beginning 0) (match-end 0)))
8947 (org-show-context 'occur-tree))))
8948 (when org-remove-highlights-with-change
8949 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
8950 nil 'local))
8951 (unless org-sparse-tree-open-archived-trees
8952 (org-hide-archived-subtrees (point-min) (point-max)))
8953 (run-hooks 'org-occur-hook)
8954 (if (interactive-p)
8955 (message "%d match(es) for regexp %s" cnt regexp))
8956 cnt))
8958 (defun org-show-context (&optional key)
8959 "Make sure point and context and visible.
8960 How much context is shown depends upon the variables
8961 `org-show-hierarchy-above', `org-show-following-heading'. and
8962 `org-show-siblings'."
8963 (let ((heading-p (org-on-heading-p t))
8964 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
8965 (following-p (org-get-alist-option org-show-following-heading key))
8966 (entry-p (org-get-alist-option org-show-entry-below key))
8967 (siblings-p (org-get-alist-option org-show-siblings key)))
8968 (catch 'exit
8969 ;; Show heading or entry text
8970 (if (and heading-p (not entry-p))
8971 (org-flag-heading nil) ; only show the heading
8972 (and (or entry-p (org-invisible-p) (org-invisible-p2))
8973 (org-show-hidden-entry))) ; show entire entry
8974 (when following-p
8975 ;; Show next sibling, or heading below text
8976 (save-excursion
8977 (and (if heading-p (org-goto-sibling) (outline-next-heading))
8978 (org-flag-heading nil))))
8979 (when siblings-p (org-show-siblings))
8980 (when hierarchy-p
8981 ;; show all higher headings, possibly with siblings
8982 (save-excursion
8983 (while (and (condition-case nil
8984 (progn (org-up-heading-all 1) t)
8985 (error nil))
8986 (not (bobp)))
8987 (org-flag-heading nil)
8988 (when siblings-p (org-show-siblings))))))))
8990 (defun org-reveal (&optional siblings)
8991 "Show current entry, hierarchy above it, and the following headline.
8992 This can be used to show a consistent set of context around locations
8993 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
8994 not t for the search context.
8996 With optional argument SIBLINGS, on each level of the hierarchy all
8997 siblings are shown. This repairs the tree structure to what it would
8998 look like when opened with hierarchical calls to `org-cycle'."
8999 (interactive "P")
9000 (let ((org-show-hierarchy-above t)
9001 (org-show-following-heading t)
9002 (org-show-siblings (if siblings t org-show-siblings)))
9003 (org-show-context nil)))
9005 (defun org-highlight-new-match (beg end)
9006 "Highlight from BEG to END and mark the highlight is an occur headline."
9007 (let ((ov (org-make-overlay beg end)))
9008 (org-overlay-put ov 'face 'secondary-selection)
9009 (push ov org-occur-highlights)))
9011 (defun org-remove-occur-highlights (&optional beg end noremove)
9012 "Remove the occur highlights from the buffer.
9013 BEG and END are ignored. If NOREMOVE is nil, remove this function
9014 from the `before-change-functions' in the current buffer."
9015 (interactive)
9016 (unless org-inhibit-highlight-removal
9017 (mapc 'org-delete-overlay org-occur-highlights)
9018 (setq org-occur-highlights nil)
9019 (setq org-occur-parameters nil)
9020 (unless noremove
9021 (remove-hook 'before-change-functions
9022 'org-remove-occur-highlights 'local))))
9024 ;;;; Priorities
9026 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
9027 "Regular expression matching the priority indicator.")
9029 (defvar org-remove-priority-next-time nil)
9031 (defun org-priority-up ()
9032 "Increase the priority of the current item."
9033 (interactive)
9034 (org-priority 'up))
9036 (defun org-priority-down ()
9037 "Decrease the priority of the current item."
9038 (interactive)
9039 (org-priority 'down))
9041 (defun org-priority (&optional action)
9042 "Change the priority of an item by ARG.
9043 ACTION can be `set', `up', `down', or a character."
9044 (interactive)
9045 (setq action (or action 'set))
9046 (let (current new news have remove)
9047 (save-excursion
9048 (org-back-to-heading)
9049 (if (looking-at org-priority-regexp)
9050 (setq current (string-to-char (match-string 2))
9051 have t)
9052 (setq current org-default-priority))
9053 (cond
9054 ((or (eq action 'set)
9055 (if (featurep 'xemacs) (characterp action) (integerp action)))
9056 (if (not (eq action 'set))
9057 (setq new action)
9058 (message "Priority %c-%c, SPC to remove: "
9059 org-highest-priority org-lowest-priority)
9060 (setq new (read-char-exclusive)))
9061 (if (and (= (upcase org-highest-priority) org-highest-priority)
9062 (= (upcase org-lowest-priority) org-lowest-priority))
9063 (setq new (upcase new)))
9064 (cond ((equal new ?\ ) (setq remove t))
9065 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
9066 (error "Priority must be between `%c' and `%c'"
9067 org-highest-priority org-lowest-priority))))
9068 ((eq action 'up)
9069 (if (and (not have) (eq last-command this-command))
9070 (setq new org-lowest-priority)
9071 (setq new (if (and org-priority-start-cycle-with-default (not have))
9072 org-default-priority (1- current)))))
9073 ((eq action 'down)
9074 (if (and (not have) (eq last-command this-command))
9075 (setq new org-highest-priority)
9076 (setq new (if (and org-priority-start-cycle-with-default (not have))
9077 org-default-priority (1+ current)))))
9078 (t (error "Invalid action")))
9079 (if (or (< (upcase new) org-highest-priority)
9080 (> (upcase new) org-lowest-priority))
9081 (setq remove t))
9082 (setq news (format "%c" new))
9083 (if have
9084 (if remove
9085 (replace-match "" t t nil 1)
9086 (replace-match news t t nil 2))
9087 (if remove
9088 (error "No priority cookie found in line")
9089 (looking-at org-todo-line-regexp)
9090 (if (match-end 2)
9091 (progn
9092 (goto-char (match-end 2))
9093 (insert " [#" news "]"))
9094 (goto-char (match-beginning 3))
9095 (insert "[#" news "] ")))))
9096 (org-preserve-lc (org-set-tags nil 'align))
9097 (if remove
9098 (message "Priority removed")
9099 (message "Priority of current item set to %s" news))))
9102 (defun org-get-priority (s)
9103 "Find priority cookie and return priority."
9104 (save-match-data
9105 (if (not (string-match org-priority-regexp s))
9106 (* 1000 (- org-lowest-priority org-default-priority))
9107 (* 1000 (- org-lowest-priority
9108 (string-to-char (match-string 2 s)))))))
9110 ;;;; Tags
9112 (defvar org-agenda-archives-mode)
9113 (defun org-scan-tags (action matcher &optional todo-only)
9114 "Scan headline tags with inheritance and produce output ACTION.
9116 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
9117 or `agenda' to produce an entry list for an agenda view. It can also be
9118 a Lisp form or a function that should be called at each matched headline, in
9119 this case the return value is a list of all return values from these calls.
9121 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
9122 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
9123 only lines with a TODO keyword are included in the output."
9124 (let* ((re (concat "[\n\r]" outline-regexp " *\\(\\<\\("
9125 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
9126 (org-re
9127 "\\>\\)\\)? *\\(.*?\\)\\(:[[:alnum:]_@:]+:\\)?[ \t]*$")))
9128 (props (list 'face 'default
9129 'done-face 'org-done
9130 'undone-face 'default
9131 'mouse-face 'highlight
9132 'org-not-done-regexp org-not-done-regexp
9133 'org-todo-regexp org-todo-regexp
9134 'keymap org-agenda-keymap
9135 'help-echo
9136 (format "mouse-2 or RET jump to org file %s"
9137 (abbreviate-file-name
9138 (or (buffer-file-name (buffer-base-buffer))
9139 (buffer-name (buffer-base-buffer)))))))
9140 (case-fold-search nil)
9141 lspos tags tags-list
9142 (tags-alist (list (cons 0 (mapcar 'downcase org-file-tags))))
9143 (llast 0) rtn rtn1 level category i txt
9144 todo marker entry priority)
9145 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
9146 (setq action (list 'lambda nil action)))
9147 (save-excursion
9148 (goto-char (point-min))
9149 (when (eq action 'sparse-tree)
9150 (org-overview)
9151 (org-remove-occur-highlights))
9152 (while (re-search-forward re nil t)
9153 (catch :skip
9154 (setq todo (if (match-end 1) (match-string 2))
9155 tags (if (match-end 4) (match-string 4)))
9156 (goto-char (setq lspos (1+ (match-beginning 0))))
9157 (setq level (org-reduced-level (funcall outline-level))
9158 category (org-get-category))
9159 (setq i llast llast level)
9160 ;; remove tag lists from same and sublevels
9161 (while (>= i level)
9162 (when (setq entry (assoc i tags-alist))
9163 (setq tags-alist (delete entry tags-alist)))
9164 (setq i (1- i)))
9165 ;; add the next tags
9166 (when tags
9167 (setq tags (mapcar 'downcase (org-split-string tags ":"))
9168 tags-alist
9169 (cons (cons level tags) tags-alist)))
9170 ;; compile tags for current headline
9171 (setq tags-list
9172 (if org-use-tag-inheritance
9173 (apply 'append (mapcar 'cdr (reverse tags-alist)))
9174 tags))
9175 (when org-use-tag-inheritance
9176 (setcdr (car tags-alist)
9177 (mapcar (lambda (x)
9178 (setq x (copy-sequence x))
9179 (org-add-prop-inherited x))
9180 (cdar tags-alist))))
9181 (when (and tags org-use-tag-inheritance
9182 (not (eq t org-use-tag-inheritance)))
9183 ;; selective inheritance, remove uninherited ones
9184 (setcdr (car tags-alist)
9185 (org-remove-uniherited-tags (cdar tags-alist))))
9186 (when (and (or (not todo-only) (member todo org-not-done-keywords))
9187 (let ((case-fold-search t)) (eval matcher))
9189 (not (member org-archive-tag tags-list))
9190 ;; we have an archive tag, should we use this anyway?
9191 (or (not org-agenda-skip-archived-trees)
9192 (and (eq action 'agenda) org-agenda-archives-mode))))
9193 (unless (eq action 'sparse-tree) (org-agenda-skip))
9195 ;; select this headline
9197 (cond
9198 ((eq action 'sparse-tree)
9199 (and org-highlight-sparse-tree-matches
9200 (org-get-heading) (match-end 0)
9201 (org-highlight-new-match
9202 (match-beginning 0) (match-beginning 1)))
9203 (org-show-context 'tags-tree))
9204 ((eq action 'agenda)
9205 (setq txt (org-format-agenda-item
9207 (concat
9208 (if org-tags-match-list-sublevels
9209 (make-string (1- level) ?.) "")
9210 (org-get-heading))
9211 category tags-list)
9212 priority (org-get-priority txt))
9213 (goto-char lspos)
9214 (setq marker (org-agenda-new-marker))
9215 (org-add-props txt props
9216 'org-marker marker 'org-hd-marker marker 'org-category category
9217 'priority priority 'type "tagsmatch")
9218 (push txt rtn))
9219 ((functionp action)
9220 (save-excursion
9221 (setq rtn1 (funcall action))
9222 (push rtn1 rtn))
9223 (goto-char (point-at-eol)))
9224 (t (error "Invalid action")))
9226 ;; if we are to skip sublevels, jump to end of subtree
9227 (or org-tags-match-list-sublevels (org-end-of-subtree t))))))
9228 (when (and (eq action 'sparse-tree)
9229 (not org-sparse-tree-open-archived-trees))
9230 (org-hide-archived-subtrees (point-min) (point-max)))
9231 (nreverse rtn)))
9233 (defun org-remove-uniherited-tags (tags)
9234 "Remove all tags that are not inherited from the list TAGS."
9235 (cond
9236 ((eq org-use-tag-inheritance t)
9237 (if org-tags-exclude-from-inheritance
9238 (org-delete-all org-tags-exclude-from-inheritance tags)
9239 tags))
9240 ((not org-use-tag-inheritance) nil)
9241 ((stringp org-use-tag-inheritance)
9242 (delq nil (mapcar
9243 (lambda (x)
9244 (if (and (string-match org-use-tag-inheritance x)
9245 (not (member x org-tags-exclude-from-inheritance)))
9246 x nil))
9247 tags)))
9248 ((listp org-use-tag-inheritance)
9249 (delq nil (mapcar
9250 (lambda (x)
9251 (if (member x org-use-tag-inheritance) x nil))
9252 tags)))))
9254 (defvar todo-only) ;; dynamically scoped
9256 (defun org-tags-sparse-tree (&optional todo-only match)
9257 "Create a sparse tree according to tags string MATCH.
9258 MATCH can contain positive and negative selection of tags, like
9259 \"+WORK+URGENT-WITHBOSS\".
9260 If optional argument TODO-ONLY is non-nil, only select lines that are
9261 also TODO lines."
9262 (interactive "P")
9263 (org-prepare-agenda-buffers (list (current-buffer)))
9264 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
9266 (defvar org-cached-props nil)
9267 (defun org-cached-entry-get (pom property)
9268 (if (or (eq t org-use-property-inheritance)
9269 (and (stringp org-use-property-inheritance)
9270 (string-match org-use-property-inheritance property))
9271 (and (listp org-use-property-inheritance)
9272 (member property org-use-property-inheritance)))
9273 ;; Caching is not possible, check it directly
9274 (org-entry-get pom property 'inherit)
9275 ;; Get all properties, so that we can do complicated checks easily
9276 (cdr (assoc property (or org-cached-props
9277 (setq org-cached-props
9278 (org-entry-properties pom)))))))
9280 (defun org-global-tags-completion-table (&optional files)
9281 "Return the list of all tags in all agenda buffer/files."
9282 (save-excursion
9283 (org-uniquify
9284 (delq nil
9285 (apply 'append
9286 (mapcar
9287 (lambda (file)
9288 (set-buffer (find-file-noselect file))
9289 (append (org-get-buffer-tags)
9290 (mapcar (lambda (x) (if (stringp (car-safe x))
9291 (list (car-safe x)) nil))
9292 org-tag-alist)))
9293 (if (and files (car files))
9294 files
9295 (org-agenda-files))))))))
9297 (defun org-make-tags-matcher (match)
9298 "Create the TAGS//TODO matcher form for the selection string MATCH."
9299 ;; todo-only is scoped dynamically into this function, and the function
9300 ;; may change it if the matcher asks for it.
9301 (unless match
9302 ;; Get a new match request, with completion
9303 (let ((org-last-tags-completion-table
9304 (org-global-tags-completion-table)))
9305 (setq match (org-ido-completing-read
9306 "Match: " 'org-tags-completion-function nil nil nil
9307 'org-tags-history))))
9309 ;; Parse the string and create a lisp form
9310 (let ((match0 match)
9311 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\([[:alnum:]_]+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@]+\\)"))
9312 minus tag mm
9313 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
9314 orterms term orlist re-p str-p level-p level-op time-p
9315 prop-p pn pv po cat-p gv rest)
9316 (if (string-match "/+" match)
9317 ;; match contains also a todo-matching request
9318 (progn
9319 (setq tagsmatch (substring match 0 (match-beginning 0))
9320 todomatch (substring match (match-end 0)))
9321 (if (string-match "^!" todomatch)
9322 (setq todo-only t todomatch (substring todomatch 1)))
9323 (if (string-match "^\\s-*$" todomatch)
9324 (setq todomatch nil)))
9325 ;; only matching tags
9326 (setq tagsmatch match todomatch nil))
9328 ;; Make the tags matcher
9329 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
9330 (setq tagsmatcher t)
9331 (setq orterms (org-split-string tagsmatch "|") orlist nil)
9332 (while (setq term (pop orterms))
9333 (while (and (equal (substring term -1) "\\") orterms)
9334 (setq term (concat term "|" (pop orterms)))) ; repair bad split
9335 (while (string-match re term)
9336 (setq rest (substring term (match-end 0))
9337 minus (and (match-end 1)
9338 (equal (match-string 1 term) "-"))
9339 tag (match-string 2 term)
9340 re-p (equal (string-to-char tag) ?{)
9341 level-p (match-end 4)
9342 prop-p (match-end 5)
9343 mm (cond
9344 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
9345 (level-p
9346 (setq level-op (org-op-to-function (match-string 3 term)))
9347 `(,level-op level ,(string-to-number
9348 (match-string 4 term))))
9349 (prop-p
9350 (setq pn (match-string 5 term)
9351 po (match-string 6 term)
9352 pv (match-string 7 term)
9353 cat-p (equal pn "CATEGORY")
9354 re-p (equal (string-to-char pv) ?{)
9355 str-p (equal (string-to-char pv) ?\")
9356 time-p (save-match-data
9357 (string-match "^\"[[<].*[]>]\"$" pv))
9358 pv (if (or re-p str-p) (substring pv 1 -1) pv))
9359 (if time-p (setq pv (org-matcher-time pv)))
9360 (setq po (org-op-to-function po (if time-p 'time str-p)))
9361 (cond
9362 ((equal pn "CATEGORY")
9363 (setq gv '(get-text-property (point) 'org-category)))
9364 ((equal pn "TODO")
9365 (setq gv 'todo))
9367 (setq gv `(org-cached-entry-get nil ,pn))))
9368 (if re-p
9369 (if (eq po 'org<>)
9370 `(not (string-match ,pv (or ,gv "")))
9371 `(string-match ,pv (or ,gv "")))
9372 (if str-p
9373 `(,po (or ,gv "") ,pv)
9374 `(,po (string-to-number (or ,gv ""))
9375 ,(string-to-number pv) ))))
9376 (t `(member ,(downcase tag) tags-list)))
9377 mm (if minus (list 'not mm) mm)
9378 term rest)
9379 (push mm tagsmatcher))
9380 (push (if (> (length tagsmatcher) 1)
9381 (cons 'and tagsmatcher)
9382 (car tagsmatcher))
9383 orlist)
9384 (setq tagsmatcher nil))
9385 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
9386 (setq tagsmatcher
9387 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
9388 ;; Make the todo matcher
9389 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
9390 (setq todomatcher t)
9391 (setq orterms (org-split-string todomatch "|") orlist nil)
9392 (while (setq term (pop orterms))
9393 (while (string-match re term)
9394 (setq minus (and (match-end 1)
9395 (equal (match-string 1 term) "-"))
9396 kwd (match-string 2 term)
9397 re-p (equal (string-to-char kwd) ?{)
9398 term (substring term (match-end 0))
9399 mm (if re-p
9400 `(string-match ,(substring kwd 1 -1) todo)
9401 (list 'equal 'todo kwd))
9402 mm (if minus (list 'not mm) mm))
9403 (push mm todomatcher))
9404 (push (if (> (length todomatcher) 1)
9405 (cons 'and todomatcher)
9406 (car todomatcher))
9407 orlist)
9408 (setq todomatcher nil))
9409 (setq todomatcher (if (> (length orlist) 1)
9410 (cons 'or orlist) (car orlist))))
9412 ;; Return the string and lisp forms of the matcher
9413 (setq matcher (if todomatcher
9414 (list 'and tagsmatcher todomatcher)
9415 tagsmatcher))
9416 (cons match0 matcher)))
9418 (defun org-op-to-function (op &optional stringp)
9419 "Turn an operator into the appropriate function."
9420 (setq op
9421 (cond
9422 ((equal op "<" ) '(< string< org-time<))
9423 ((equal op ">" ) '(> org-string> org-time>))
9424 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
9425 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
9426 ((member op '("=" "==")) '(= string= org-time=))
9427 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
9428 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
9430 (defun org<> (a b) (not (= a b)))
9431 (defun org-string<= (a b) (or (string= a b) (string< a b)))
9432 (defun org-string>= (a b) (not (string< a b)))
9433 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
9434 (defun org-string<> (a b) (not (string= a b)))
9435 (defun org-time= (a b) (= (org-2ft a) (org-2ft b)))
9436 (defun org-time< (a b) (< (org-2ft a) (org-2ft b)))
9437 (defun org-time<= (a b) (<= (org-2ft a) (org-2ft b)))
9438 (defun org-time> (a b) (> (org-2ft a) (org-2ft b)))
9439 (defun org-time>= (a b) (>= (org-2ft a) (org-2ft b)))
9440 (defun org-time<> (a b) (org<> (org-2ft a) (org-2ft b)))
9441 (defun org-2ft (s)
9442 "Convert S to a floating point time.
9443 If S is already a number, just return it. If it is a string, parse
9444 it as a time string and apply `float-time' to it. f S is nil, just return 0."
9445 (cond
9446 ((numberp s) s)
9447 ((stringp s)
9448 (condition-case nil
9449 (float-time (apply 'encode-time (org-parse-time-string s)))
9450 (error 0.)))
9451 (t 0.)))
9453 (defun org-time-today ()
9454 "Time in seconds today at 0:00.
9455 Returns the float number of seconds since the beginning of the
9456 epoch to the beginning of today (00:00)."
9457 (float-time (apply 'encode-time
9458 (append '(0 0 0) (nthcdr 3 (decode-time))))))
9460 (defun org-matcher-time (s)
9461 "Interpret a time comparison value."
9462 (save-match-data
9463 (cond
9464 ((string= s "<now>") (float-time))
9465 ((string= s "<today>") (org-time-today))
9466 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
9467 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
9468 ((string-match "^<\\([-+][0-9]+\\)\\([dwmy]\\)>$" s)
9469 (+ (org-time-today)
9470 (* (string-to-number (match-string 1 s))
9471 (cdr (assoc (match-string 2 s)
9472 '(("d" . 86400.0) ("w" . 604800.0)
9473 ("m" . 2678400.0) ("y" . 31557600.0)))))))
9474 (t (org-2ft s)))))
9476 (defun org-match-any-p (re list)
9477 "Does re match any element of list?"
9478 (setq list (mapcar (lambda (x) (string-match re x)) list))
9479 (delq nil list))
9481 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
9482 (defvar org-tags-overlay (org-make-overlay 1 1))
9483 (org-detach-overlay org-tags-overlay)
9485 (defun org-get-local-tags-at (&optional pos)
9486 "Get a list of tags defined in the current headline."
9487 (org-get-tags-at pos 'local))
9489 (defun org-get-local-tags ()
9490 "Get a list of tags defined in the current headline."
9491 (org-get-tags-at nil 'local))
9493 (defun org-get-tags-at (&optional pos local)
9494 "Get a list of all headline tags applicable at POS.
9495 POS defaults to point. If tags are inherited, the list contains
9496 the targets in the same sequence as the headlines appear, i.e.
9497 the tags of the current headline come last.
9498 When LOCAL is non-nil, only return tags from the current headline,
9499 ignore inherited ones."
9500 (interactive)
9501 (let (tags ltags lastpos parent)
9502 (save-excursion
9503 (save-restriction
9504 (widen)
9505 (goto-char (or pos (point)))
9506 (save-match-data
9507 (catch 'done
9508 (condition-case nil
9509 (progn
9510 (org-back-to-heading t)
9511 (while (not (equal lastpos (point)))
9512 (setq lastpos (point))
9513 (when (looking-at (org-re "[^\r\n]+?:\\([[:alnum:]_@:]+\\):[ \t]*$"))
9514 (setq ltags (org-split-string
9515 (org-match-string-no-properties 1) ":"))
9516 (when parent
9517 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
9518 (setq tags (append
9519 (if parent
9520 (org-remove-uniherited-tags ltags)
9521 ltags)
9522 tags)))
9523 (or org-use-tag-inheritance (throw 'done t))
9524 (if local (throw 'done t))
9525 (org-up-heading-all 1)
9526 (setq parent t)))
9527 (error nil)))))
9528 (append (org-remove-uniherited-tags org-file-tags) tags))))
9530 (defun org-add-prop-inherited (s)
9531 (add-text-properties 0 (length s) '(inherited t) s)
9534 (defun org-toggle-tag (tag &optional onoff)
9535 "Toggle the tag TAG for the current line.
9536 If ONOFF is `on' or `off', don't toggle but set to this state."
9537 (let (res current)
9538 (save-excursion
9539 (org-back-to-heading t)
9540 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@:]+\\):[ \t]*$")
9541 (point-at-eol) t)
9542 (progn
9543 (setq current (match-string 1))
9544 (replace-match ""))
9545 (setq current ""))
9546 (setq current (nreverse (org-split-string current ":")))
9547 (cond
9548 ((eq onoff 'on)
9549 (setq res t)
9550 (or (member tag current) (push tag current)))
9551 ((eq onoff 'off)
9552 (or (not (member tag current)) (setq current (delete tag current))))
9553 (t (if (member tag current)
9554 (setq current (delete tag current))
9555 (setq res t)
9556 (push tag current))))
9557 (end-of-line 1)
9558 (if current
9559 (progn
9560 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
9561 (org-set-tags nil t))
9562 (delete-horizontal-space))
9563 (run-hooks 'org-after-tags-change-hook))
9564 res))
9566 (defun org-align-tags-here (to-col)
9567 ;; Assumes that this is a headline
9568 (let ((pos (point)) (col (current-column)) ncol tags-l p)
9569 (beginning-of-line 1)
9570 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@:]+:\\)[ \t]*$"))
9571 (< pos (match-beginning 2)))
9572 (progn
9573 (setq tags-l (- (match-end 2) (match-beginning 2)))
9574 (goto-char (match-beginning 1))
9575 (insert " ")
9576 (delete-region (point) (1+ (match-beginning 2)))
9577 (setq ncol (max (1+ (current-column))
9578 (1+ col)
9579 (if (> to-col 0)
9580 to-col
9581 (- (abs to-col) tags-l))))
9582 (setq p (point))
9583 (insert (make-string (- ncol (current-column)) ?\ ))
9584 (setq ncol (current-column))
9585 (when indent-tabs-mode (tabify p (point-at-eol)))
9586 (org-move-to-column (min ncol col) t))
9587 (goto-char pos))))
9589 (defun org-set-tags-command (&optional arg just-align)
9590 "Call the set-tags command for the current entry."
9591 (interactive "P")
9592 (if (org-on-heading-p)
9593 (org-set-tags arg just-align)
9594 (save-excursion
9595 (org-back-to-heading t)
9596 (org-set-tags arg just-align))))
9598 (defun org-set-tags (&optional arg just-align)
9599 "Set the tags for the current headline.
9600 With prefix ARG, realign all tags in headings in the current buffer."
9601 (interactive "P")
9602 (let* ((re (concat "^" outline-regexp))
9603 (current (org-get-tags-string))
9604 (col (current-column))
9605 (org-setting-tags t)
9606 table current-tags inherited-tags ; computed below when needed
9607 tags p0 c0 c1 rpl)
9608 (if arg
9609 (save-excursion
9610 (goto-char (point-min))
9611 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
9612 (while (re-search-forward re nil t)
9613 (org-set-tags nil t)
9614 (end-of-line 1)))
9615 (message "All tags realigned to column %d" org-tags-column))
9616 (if just-align
9617 (setq tags current)
9618 ;; Get a new set of tags from the user
9619 (save-excursion
9620 (setq table (or org-tag-alist (org-get-buffer-tags))
9621 org-last-tags-completion-table table
9622 current-tags (org-split-string current ":")
9623 inherited-tags (nreverse
9624 (nthcdr (length current-tags)
9625 (nreverse (org-get-tags-at))))
9626 tags
9627 (if (or (eq t org-use-fast-tag-selection)
9628 (and org-use-fast-tag-selection
9629 (delq nil (mapcar 'cdr table))))
9630 (org-fast-tag-selection
9631 current-tags inherited-tags table
9632 (if org-fast-tag-selection-include-todo org-todo-key-alist))
9633 (let ((org-add-colon-after-tag-completion t))
9634 (org-trim
9635 (org-without-partial-completion
9636 (org-ido-completing-read "Tags: " 'org-tags-completion-function
9637 nil nil current 'org-tags-history)))))))
9638 (while (string-match "[-+&]+" tags)
9639 ;; No boolean logic, just a list
9640 (setq tags (replace-match ":" t t tags))))
9642 (if (string-match "\\`[\t ]*\\'" tags)
9643 (setq tags "")
9644 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
9645 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
9647 ;; Insert new tags at the correct column
9648 (beginning-of-line 1)
9649 (cond
9650 ((and (equal current "") (equal tags "")))
9651 ((re-search-forward
9652 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
9653 (point-at-eol) t)
9654 (if (equal tags "")
9655 (setq rpl "")
9656 (goto-char (match-beginning 0))
9657 (setq c0 (current-column) p0 (point)
9658 c1 (max (1+ c0) (if (> org-tags-column 0)
9659 org-tags-column
9660 (- (- org-tags-column) (length tags))))
9661 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
9662 (replace-match rpl t t)
9663 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
9664 tags)
9665 (t (error "Tags alignment failed")))
9666 (org-move-to-column col)
9667 (unless just-align
9668 (run-hooks 'org-after-tags-change-hook)))))
9670 (defun org-change-tag-in-region (beg end tag off)
9671 "Add or remove TAG for each entry in the region.
9672 This works in the agenda, and also in an org-mode buffer."
9673 (interactive
9674 (list (region-beginning) (region-end)
9675 (let ((org-last-tags-completion-table
9676 (if (org-mode-p)
9677 (org-get-buffer-tags)
9678 (org-global-tags-completion-table))))
9679 (org-ido-completing-read
9680 "Tag: " 'org-tags-completion-function nil nil nil
9681 'org-tags-history))
9682 (progn
9683 (message "[s]et or [r]emove? ")
9684 (equal (read-char-exclusive) ?r))))
9685 (if (fboundp 'deactivate-mark) (deactivate-mark))
9686 (let ((agendap (equal major-mode 'org-agenda-mode))
9687 l1 l2 m buf pos newhead (cnt 0))
9688 (goto-char end)
9689 (setq l2 (1- (org-current-line)))
9690 (goto-char beg)
9691 (setq l1 (org-current-line))
9692 (loop for l from l1 to l2 do
9693 (goto-line l)
9694 (setq m (get-text-property (point) 'org-hd-marker))
9695 (when (or (and (org-mode-p) (org-on-heading-p))
9696 (and agendap m))
9697 (setq buf (if agendap (marker-buffer m) (current-buffer))
9698 pos (if agendap m (point)))
9699 (with-current-buffer buf
9700 (save-excursion
9701 (save-restriction
9702 (goto-char pos)
9703 (setq cnt (1+ cnt))
9704 (org-toggle-tag tag (if off 'off 'on))
9705 (setq newhead (org-get-heading)))))
9706 (and agendap (org-agenda-change-all-lines newhead m))))
9707 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
9709 (defun org-tags-completion-function (string predicate &optional flag)
9710 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
9711 (confirm (lambda (x) (stringp (car x)))))
9712 (if (string-match "^\\(.*[-+:&|]\\)\\([^-+:&|]*\\)$" string)
9713 (setq s1 (match-string 1 string)
9714 s2 (match-string 2 string))
9715 (setq s1 "" s2 string))
9716 (cond
9717 ((eq flag nil)
9718 ;; try completion
9719 (setq rtn (try-completion s2 ctable confirm))
9720 (if (stringp rtn)
9721 (setq rtn
9722 (concat s1 s2 (substring rtn (length s2))
9723 (if (and org-add-colon-after-tag-completion
9724 (assoc rtn ctable))
9725 ":" ""))))
9726 rtn)
9727 ((eq flag t)
9728 ;; all-completions
9729 (all-completions s2 ctable confirm)
9731 ((eq flag 'lambda)
9732 ;; exact match?
9733 (assoc s2 ctable)))
9736 (defun org-fast-tag-insert (kwd tags face &optional end)
9737 "Insert KDW, and the TAGS, the latter with face FACE. Also insert END."
9738 (insert (format "%-12s" (concat kwd ":"))
9739 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
9740 (or end "")))
9742 (defun org-fast-tag-show-exit (flag)
9743 (save-excursion
9744 (goto-line 3)
9745 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
9746 (replace-match ""))
9747 (when flag
9748 (end-of-line 1)
9749 (org-move-to-column (- (window-width) 19) t)
9750 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
9752 (defun org-set-current-tags-overlay (current prefix)
9753 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
9754 (if (featurep 'xemacs)
9755 (org-overlay-display org-tags-overlay (concat prefix s)
9756 'secondary-selection)
9757 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
9758 (org-overlay-display org-tags-overlay (concat prefix s)))))
9760 (defun org-fast-tag-selection (current inherited table &optional todo-table)
9761 "Fast tag selection with single keys.
9762 CURRENT is the current list of tags in the headline, INHERITED is the
9763 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
9764 possibly with grouping information. TODO-TABLE is a similar table with
9765 TODO keywords, should these have keys assigned to them.
9766 If the keys are nil, a-z are automatically assigned.
9767 Returns the new tags string, or nil to not change the current settings."
9768 (let* ((fulltable (append table todo-table))
9769 (maxlen (apply 'max (mapcar
9770 (lambda (x)
9771 (if (stringp (car x)) (string-width (car x)) 0))
9772 fulltable)))
9773 (buf (current-buffer))
9774 (expert (eq org-fast-tag-selection-single-key 'expert))
9775 (buffer-tags nil)
9776 (fwidth (+ maxlen 3 1 3))
9777 (ncol (/ (- (window-width) 4) fwidth))
9778 (i-face 'org-done)
9779 (c-face 'org-todo)
9780 tg cnt e c char c1 c2 ntable tbl rtn
9781 ov-start ov-end ov-prefix
9782 (exit-after-next org-fast-tag-selection-single-key)
9783 (done-keywords org-done-keywords)
9784 groups ingroup)
9785 (save-excursion
9786 (beginning-of-line 1)
9787 (if (looking-at
9788 (org-re ".*[ \t]\\(:[[:alnum:]_@:]+:\\)[ \t]*$"))
9789 (setq ov-start (match-beginning 1)
9790 ov-end (match-end 1)
9791 ov-prefix "")
9792 (setq ov-start (1- (point-at-eol))
9793 ov-end (1+ ov-start))
9794 (skip-chars-forward "^\n\r")
9795 (setq ov-prefix
9796 (concat
9797 (buffer-substring (1- (point)) (point))
9798 (if (> (current-column) org-tags-column)
9800 (make-string (- org-tags-column (current-column)) ?\ ))))))
9801 (org-move-overlay org-tags-overlay ov-start ov-end)
9802 (save-window-excursion
9803 (if expert
9804 (set-buffer (get-buffer-create " *Org tags*"))
9805 (delete-other-windows)
9806 (split-window-vertically)
9807 (org-switch-to-buffer-other-window (get-buffer-create " *Org tags*")))
9808 (erase-buffer)
9809 (org-set-local 'org-done-keywords done-keywords)
9810 (org-fast-tag-insert "Inherited" inherited i-face "\n")
9811 (org-fast-tag-insert "Current" current c-face "\n\n")
9812 (org-fast-tag-show-exit exit-after-next)
9813 (org-set-current-tags-overlay current ov-prefix)
9814 (setq tbl fulltable char ?a cnt 0)
9815 (while (setq e (pop tbl))
9816 (cond
9817 ((equal e '(:startgroup))
9818 (push '() groups) (setq ingroup t)
9819 (when (not (= cnt 0))
9820 (setq cnt 0)
9821 (insert "\n"))
9822 (insert "{ "))
9823 ((equal e '(:endgroup))
9824 (setq ingroup nil cnt 0)
9825 (insert "}\n"))
9827 (setq tg (car e) c2 nil)
9828 (if (cdr e)
9829 (setq c (cdr e))
9830 ;; automatically assign a character.
9831 (setq c1 (string-to-char
9832 (downcase (substring
9833 tg (if (= (string-to-char tg) ?@) 1 0)))))
9834 (if (or (rassoc c1 ntable) (rassoc c1 table))
9835 (while (or (rassoc char ntable) (rassoc char table))
9836 (setq char (1+ char)))
9837 (setq c2 c1))
9838 (setq c (or c2 char)))
9839 (if ingroup (push tg (car groups)))
9840 (setq tg (org-add-props tg nil 'face
9841 (cond
9842 ((not (assoc tg table))
9843 (org-get-todo-face tg))
9844 ((member tg current) c-face)
9845 ((member tg inherited) i-face)
9846 (t nil))))
9847 (if (and (= cnt 0) (not ingroup)) (insert " "))
9848 (insert "[" c "] " tg (make-string
9849 (- fwidth 4 (length tg)) ?\ ))
9850 (push (cons tg c) ntable)
9851 (when (= (setq cnt (1+ cnt)) ncol)
9852 (insert "\n")
9853 (if ingroup (insert " "))
9854 (setq cnt 0)))))
9855 (setq ntable (nreverse ntable))
9856 (insert "\n")
9857 (goto-char (point-min))
9858 (if (not expert) (org-fit-window-to-buffer))
9859 (setq rtn
9860 (catch 'exit
9861 (while t
9862 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free%s%s"
9863 (if groups " [!] no groups" " [!]groups")
9864 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
9865 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
9866 (cond
9867 ((= c ?\r) (throw 'exit t))
9868 ((= c ?!)
9869 (setq groups (not groups))
9870 (goto-char (point-min))
9871 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
9872 ((= c ?\C-c)
9873 (if (not expert)
9874 (org-fast-tag-show-exit
9875 (setq exit-after-next (not exit-after-next)))
9876 (setq expert nil)
9877 (delete-other-windows)
9878 (split-window-vertically)
9879 (org-switch-to-buffer-other-window " *Org tags*")
9880 (org-fit-window-to-buffer)))
9881 ((or (= c ?\C-g)
9882 (and (= c ?q) (not (rassoc c ntable))))
9883 (org-detach-overlay org-tags-overlay)
9884 (setq quit-flag t))
9885 ((= c ?\ )
9886 (setq current nil)
9887 (if exit-after-next (setq exit-after-next 'now)))
9888 ((= c ?\t)
9889 (condition-case nil
9890 (setq tg (org-ido-completing-read
9891 "Tag: "
9892 (or buffer-tags
9893 (with-current-buffer buf
9894 (org-get-buffer-tags)))))
9895 (quit (setq tg "")))
9896 (when (string-match "\\S-" tg)
9897 (add-to-list 'buffer-tags (list tg))
9898 (if (member tg current)
9899 (setq current (delete tg current))
9900 (push tg current)))
9901 (if exit-after-next (setq exit-after-next 'now)))
9902 ((setq e (rassoc c todo-table) tg (car e))
9903 (with-current-buffer buf
9904 (save-excursion (org-todo tg)))
9905 (if exit-after-next (setq exit-after-next 'now)))
9906 ((setq e (rassoc c ntable) tg (car e))
9907 (if (member tg current)
9908 (setq current (delete tg current))
9909 (loop for g in groups do
9910 (if (member tg g)
9911 (mapc (lambda (x)
9912 (setq current (delete x current)))
9913 g)))
9914 (push tg current))
9915 (if exit-after-next (setq exit-after-next 'now))))
9917 ;; Create a sorted list
9918 (setq current
9919 (sort current
9920 (lambda (a b)
9921 (assoc b (cdr (memq (assoc a ntable) ntable))))))
9922 (if (eq exit-after-next 'now) (throw 'exit t))
9923 (goto-char (point-min))
9924 (beginning-of-line 2)
9925 (delete-region (point) (point-at-eol))
9926 (org-fast-tag-insert "Current" current c-face)
9927 (org-set-current-tags-overlay current ov-prefix)
9928 (while (re-search-forward
9929 (org-re "\\[.\\] \\([[:alnum:]_@]+\\)") nil t)
9930 (setq tg (match-string 1))
9931 (add-text-properties
9932 (match-beginning 1) (match-end 1)
9933 (list 'face
9934 (cond
9935 ((member tg current) c-face)
9936 ((member tg inherited) i-face)
9937 (t (get-text-property (match-beginning 1) 'face))))))
9938 (goto-char (point-min)))))
9939 (org-detach-overlay org-tags-overlay)
9940 (if rtn
9941 (mapconcat 'identity current ":")
9942 nil))))
9944 (defun org-get-tags-string ()
9945 "Get the TAGS string in the current headline."
9946 (unless (org-on-heading-p t)
9947 (error "Not on a heading"))
9948 (save-excursion
9949 (beginning-of-line 1)
9950 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@:]+:\\)[ \t]*$"))
9951 (org-match-string-no-properties 1)
9952 "")))
9954 (defun org-get-tags ()
9955 "Get the list of tags specified in the current headline."
9956 (org-split-string (org-get-tags-string) ":"))
9958 (defun org-get-buffer-tags ()
9959 "Get a table of all tags used in the buffer, for completion."
9960 (let (tags)
9961 (save-excursion
9962 (goto-char (point-min))
9963 (while (re-search-forward
9964 (org-re "[ \t]:\\([[:alnum:]_@:]+\\):[ \t\r\n]") nil t)
9965 (when (equal (char-after (point-at-bol 0)) ?*)
9966 (mapc (lambda (x) (add-to-list 'tags x))
9967 (org-split-string (org-match-string-no-properties 1) ":")))))
9968 (mapcar 'list tags)))
9970 ;;;; The mapping API
9972 ;;;###autoload
9973 (defun org-map-entries (func &optional match scope &rest skip)
9974 "Call FUNC at each headline selected by MATCH in SCOPE.
9976 FUNC is a function or a lisp form. The function will be called without
9977 arguments, with the cursor positioned at the beginning of the headline.
9978 The return values of all calls to the function will be collected and
9979 returned as a list.
9981 MATCH is a tags/property/todo match as it is used in the agenda tags view.
9982 Only headlines that are matched by this query will be considered during
9983 the iteration. When MATCH is nil or t, all headlines will be
9984 visited by the iteration.
9986 SCOPE determines the scope of this command. It can be any of:
9988 nil The current buffer, respecting the restriction if any
9989 tree The subtree started with the entry at point
9990 file The current buffer, without restriction
9991 file-with-archives
9992 The current buffer, and any archives associated with it
9993 agenda All agenda files
9994 agenda-with-archives
9995 All agenda files with any archive files associated with them
9996 \(file1 file2 ...)
9997 If this is a list, all files in the list will be scanned
9999 The remaining args are treated as settings for the skipping facilities of
10000 the scanner. The following items can be given here:
10002 archive skip trees with the archive tag.
10003 comment skip trees with the COMMENT keyword
10004 function or Emacs Lisp form:
10005 will be used as value for `org-agenda-skip-function', so whenever
10006 the the function returns t, FUNC will not be called for that
10007 entry and search will continue from the point where the
10008 function leaves it."
10009 (let* ((org-agenda-archives-mode nil) ; just to make sure
10010 (org-agenda-skip-archived-trees (memq 'archive skip))
10011 (org-agenda-skip-comment-trees (memq 'comment skip))
10012 (org-agenda-skip-function
10013 (car (org-delete-all '(comment archive) skip)))
10014 (org-tags-match-list-sublevels t)
10015 matcher pos file res
10016 org-todo-keywords-for-agenda
10017 org-done-keywords-for-agenda
10018 org-todo-keyword-alist-for-agenda
10019 org-tag-alist-for-agenda)
10021 (cond
10022 ((eq match t) (setq matcher t))
10023 ((eq match nil) (setq matcher t))
10024 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
10026 (when (eq scope 'tree)
10027 (org-back-to-heading t)
10028 (org-narrow-to-subtree)
10029 (setq scope nil))
10031 (if (not scope)
10032 (progn
10033 (org-prepare-agenda-buffers
10034 (list (buffer-file-name (current-buffer))))
10035 (org-scan-tags func matcher))
10036 ;; Get the right scope
10037 (setq pos (point))
10038 (cond
10039 ((and scope (listp scope) (symbolp (car scope)))
10040 (setq scope (eval scope)))
10041 ((eq scope 'agenda)
10042 (setq scope (org-agenda-files t)))
10043 ((eq scope 'agenda-with-archives)
10044 (setq scope (org-agenda-files t))
10045 (setq scope (org-add-archive-files scope)))
10046 ((eq scope 'file)
10047 (setq scope (list (buffer-file-name))))
10048 ((eq scope 'file-with-archives)
10049 (setq scope (org-add-archive-files (list (buffer-file-name))))))
10050 (org-prepare-agenda-buffers scope)
10051 (while (setq file (pop scope))
10052 (with-current-buffer (org-find-base-buffer-visiting file)
10053 (save-excursion
10054 (save-restriction
10055 (widen)
10056 (goto-char (point-min))
10057 (setq res (append res (org-scan-tags func matcher)))))))
10058 res)))
10060 ;;;; Properties
10062 ;;; Setting and retrieving properties
10064 (defconst org-special-properties
10065 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "CLOSED" "PRIORITY"
10066 "TIMESTAMP" "TIMESTAMP_IA")
10067 "The special properties valid in Org-mode.
10069 These are properties that are not defined in the property drawer,
10070 but in some other way.")
10072 (defconst org-default-properties
10073 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION"
10074 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
10075 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
10076 "EXPORT_FILE_NAME" "EXPORT_TITLE")
10077 "Some properties that are used by Org-mode for various purposes.
10078 Being in this list makes sure that they are offered for completion.")
10080 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
10081 "Regular expression matching the first line of a property drawer.")
10083 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
10084 "Regular expression matching the first line of a property drawer.")
10086 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
10087 "Regular expression matching the first line of a property drawer.")
10089 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
10090 "Regular expression matching the first line of a property drawer.")
10092 (defconst org-property-drawer-re
10093 (concat "\\(" org-property-start-re "\\)[^\000]*\\("
10094 org-property-end-re "\\)\n?")
10095 "Matches an entire property drawer.")
10097 (defconst org-clock-drawer-re
10098 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*\\("
10099 org-property-end-re "\\)\n?")
10100 "Matches an entire clock drawer.")
10102 (defun org-property-action ()
10103 "Do an action on properties."
10104 (interactive)
10105 (let (c)
10106 (org-at-property-p)
10107 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
10108 (setq c (read-char-exclusive))
10109 (cond
10110 ((equal c ?s)
10111 (call-interactively 'org-set-property))
10112 ((equal c ?d)
10113 (call-interactively 'org-delete-property))
10114 ((equal c ?D)
10115 (call-interactively 'org-delete-property-globally))
10116 ((equal c ?c)
10117 (call-interactively 'org-compute-property-at-point))
10118 (t (error "No such property action %c" c)))))
10120 (defun org-at-property-p ()
10121 "Is the cursor in a property line?"
10122 ;; FIXME: Does not check if we are actually in the drawer.
10123 ;; FIXME: also returns true on any drawers.....
10124 ;; This is used by C-c C-c for property action.
10125 (save-excursion
10126 (beginning-of-line 1)
10127 (looking-at (org-re "^[ \t]*\\(:\\([[:alpha:]][[:alnum:]_-]*\\):\\)[ \t]*\\(.*\\)"))))
10129 (defun org-get-property-block (&optional beg end force)
10130 "Return the (beg . end) range of the body of the property drawer.
10131 BEG and END can be beginning and end of subtree, if not given
10132 they will be found.
10133 If the drawer does not exist and FORCE is non-nil, create the drawer."
10134 (catch 'exit
10135 (save-excursion
10136 (let* ((beg (or beg (progn (org-back-to-heading t) (point))))
10137 (end (or end (progn (outline-next-heading) (point)))))
10138 (goto-char beg)
10139 (if (re-search-forward org-property-start-re end t)
10140 (setq beg (1+ (match-end 0)))
10141 (if force
10142 (save-excursion
10143 (org-insert-property-drawer)
10144 (setq end (progn (outline-next-heading) (point))))
10145 (throw 'exit nil))
10146 (goto-char beg)
10147 (if (re-search-forward org-property-start-re end t)
10148 (setq beg (1+ (match-end 0)))))
10149 (if (re-search-forward org-property-end-re end t)
10150 (setq end (match-beginning 0))
10151 (or force (throw 'exit nil))
10152 (goto-char beg)
10153 (setq end beg)
10154 (org-indent-line-function)
10155 (insert ":END:\n"))
10156 (cons beg end)))))
10158 (defun org-entry-properties (&optional pom which)
10159 "Get all properties of the entry at point-or-marker POM.
10160 This includes the TODO keyword, the tags, time strings for deadline,
10161 scheduled, and clocking, and any additional properties defined in the
10162 entry. The return value is an alist, keys may occur multiple times
10163 if the property key was used several times.
10164 POM may also be nil, in which case the current entry is used.
10165 If WHICH is nil or `all', get all properties. If WHICH is
10166 `special' or `standard', only get that subclass."
10167 (setq which (or which 'all))
10168 (org-with-point-at pom
10169 (let ((clockstr (substring org-clock-string 0 -1))
10170 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY"))
10171 beg end range props sum-props key value string clocksum)
10172 (save-excursion
10173 (when (condition-case nil (org-back-to-heading t) (error nil))
10174 (setq beg (point))
10175 (setq sum-props (get-text-property (point) 'org-summaries))
10176 (setq clocksum (get-text-property (point) :org-clock-minutes))
10177 (outline-next-heading)
10178 (setq end (point))
10179 (when (memq which '(all special))
10180 ;; Get the special properties, like TODO and tags
10181 (goto-char beg)
10182 (when (and (looking-at org-todo-line-regexp) (match-end 2))
10183 (push (cons "TODO" (org-match-string-no-properties 2)) props))
10184 (when (looking-at org-priority-regexp)
10185 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
10186 (when (and (setq value (org-get-tags-string))
10187 (string-match "\\S-" value))
10188 (push (cons "TAGS" value) props))
10189 (when (setq value (org-get-tags-at))
10190 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":") ":"))
10191 props))
10192 (while (re-search-forward org-maybe-keyword-time-regexp end t)
10193 (setq key (if (match-end 1) (substring (org-match-string-no-properties 1) 0 -1))
10194 string (if (equal key clockstr)
10195 (org-no-properties
10196 (org-trim
10197 (buffer-substring
10198 (match-beginning 3) (goto-char (point-at-eol)))))
10199 (substring (org-match-string-no-properties 3) 1 -1)))
10200 (unless key
10201 (if (= (char-after (match-beginning 3)) ?\[)
10202 (setq key "TIMESTAMP_IA")
10203 (setq key "TIMESTAMP")))
10204 (when (or (equal key clockstr) (not (assoc key props)))
10205 (push (cons key string) props)))
10209 (when (memq which '(all standard))
10210 ;; Get the standard properties, like :PORP: ...
10211 (setq range (org-get-property-block beg end))
10212 (when range
10213 (goto-char (car range))
10214 (while (re-search-forward
10215 (org-re "^[ \t]*:\\([[:alpha:]][[:alnum:]_-]*\\):[ \t]*\\(\\S-.*\\)?")
10216 (cdr range) t)
10217 (setq key (org-match-string-no-properties 1)
10218 value (org-trim (or (org-match-string-no-properties 2) "")))
10219 (unless (member key excluded)
10220 (push (cons key (or value "")) props)))))
10221 (if clocksum
10222 (push (cons "CLOCKSUM"
10223 (org-columns-number-to-string (/ (float clocksum) 60.)
10224 'add_times))
10225 props))
10226 (unless (assoc "CATEGORY" props)
10227 (setq value (or (org-get-category)
10228 (progn (org-refresh-category-properties)
10229 (org-get-category))))
10230 (push (cons "CATEGORY" value) props))
10231 (append sum-props (nreverse props)))))))
10233 (defun org-entry-get (pom property &optional inherit)
10234 "Get value of PROPERTY for entry at point-or-marker POM.
10235 If INHERIT is non-nil and the entry does not have the property,
10236 then also check higher levels of the hierarchy.
10237 If INHERIT is the symbol `selective', use inheritance only if the setting
10238 in `org-use-property-inheritance' selects PROPERTY for inheritance.
10239 If the property is present but empty, the return value is the empty string.
10240 If the property is not present at all, nil is returned."
10241 (org-with-point-at pom
10242 (if (and inherit (if (eq inherit 'selective)
10243 (org-property-inherit-p property)
10245 (org-entry-get-with-inheritance property)
10246 (if (member property org-special-properties)
10247 ;; We need a special property. Use brute force, get all properties.
10248 (cdr (assoc property (org-entry-properties nil 'special)))
10249 (let ((range (org-get-property-block)))
10250 (if (and range
10251 (goto-char (car range))
10252 (re-search-forward
10253 (concat "^[ \t]*:" property ":[ \t]*\\(.*[^ \t\r\n\f\v]\\)?")
10254 (cdr range) t))
10255 ;; Found the property, return it.
10256 (if (match-end 1)
10257 (org-match-string-no-properties 1)
10258 "")))))))
10260 (defun org-property-or-variable-value (var &optional inherit)
10261 "Check if there is a property fixing the value of VAR.
10262 If yes, return this value. If not, return the current value of the variable."
10263 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
10264 (if (and prop (stringp prop) (string-match "\\S-" prop))
10265 (read prop)
10266 (symbol-value var))))
10268 (defun org-entry-delete (pom property)
10269 "Delete the property PROPERTY from entry at point-or-marker POM."
10270 (org-with-point-at pom
10271 (if (member property org-special-properties)
10272 nil ; cannot delete these properties.
10273 (let ((range (org-get-property-block)))
10274 (if (and range
10275 (goto-char (car range))
10276 (re-search-forward
10277 (concat "^[ \t]*:" property ":[ \t]*\\(.*[^ \t\r\n\f\v]\\)")
10278 (cdr range) t))
10279 (progn
10280 (delete-region (match-beginning 0) (1+ (point-at-eol)))
10282 nil)))))
10284 ;; Multi-values properties are properties that contain multiple values
10285 ;; These values are assumed to be single words, separated by whitespace.
10286 (defun org-entry-add-to-multivalued-property (pom property value)
10287 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
10288 (let* ((old (org-entry-get pom property))
10289 (values (and old (org-split-string old "[ \t]"))))
10290 (setq value (org-entry-protect-space value))
10291 (unless (member value values)
10292 (setq values (cons value values))
10293 (org-entry-put pom property
10294 (mapconcat 'identity values " ")))))
10296 (defun org-entry-remove-from-multivalued-property (pom property value)
10297 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
10298 (let* ((old (org-entry-get pom property))
10299 (values (and old (org-split-string old "[ \t]"))))
10300 (setq value (org-entry-protect-space value))
10301 (when (member value values)
10302 (setq values (delete value values))
10303 (org-entry-put pom property
10304 (mapconcat 'identity values " ")))))
10306 (defun org-entry-member-in-multivalued-property (pom property value)
10307 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
10308 (let* ((old (org-entry-get pom property))
10309 (values (and old (org-split-string old "[ \t]"))))
10310 (setq value (org-entry-protect-space value))
10311 (member value values)))
10313 (defun org-entry-get-multivalued-property (pom property)
10314 "Return a list of values in a multivalued property."
10315 (let* ((value (org-entry-get pom property))
10316 (values (and value (org-split-string value "[ \t]"))))
10317 (mapcar 'org-entry-restore-space values)))
10319 (defun org-entry-put-multivalued-property (pom property &rest values)
10320 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
10321 VALUES should be a list of strings. Spaces will be protected."
10322 (org-entry-put pom property
10323 (mapconcat 'org-entry-protect-space values " "))
10324 (let* ((value (org-entry-get pom property))
10325 (values (and value (org-split-string value "[ \t]"))))
10326 (mapcar 'org-entry-restore-space values)))
10328 (defun org-entry-protect-space (s)
10329 "Protect spaces and newline in string S."
10330 (while (string-match " " s)
10331 (setq s (replace-match "%20" t t s)))
10332 (while (string-match "\n" s)
10333 (setq s (replace-match "%0A" t t s)))
10336 (defun org-entry-restore-space (s)
10337 "Restore spaces and newline in string S."
10338 (while (string-match "%20" s)
10339 (setq s (replace-match " " t t s)))
10340 (while (string-match "%0A" s)
10341 (setq s (replace-match "\n" t t s)))
10344 (defvar org-entry-property-inherited-from (make-marker)
10345 "Marker pointing to the entry from where a property was inherited.
10346 Each call to `org-entry-get-with-inheritance' will set this marker to the
10347 location of the entry where the inheritance search matched. If there was
10348 no match, the marker will point nowhere.
10349 Note that also `org-entry-get' calls this function, if the INHERIT flag
10350 is set.")
10352 (defun org-entry-get-with-inheritance (property)
10353 "Get entry property, and search higher levels if not present."
10354 (move-marker org-entry-property-inherited-from nil)
10355 (let (tmp)
10356 (save-excursion
10357 (save-restriction
10358 (widen)
10359 (catch 'ex
10360 (while t
10361 (when (setq tmp (org-entry-get nil property))
10362 (org-back-to-heading t)
10363 (move-marker org-entry-property-inherited-from (point))
10364 (throw 'ex tmp))
10365 (or (org-up-heading-safe) (throw 'ex nil)))))
10366 (or tmp
10367 (cdr (assoc property org-file-properties))
10368 (cdr (assoc property org-global-properties))
10369 (cdr (assoc property org-global-properties-fixed))))))
10371 (defun org-entry-put (pom property value)
10372 "Set PROPERTY to VALUE for entry at point-or-marker POM."
10373 (org-with-point-at pom
10374 (org-back-to-heading t)
10375 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
10376 range)
10377 (cond
10378 ((equal property "TODO")
10379 (when (and (stringp value) (string-match "\\S-" value)
10380 (not (member value org-todo-keywords-1)))
10381 (error "\"%s\" is not a valid TODO state" value))
10382 (if (or (not value)
10383 (not (string-match "\\S-" value)))
10384 (setq value 'none))
10385 (org-todo value)
10386 (org-set-tags nil 'align))
10387 ((equal property "PRIORITY")
10388 (org-priority (if (and value (stringp value) (string-match "\\S-" value))
10389 (string-to-char value) ?\ ))
10390 (org-set-tags nil 'align))
10391 ((equal property "SCHEDULED")
10392 (if (re-search-forward org-scheduled-time-regexp end t)
10393 (cond
10394 ((eq value 'earlier) (org-timestamp-change -1 'day))
10395 ((eq value 'later) (org-timestamp-change 1 'day))
10396 (t (call-interactively 'org-schedule)))
10397 (call-interactively 'org-schedule)))
10398 ((equal property "DEADLINE")
10399 (if (re-search-forward org-deadline-time-regexp end t)
10400 (cond
10401 ((eq value 'earlier) (org-timestamp-change -1 'day))
10402 ((eq value 'later) (org-timestamp-change 1 'day))
10403 (t (call-interactively 'org-deadline)))
10404 (call-interactively 'org-deadline)))
10405 ((member property org-special-properties)
10406 (error "The %s property can not yet be set with `org-entry-put'"
10407 property))
10408 (t ; a non-special property
10409 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
10410 (setq range (org-get-property-block beg end 'force))
10411 (goto-char (car range))
10412 (if (re-search-forward
10413 (concat "^[ \t]*:" property ":\\(.*\\)") (cdr range) t)
10414 (progn
10415 (delete-region (match-beginning 1) (match-end 1))
10416 (goto-char (match-beginning 1)))
10417 (goto-char (cdr range))
10418 (insert "\n")
10419 (backward-char 1)
10420 (org-indent-line-function)
10421 (insert ":" property ":"))
10422 (and value (insert " " value))
10423 (org-indent-line-function)))))))
10425 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
10426 "Get all property keys in the current buffer.
10427 With INCLUDE-SPECIALS, also list the special properties that reflect things
10428 like tags and TODO state.
10429 With INCLUDE-DEFAULTS, also include properties that has special meaning
10430 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING.
10431 With INCLUDE-COLUMNS, also include property names given in COLUMN
10432 formats in the current buffer."
10433 (let (rtn range cfmt cols s p)
10434 (save-excursion
10435 (save-restriction
10436 (widen)
10437 (goto-char (point-min))
10438 (while (re-search-forward org-property-start-re nil t)
10439 (setq range (org-get-property-block))
10440 (goto-char (car range))
10441 (while (re-search-forward
10442 (org-re "^[ \t]*:\\([-[:alnum:]_]+\\):")
10443 (cdr range) t)
10444 (add-to-list 'rtn (org-match-string-no-properties 1)))
10445 (outline-next-heading))))
10447 (when include-specials
10448 (setq rtn (append org-special-properties rtn)))
10450 (when include-defaults
10451 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties))
10453 (when include-columns
10454 (save-excursion
10455 (save-restriction
10456 (widen)
10457 (goto-char (point-min))
10458 (while (re-search-forward
10459 "^\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
10460 nil t)
10461 (setq cfmt (match-string 2) s 0)
10462 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
10463 cfmt s)
10464 (setq s (match-end 0)
10465 p (match-string 1 cfmt))
10466 (unless (or (equal p "ITEM")
10467 (member p org-special-properties))
10468 (add-to-list 'rtn (match-string 1 cfmt))))))))
10470 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
10472 (defun org-property-values (key)
10473 "Return a list of all values of property KEY."
10474 (save-excursion
10475 (save-restriction
10476 (widen)
10477 (goto-char (point-min))
10478 (let ((re (concat "^[ \t]*:" key ":[ \t]*\\(\\S-.*\\)"))
10479 values)
10480 (while (re-search-forward re nil t)
10481 (add-to-list 'values (org-trim (match-string 1))))
10482 (delete "" values)))))
10484 (defun org-insert-property-drawer ()
10485 "Insert a property drawer into the current entry."
10486 (interactive)
10487 (org-back-to-heading t)
10488 (looking-at outline-regexp)
10489 (let ((indent (- (match-end 0)(match-beginning 0)))
10490 (beg (point))
10491 (re (concat "^[ \t]*" org-keyword-time-regexp))
10492 end hiddenp)
10493 (outline-next-heading)
10494 (setq end (point))
10495 (goto-char beg)
10496 (while (re-search-forward re end t))
10497 (setq hiddenp (org-invisible-p))
10498 (end-of-line 1)
10499 (and (equal (char-after) ?\n) (forward-char 1))
10500 (while (looking-at "^[ \t]*\\(:CLOCK:\\|CLOCK\\|:END:\\)")
10501 (beginning-of-line 2))
10502 (org-skip-over-state-notes)
10503 (skip-chars-backward " \t\n\r")
10504 (if (eq (char-before) ?*) (forward-char 1))
10505 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
10506 (beginning-of-line 0)
10507 (org-indent-to-column indent)
10508 (beginning-of-line 2)
10509 (org-indent-to-column indent)
10510 (beginning-of-line 0)
10511 (if hiddenp
10512 (save-excursion
10513 (org-back-to-heading t)
10514 (hide-entry))
10515 (org-flag-drawer t))))
10517 (defun org-set-property (property value)
10518 "In the current entry, set PROPERTY to VALUE.
10519 When called interactively, this will prompt for a property name, offering
10520 completion on existing and default properties. And then it will prompt
10521 for a value, offering completion either on allowed values (via an inherited
10522 xxx_ALL property) or on existing values in other instances of this property
10523 in the current file."
10524 (interactive
10525 (let* ((completion-ignore-case t)
10526 (keys (org-buffer-property-keys nil t t))
10527 (prop0 (org-ido-completing-read "Property: " (mapcar 'list keys)))
10528 (prop (if (member prop0 keys)
10529 prop0
10530 (or (cdr (assoc (downcase prop0)
10531 (mapcar (lambda (x) (cons (downcase x) x))
10532 keys)))
10533 prop0)))
10534 (cur (org-entry-get nil prop))
10535 (allowed (org-property-get-allowed-values nil prop 'table))
10536 (existing (mapcar 'list (org-property-values prop)))
10537 (val (if allowed
10538 (org-completing-read "Value: " allowed nil 'req-match)
10539 (org-completing-read
10540 (concat "Value" (if (and cur (string-match "\\S-" cur))
10541 (concat "[" cur "]") "")
10542 ": ")
10543 existing nil nil "" nil cur))))
10544 (list prop (if (equal val "") cur val))))
10545 (unless (equal (org-entry-get nil property) value)
10546 (org-entry-put nil property value)))
10548 (defun org-delete-property (property)
10549 "In the current entry, delete PROPERTY."
10550 (interactive
10551 (let* ((completion-ignore-case t)
10552 (prop (org-ido-completing-read
10553 "Property: " (org-entry-properties nil 'standard))))
10554 (list prop)))
10555 (message "Property %s %s" property
10556 (if (org-entry-delete nil property)
10557 "deleted"
10558 "was not present in the entry")))
10560 (defun org-delete-property-globally (property)
10561 "Remove PROPERTY globally, from all entries."
10562 (interactive
10563 (let* ((completion-ignore-case t)
10564 (prop (org-ido-completing-read
10565 "Globally remove property: "
10566 (mapcar 'list (org-buffer-property-keys)))))
10567 (list prop)))
10568 (save-excursion
10569 (save-restriction
10570 (widen)
10571 (goto-char (point-min))
10572 (let ((cnt 0))
10573 (while (re-search-forward
10574 (concat "^[ \t]*:" (regexp-quote property) ":.*\n?")
10575 nil t)
10576 (setq cnt (1+ cnt))
10577 (replace-match ""))
10578 (message "Property \"%s\" removed from %d entries" property cnt)))))
10580 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
10582 (defun org-compute-property-at-point ()
10583 "Compute the property at point.
10584 This looks for an enclosing column format, extracts the operator and
10585 then applies it to the property in the column format's scope."
10586 (interactive)
10587 (unless (org-at-property-p)
10588 (error "Not at a property"))
10589 (let ((prop (org-match-string-no-properties 2)))
10590 (org-columns-get-format-and-top-level)
10591 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
10592 (error "No operator defined for property %s" prop))
10593 (org-columns-compute prop)))
10595 (defun org-property-get-allowed-values (pom property &optional table)
10596 "Get allowed values for the property PROPERTY.
10597 When TABLE is non-nil, return an alist that can directly be used for
10598 completion."
10599 (let (vals)
10600 (cond
10601 ((equal property "TODO")
10602 (setq vals (org-with-point-at pom
10603 (append org-todo-keywords-1 '("")))))
10604 ((equal property "PRIORITY")
10605 (let ((n org-lowest-priority))
10606 (while (>= n org-highest-priority)
10607 (push (char-to-string n) vals)
10608 (setq n (1- n)))))
10609 ((member property org-special-properties))
10611 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
10613 (when (and vals (string-match "\\S-" vals))
10614 (setq vals (car (read-from-string (concat "(" vals ")"))))
10615 (setq vals (mapcar (lambda (x)
10616 (cond ((stringp x) x)
10617 ((numberp x) (number-to-string x))
10618 ((symbolp x) (symbol-name x))
10619 (t "???")))
10620 vals)))))
10621 (if table (mapcar 'list vals) vals)))
10623 (defun org-property-previous-allowed-value (&optional previous)
10624 "Switch to the next allowed value for this property."
10625 (interactive)
10626 (org-property-next-allowed-value t))
10628 (defun org-property-next-allowed-value (&optional previous)
10629 "Switch to the next allowed value for this property."
10630 (interactive)
10631 (unless (org-at-property-p)
10632 (error "Not at a property"))
10633 (let* ((key (match-string 2))
10634 (value (match-string 3))
10635 (allowed (or (org-property-get-allowed-values (point) key)
10636 (and (member value '("[ ]" "[-]" "[X]"))
10637 '("[ ]" "[X]"))))
10638 nval)
10639 (unless allowed
10640 (error "Allowed values for this property have not been defined"))
10641 (if previous (setq allowed (reverse allowed)))
10642 (if (member value allowed)
10643 (setq nval (car (cdr (member value allowed)))))
10644 (setq nval (or nval (car allowed)))
10645 (if (equal nval value)
10646 (error "Only one allowed value for this property"))
10647 (org-at-property-p)
10648 (replace-match (concat " :" key ": " nval) t t)
10649 (org-indent-line-function)
10650 (beginning-of-line 1)
10651 (skip-chars-forward " \t")))
10653 (defun org-find-entry-with-id (ident)
10654 "Locate the entry that contains the ID property with exact value IDENT.
10655 IDENT can be a string, a symbol or a number, this function will search for
10656 the string representation of it.
10657 Return the position where this entry starts, or nil if there is no such entry."
10658 (interactive "sID: ")
10659 (let ((id (cond
10660 ((stringp ident) ident)
10661 ((symbol-name ident) (symbol-name ident))
10662 ((numberp ident) (number-to-string ident))
10663 (t (error "IDENT %s must be a string, symbol or number" ident))))
10664 (case-fold-search nil))
10665 (save-excursion
10666 (save-restriction
10667 (widen)
10668 (goto-char (point-min))
10669 (when (re-search-forward
10670 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
10671 nil t)
10672 (org-back-to-heading)
10673 (point))))))
10675 ;;;; Timestamps
10677 (defvar org-last-changed-timestamp nil)
10678 (defvar org-last-inserted-timestamp nil
10679 "The last time stamp inserted with `org-insert-time-stamp'.")
10680 (defvar org-time-was-given) ; dynamically scoped parameter
10681 (defvar org-end-time-was-given) ; dynamically scoped parameter
10682 (defvar org-ts-what) ; dynamically scoped parameter
10684 (defun org-time-stamp (arg &optional inactive)
10685 "Prompt for a date/time and insert a time stamp.
10686 If the user specifies a time like HH:MM, or if this command is called
10687 with a prefix argument, the time stamp will contain date and time.
10688 Otherwise, only the date will be included. All parts of a date not
10689 specified by the user will be filled in from the current date/time.
10690 So if you press just return without typing anything, the time stamp
10691 will represent the current date/time. If there is already a timestamp
10692 at the cursor, it will be modified."
10693 (interactive "P")
10694 (let* ((ts nil)
10695 (default-time
10696 ;; Default time is either today, or, when entering a range,
10697 ;; the range start.
10698 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
10699 (save-excursion
10700 (re-search-backward
10701 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
10702 (- (point) 20) t)))
10703 (apply 'encode-time (org-parse-time-string (match-string 1)))
10704 (current-time)))
10705 (default-input (and ts (org-get-compact-tod ts)))
10706 org-time-was-given org-end-time-was-given time)
10707 (cond
10708 ((and (org-at-timestamp-p t)
10709 (memq last-command '(org-time-stamp org-time-stamp-inactive))
10710 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
10711 (insert "--")
10712 (setq time (let ((this-command this-command))
10713 (org-read-date arg 'totime nil nil
10714 default-time default-input)))
10715 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
10716 ((org-at-timestamp-p t)
10717 (setq time (let ((this-command this-command))
10718 (org-read-date arg 'totime nil nil default-time default-input)))
10719 (when (org-at-timestamp-p t) ; just to get the match data
10720 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
10721 (replace-match "")
10722 (setq org-last-changed-timestamp
10723 (org-insert-time-stamp
10724 time (or org-time-was-given arg)
10725 inactive nil nil (list org-end-time-was-given))))
10726 (message "Timestamp updated"))
10728 (setq time (let ((this-command this-command))
10729 (org-read-date arg 'totime nil nil default-time default-input)))
10730 (org-insert-time-stamp time (or org-time-was-given arg) inactive
10731 nil nil (list org-end-time-was-given))))))
10733 ;; FIXME: can we use this for something else, like computing time differences?
10734 (defun org-get-compact-tod (s)
10735 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
10736 (let* ((t1 (match-string 1 s))
10737 (h1 (string-to-number (match-string 2 s)))
10738 (m1 (string-to-number (match-string 3 s)))
10739 (t2 (and (match-end 4) (match-string 5 s)))
10740 (h2 (and t2 (string-to-number (match-string 6 s))))
10741 (m2 (and t2 (string-to-number (match-string 7 s))))
10742 dh dm)
10743 (if (not t2)
10745 (setq dh (- h2 h1) dm (- m2 m1))
10746 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
10747 (concat t1 "+" (number-to-string dh)
10748 (if (/= 0 dm) (concat ":" (number-to-string dm))))))))
10750 (defun org-time-stamp-inactive (&optional arg)
10751 "Insert an inactive time stamp.
10752 An inactive time stamp is enclosed in square brackets instead of angle
10753 brackets. It is inactive in the sense that it does not trigger agenda entries,
10754 does not link to the calendar and cannot be changed with the S-cursor keys.
10755 So these are more for recording a certain time/date."
10756 (interactive "P")
10757 (org-time-stamp arg 'inactive))
10759 (defvar org-date-ovl (org-make-overlay 1 1))
10760 (org-overlay-put org-date-ovl 'face 'org-warning)
10761 (org-detach-overlay org-date-ovl)
10763 (defvar org-ans1) ; dynamically scoped parameter
10764 (defvar org-ans2) ; dynamically scoped parameter
10766 (defvar org-plain-time-of-day-regexp) ; defined below
10768 (defvar org-overriding-default-time nil) ; dynamically scoped
10769 (defvar org-read-date-overlay nil)
10770 (defvar org-dcst nil) ; dynamically scoped
10772 (defun org-read-date (&optional with-time to-time from-string prompt
10773 default-time default-input)
10774 "Read a date, possibly a time, and make things smooth for the user.
10775 The prompt will suggest to enter an ISO date, but you can also enter anything
10776 which will at least partially be understood by `parse-time-string'.
10777 Unrecognized parts of the date will default to the current day, month, year,
10778 hour and minute. If this command is called to replace a timestamp at point,
10779 of to enter the second timestamp of a range, the default time is taken from the
10780 existing stamp. For example,
10781 3-2-5 --> 2003-02-05
10782 feb 15 --> currentyear-02-15
10783 sep 12 9 --> 2009-09-12
10784 12:45 --> today 12:45
10785 22 sept 0:34 --> currentyear-09-22 0:34
10786 12 --> currentyear-currentmonth-12
10787 Fri --> nearest Friday (today or later)
10788 etc.
10790 Furthermore you can specify a relative date by giving, as the *first* thing
10791 in the input: a plus/minus sign, a number and a letter [dwmy] to indicate
10792 change in days weeks, months, years.
10793 With a single plus or minus, the date is relative to today. With a double
10794 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
10795 +4d --> four days from today
10796 +4 --> same as above
10797 +2w --> two weeks from today
10798 ++5 --> five days from default date
10800 The function understands only English month and weekday abbreviations,
10801 but this can be configured with the variables `parse-time-months' and
10802 `parse-time-weekdays'.
10804 While prompting, a calendar is popped up - you can also select the
10805 date with the mouse (button 1). The calendar shows a period of three
10806 months. To scroll it to other months, use the keys `>' and `<'.
10807 If you don't like the calendar, turn it off with
10808 \(setq org-read-date-popup-calendar nil)
10810 With optional argument TO-TIME, the date will immediately be converted
10811 to an internal time.
10812 With an optional argument WITH-TIME, the prompt will suggest to also
10813 insert a time. Note that when WITH-TIME is not set, you can still
10814 enter a time, and this function will inform the calling routine about
10815 this change. The calling routine may then choose to change the format
10816 used to insert the time stamp into the buffer to include the time.
10817 With optional argument FROM-STRING, read from this string instead from
10818 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
10819 the time/date that is used for everything that is not specified by the
10820 user."
10821 (require 'parse-time)
10822 (let* ((org-time-stamp-rounding-minutes
10823 (if (equal with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
10824 (org-dcst org-display-custom-times)
10825 (ct (org-current-time))
10826 (def (or org-overriding-default-time default-time ct))
10827 (defdecode (decode-time def))
10828 (dummy (progn
10829 (when (< (nth 2 defdecode) org-extend-today-until)
10830 (setcar (nthcdr 2 defdecode) -1)
10831 (setcar (nthcdr 1 defdecode) 59)
10832 (setq def (apply 'encode-time defdecode)
10833 defdecode (decode-time def)))))
10834 (calendar-move-hook nil)
10835 (calendar-view-diary-initially-flag nil)
10836 (view-diary-entries-initially nil)
10837 (calendar-view-holidays-initially-flag nil)
10838 (view-calendar-holidays-initially nil)
10839 (timestr (format-time-string
10840 (if with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") def))
10841 (prompt (concat (if prompt (concat prompt " ") "")
10842 (format "Date+time [%s]: " timestr)))
10843 ans (org-ans0 "") org-ans1 org-ans2 final)
10845 (cond
10846 (from-string (setq ans from-string))
10847 (org-read-date-popup-calendar
10848 (save-excursion
10849 (save-window-excursion
10850 (calendar)
10851 (calendar-forward-day (- (time-to-days def)
10852 (calendar-absolute-from-gregorian
10853 (calendar-current-date))))
10854 (org-eval-in-calendar nil t)
10855 (let* ((old-map (current-local-map))
10856 (map (copy-keymap calendar-mode-map))
10857 (minibuffer-local-map (copy-keymap minibuffer-local-map)))
10858 (org-defkey map (kbd "RET") 'org-calendar-select)
10859 (org-defkey map (if (featurep 'xemacs) [button1] [mouse-1])
10860 'org-calendar-select-mouse)
10861 (org-defkey map (if (featurep 'xemacs) [button2] [mouse-2])
10862 'org-calendar-select-mouse)
10863 (org-defkey minibuffer-local-map [(meta shift left)]
10864 (lambda () (interactive)
10865 (org-eval-in-calendar '(calendar-backward-month 1))))
10866 (org-defkey minibuffer-local-map [(meta shift right)]
10867 (lambda () (interactive)
10868 (org-eval-in-calendar '(calendar-forward-month 1))))
10869 (org-defkey minibuffer-local-map [(meta shift up)]
10870 (lambda () (interactive)
10871 (org-eval-in-calendar '(calendar-backward-year 1))))
10872 (org-defkey minibuffer-local-map [(meta shift down)]
10873 (lambda () (interactive)
10874 (org-eval-in-calendar '(calendar-forward-year 1))))
10875 (org-defkey minibuffer-local-map [(shift up)]
10876 (lambda () (interactive)
10877 (org-eval-in-calendar '(calendar-backward-week 1))))
10878 (org-defkey minibuffer-local-map [(shift down)]
10879 (lambda () (interactive)
10880 (org-eval-in-calendar '(calendar-forward-week 1))))
10881 (org-defkey minibuffer-local-map [(shift left)]
10882 (lambda () (interactive)
10883 (org-eval-in-calendar '(calendar-backward-day 1))))
10884 (org-defkey minibuffer-local-map [(shift right)]
10885 (lambda () (interactive)
10886 (org-eval-in-calendar '(calendar-forward-day 1))))
10887 (org-defkey minibuffer-local-map ">"
10888 (lambda () (interactive)
10889 (org-eval-in-calendar '(scroll-calendar-left 1))))
10890 (org-defkey minibuffer-local-map "<"
10891 (lambda () (interactive)
10892 (org-eval-in-calendar '(scroll-calendar-right 1))))
10893 (unwind-protect
10894 (progn
10895 (use-local-map map)
10896 (add-hook 'post-command-hook 'org-read-date-display)
10897 (setq org-ans0 (read-string prompt default-input nil nil))
10898 ;; org-ans0: from prompt
10899 ;; org-ans1: from mouse click
10900 ;; org-ans2: from calendar motion
10901 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
10902 (remove-hook 'post-command-hook 'org-read-date-display)
10903 (use-local-map old-map)
10904 (when org-read-date-overlay
10905 (org-delete-overlay org-read-date-overlay)
10906 (setq org-read-date-overlay nil)))))))
10908 (t ; Naked prompt only
10909 (unwind-protect
10910 (setq ans (read-string prompt default-input nil timestr))
10911 (when org-read-date-overlay
10912 (org-delete-overlay org-read-date-overlay)
10913 (setq org-read-date-overlay nil)))))
10915 (setq final (org-read-date-analyze ans def defdecode))
10917 (if to-time
10918 (apply 'encode-time final)
10919 (if (and (boundp 'org-time-was-given) org-time-was-given)
10920 (format "%04d-%02d-%02d %02d:%02d"
10921 (nth 5 final) (nth 4 final) (nth 3 final)
10922 (nth 2 final) (nth 1 final))
10923 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
10924 (defvar def)
10925 (defvar defdecode)
10926 (defvar with-time)
10927 (defun org-read-date-display ()
10928 "Display the current date prompt interpretation in the minibuffer."
10929 (when org-read-date-display-live
10930 (when org-read-date-overlay
10931 (org-delete-overlay org-read-date-overlay))
10932 (let ((p (point)))
10933 (end-of-line 1)
10934 (while (not (equal (buffer-substring
10935 (max (point-min) (- (point) 4)) (point))
10936 " "))
10937 (insert " "))
10938 (goto-char p))
10939 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
10940 " " (or org-ans1 org-ans2)))
10941 (org-end-time-was-given nil)
10942 (f (org-read-date-analyze ans def defdecode))
10943 (fmts (if org-dcst
10944 org-time-stamp-custom-formats
10945 org-time-stamp-formats))
10946 (fmt (if (or with-time
10947 (and (boundp 'org-time-was-given) org-time-was-given))
10948 (cdr fmts)
10949 (car fmts)))
10950 (txt (concat "=> " (format-time-string fmt (apply 'encode-time f)))))
10951 (when (and org-end-time-was-given
10952 (string-match org-plain-time-of-day-regexp txt))
10953 (setq txt (concat (substring txt 0 (match-end 0)) "-"
10954 org-end-time-was-given
10955 (substring txt (match-end 0)))))
10956 (setq org-read-date-overlay
10957 (org-make-overlay (1- (point-at-eol)) (point-at-eol)))
10958 (org-overlay-display org-read-date-overlay txt 'secondary-selection))))
10960 (defun org-read-date-analyze (ans def defdecode)
10961 "Analyse the combined answer of the date prompt."
10962 ;; FIXME: cleanup and comment
10963 (let (delta deltan deltaw deltadef year month day
10964 hour minute second wday pm h2 m2 tl wday1
10965 iso-year iso-weekday iso-week iso-year iso-date)
10967 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
10968 (setq ans "+0"))
10970 (when (setq delta (org-read-date-get-relative ans (current-time) def))
10971 (setq ans (replace-match "" t t ans)
10972 deltan (car delta)
10973 deltaw (nth 1 delta)
10974 deltadef (nth 2 delta)))
10976 ;; Check if there is an iso week date in there
10977 ;; If yes, sore the info and postpone interpreting it until the rest
10978 ;; of the parsing is done
10979 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
10980 (setq iso-year (if (match-end 1) (org-small-year-to-year (string-to-number (match-string 1 ans))))
10981 iso-weekday (if (match-end 3) (string-to-number (match-string 3 ans)))
10982 iso-week (string-to-number (match-string 2 ans)))
10983 (setq ans (replace-match "" t t ans)))
10985 ;; Help matching ISO dates with single digit month ot day, like 2006-8-11.
10986 (when (string-match
10987 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
10988 (setq year (if (match-end 2)
10989 (string-to-number (match-string 2 ans))
10990 (string-to-number (format-time-string "%Y")))
10991 month (string-to-number (match-string 3 ans))
10992 day (string-to-number (match-string 4 ans)))
10993 (if (< year 100) (setq year (+ 2000 year)))
10994 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
10995 t nil ans)))
10996 ;; Help matching am/pm times, because `parse-time-string' does not do that.
10997 ;; If there is a time with am/pm, and *no* time without it, we convert
10998 ;; so that matching will be successful.
10999 (loop for i from 1 to 2 do ; twice, for end time as well
11000 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
11001 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
11002 (setq hour (string-to-number (match-string 1 ans))
11003 minute (if (match-end 3)
11004 (string-to-number (match-string 3 ans))
11006 pm (equal ?p
11007 (string-to-char (downcase (match-string 4 ans)))))
11008 (if (and (= hour 12) (not pm))
11009 (setq hour 0)
11010 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
11011 (setq ans (replace-match (format "%02d:%02d" hour minute)
11012 t t ans))))
11014 ;; Check if a time range is given as a duration
11015 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
11016 (setq hour (string-to-number (match-string 1 ans))
11017 h2 (+ hour (string-to-number (match-string 3 ans)))
11018 minute (string-to-number (match-string 2 ans))
11019 m2 (+ minute (if (match-end 5) (string-to-number
11020 (match-string 5 ans))0)))
11021 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
11022 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
11023 t t ans)))
11025 ;; Check if there is a time range
11026 (when (boundp 'org-end-time-was-given)
11027 (setq org-time-was-given nil)
11028 (when (and (string-match org-plain-time-of-day-regexp ans)
11029 (match-end 8))
11030 (setq org-end-time-was-given (match-string 8 ans))
11031 (setq ans (concat (substring ans 0 (match-beginning 7))
11032 (substring ans (match-end 7))))))
11034 (setq tl (parse-time-string ans)
11035 day (or (nth 3 tl) (nth 3 defdecode))
11036 month (or (nth 4 tl)
11037 (if (and org-read-date-prefer-future
11038 (nth 3 tl) (< (nth 3 tl) (nth 3 defdecode)))
11039 (1+ (nth 4 defdecode))
11040 (nth 4 defdecode)))
11041 year (or (nth 5 tl)
11042 (if (and org-read-date-prefer-future
11043 (nth 4 tl) (< (nth 4 tl) (nth 4 defdecode)))
11044 (1+ (nth 5 defdecode))
11045 (nth 5 defdecode)))
11046 hour (or (nth 2 tl) (nth 2 defdecode))
11047 minute (or (nth 1 tl) (nth 1 defdecode))
11048 second (or (nth 0 tl) 0)
11049 wday (nth 6 tl))
11051 ;; Special date definitions below
11052 (cond
11053 (iso-week
11054 ;; There was an iso week
11055 (setq year (or iso-year year)
11056 day (or iso-weekday wday 1)
11057 wday nil ; to make sure that the trigger below does not match
11058 iso-date (calendar-gregorian-from-absolute
11059 (calendar-absolute-from-iso
11060 (list iso-week day year))))
11061 ; FIXME: Should we also push ISO weeks into the future?
11062 ; (when (and org-read-date-prefer-future
11063 ; (not iso-year)
11064 ; (< (calendar-absolute-from-gregorian iso-date)
11065 ; (time-to-days (current-time))))
11066 ; (setq year (1+ year)
11067 ; iso-date (calendar-gregorian-from-absolute
11068 ; (calendar-absolute-from-iso
11069 ; (list iso-week day year)))))
11070 (setq month (car iso-date)
11071 year (nth 2 iso-date)
11072 day (nth 1 iso-date)))
11073 (deltan
11074 (unless deltadef
11075 (let ((now (decode-time (current-time))))
11076 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
11077 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
11078 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
11079 ((equal deltaw "m") (setq month (+ month deltan)))
11080 ((equal deltaw "y") (setq year (+ year deltan)))))
11081 ((and wday (not (nth 3 tl)))
11082 ;; Weekday was given, but no day, so pick that day in the week
11083 ;; on or after the derived date.
11084 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
11085 (unless (equal wday wday1)
11086 (setq day (+ day (% (- wday wday1 -7) 7))))))
11087 (if (and (boundp 'org-time-was-given)
11088 (nth 2 tl))
11089 (setq org-time-was-given t))
11090 (if (< year 100) (setq year (+ 2000 year)))
11091 (if (< year 1970) (setq year (nth 5 defdecode))) ; not representable
11092 (list second minute hour day month year)))
11094 (defvar parse-time-weekdays)
11096 (defun org-read-date-get-relative (s today default)
11097 "Check string S for special relative date string.
11098 TODAY and DEFAULT are internal times, for today and for a default.
11099 Return shift list (N what def-flag)
11100 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
11101 N is the number of WHATs to shift.
11102 DEF-FLAG is t when a double ++ or -- indicates shift relative to
11103 the DEFAULT date rather than TODAY."
11104 (when (and
11105 (string-match
11106 (concat
11107 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
11108 "\\([0-9]+\\)?"
11109 "\\([dwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
11110 "\\([ \t]\\|$\\)") s)
11111 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
11112 (let* ((dir (if (> (match-end 1) (match-beginning 1))
11113 (string-to-char (substring (match-string 1 s) -1))
11114 ?+))
11115 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
11116 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
11117 (what (if (match-end 3) (match-string 3 s) "d"))
11118 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
11119 (date (if rel default today))
11120 (wday (nth 6 (decode-time date)))
11121 delta)
11122 (if wday1
11123 (progn
11124 (setq delta (mod (+ 7 (- wday1 wday)) 7))
11125 (if (= dir ?-) (setq delta (- delta 7)))
11126 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
11127 (list delta "d" rel))
11128 (list (* n (if (= dir ?-) -1 1)) what rel)))))
11130 (defun org-eval-in-calendar (form &optional keepdate)
11131 "Eval FORM in the calendar window and return to current window.
11132 Also, store the cursor date in variable org-ans2."
11133 (let ((sw (selected-window)))
11134 (select-window (get-buffer-window "*Calendar*"))
11135 (eval form)
11136 (when (and (not keepdate) (calendar-cursor-to-date))
11137 (let* ((date (calendar-cursor-to-date))
11138 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
11139 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
11140 (org-move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
11141 (select-window sw)))
11143 (defun org-calendar-select ()
11144 "Return to `org-read-date' with the date currently selected.
11145 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
11146 (interactive)
11147 (when (calendar-cursor-to-date)
11148 (let* ((date (calendar-cursor-to-date))
11149 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
11150 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
11151 (if (active-minibuffer-window) (exit-minibuffer))))
11153 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
11154 "Insert a date stamp for the date given by the internal TIME.
11155 WITH-HM means, use the stamp format that includes the time of the day.
11156 INACTIVE means use square brackets instead of angular ones, so that the
11157 stamp will not contribute to the agenda.
11158 PRE and POST are optional strings to be inserted before and after the
11159 stamp.
11160 The command returns the inserted time stamp."
11161 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
11162 stamp)
11163 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
11164 (insert-before-markers (or pre ""))
11165 (insert-before-markers (setq stamp (format-time-string fmt time)))
11166 (when (listp extra)
11167 (setq extra (car extra))
11168 (if (and (stringp extra)
11169 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
11170 (setq extra (format "-%02d:%02d"
11171 (string-to-number (match-string 1 extra))
11172 (string-to-number (match-string 2 extra))))
11173 (setq extra nil)))
11174 (when extra
11175 (backward-char 1)
11176 (insert-before-markers extra)
11177 (forward-char 1))
11178 (insert-before-markers (or post ""))
11179 (setq org-last-inserted-timestamp stamp)))
11181 (defun org-toggle-time-stamp-overlays ()
11182 "Toggle the use of custom time stamp formats."
11183 (interactive)
11184 (setq org-display-custom-times (not org-display-custom-times))
11185 (unless org-display-custom-times
11186 (let ((p (point-min)) (bmp (buffer-modified-p)))
11187 (while (setq p (next-single-property-change p 'display))
11188 (if (and (get-text-property p 'display)
11189 (eq (get-text-property p 'face) 'org-date))
11190 (remove-text-properties
11191 p (setq p (next-single-property-change p 'display))
11192 '(display t))))
11193 (set-buffer-modified-p bmp)))
11194 (if (featurep 'xemacs)
11195 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
11196 (org-restart-font-lock)
11197 (setq org-table-may-need-update t)
11198 (if org-display-custom-times
11199 (message "Time stamps are overlayed with custom format")
11200 (message "Time stamp overlays removed")))
11202 (defun org-display-custom-time (beg end)
11203 "Overlay modified time stamp format over timestamp between BEG and END."
11204 (let* ((ts (buffer-substring beg end))
11205 t1 w1 with-hm tf time str w2 (off 0))
11206 (save-match-data
11207 (setq t1 (org-parse-time-string ts t))
11208 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[dwmy]\\)?\\'" ts)
11209 (setq off (- (match-end 0) (match-beginning 0)))))
11210 (setq end (- end off))
11211 (setq w1 (- end beg)
11212 with-hm (and (nth 1 t1) (nth 2 t1))
11213 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
11214 time (org-fix-decoded-time t1)
11215 str (org-add-props
11216 (format-time-string
11217 (substring tf 1 -1) (apply 'encode-time time))
11218 nil 'mouse-face 'highlight)
11219 w2 (length str))
11220 (if (not (= w2 w1))
11221 (add-text-properties (1+ beg) (+ 2 beg)
11222 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
11223 (if (featurep 'xemacs)
11224 (progn
11225 (put-text-property beg end 'invisible t)
11226 (put-text-property beg end 'end-glyph (make-glyph str)))
11227 (put-text-property beg end 'display str))))
11229 (defun org-translate-time (string)
11230 "Translate all timestamps in STRING to custom format.
11231 But do this only if the variable `org-display-custom-times' is set."
11232 (when org-display-custom-times
11233 (save-match-data
11234 (let* ((start 0)
11235 (re org-ts-regexp-both)
11236 t1 with-hm inactive tf time str beg end)
11237 (while (setq start (string-match re string start))
11238 (setq beg (match-beginning 0)
11239 end (match-end 0)
11240 t1 (save-match-data
11241 (org-parse-time-string (substring string beg end) t))
11242 with-hm (and (nth 1 t1) (nth 2 t1))
11243 inactive (equal (substring string beg (1+ beg)) "[")
11244 tf (funcall (if with-hm 'cdr 'car)
11245 org-time-stamp-custom-formats)
11246 time (org-fix-decoded-time t1)
11247 str (format-time-string
11248 (concat
11249 (if inactive "[" "<") (substring tf 1 -1)
11250 (if inactive "]" ">"))
11251 (apply 'encode-time time))
11252 string (replace-match str t t string)
11253 start (+ start (length str)))))))
11254 string)
11256 (defun org-fix-decoded-time (time)
11257 "Set 0 instead of nil for the first 6 elements of time.
11258 Don't touch the rest."
11259 (let ((n 0))
11260 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
11262 (defun org-days-to-time (timestamp-string)
11263 "Difference between TIMESTAMP-STRING and now in days."
11264 (- (time-to-days (org-time-string-to-time timestamp-string))
11265 (time-to-days (current-time))))
11267 (defun org-deadline-close (timestamp-string &optional ndays)
11268 "Is the time in TIMESTAMP-STRING close to the current date?"
11269 (setq ndays (or ndays (org-get-wdays timestamp-string)))
11270 (and (< (org-days-to-time timestamp-string) ndays)
11271 (not (org-entry-is-done-p))))
11273 (defun org-get-wdays (ts)
11274 "Get the deadline lead time appropriate for timestring TS."
11275 (cond
11276 ((<= org-deadline-warning-days 0)
11277 ;; 0 or negative, enforce this value no matter what
11278 (- org-deadline-warning-days))
11279 ((string-match "-\\([0-9]+\\)\\([dwmy]\\)\\(\\'\\|>\\)" ts)
11280 ;; lead time is specified.
11281 (floor (* (string-to-number (match-string 1 ts))
11282 (cdr (assoc (match-string 2 ts)
11283 '(("d" . 1) ("w" . 7)
11284 ("m" . 30.4) ("y" . 365.25)))))))
11285 ;; go for the default.
11286 (t org-deadline-warning-days)))
11288 (defun org-calendar-select-mouse (ev)
11289 "Return to `org-read-date' with the date currently selected.
11290 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
11291 (interactive "e")
11292 (mouse-set-point ev)
11293 (when (calendar-cursor-to-date)
11294 (let* ((date (calendar-cursor-to-date))
11295 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
11296 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
11297 (if (active-minibuffer-window) (exit-minibuffer))))
11299 (defun org-check-deadlines (ndays)
11300 "Check if there are any deadlines due or past due.
11301 A deadline is considered due if it happens within `org-deadline-warning-days'
11302 days from today's date. If the deadline appears in an entry marked DONE,
11303 it is not shown. The prefix arg NDAYS can be used to test that many
11304 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
11305 (interactive "P")
11306 (let* ((org-warn-days
11307 (cond
11308 ((equal ndays '(4)) 100000)
11309 (ndays (prefix-numeric-value ndays))
11310 (t (abs org-deadline-warning-days))))
11311 (case-fold-search nil)
11312 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
11313 (callback
11314 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
11316 (message "%d deadlines past-due or due within %d days"
11317 (org-occur regexp nil callback)
11318 org-warn-days)))
11320 (defun org-check-before-date (date)
11321 "Check if there are deadlines or scheduled entries before DATE."
11322 (interactive (list (org-read-date)))
11323 (let ((case-fold-search nil)
11324 (regexp (concat "\\<\\(" org-deadline-string
11325 "\\|" org-scheduled-string
11326 "\\) *<\\([^>]+\\)>"))
11327 (callback
11328 (lambda () (time-less-p
11329 (org-time-string-to-time (match-string 2))
11330 (org-time-string-to-time date)))))
11331 (message "%d entries before %s"
11332 (org-occur regexp nil callback) date)))
11334 (defun org-evaluate-time-range (&optional to-buffer)
11335 "Evaluate a time range by computing the difference between start and end.
11336 Normally the result is just printed in the echo area, but with prefix arg
11337 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
11338 If the time range is actually in a table, the result is inserted into the
11339 next column.
11340 For time difference computation, a year is assumed to be exactly 365
11341 days in order to avoid rounding problems."
11342 (interactive "P")
11344 (org-clock-update-time-maybe)
11345 (save-excursion
11346 (unless (org-at-date-range-p t)
11347 (goto-char (point-at-bol))
11348 (re-search-forward org-tr-regexp-both (point-at-eol) t))
11349 (if (not (org-at-date-range-p t))
11350 (error "Not at a time-stamp range, and none found in current line")))
11351 (let* ((ts1 (match-string 1))
11352 (ts2 (match-string 2))
11353 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
11354 (match-end (match-end 0))
11355 (time1 (org-time-string-to-time ts1))
11356 (time2 (org-time-string-to-time ts2))
11357 (t1 (time-to-seconds time1))
11358 (t2 (time-to-seconds time2))
11359 (diff (abs (- t2 t1)))
11360 (negative (< (- t2 t1) 0))
11361 ;; (ys (floor (* 365 24 60 60)))
11362 (ds (* 24 60 60))
11363 (hs (* 60 60))
11364 (fy "%dy %dd %02d:%02d")
11365 (fy1 "%dy %dd")
11366 (fd "%dd %02d:%02d")
11367 (fd1 "%dd")
11368 (fh "%02d:%02d")
11369 y d h m align)
11370 (if havetime
11371 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
11373 d (floor (/ diff ds)) diff (mod diff ds)
11374 h (floor (/ diff hs)) diff (mod diff hs)
11375 m (floor (/ diff 60)))
11376 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
11378 d (floor (+ (/ diff ds) 0.5))
11379 h 0 m 0))
11380 (if (not to-buffer)
11381 (message "%s" (org-make-tdiff-string y d h m))
11382 (if (org-at-table-p)
11383 (progn
11384 (goto-char match-end)
11385 (setq align t)
11386 (and (looking-at " *|") (goto-char (match-end 0))))
11387 (goto-char match-end))
11388 (if (looking-at
11389 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
11390 (replace-match ""))
11391 (if negative (insert " -"))
11392 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
11393 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
11394 (insert " " (format fh h m))))
11395 (if align (org-table-align))
11396 (message "Time difference inserted")))))
11398 (defun org-make-tdiff-string (y d h m)
11399 (let ((fmt "")
11400 (l nil))
11401 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
11402 l (push y l)))
11403 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
11404 l (push d l)))
11405 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
11406 l (push h l)))
11407 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
11408 l (push m l)))
11409 (apply 'format fmt (nreverse l))))
11411 (defun org-time-string-to-time (s)
11412 (apply 'encode-time (org-parse-time-string s)))
11414 (defun org-time-string-to-absolute (s &optional daynr prefer show-all)
11415 "Convert a time stamp to an absolute day number.
11416 If there is a specifyer for a cyclic time stamp, get the closest date to
11417 DAYNR.
11418 PREFER and SHOW-ALL are passed through to `org-closest-date'."
11419 (cond
11420 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
11421 (if (org-diary-sexp-entry (match-string 1 s) "" date)
11422 daynr
11423 (+ daynr 1000)))
11424 ((and daynr (string-match "\\+[0-9]+[dwmy]" s))
11425 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
11426 (time-to-days (current-time))) (match-string 0 s)
11427 prefer show-all))
11428 (t (time-to-days (apply 'encode-time (org-parse-time-string s))))))
11430 (defun org-days-to-iso-week (days)
11431 "Return the iso week number."
11432 (require 'cal-iso)
11433 (car (calendar-iso-from-absolute days)))
11435 (defun org-small-year-to-year (year)
11436 "Convert 2-digit years into 4-digit years.
11437 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2007.
11438 The year 2000 cannot be abbreviated. Any year larger than 99
11439 is returned unchanged."
11440 (if (< year 38)
11441 (setq year (+ 2000 year))
11442 (if (< year 100)
11443 (setq year (+ 1900 year))))
11444 year)
11446 (defun org-time-from-absolute (d)
11447 "Return the time corresponding to date D.
11448 D may be an absolute day number, or a calendar-type list (month day year)."
11449 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
11450 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
11452 (defun org-calendar-holiday ()
11453 "List of holidays, for Diary display in Org-mode."
11454 (require 'holidays)
11455 (let ((hl (funcall
11456 (if (fboundp 'calendar-check-holidays)
11457 'calendar-check-holidays 'check-calendar-holidays) date)))
11458 (if hl (mapconcat 'identity hl "; "))))
11460 (defun org-diary-sexp-entry (sexp entry date)
11461 "Process a SEXP diary ENTRY for DATE."
11462 (require 'diary-lib)
11463 (let ((result (if calendar-debug-sexp
11464 (let ((stack-trace-on-error t))
11465 (eval (car (read-from-string sexp))))
11466 (condition-case nil
11467 (eval (car (read-from-string sexp)))
11468 (error
11469 (beep)
11470 (message "Bad sexp at line %d in %s: %s"
11471 (org-current-line)
11472 (buffer-file-name) sexp)
11473 (sleep-for 2))))))
11474 (cond ((stringp result) result)
11475 ((and (consp result)
11476 (stringp (cdr result))) (cdr result))
11477 (result entry)
11478 (t nil))))
11480 (defun org-diary-to-ical-string (frombuf)
11481 "Get iCalendar entries from diary entries in buffer FROMBUF.
11482 This uses the icalendar.el library."
11483 (let* ((tmpdir (if (featurep 'xemacs)
11484 (temp-directory)
11485 temporary-file-directory))
11486 (tmpfile (make-temp-name
11487 (expand-file-name "orgics" tmpdir)))
11488 buf rtn b e)
11489 (save-excursion
11490 (set-buffer frombuf)
11491 (icalendar-export-region (point-min) (point-max) tmpfile)
11492 (setq buf (find-buffer-visiting tmpfile))
11493 (set-buffer buf)
11494 (goto-char (point-min))
11495 (if (re-search-forward "^BEGIN:VEVENT" nil t)
11496 (setq b (match-beginning 0)))
11497 (goto-char (point-max))
11498 (if (re-search-backward "^END:VEVENT" nil t)
11499 (setq e (match-end 0)))
11500 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
11501 (kill-buffer buf)
11502 (delete-file tmpfile)
11503 rtn))
11505 (defun org-closest-date (start current change prefer show-all)
11506 "Find the date closest to CURRENT that is consistent with START and CHANGE.
11507 When PREFER is `past' return a date that is either CURRENT or past.
11508 When PREFER is `future', return a date that is either CURRENT or future.
11509 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
11510 ;; Make the proper lists from the dates
11511 (catch 'exit
11512 (let ((a1 '(("d" . day) ("w" . week) ("m" . month) ("y" . year)))
11513 dn dw sday cday n1 n2
11514 d m y y1 y2 date1 date2 nmonths nm ny m2)
11516 (setq start (org-date-to-gregorian start)
11517 current (org-date-to-gregorian
11518 (if show-all
11519 current
11520 (time-to-days (current-time))))
11521 sday (calendar-absolute-from-gregorian start)
11522 cday (calendar-absolute-from-gregorian current))
11524 (if (<= cday sday) (throw 'exit sday))
11526 (if (string-match "\\(\\+[0-9]+\\)\\([dwmy]\\)" change)
11527 (setq dn (string-to-number (match-string 1 change))
11528 dw (cdr (assoc (match-string 2 change) a1)))
11529 (error "Invalid change specifyer: %s" change))
11530 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
11531 (cond
11532 ((eq dw 'day)
11533 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
11534 n2 (+ n1 dn)))
11535 ((eq dw 'year)
11536 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
11537 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
11538 (setq date1 (list m d y1)
11539 n1 (calendar-absolute-from-gregorian date1)
11540 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
11541 n2 (calendar-absolute-from-gregorian date2)))
11542 ((eq dw 'month)
11543 ;; approx number of month between the two dates
11544 (setq nmonths (floor (/ (- cday sday) 30.436875)))
11545 ;; How often does dn fit in there?
11546 (setq d (nth 1 start) m (car start) y (nth 2 start)
11547 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
11548 m (+ m nm)
11549 ny (floor (/ m 12))
11550 y (+ y ny)
11551 m (- m (* ny 12)))
11552 (while (> m 12) (setq m (- m 12) y (1+ y)))
11553 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
11554 (setq m2 (+ m dn) y2 y)
11555 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
11556 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
11557 (while (<= n2 cday)
11558 (setq n1 n2 m m2 y y2)
11559 (setq m2 (+ m dn) y2 y)
11560 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
11561 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
11562 (if show-all
11563 (cond
11564 ((eq prefer 'past) n1)
11565 ((eq prefer 'future) (if (= cday n1) n1 n2))
11566 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
11567 (cond
11568 ((eq prefer 'past) n1)
11569 ((eq prefer 'future) (if (= cday n1) n1 n2))
11570 (t (if (= cday n1) n1 n2)))))))
11572 (defun org-date-to-gregorian (date)
11573 "Turn any specification of DATE into a gregorian date for the calendar."
11574 (cond ((integerp date) (calendar-gregorian-from-absolute date))
11575 ((and (listp date) (= (length date) 3)) date)
11576 ((stringp date)
11577 (setq date (org-parse-time-string date))
11578 (list (nth 4 date) (nth 3 date) (nth 5 date)))
11579 ((listp date)
11580 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
11582 (defun org-parse-time-string (s &optional nodefault)
11583 "Parse the standard Org-mode time string.
11584 This should be a lot faster than the normal `parse-time-string'.
11585 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
11586 hour and minute fields will be nil if not given."
11587 (if (string-match org-ts-regexp0 s)
11588 (list 0
11589 (if (or (match-beginning 8) (not nodefault))
11590 (string-to-number (or (match-string 8 s) "0")))
11591 (if (or (match-beginning 7) (not nodefault))
11592 (string-to-number (or (match-string 7 s) "0")))
11593 (string-to-number (match-string 4 s))
11594 (string-to-number (match-string 3 s))
11595 (string-to-number (match-string 2 s))
11596 nil nil nil)
11597 (make-list 9 0)))
11599 (defun org-timestamp-up (&optional arg)
11600 "Increase the date item at the cursor by one.
11601 If the cursor is on the year, change the year. If it is on the month or
11602 the day, change that.
11603 With prefix ARG, change by that many units."
11604 (interactive "p")
11605 (org-timestamp-change (prefix-numeric-value arg)))
11607 (defun org-timestamp-down (&optional arg)
11608 "Decrease the date item at the cursor by one.
11609 If the cursor is on the year, change the year. If it is on the month or
11610 the day, change that.
11611 With prefix ARG, change by that many units."
11612 (interactive "p")
11613 (org-timestamp-change (- (prefix-numeric-value arg))))
11615 (defun org-timestamp-up-day (&optional arg)
11616 "Increase the date in the time stamp by one day.
11617 With prefix ARG, change that many days."
11618 (interactive "p")
11619 (if (and (not (org-at-timestamp-p t))
11620 (org-on-heading-p))
11621 (org-todo 'up)
11622 (org-timestamp-change (prefix-numeric-value arg) 'day)))
11624 (defun org-timestamp-down-day (&optional arg)
11625 "Decrease the date in the time stamp by one day.
11626 With prefix ARG, change that many days."
11627 (interactive "p")
11628 (if (and (not (org-at-timestamp-p t))
11629 (org-on-heading-p))
11630 (org-todo 'down)
11631 (org-timestamp-change (- (prefix-numeric-value arg)) 'day)))
11633 (defun org-at-timestamp-p (&optional inactive-ok)
11634 "Determine if the cursor is in or at a timestamp."
11635 (interactive)
11636 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
11637 (pos (point))
11638 (ans (or (looking-at tsr)
11639 (save-excursion
11640 (skip-chars-backward "^[<\n\r\t")
11641 (if (> (point) (point-min)) (backward-char 1))
11642 (and (looking-at tsr)
11643 (> (- (match-end 0) pos) -1))))))
11644 (and ans
11645 (boundp 'org-ts-what)
11646 (setq org-ts-what
11647 (cond
11648 ((= pos (match-beginning 0)) 'bracket)
11649 ((= pos (1- (match-end 0))) 'bracket)
11650 ((org-pos-in-match-range pos 2) 'year)
11651 ((org-pos-in-match-range pos 3) 'month)
11652 ((org-pos-in-match-range pos 7) 'hour)
11653 ((org-pos-in-match-range pos 8) 'minute)
11654 ((or (org-pos-in-match-range pos 4)
11655 (org-pos-in-match-range pos 5)) 'day)
11656 ((and (> pos (or (match-end 8) (match-end 5)))
11657 (< pos (match-end 0)))
11658 (- pos (or (match-end 8) (match-end 5))))
11659 (t 'day))))
11660 ans))
11662 (defun org-toggle-timestamp-type ()
11663 "Toggle the type (<active> or [inactive]) of a time stamp."
11664 (interactive)
11665 (when (org-at-timestamp-p t)
11666 (let ((beg (match-beginning 0)) (end (match-end 0))
11667 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
11668 (save-excursion
11669 (goto-char beg)
11670 (while (re-search-forward "[][<>]" end t)
11671 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
11672 t t)))
11673 (message "Timestamp is now %sactive"
11674 (if (equal (char-after beg) ?<) "" "in")))))
11676 (defun org-timestamp-change (n &optional what)
11677 "Change the date in the time stamp at point.
11678 The date will be changed by N times WHAT. WHAT can be `day', `month',
11679 `year', `minute', `second'. If WHAT is not given, the cursor position
11680 in the timestamp determines what will be changed."
11681 (let ((pos (point))
11682 with-hm inactive
11683 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
11684 org-ts-what
11685 extra rem
11686 ts time time0)
11687 (if (not (org-at-timestamp-p t))
11688 (error "Not at a timestamp"))
11689 (if (and (not what) (eq org-ts-what 'bracket))
11690 (org-toggle-timestamp-type)
11691 (if (and (not what) (not (eq org-ts-what 'day))
11692 org-display-custom-times
11693 (get-text-property (point) 'display)
11694 (not (get-text-property (1- (point)) 'display)))
11695 (setq org-ts-what 'day))
11696 (setq org-ts-what (or what org-ts-what)
11697 inactive (= (char-after (match-beginning 0)) ?\[)
11698 ts (match-string 0))
11699 (replace-match "")
11700 (if (string-match
11701 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?[-+][0-9]+[dwmy]\\)*\\)[]>]"
11703 (setq extra (match-string 1 ts)))
11704 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
11705 (setq with-hm t))
11706 (setq time0 (org-parse-time-string ts))
11707 (when (and (eq org-ts-what 'minute)
11708 (eq current-prefix-arg nil))
11709 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
11710 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
11711 (setcar (cdr time0) (+ (nth 1 time0)
11712 (if (> n 0) (- rem) (- dm rem))))))
11713 (setq time
11714 (encode-time (or (car time0) 0)
11715 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
11716 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
11717 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
11718 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
11719 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
11720 (nthcdr 6 time0)))
11721 (when (integerp org-ts-what)
11722 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
11723 (if (eq what 'calendar)
11724 (let ((cal-date (org-get-date-from-calendar)))
11725 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
11726 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
11727 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
11728 (setcar time0 (or (car time0) 0))
11729 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
11730 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
11731 (setq time (apply 'encode-time time0))))
11732 (setq org-last-changed-timestamp
11733 (org-insert-time-stamp time with-hm inactive nil nil extra))
11734 (org-clock-update-time-maybe)
11735 (goto-char pos)
11736 ;; Try to recenter the calendar window, if any
11737 (if (and org-calendar-follow-timestamp-change
11738 (get-buffer-window "*Calendar*" t)
11739 (memq org-ts-what '(day month year)))
11740 (org-recenter-calendar (time-to-days time))))))
11742 (defun org-modify-ts-extra (s pos n dm)
11743 "Change the different parts of the lead-time and repeat fields in timestamp."
11744 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
11745 ng h m new rem)
11746 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
11747 (cond
11748 ((or (org-pos-in-match-range pos 2)
11749 (org-pos-in-match-range pos 3))
11750 (setq m (string-to-number (match-string 3 s))
11751 h (string-to-number (match-string 2 s)))
11752 (if (org-pos-in-match-range pos 2)
11753 (setq h (+ h n))
11754 (setq n (* dm (org-no-warnings (signum n))))
11755 (when (not (= 0 (setq rem (% m dm))))
11756 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
11757 (setq m (+ m n)))
11758 (if (< m 0) (setq m (+ m 60) h (1- h)))
11759 (if (> m 59) (setq m (- m 60) h (1+ h)))
11760 (setq h (min 24 (max 0 h)))
11761 (setq ng 1 new (format "-%02d:%02d" h m)))
11762 ((org-pos-in-match-range pos 6)
11763 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
11764 ((org-pos-in-match-range pos 5)
11765 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
11767 ((org-pos-in-match-range pos 9)
11768 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
11769 ((org-pos-in-match-range pos 8)
11770 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
11772 (when ng
11773 (setq s (concat
11774 (substring s 0 (match-beginning ng))
11776 (substring s (match-end ng))))))
11779 (defun org-recenter-calendar (date)
11780 "If the calendar is visible, recenter it to DATE."
11781 (let* ((win (selected-window))
11782 (cwin (get-buffer-window "*Calendar*" t))
11783 (calendar-move-hook nil))
11784 (when cwin
11785 (select-window cwin)
11786 (calendar-goto-date (if (listp date) date
11787 (calendar-gregorian-from-absolute date)))
11788 (select-window win))))
11790 (defun org-goto-calendar (&optional arg)
11791 "Go to the Emacs calendar at the current date.
11792 If there is a time stamp in the current line, go to that date.
11793 A prefix ARG can be used to force the current date."
11794 (interactive "P")
11795 (let ((tsr org-ts-regexp) diff
11796 (calendar-move-hook nil)
11797 (calendar-view-holidays-initially-flag nil)
11798 (view-calendar-holidays-initially nil)
11799 (calendar-view-diary-initially-flag nil)
11800 (view-diary-entries-initially nil))
11801 (if (or (org-at-timestamp-p)
11802 (save-excursion
11803 (beginning-of-line 1)
11804 (looking-at (concat ".*" tsr))))
11805 (let ((d1 (time-to-days (current-time)))
11806 (d2 (time-to-days
11807 (org-time-string-to-time (match-string 1)))))
11808 (setq diff (- d2 d1))))
11809 (calendar)
11810 (calendar-goto-today)
11811 (if (and diff (not arg)) (calendar-forward-day diff))))
11813 (defun org-get-date-from-calendar ()
11814 "Return a list (month day year) of date at point in calendar."
11815 (with-current-buffer "*Calendar*"
11816 (save-match-data
11817 (calendar-cursor-to-date))))
11819 (defun org-date-from-calendar ()
11820 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
11821 If there is already a time stamp at the cursor position, update it."
11822 (interactive)
11823 (if (org-at-timestamp-p t)
11824 (org-timestamp-change 0 'calendar)
11825 (let ((cal-date (org-get-date-from-calendar)))
11826 (org-insert-time-stamp
11827 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
11829 (defun org-minutes-to-hh:mm-string (m)
11830 "Compute H:MM from a number of minutes."
11831 (let ((h (/ m 60)))
11832 (setq m (- m (* 60 h)))
11833 (format org-time-clocksum-format h m)))
11835 (defun org-hh:mm-string-to-minutes (s)
11836 "Convert a string H:MM to a number of minutes."
11837 (if (string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
11838 (+ (* (string-to-number (match-string 1 s)) 60)
11839 (string-to-number (match-string 2 s)))
11842 ;;;; Agenda files
11844 ;;;###autoload
11845 (defun org-iswitchb (&optional arg)
11846 "Use `iswitchb-read-buffer' to prompt for an Org buffer to switch to.
11847 With a prefix argument, restrict available to files.
11848 With two prefix arguments, restrict available buffers to agenda files.
11850 Due to some yet unresolved reason, the global function
11851 `iswitchb-mode' needs to be active for this function to work."
11852 (interactive "P")
11853 (require 'iswitchb)
11854 (let ((enabled iswitchb-mode) blist)
11855 (or enabled (iswitchb-mode 1))
11856 (setq blist (cond ((equal arg '(4)) (org-buffer-list 'files))
11857 ((equal arg '(16)) (org-buffer-list 'agenda))
11858 (t (org-buffer-list))))
11859 (unwind-protect
11860 (let ((iswitchb-make-buflist-hook
11861 (lambda ()
11862 (setq iswitchb-temp-buflist
11863 (mapcar 'buffer-name blist)))))
11864 (switch-to-buffer
11865 (iswitchb-read-buffer
11866 "Switch-to: " nil t))
11867 (or enabled (iswitchb-mode -1))))))
11869 (defun org-buffer-list (&optional predicate exclude-tmp)
11870 "Return a list of Org buffers.
11871 PREDICATE can be `export', `files' or `agenda'.
11873 export restrict the list to Export buffers.
11874 files restrict the list to buffers visiting Org files.
11875 agenda restrict the list to buffers visiting agenda files.
11877 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
11878 (let* ((bfn nil)
11879 (agenda-files (and (eq predicate 'agenda)
11880 (mapcar 'file-truename (org-agenda-files t))))
11881 (filter
11882 (cond
11883 ((eq predicate 'files)
11884 (lambda (b) (with-current-buffer b (eq major-mode 'org-mode))))
11885 ((eq predicate 'export)
11886 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
11887 ((eq predicate 'agenda)
11888 (lambda (b)
11889 (with-current-buffer b
11890 (and (eq major-mode 'org-mode)
11891 (setq bfn (buffer-file-name b))
11892 (member (file-truename bfn) agenda-files)))))
11893 (t (lambda (b) (with-current-buffer b
11894 (or (eq major-mode 'org-mode)
11895 (string-match "\*Org .*Export"
11896 (buffer-name b)))))))))
11897 (delq nil
11898 (mapcar
11899 (lambda(b)
11900 (if (and (funcall filter b)
11901 (or (not exclude-tmp)
11902 (not (string-match "tmp" (buffer-name b)))))
11904 nil))
11905 (buffer-list)))))
11907 (defun org-agenda-files (&optional unrestricted archives)
11908 "Get the list of agenda files.
11909 Optional UNRESTRICTED means return the full list even if a restriction
11910 is currently in place.
11911 When ARCHIVES is t, include all archive files hat are really being
11912 used by the agenda files. If ARCHIVE is `ifmode', do this only if
11913 `org-agenda-archives-mode' is t."
11914 (let ((files
11915 (cond
11916 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
11917 ((stringp org-agenda-files) (org-read-agenda-file-list))
11918 ((listp org-agenda-files) org-agenda-files)
11919 (t (error "Invalid value of `org-agenda-files'")))))
11920 (setq files (apply 'append
11921 (mapcar (lambda (f)
11922 (if (file-directory-p f)
11923 (directory-files
11924 f t org-agenda-file-regexp)
11925 (list f)))
11926 files)))
11927 (when org-agenda-skip-unavailable-files
11928 (setq files (delq nil
11929 (mapcar (function
11930 (lambda (file)
11931 (and (file-readable-p file) file)))
11932 files))))
11933 (when (or (eq archives t)
11934 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
11935 (setq files (org-add-archive-files files)))
11936 files))
11938 (defun org-edit-agenda-file-list ()
11939 "Edit the list of agenda files.
11940 Depending on setup, this either uses customize to edit the variable
11941 `org-agenda-files', or it visits the file that is holding the list. In the
11942 latter case, the buffer is set up in a way that saving it automatically kills
11943 the buffer and restores the previous window configuration."
11944 (interactive)
11945 (if (stringp org-agenda-files)
11946 (let ((cw (current-window-configuration)))
11947 (find-file org-agenda-files)
11948 (org-set-local 'org-window-configuration cw)
11949 (org-add-hook 'after-save-hook
11950 (lambda ()
11951 (set-window-configuration
11952 (prog1 org-window-configuration
11953 (kill-buffer (current-buffer))))
11954 (org-install-agenda-files-menu)
11955 (message "New agenda file list installed"))
11956 nil 'local)
11957 (message "%s" (substitute-command-keys
11958 "Edit list and finish with \\[save-buffer]")))
11959 (customize-variable 'org-agenda-files)))
11961 (defun org-store-new-agenda-file-list (list)
11962 "Set new value for the agenda file list and save it correctly."
11963 (if (stringp org-agenda-files)
11964 (let ((f org-agenda-files) b)
11965 (while (setq b (find-buffer-visiting f)) (kill-buffer b))
11966 (with-temp-file f
11967 (insert (mapconcat 'identity list "\n") "\n")))
11968 (let ((org-mode-hook nil) (default-major-mode 'fundamental-mode))
11969 (setq org-agenda-files list)
11970 (customize-save-variable 'org-agenda-files org-agenda-files))))
11972 (defun org-read-agenda-file-list ()
11973 "Read the list of agenda files from a file."
11974 (when (file-directory-p org-agenda-files)
11975 (error "`org-agenda-files' cannot be a single directory"))
11976 (when (stringp org-agenda-files)
11977 (with-temp-buffer
11978 (insert-file-contents org-agenda-files)
11979 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*"))))
11982 ;;;###autoload
11983 (defun org-cycle-agenda-files ()
11984 "Cycle through the files in `org-agenda-files'.
11985 If the current buffer visits an agenda file, find the next one in the list.
11986 If the current buffer does not, find the first agenda file."
11987 (interactive)
11988 (let* ((fs (org-agenda-files t))
11989 (files (append fs (list (car fs))))
11990 (tcf (if buffer-file-name (file-truename buffer-file-name)))
11991 file)
11992 (unless files (error "No agenda files"))
11993 (catch 'exit
11994 (while (setq file (pop files))
11995 (if (equal (file-truename file) tcf)
11996 (when (car files)
11997 (find-file (car files))
11998 (throw 'exit t))))
11999 (find-file (car fs)))
12000 (if (buffer-base-buffer) (switch-to-buffer (buffer-base-buffer)))))
12002 (defun org-agenda-file-to-front (&optional to-end)
12003 "Move/add the current file to the top of the agenda file list.
12004 If the file is not present in the list, it is added to the front. If it is
12005 present, it is moved there. With optional argument TO-END, add/move to the
12006 end of the list."
12007 (interactive "P")
12008 (let ((org-agenda-skip-unavailable-files nil)
12009 (file-alist (mapcar (lambda (x)
12010 (cons (file-truename x) x))
12011 (org-agenda-files t)))
12012 (ctf (file-truename buffer-file-name))
12013 x had)
12014 (setq x (assoc ctf file-alist) had x)
12016 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
12017 (if to-end
12018 (setq file-alist (append (delq x file-alist) (list x)))
12019 (setq file-alist (cons x (delq x file-alist))))
12020 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
12021 (org-install-agenda-files-menu)
12022 (message "File %s to %s of agenda file list"
12023 (if had "moved" "added") (if to-end "end" "front"))))
12025 (defun org-remove-file (&optional file)
12026 "Remove current file from the list of files in variable `org-agenda-files'.
12027 These are the files which are being checked for agenda entries.
12028 Optional argument FILE means, use this file instead of the current."
12029 (interactive)
12030 (let* ((org-agenda-skip-unavailable-files nil)
12031 (file (or file buffer-file-name))
12032 (true-file (file-truename file))
12033 (afile (abbreviate-file-name file))
12034 (files (delq nil (mapcar
12035 (lambda (x)
12036 (if (equal true-file
12037 (file-truename x))
12038 nil x))
12039 (org-agenda-files t)))))
12040 (if (not (= (length files) (length (org-agenda-files t))))
12041 (progn
12042 (org-store-new-agenda-file-list files)
12043 (org-install-agenda-files-menu)
12044 (message "Removed file: %s" afile))
12045 (message "File was not in list: %s (not removed)" afile))))
12047 (defun org-file-menu-entry (file)
12048 (vector file (list 'find-file file) t))
12050 (defun org-check-agenda-file (file)
12051 "Make sure FILE exists. If not, ask user what to do."
12052 (when (not (file-exists-p file))
12053 (message "non-existent file %s. [R]emove from list or [A]bort?"
12054 (abbreviate-file-name file))
12055 (let ((r (downcase (read-char-exclusive))))
12056 (cond
12057 ((equal r ?r)
12058 (org-remove-file file)
12059 (throw 'nextfile t))
12060 (t (error "Abort"))))))
12062 (defun org-get-agenda-file-buffer (file)
12063 "Get a buffer visiting FILE. If the buffer needs to be created, add
12064 it to the list of buffers which might be released later."
12065 (let ((buf (org-find-base-buffer-visiting file)))
12066 (if buf
12067 buf ; just return it
12068 ;; Make a new buffer and remember it
12069 (setq buf (find-file-noselect file))
12070 (if buf (push buf org-agenda-new-buffers))
12071 buf)))
12073 (defun org-release-buffers (blist)
12074 "Release all buffers in list, asking the user for confirmation when needed.
12075 When a buffer is unmodified, it is just killed. When modified, it is saved
12076 \(if the user agrees) and then killed."
12077 (let (buf file)
12078 (while (setq buf (pop blist))
12079 (setq file (buffer-file-name buf))
12080 (when (and (buffer-modified-p buf)
12081 file
12082 (y-or-n-p (format "Save file %s? " file)))
12083 (with-current-buffer buf (save-buffer)))
12084 (kill-buffer buf))))
12086 (defun org-prepare-agenda-buffers (files)
12087 "Create buffers for all agenda files, protect archived trees and comments."
12088 (interactive)
12089 (let ((pa '(:org-archived t))
12090 (pc '(:org-comment t))
12091 (pall '(:org-archived t :org-comment t))
12092 (inhibit-read-only t)
12093 (rea (concat ":" org-archive-tag ":"))
12094 bmp file re)
12095 (save-excursion
12096 (save-restriction
12097 (while (setq file (pop files))
12098 (if (bufferp file)
12099 (set-buffer file)
12100 (org-check-agenda-file file)
12101 (set-buffer (org-get-agenda-file-buffer file)))
12102 (widen)
12103 (setq bmp (buffer-modified-p))
12104 (org-refresh-category-properties)
12105 (setq org-todo-keywords-for-agenda
12106 (append org-todo-keywords-for-agenda org-todo-keywords-1))
12107 (setq org-done-keywords-for-agenda
12108 (append org-done-keywords-for-agenda org-done-keywords))
12109 (setq org-todo-keyword-alist-for-agenda
12110 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
12111 (setq org-tag-alist-for-agenda
12112 (append org-tag-alist-for-agenda org-tag-alist))
12114 (save-excursion
12115 (remove-text-properties (point-min) (point-max) pall)
12116 (when org-agenda-skip-archived-trees
12117 (goto-char (point-min))
12118 (while (re-search-forward rea nil t)
12119 (if (org-on-heading-p t)
12120 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
12121 (goto-char (point-min))
12122 (setq re (concat "^\\*+ +" org-comment-string "\\>"))
12123 (while (re-search-forward re nil t)
12124 (add-text-properties
12125 (match-beginning 0) (org-end-of-subtree t) pc)))
12126 (set-buffer-modified-p bmp))))
12127 (setq org-todo-keyword-alist-for-agenda
12128 (org-uniquify org-todo-keyword-alist-for-agenda)
12129 org-tag-alist-for-agenda (org-uniquify org-tag-alist-for-agenda))))
12131 ;;;; Embedded LaTeX
12133 (defvar org-cdlatex-mode-map (make-sparse-keymap)
12134 "Keymap for the minor `org-cdlatex-mode'.")
12136 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
12137 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
12138 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
12139 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
12140 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
12142 (defvar org-cdlatex-texmathp-advice-is-done nil
12143 "Flag remembering if we have applied the advice to texmathp already.")
12145 (define-minor-mode org-cdlatex-mode
12146 "Toggle the minor `org-cdlatex-mode'.
12147 This mode supports entering LaTeX environment and math in LaTeX fragments
12148 in Org-mode.
12149 \\{org-cdlatex-mode-map}"
12150 nil " OCDL" nil
12151 (when org-cdlatex-mode (require 'cdlatex))
12152 (unless org-cdlatex-texmathp-advice-is-done
12153 (setq org-cdlatex-texmathp-advice-is-done t)
12154 (defadvice texmathp (around org-math-always-on activate)
12155 "Always return t in org-mode buffers.
12156 This is because we want to insert math symbols without dollars even outside
12157 the LaTeX math segments. If Orgmode thinks that point is actually inside
12158 an embedded LaTeX fragment, let texmathp do its job.
12159 \\[org-cdlatex-mode-map]"
12160 (interactive)
12161 (let (p)
12162 (cond
12163 ((not (org-mode-p)) ad-do-it)
12164 ((eq this-command 'cdlatex-math-symbol)
12165 (setq ad-return-value t
12166 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
12168 (let ((p (org-inside-LaTeX-fragment-p)))
12169 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
12170 (setq ad-return-value t
12171 texmathp-why '("Org-mode embedded math" . 0))
12172 (if p ad-do-it)))))))))
12174 (defun turn-on-org-cdlatex ()
12175 "Unconditionally turn on `org-cdlatex-mode'."
12176 (org-cdlatex-mode 1))
12178 (defun org-inside-LaTeX-fragment-p ()
12179 "Test if point is inside a LaTeX fragment.
12180 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
12181 sequence appearing also before point.
12182 Even though the matchers for math are configurable, this function assumes
12183 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
12184 delimiters are skipped when they have been removed by customization.
12185 The return value is nil, or a cons cell with the delimiter and
12186 and the position of this delimiter.
12188 This function does a reasonably good job, but can locally be fooled by
12189 for example currency specifications. For example it will assume being in
12190 inline math after \"$22.34\". The LaTeX fragment formatter will only format
12191 fragments that are properly closed, but during editing, we have to live
12192 with the uncertainty caused by missing closing delimiters. This function
12193 looks only before point, not after."
12194 (catch 'exit
12195 (let ((pos (point))
12196 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
12197 (lim (progn
12198 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
12199 (point)))
12200 dd-on str (start 0) m re)
12201 (goto-char pos)
12202 (when dodollar
12203 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
12204 re (nth 1 (assoc "$" org-latex-regexps)))
12205 (while (string-match re str start)
12206 (cond
12207 ((= (match-end 0) (length str))
12208 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
12209 ((= (match-end 0) (- (length str) 5))
12210 (throw 'exit nil))
12211 (t (setq start (match-end 0))))))
12212 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
12213 (goto-char pos)
12214 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
12215 (and (match-beginning 2) (throw 'exit nil))
12216 ;; count $$
12217 (while (re-search-backward "\\$\\$" lim t)
12218 (setq dd-on (not dd-on)))
12219 (goto-char pos)
12220 (if dd-on (cons "$$" m))))))
12223 (defun org-try-cdlatex-tab ()
12224 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
12225 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
12226 - inside a LaTeX fragment, or
12227 - after the first word in a line, where an abbreviation expansion could
12228 insert a LaTeX environment."
12229 (when org-cdlatex-mode
12230 (cond
12231 ((save-excursion
12232 (skip-chars-backward "a-zA-Z0-9*")
12233 (skip-chars-backward " \t")
12234 (bolp))
12235 (cdlatex-tab) t)
12236 ((org-inside-LaTeX-fragment-p)
12237 (cdlatex-tab) t)
12238 (t nil))))
12240 (defun org-cdlatex-underscore-caret (&optional arg)
12241 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
12242 Revert to the normal definition outside of these fragments."
12243 (interactive "P")
12244 (if (org-inside-LaTeX-fragment-p)
12245 (call-interactively 'cdlatex-sub-superscript)
12246 (let (org-cdlatex-mode)
12247 (call-interactively (key-binding (vector last-input-event))))))
12249 (defun org-cdlatex-math-modify (&optional arg)
12250 "Execute `cdlatex-math-modify' in LaTeX fragments.
12251 Revert to the normal definition outside of these fragments."
12252 (interactive "P")
12253 (if (org-inside-LaTeX-fragment-p)
12254 (call-interactively 'cdlatex-math-modify)
12255 (let (org-cdlatex-mode)
12256 (call-interactively (key-binding (vector last-input-event))))))
12258 (defvar org-latex-fragment-image-overlays nil
12259 "List of overlays carrying the images of latex fragments.")
12260 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
12262 (defun org-remove-latex-fragment-image-overlays ()
12263 "Remove all overlays with LaTeX fragment images in current buffer."
12264 (mapc 'org-delete-overlay org-latex-fragment-image-overlays)
12265 (setq org-latex-fragment-image-overlays nil))
12267 (defun org-preview-latex-fragment (&optional subtree)
12268 "Preview the LaTeX fragment at point, or all locally or globally.
12269 If the cursor is in a LaTeX fragment, create the image and overlay
12270 it over the source code. If there is no fragment at point, display
12271 all fragments in the current text, from one headline to the next. With
12272 prefix SUBTREE, display all fragments in the current subtree. With a
12273 double prefix `C-u C-u', or when the cursor is before the first headline,
12274 display all fragments in the buffer.
12275 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
12276 (interactive "P")
12277 (org-remove-latex-fragment-image-overlays)
12278 (save-excursion
12279 (save-restriction
12280 (let (beg end at msg)
12281 (cond
12282 ((or (equal subtree '(16))
12283 (not (save-excursion
12284 (re-search-backward (concat "^" outline-regexp) nil t))))
12285 (setq beg (point-min) end (point-max)
12286 msg "Creating images for buffer...%s"))
12287 ((equal subtree '(4))
12288 (org-back-to-heading)
12289 (setq beg (point) end (org-end-of-subtree t)
12290 msg "Creating images for subtree...%s"))
12292 (if (setq at (org-inside-LaTeX-fragment-p))
12293 (goto-char (max (point-min) (- (cdr at) 2)))
12294 (org-back-to-heading))
12295 (setq beg (point) end (progn (outline-next-heading) (point))
12296 msg (if at "Creating image...%s"
12297 "Creating images for entry...%s"))))
12298 (message msg "")
12299 (narrow-to-region beg end)
12300 (goto-char beg)
12301 (org-format-latex
12302 (concat "ltxpng/" (file-name-sans-extension
12303 (file-name-nondirectory
12304 buffer-file-name)))
12305 default-directory 'overlays msg at 'forbuffer)
12306 (message msg "done. Use `C-c C-c' to remove images.")))))
12308 (defvar org-latex-regexps
12309 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
12310 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
12311 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
12312 ("$" "\\([^$]\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([ .,?;:'\")\000]\\|$\\)" 2 nil)
12313 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
12314 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 t)
12315 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 t))
12316 "Regular expressions for matching embedded LaTeX.")
12318 (defun org-format-latex (prefix &optional dir overlays msg at forbuffer)
12319 "Replace LaTeX fragments with links to an image, and produce images."
12320 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
12321 (let* ((prefixnodir (file-name-nondirectory prefix))
12322 (absprefix (expand-file-name prefix dir))
12323 (todir (file-name-directory absprefix))
12324 (opt org-format-latex-options)
12325 (matchers (plist-get opt :matchers))
12326 (re-list org-latex-regexps)
12327 (cnt 0) txt link beg end re e checkdir
12328 m n block linkfile movefile ov)
12329 ;; Check if there are old images files with this prefix, and remove them
12330 (when (file-directory-p todir)
12331 (mapc 'delete-file
12332 (directory-files
12333 todir 'full
12334 (concat (regexp-quote prefixnodir) "_[0-9]+\\.png$"))))
12335 ;; Check the different regular expressions
12336 (while (setq e (pop re-list))
12337 (setq m (car e) re (nth 1 e) n (nth 2 e)
12338 block (if (nth 3 e) "\n\n" ""))
12339 (when (member m matchers)
12340 (goto-char (point-min))
12341 (while (re-search-forward re nil t)
12342 (when (or (not at) (equal (cdr at) (match-beginning n)))
12343 (setq txt (match-string n)
12344 beg (match-beginning n) end (match-end n)
12345 cnt (1+ cnt)
12346 linkfile (format "%s_%04d.png" prefix cnt)
12347 movefile (format "%s_%04d.png" absprefix cnt)
12348 link (concat block "[[file:" linkfile "]]" block))
12349 (if msg (message msg cnt))
12350 (goto-char beg)
12351 (unless checkdir ; make sure the directory exists
12352 (setq checkdir t)
12353 (or (file-directory-p todir) (make-directory todir)))
12354 (org-create-formula-image
12355 txt movefile opt forbuffer)
12356 (if overlays
12357 (progn
12358 (setq ov (org-make-overlay beg end))
12359 (if (featurep 'xemacs)
12360 (progn
12361 (org-overlay-put ov 'invisible t)
12362 (org-overlay-put
12363 ov 'end-glyph
12364 (make-glyph (vector 'png :file movefile))))
12365 (org-overlay-put
12366 ov 'display
12367 (list 'image :type 'png :file movefile :ascent 'center)))
12368 (push ov org-latex-fragment-image-overlays)
12369 (goto-char end))
12370 (delete-region beg end)
12371 (insert link))))))))
12373 ;; This function borrows from Ganesh Swami's latex2png.el
12374 (defun org-create-formula-image (string tofile options buffer)
12375 (let* ((tmpdir (if (featurep 'xemacs)
12376 (temp-directory)
12377 temporary-file-directory))
12378 (texfilebase (make-temp-name
12379 (expand-file-name "orgtex" tmpdir)))
12380 (texfile (concat texfilebase ".tex"))
12381 (dvifile (concat texfilebase ".dvi"))
12382 (pngfile (concat texfilebase ".png"))
12383 (fnh (if (featurep 'xemacs)
12384 (font-height (get-face-font 'default))
12385 (face-attribute 'default :height nil)))
12386 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
12387 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
12388 (fg (or (plist-get options (if buffer :foreground :html-foreground))
12389 "Black"))
12390 (bg (or (plist-get options (if buffer :background :html-background))
12391 "Transparent")))
12392 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground)))
12393 (if (eq bg 'default) (setq bg (org-dvipng-color :background)))
12394 (with-temp-file texfile
12395 (insert org-format-latex-header
12396 "\n\\begin{document}\n" string "\n\\end{document}\n"))
12397 (let ((dir default-directory))
12398 (condition-case nil
12399 (progn
12400 (cd tmpdir)
12401 (call-process "latex" nil nil nil texfile))
12402 (error nil))
12403 (cd dir))
12404 (if (not (file-exists-p dvifile))
12405 (progn (message "Failed to create dvi file from %s" texfile) nil)
12406 (condition-case nil
12407 (call-process "dvipng" nil nil nil
12408 "-E" "-fg" fg "-bg" bg
12409 "-D" dpi
12410 ;;"-x" scale "-y" scale
12411 "-T" "tight"
12412 "-o" pngfile
12413 dvifile)
12414 (error nil))
12415 (if (not (file-exists-p pngfile))
12416 (progn (message "Failed to create png file from %s" texfile) nil)
12417 ;; Use the requested file name and clean up
12418 (copy-file pngfile tofile 'replace)
12419 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png") do
12420 (delete-file (concat texfilebase e)))
12421 pngfile))))
12423 (defun org-dvipng-color (attr)
12424 "Return an rgb color specification for dvipng."
12425 (apply 'format "rgb %s %s %s"
12426 (mapcar 'org-normalize-color
12427 (color-values (face-attribute 'default attr nil)))))
12429 (defun org-normalize-color (value)
12430 "Return string to be used as color value for an RGB component."
12431 (format "%g" (/ value 65535.0)))
12434 ;;;; Key bindings
12436 ;; Make `C-c C-x' a prefix key
12437 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
12439 ;; TAB key with modifiers
12440 (org-defkey org-mode-map "\C-i" 'org-cycle)
12441 (org-defkey org-mode-map [(tab)] 'org-cycle)
12442 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
12443 (org-defkey org-mode-map [(meta tab)] 'org-complete)
12444 (org-defkey org-mode-map "\M-\t" 'org-complete)
12445 (org-defkey org-mode-map "\M-\C-i" 'org-complete)
12446 ;; The following line is necessary under Suse GNU/Linux
12447 (unless (featurep 'xemacs)
12448 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
12449 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
12450 (define-key org-mode-map [backtab] 'org-shifttab)
12452 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
12453 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
12454 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
12456 ;; Cursor keys with modifiers
12457 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
12458 (org-defkey org-mode-map [(meta right)] 'org-metaright)
12459 (org-defkey org-mode-map [(meta up)] 'org-metaup)
12460 (org-defkey org-mode-map [(meta down)] 'org-metadown)
12462 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
12463 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
12464 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
12465 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
12467 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
12468 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
12469 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
12470 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
12472 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
12473 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
12475 ;;; Extra keys for tty access.
12476 ;; We only set them when really needed because otherwise the
12477 ;; menus don't show the simple keys
12479 (when (or org-use-extra-keys
12480 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
12481 (not window-system))
12482 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
12483 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
12484 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
12485 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
12486 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
12487 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
12488 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
12489 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
12490 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
12491 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
12492 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
12493 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
12494 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
12495 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
12496 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
12497 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
12498 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
12499 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
12500 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
12501 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
12502 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
12503 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft))
12505 ;; All the other keys
12507 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
12508 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
12509 (if (boundp 'narrow-map)
12510 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
12511 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
12512 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
12513 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
12514 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-toggle-archive-tag)
12515 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
12516 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
12517 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
12518 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
12519 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
12520 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
12521 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
12522 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
12523 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
12524 (org-defkey org-mode-map "\C-c\C-v" 'org-show-todo-tree)
12525 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
12526 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
12527 (org-defkey org-mode-map "\C-c\\" 'org-tags-sparse-tree) ; Minor-mode res.
12528 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
12529 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
12530 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
12531 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
12532 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
12533 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
12534 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
12535 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
12536 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
12537 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
12538 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
12539 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
12540 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
12541 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
12542 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
12543 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
12544 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
12545 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
12546 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
12547 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
12548 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
12549 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
12550 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
12551 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
12552 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
12553 (org-defkey org-mode-map "\C-c^" 'org-sort)
12554 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
12555 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
12556 (org-defkey org-mode-map "\C-c#" 'org-update-checkbox-count)
12557 (org-defkey org-mode-map "\C-m" 'org-return)
12558 (org-defkey org-mode-map "\C-j" 'org-return-indent)
12559 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
12560 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
12561 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
12562 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
12563 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
12564 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
12565 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
12566 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
12567 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
12568 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
12569 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
12570 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
12571 (org-defkey org-mode-map "\C-c\C-e" 'org-export)
12572 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section)
12573 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
12575 (org-defkey org-mode-map "\C-c\C-x\C-k" 'org-mark-entry-for-agenda-action)
12576 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
12577 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
12578 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
12580 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
12581 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
12582 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
12583 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
12584 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-cancel)
12585 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
12586 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
12587 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
12588 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
12589 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
12590 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
12591 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
12593 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
12594 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
12595 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
12597 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
12599 (when (featurep 'xemacs)
12600 (org-defkey org-mode-map 'button3 'popup-mode-menu))
12602 (defvar org-table-auto-blank-field) ; defined in org-table.el
12603 (defun org-self-insert-command (N)
12604 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
12605 If the cursor is in a table looking at whitespace, the whitespace is
12606 overwritten, and the table is not marked as requiring realignment."
12607 (interactive "p")
12608 (if (and (org-table-p)
12609 (progn
12610 ;; check if we blank the field, and if that triggers align
12611 (and (featurep 'org-table) org-table-auto-blank-field
12612 (member last-command
12613 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
12614 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
12615 ;; got extra space, this field does not determine column width
12616 (let (org-table-may-need-update) (org-table-blank-field))
12617 ;; no extra space, this field may determine column width
12618 (org-table-blank-field)))
12620 (eq N 1)
12621 (looking-at "[^|\n]* |"))
12622 (let (org-table-may-need-update)
12623 (goto-char (1- (match-end 0)))
12624 (delete-backward-char 1)
12625 (goto-char (match-beginning 0))
12626 (self-insert-command N))
12627 (setq org-table-may-need-update t)
12628 (self-insert-command N)
12629 (org-fix-tags-on-the-fly)))
12631 (defun org-fix-tags-on-the-fly ()
12632 (when (and (equal (char-after (point-at-bol)) ?*)
12633 (org-on-heading-p))
12634 (org-align-tags-here org-tags-column)))
12636 (defun org-delete-backward-char (N)
12637 "Like `delete-backward-char', insert whitespace at field end in tables.
12638 When deleting backwards, in tables this function will insert whitespace in
12639 front of the next \"|\" separator, to keep the table aligned. The table will
12640 still be marked for re-alignment if the field did fill the entire column,
12641 because, in this case the deletion might narrow the column."
12642 (interactive "p")
12643 (if (and (org-table-p)
12644 (eq N 1)
12645 (string-match "|" (buffer-substring (point-at-bol) (point)))
12646 (looking-at ".*?|"))
12647 (let ((pos (point))
12648 (noalign (looking-at "[^|\n\r]* |"))
12649 (c org-table-may-need-update))
12650 (backward-delete-char N)
12651 (skip-chars-forward "^|")
12652 (insert " ")
12653 (goto-char (1- pos))
12654 ;; noalign: if there were two spaces at the end, this field
12655 ;; does not determine the width of the column.
12656 (if noalign (setq org-table-may-need-update c)))
12657 (backward-delete-char N)
12658 (org-fix-tags-on-the-fly)))
12660 (defun org-delete-char (N)
12661 "Like `delete-char', but insert whitespace at field end in tables.
12662 When deleting characters, in tables this function will insert whitespace in
12663 front of the next \"|\" separator, to keep the table aligned. The table will
12664 still be marked for re-alignment if the field did fill the entire column,
12665 because, in this case the deletion might narrow the column."
12666 (interactive "p")
12667 (if (and (org-table-p)
12668 (not (bolp))
12669 (not (= (char-after) ?|))
12670 (eq N 1))
12671 (if (looking-at ".*?|")
12672 (let ((pos (point))
12673 (noalign (looking-at "[^|\n\r]* |"))
12674 (c org-table-may-need-update))
12675 (replace-match (concat
12676 (substring (match-string 0) 1 -1)
12677 " |"))
12678 (goto-char pos)
12679 ;; noalign: if there were two spaces at the end, this field
12680 ;; does not determine the width of the column.
12681 (if noalign (setq org-table-may-need-update c)))
12682 (delete-char N))
12683 (delete-char N)
12684 (org-fix-tags-on-the-fly)))
12686 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
12687 (put 'org-self-insert-command 'delete-selection t)
12688 (put 'orgtbl-self-insert-command 'delete-selection t)
12689 (put 'org-delete-char 'delete-selection 'supersede)
12690 (put 'org-delete-backward-char 'delete-selection 'supersede)
12692 ;; Make `flyspell-mode' delay after some commands
12693 (put 'org-self-insert-command 'flyspell-delayed t)
12694 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
12695 (put 'org-delete-char 'flyspell-delayed t)
12696 (put 'org-delete-backward-char 'flyspell-delayed t)
12698 ;; Make pabbrev-mode expand after org-mode commands
12699 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
12700 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
12702 ;; How to do this: Measure non-white length of current string
12703 ;; If equal to column width, we should realign.
12705 (defun org-remap (map &rest commands)
12706 "In MAP, remap the functions given in COMMANDS.
12707 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
12708 (let (new old)
12709 (while commands
12710 (setq old (pop commands) new (pop commands))
12711 (if (fboundp 'command-remapping)
12712 (org-defkey map (vector 'remap old) new)
12713 (substitute-key-definition old new map global-map)))))
12715 (when (eq org-enable-table-editor 'optimized)
12716 ;; If the user wants maximum table support, we need to hijack
12717 ;; some standard editing functions
12718 (org-remap org-mode-map
12719 'self-insert-command 'org-self-insert-command
12720 'delete-char 'org-delete-char
12721 'delete-backward-char 'org-delete-backward-char)
12722 (org-defkey org-mode-map "|" 'org-force-self-insert))
12724 (defun org-shiftcursor-error ()
12725 "Throw an error because Shift-Cursor command was applied in wrong context."
12726 (error "This command is active in special context like tables, headlines or timestamps"))
12728 (defun org-shifttab (&optional arg)
12729 "Global visibility cycling or move to previous table field.
12730 Calls `org-cycle' with argument t, or `org-table-previous-field', depending
12731 on context.
12732 See the individual commands for more information."
12733 (interactive "P")
12734 (cond
12735 ((org-at-table-p) (call-interactively 'org-table-previous-field))
12736 ((integerp arg)
12737 (message "Content view to level: %d" arg)
12738 (org-content (prefix-numeric-value arg))
12739 (setq org-cycle-global-status 'overview))
12740 (t (call-interactively 'org-global-cycle))))
12742 (defun org-shiftmetaleft ()
12743 "Promote subtree or delete table column.
12744 Calls `org-promote-subtree', `org-outdent-item',
12745 or `org-table-delete-column', depending on context.
12746 See the individual commands for more information."
12747 (interactive)
12748 (cond
12749 ((org-at-table-p) (call-interactively 'org-table-delete-column))
12750 ((org-on-heading-p) (call-interactively 'org-promote-subtree))
12751 ((org-at-item-p) (call-interactively 'org-outdent-item))
12752 (t (org-shiftcursor-error))))
12754 (defun org-shiftmetaright ()
12755 "Demote subtree or insert table column.
12756 Calls `org-demote-subtree', `org-indent-item',
12757 or `org-table-insert-column', depending on context.
12758 See the individual commands for more information."
12759 (interactive)
12760 (cond
12761 ((org-at-table-p) (call-interactively 'org-table-insert-column))
12762 ((org-on-heading-p) (call-interactively 'org-demote-subtree))
12763 ((org-at-item-p) (call-interactively 'org-indent-item))
12764 (t (org-shiftcursor-error))))
12766 (defun org-shiftmetaup (&optional arg)
12767 "Move subtree up or kill table row.
12768 Calls `org-move-subtree-up' or `org-table-kill-row' or
12769 `org-move-item-up' depending on context. See the individual commands
12770 for more information."
12771 (interactive "P")
12772 (cond
12773 ((org-at-table-p) (call-interactively 'org-table-kill-row))
12774 ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
12775 ((org-at-item-p) (call-interactively 'org-move-item-up))
12776 (t (org-shiftcursor-error))))
12777 (defun org-shiftmetadown (&optional arg)
12778 "Move subtree down or insert table row.
12779 Calls `org-move-subtree-down' or `org-table-insert-row' or
12780 `org-move-item-down', depending on context. See the individual
12781 commands for more information."
12782 (interactive "P")
12783 (cond
12784 ((org-at-table-p) (call-interactively 'org-table-insert-row))
12785 ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
12786 ((org-at-item-p) (call-interactively 'org-move-item-down))
12787 (t (org-shiftcursor-error))))
12789 (defun org-metaleft (&optional arg)
12790 "Promote heading or move table column to left.
12791 Calls `org-do-promote' or `org-table-move-column', depending on context.
12792 With no specific context, calls the Emacs default `backward-word'.
12793 See the individual commands for more information."
12794 (interactive "P")
12795 (cond
12796 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
12797 ((or (org-on-heading-p) (org-region-active-p))
12798 (call-interactively 'org-do-promote))
12799 ((org-at-item-p) (call-interactively 'org-outdent-item))
12800 (t (call-interactively 'backward-word))))
12802 (defun org-metaright (&optional arg)
12803 "Demote subtree or move table column to right.
12804 Calls `org-do-demote' or `org-table-move-column', depending on context.
12805 With no specific context, calls the Emacs default `forward-word'.
12806 See the individual commands for more information."
12807 (interactive "P")
12808 (cond
12809 ((org-at-table-p) (call-interactively 'org-table-move-column))
12810 ((or (org-on-heading-p) (org-region-active-p))
12811 (call-interactively 'org-do-demote))
12812 ((org-at-item-p) (call-interactively 'org-indent-item))
12813 (t (call-interactively 'forward-word))))
12815 (defun org-metaup (&optional arg)
12816 "Move subtree up or move table row up.
12817 Calls `org-move-subtree-up' or `org-table-move-row' or
12818 `org-move-item-up', depending on context. See the individual commands
12819 for more information."
12820 (interactive "P")
12821 (cond
12822 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
12823 ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
12824 ((org-at-item-p) (call-interactively 'org-move-item-up))
12825 (t (transpose-lines 1) (beginning-of-line -1))))
12827 (defun org-metadown (&optional arg)
12828 "Move subtree down or move table row down.
12829 Calls `org-move-subtree-down' or `org-table-move-row' or
12830 `org-move-item-down', depending on context. See the individual
12831 commands for more information."
12832 (interactive "P")
12833 (cond
12834 ((org-at-table-p) (call-interactively 'org-table-move-row))
12835 ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
12836 ((org-at-item-p) (call-interactively 'org-move-item-down))
12837 (t (beginning-of-line 2) (transpose-lines 1) (beginning-of-line 0))))
12839 (defun org-shiftup (&optional arg)
12840 "Increase item in timestamp or increase priority of current headline.
12841 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
12842 depending on context. See the individual commands for more information."
12843 (interactive "P")
12844 (cond
12845 ((org-at-timestamp-p t)
12846 (call-interactively (if org-edit-timestamp-down-means-later
12847 'org-timestamp-down 'org-timestamp-up)))
12848 ((org-on-heading-p) (call-interactively 'org-priority-up))
12849 ((org-at-item-p) (call-interactively 'org-previous-item))
12850 ((org-clocktable-try-shift 'up arg))
12851 (t (call-interactively 'org-beginning-of-item) (beginning-of-line 1))))
12853 (defun org-shiftdown (&optional arg)
12854 "Decrease item in timestamp or decrease priority of current headline.
12855 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
12856 depending on context. See the individual commands for more information."
12857 (interactive "P")
12858 (cond
12859 ((org-at-timestamp-p t)
12860 (call-interactively (if org-edit-timestamp-down-means-later
12861 'org-timestamp-up 'org-timestamp-down)))
12862 ((org-on-heading-p) (call-interactively 'org-priority-down))
12863 ((org-clocktable-try-shift 'down arg))
12864 (t (call-interactively 'org-next-item))))
12866 (defun org-shiftright (&optional arg)
12867 "Cycle the thing at point or in the current line, depending on context.
12868 Depending on context, this does one of the following:
12870 - switch a timestamp at point one day into the future
12871 - on a headline, switch to the next TODO keyword.
12872 - on an item, switch entire list to the next bullet type
12873 - on a property line, switch to the next allowed value
12874 - on a clocktable definition line, move time block into the future"
12875 (interactive "P")
12876 (cond
12877 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
12878 ((org-on-heading-p) (org-call-with-arg 'org-todo 'right))
12879 ((org-at-item-p) (org-call-with-arg 'org-cycle-list-bullet nil))
12880 ((org-at-property-p) (call-interactively 'org-property-next-allowed-value))
12881 ((org-clocktable-try-shift 'right arg))
12882 (t (org-shiftcursor-error))))
12884 (defun org-shiftleft (&optional arg)
12885 "Cycle the thing at point or in the current line, depending on context.
12886 Depending on context, this does one of the following:
12888 - switch a timestamp at point one day into the past
12889 - on a headline, switch to the previous TODO keyword.
12890 - on an item, switch entire list to the previous bullet type
12891 - on a property line, switch to the previous allowed value
12892 - on a clocktable definition line, move time block into the past"
12893 (interactive "P")
12894 (cond
12895 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
12896 ((org-on-heading-p) (org-call-with-arg 'org-todo 'left))
12897 ((org-at-item-p) (org-call-with-arg 'org-cycle-list-bullet 'previous))
12898 ((org-at-property-p)
12899 (call-interactively 'org-property-previous-allowed-value))
12900 ((org-clocktable-try-shift 'left arg))
12901 (t (org-shiftcursor-error))))
12903 (defun org-shiftcontrolright ()
12904 "Switch to next TODO set."
12905 (interactive)
12906 (cond
12907 ((org-on-heading-p) (org-call-with-arg 'org-todo 'nextset))
12908 (t (org-shiftcursor-error))))
12910 (defun org-shiftcontrolleft ()
12911 "Switch to previous TODO set."
12912 (interactive)
12913 (cond
12914 ((org-on-heading-p) (org-call-with-arg 'org-todo 'previousset))
12915 (t (org-shiftcursor-error))))
12917 (defun org-ctrl-c-ret ()
12918 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
12919 (interactive)
12920 (cond
12921 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
12922 (t (call-interactively 'org-insert-heading))))
12924 (defun org-copy-special ()
12925 "Copy region in table or copy current subtree.
12926 Calls `org-table-copy' or `org-copy-subtree', depending on context.
12927 See the individual commands for more information."
12928 (interactive)
12929 (call-interactively
12930 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
12932 (defun org-cut-special ()
12933 "Cut region in table or cut current subtree.
12934 Calls `org-table-copy' or `org-cut-subtree', depending on context.
12935 See the individual commands for more information."
12936 (interactive)
12937 (call-interactively
12938 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
12940 (defun org-paste-special (arg)
12941 "Paste rectangular region into table, or past subtree relative to level.
12942 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
12943 See the individual commands for more information."
12944 (interactive "P")
12945 (if (org-at-table-p)
12946 (org-table-paste-rectangle)
12947 (org-paste-subtree arg)))
12949 (defun org-edit-special ()
12950 "Call a special editor for the stuff at point.
12951 When at a table, call the formula editor with `org-table-edit-formulas'.
12952 When at the first line of an src example, call `org-edit-src-code'.
12953 When in an #+include line, visit the include file. Otherwise call
12954 `ffap' to visit the file at point."
12955 (interactive)
12956 (cond
12957 ((org-at-table-p)
12958 (call-interactively 'org-table-edit-formulas))
12959 ((save-excursion
12960 (beginning-of-line 1)
12961 (looking-at "\\(?:#\\+\\(?:setupfile\\|include\\):?[ \t]+\"?\\|[ \t]*<include\\>.*?file=\"\\)\\([^\"\n>]+\\)"))
12962 (find-file (org-trim (match-string 1))))
12963 ((org-edit-src-code))
12964 ((org-edit-fixed-width-region))
12965 (t (call-interactively 'ffap))))
12967 (defun org-ctrl-c-ctrl-c (&optional arg)
12968 "Set tags in headline, or update according to changed information at point.
12970 This command does many different things, depending on context:
12972 - If the cursor is in a headline, prompt for tags and insert them
12973 into the current line, aligned to `org-tags-column'. When called
12974 with prefix arg, realign all tags in the current buffer.
12976 - If the cursor is in one of the special #+KEYWORD lines, this
12977 triggers scanning the buffer for these lines and updating the
12978 information.
12980 - If the cursor is inside a table, realign the table. This command
12981 works even if the automatic table editor has been turned off.
12983 - If the cursor is on a #+TBLFM line, re-apply the formulas to
12984 the entire table.
12986 - If the cursor is a the beginning of a dynamic block, update it.
12988 - If the cursor is inside a table created by the table.el package,
12989 activate that table.
12991 - If the current buffer is a remember buffer, close note and file
12992 it. A prefix argument of 1 files to the default location
12993 without further interaction. A prefix argument of 2 files to
12994 the currently clocking task.
12996 - If the cursor is on a <<<target>>>, update radio targets and corresponding
12997 links in this buffer.
12999 - If the cursor is on a numbered item in a plain list, renumber the
13000 ordered list.
13002 - If the cursor is on a checkbox, toggle it."
13003 (interactive "P")
13004 (let ((org-enable-table-editor t))
13005 (cond
13006 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
13007 org-occur-highlights
13008 org-latex-fragment-image-overlays)
13009 (and (boundp 'org-clock-overlays) (org-remove-clock-overlays))
13010 (org-remove-occur-highlights)
13011 (org-remove-latex-fragment-image-overlays)
13012 (message "Temporary highlights/overlays removed from current buffer"))
13013 ((and (local-variable-p 'org-finish-function (current-buffer))
13014 (fboundp org-finish-function))
13015 (funcall org-finish-function))
13016 ((org-at-property-p)
13017 (call-interactively 'org-property-action))
13018 ((org-on-target-p) (call-interactively 'org-update-radio-target-regexp))
13019 ((org-on-heading-p) (call-interactively 'org-set-tags))
13020 ((org-at-table.el-p)
13021 (require 'table)
13022 (beginning-of-line 1)
13023 (re-search-forward "|" (save-excursion (end-of-line 2) (point)))
13024 (call-interactively 'table-recognize-table))
13025 ((org-at-table-p)
13026 (org-table-maybe-eval-formula)
13027 (if arg
13028 (call-interactively 'org-table-recalculate)
13029 (org-table-maybe-recalculate-line))
13030 (call-interactively 'org-table-align))
13031 ((org-at-item-checkbox-p)
13032 (call-interactively 'org-toggle-checkbox))
13033 ((org-at-item-p)
13034 (call-interactively 'org-maybe-renumber-ordered-list))
13035 ((save-excursion (beginning-of-line 1) (looking-at "#\\+BEGIN:"))
13036 ;; Dynamic block
13037 (beginning-of-line 1)
13038 (save-excursion (org-update-dblock)))
13039 ((save-excursion (beginning-of-line 1) (looking-at "#\\+\\([A-Z]+\\)"))
13040 (cond
13041 ((equal (match-string 1) "TBLFM")
13042 ;; Recalculate the table before this line
13043 (save-excursion
13044 (beginning-of-line 1)
13045 (skip-chars-backward " \r\n\t")
13046 (if (org-at-table-p)
13047 (org-call-with-arg 'org-table-recalculate t))))
13049 ; (org-set-regexps-and-options)
13050 ; (org-restart-font-lock)
13051 (let ((org-inhibit-startup t)) (org-mode-restart))
13052 (message "Local setup has been refreshed"))))
13053 (t (error "C-c C-c can do nothing useful at this location.")))))
13055 (defun org-mode-restart ()
13056 "Restart Org-mode, to scan again for special lines.
13057 Also updates the keyword regular expressions."
13058 (interactive)
13059 (org-mode)
13060 (message "Org-mode restarted"))
13062 (defun org-kill-note-or-show-branches ()
13063 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
13064 (interactive)
13065 (if (not org-finish-function)
13066 (call-interactively 'show-branches)
13067 (let ((org-note-abort t))
13068 (funcall org-finish-function))))
13070 (defun org-return (&optional indent)
13071 "Goto next table row or insert a newline.
13072 Calls `org-table-next-row' or `newline', depending on context.
13073 See the individual commands for more information."
13074 (interactive)
13075 (cond
13076 ((bobp) (if indent (newline-and-indent) (newline)))
13077 ((and (org-at-heading-p)
13078 (looking-at
13079 (org-re "\\([ \t]+\\(:[[:alnum:]_@:]+:\\)\\)[ \t]*$")))
13080 (org-show-entry)
13081 (end-of-line 1)
13082 (newline))
13083 ((org-at-table-p)
13084 (org-table-justify-field-maybe)
13085 (call-interactively 'org-table-next-row))
13086 (t (if indent (newline-and-indent) (newline)))))
13088 (defun org-return-indent ()
13089 "Goto next table row or insert a newline and indent.
13090 Calls `org-table-next-row' or `newline-and-indent', depending on
13091 context. See the individual commands for more information."
13092 (interactive)
13093 (org-return t))
13095 (defun org-ctrl-c-star ()
13096 "Compute table, or change heading status of lines.
13097 Calls `org-table-recalculate' or `org-toggle-region-headings',
13098 depending on context. This will also turn a plain list item or a normal
13099 line into a subheading."
13100 (interactive)
13101 (cond
13102 ((org-at-table-p)
13103 (call-interactively 'org-table-recalculate))
13104 ((org-region-active-p)
13105 ;; Convert all lines in region to list items
13106 (call-interactively 'org-toggle-region-headings))
13107 ((org-on-heading-p)
13108 (org-toggle-region-headings (point-at-bol)
13109 (min (1+ (point-at-eol)) (point-max))))
13110 ((org-at-item-p)
13111 ;; Convert to heading
13112 (let ((level (save-match-data
13113 (save-excursion
13114 (condition-case nil
13115 (progn
13116 (org-back-to-heading t)
13117 (funcall outline-level))
13118 (error 0))))))
13119 (replace-match
13120 (concat (make-string (org-get-valid-level level 1) ?*) " ") t t)))
13121 (t (org-toggle-region-headings (point-at-bol)
13122 (min (1+ (point-at-eol)) (point-max))))))
13124 (defun org-ctrl-c-minus ()
13125 "Insert separator line in table or modify bullet status of line.
13126 Also turns a plain line or a region of lines into list items.
13127 Calls `org-table-insert-hline', `org-toggle-region-items', or
13128 `org-cycle-list-bullet', depending on context."
13129 (interactive)
13130 (cond
13131 ((org-at-table-p)
13132 (call-interactively 'org-table-insert-hline))
13133 ((org-on-heading-p)
13134 ;; Convert to item
13135 (save-excursion
13136 (beginning-of-line 1)
13137 (if (looking-at "\\*+ ")
13138 (replace-match (concat (make-string (- (match-end 0) (point) 1) ?\ ) "- ")))))
13139 ((org-region-active-p)
13140 ;; Convert all lines in region to list items
13141 (call-interactively 'org-toggle-region-items))
13142 ((org-in-item-p)
13143 (call-interactively 'org-cycle-list-bullet))
13144 (t (org-toggle-region-items (point-at-bol)
13145 (min (1+ (point-at-eol)) (point-max))))))
13147 (defun org-toggle-region-items (beg end)
13148 "Convert all lines in region to list items.
13149 If the first line is already an item, convert all list items in the region
13150 to normal lines."
13151 (interactive "r")
13152 (let (l2 l)
13153 (save-excursion
13154 (goto-char end)
13155 (setq l2 (org-current-line))
13156 (goto-char beg)
13157 (beginning-of-line 1)
13158 (setq l (1- (org-current-line)))
13159 (if (org-at-item-p)
13160 ;; We already have items, de-itemize
13161 (while (< (setq l (1+ l)) l2)
13162 (when (org-at-item-p)
13163 (goto-char (match-beginning 2))
13164 (delete-region (match-beginning 2) (match-end 2))
13165 (and (looking-at "[ \t]+") (replace-match "")))
13166 (beginning-of-line 2))
13167 (while (< (setq l (1+ l)) l2)
13168 (unless (org-at-item-p)
13169 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
13170 (replace-match "\\1- \\2")))
13171 (beginning-of-line 2))))))
13173 (defun org-toggle-region-headings (beg end)
13174 "Convert all lines in region to list items.
13175 If the first line is already an item, convert all list items in the region
13176 to normal lines."
13177 (interactive "r")
13178 (let (l2 l)
13179 (save-excursion
13180 (goto-char end)
13181 (setq l2 (org-current-line))
13182 (goto-char beg)
13183 (beginning-of-line 1)
13184 (setq l (1- (org-current-line)))
13185 (if (org-on-heading-p)
13186 ;; We already have headlines, de-star them
13187 (while (< (setq l (1+ l)) l2)
13188 (when (org-on-heading-p t)
13189 (and (looking-at outline-regexp) (replace-match "")))
13190 (beginning-of-line 2))
13191 (let* ((stars (save-excursion
13192 (re-search-backward org-complex-heading-regexp nil t)
13193 (or (match-string 1) "*")))
13194 (add-stars (if org-odd-levels-only "**" "*"))
13195 (rpl (concat stars add-stars " \\2")))
13196 (while (< (setq l (1+ l)) l2)
13197 (unless (org-on-heading-p)
13198 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
13199 (replace-match rpl)))
13200 (beginning-of-line 2)))))))
13202 (defun org-meta-return (&optional arg)
13203 "Insert a new heading or wrap a region in a table.
13204 Calls `org-insert-heading' or `org-table-wrap-region', depending on context.
13205 See the individual commands for more information."
13206 (interactive "P")
13207 (cond
13208 ((org-at-table-p)
13209 (call-interactively 'org-table-wrap-region))
13210 (t (call-interactively 'org-insert-heading))))
13212 ;;; Menu entries
13214 ;; Define the Org-mode menus
13215 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
13216 '("Tbl"
13217 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
13218 ["Next Field" org-cycle (org-at-table-p)]
13219 ["Previous Field" org-shifttab (org-at-table-p)]
13220 ["Next Row" org-return (org-at-table-p)]
13221 "--"
13222 ["Blank Field" org-table-blank-field (org-at-table-p)]
13223 ["Edit Field" org-table-edit-field (org-at-table-p)]
13224 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
13225 "--"
13226 ("Column"
13227 ["Move Column Left" org-metaleft (org-at-table-p)]
13228 ["Move Column Right" org-metaright (org-at-table-p)]
13229 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
13230 ["Insert Column" org-shiftmetaright (org-at-table-p)])
13231 ("Row"
13232 ["Move Row Up" org-metaup (org-at-table-p)]
13233 ["Move Row Down" org-metadown (org-at-table-p)]
13234 ["Delete Row" org-shiftmetaup (org-at-table-p)]
13235 ["Insert Row" org-shiftmetadown (org-at-table-p)]
13236 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
13237 "--"
13238 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
13239 ("Rectangle"
13240 ["Copy Rectangle" org-copy-special (org-at-table-p)]
13241 ["Cut Rectangle" org-cut-special (org-at-table-p)]
13242 ["Paste Rectangle" org-paste-special (org-at-table-p)]
13243 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
13244 "--"
13245 ("Calculate"
13246 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
13247 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
13248 ["Edit Formulas" org-edit-special (org-at-table-p)]
13249 "--"
13250 ["Recalculate line" org-table-recalculate (org-at-table-p)]
13251 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
13252 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
13253 "--"
13254 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
13255 "--"
13256 ["Sum Column/Rectangle" org-table-sum
13257 (or (org-at-table-p) (org-region-active-p))]
13258 ["Which Column?" org-table-current-column (org-at-table-p)])
13259 ["Debug Formulas"
13260 org-table-toggle-formula-debugger
13261 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
13262 ["Show Col/Row Numbers"
13263 org-table-toggle-coordinate-overlays
13264 :style toggle
13265 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
13266 "--"
13267 ["Create" org-table-create (and (not (org-at-table-p))
13268 org-enable-table-editor)]
13269 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
13270 ["Import from File" org-table-import (not (org-at-table-p))]
13271 ["Export to File" org-table-export (org-at-table-p)]
13272 "--"
13273 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
13275 (easy-menu-define org-org-menu org-mode-map "Org menu"
13276 '("Org"
13277 ("Show/Hide"
13278 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
13279 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
13280 ["Sparse Tree..." org-sparse-tree t]
13281 ["Reveal Context" org-reveal t]
13282 ["Show All" show-all t]
13283 "--"
13284 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
13285 "--"
13286 ["New Heading" org-insert-heading t]
13287 ("Navigate Headings"
13288 ["Up" outline-up-heading t]
13289 ["Next" outline-next-visible-heading t]
13290 ["Previous" outline-previous-visible-heading t]
13291 ["Next Same Level" outline-forward-same-level t]
13292 ["Previous Same Level" outline-backward-same-level t]
13293 "--"
13294 ["Jump" org-goto t])
13295 ("Edit Structure"
13296 ["Move Subtree Up" org-shiftmetaup (not (org-at-table-p))]
13297 ["Move Subtree Down" org-shiftmetadown (not (org-at-table-p))]
13298 "--"
13299 ["Copy Subtree" org-copy-special (not (org-at-table-p))]
13300 ["Cut Subtree" org-cut-special (not (org-at-table-p))]
13301 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
13302 "--"
13303 ["Promote Heading" org-metaleft (not (org-at-table-p))]
13304 ["Promote Subtree" org-shiftmetaleft (not (org-at-table-p))]
13305 ["Demote Heading" org-metaright (not (org-at-table-p))]
13306 ["Demote Subtree" org-shiftmetaright (not (org-at-table-p))]
13307 "--"
13308 ["Sort Region/Children" org-sort (not (org-at-table-p))]
13309 "--"
13310 ["Convert to odd levels" org-convert-to-odd-levels t]
13311 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
13312 ("Editing"
13313 ["Emphasis..." org-emphasize t]
13314 ["Edit Source Example" org-edit-special t])
13315 ("Archive"
13316 ["Toggle ARCHIVE tag" org-toggle-archive-tag t]
13317 ; ["Check and Tag Children" (org-toggle-archive-tag (4))
13318 ; :active t :keys "C-u C-c C-x C-a"]
13319 ["Sparse trees open ARCHIVE trees"
13320 (setq org-sparse-tree-open-archived-trees
13321 (not org-sparse-tree-open-archived-trees))
13322 :style toggle :selected org-sparse-tree-open-archived-trees]
13323 ["Cycling opens ARCHIVE trees"
13324 (setq org-cycle-open-archived-trees (not org-cycle-open-archived-trees))
13325 :style toggle :selected org-cycle-open-archived-trees]
13326 "--"
13327 ["Move subtree to archive sibling" org-archive-to-archive-sibling t]
13328 ["Move Subtree to Archive" org-advertized-archive-subtree t]
13329 ; ["Check and Move Children" (org-archive-subtree '(4))
13330 ; :active t :keys "C-u C-c C-x C-s"]
13332 "--"
13333 ("TODO Lists"
13334 ["TODO/DONE/-" org-todo t]
13335 ("Select keyword"
13336 ["Next keyword" org-shiftright (org-on-heading-p)]
13337 ["Previous keyword" org-shiftleft (org-on-heading-p)]
13338 ["Complete Keyword" org-complete (assq :todo-keyword (org-context))]
13339 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))]
13340 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))])
13341 ["Show TODO Tree" org-show-todo-tree t]
13342 ["Global TODO list" org-todo-list t]
13343 "--"
13344 ["Set Priority" org-priority t]
13345 ["Priority Up" org-shiftup t]
13346 ["Priority Down" org-shiftdown t])
13347 ("TAGS and Properties"
13348 ["Set Tags" org-set-tags-command t]
13349 ["Change tag in region" 'org-change-tag-in-region (org-region-active-p)]
13350 "--"
13351 ["Set property" 'org-set-property t]
13352 ["Column view of properties" org-columns t]
13353 ["Insert Column View DBlock" org-insert-columns-dblock t])
13354 ("Dates and Scheduling"
13355 ["Timestamp" org-time-stamp t]
13356 ["Timestamp (inactive)" org-time-stamp-inactive t]
13357 ("Change Date"
13358 ["1 Day Later" org-shiftright t]
13359 ["1 Day Earlier" org-shiftleft t]
13360 ["1 ... Later" org-shiftup t]
13361 ["1 ... Earlier" org-shiftdown t])
13362 ["Compute Time Range" org-evaluate-time-range t]
13363 ["Schedule Item" org-schedule t]
13364 ["Deadline" org-deadline t]
13365 "--"
13366 ["Custom time format" org-toggle-time-stamp-overlays
13367 :style radio :selected org-display-custom-times]
13368 "--"
13369 ["Goto Calendar" org-goto-calendar t]
13370 ["Date from Calendar" org-date-from-calendar t]
13371 "--"
13372 ["Start/restart timer" org-timer-start t]
13373 ["Insert timer string" org-timer t]
13374 ["Insert timer item" org-timer-item t])
13375 ("Logging work"
13376 ["Clock in" org-clock-in t]
13377 ["Clock out" org-clock-out t]
13378 ["Clock cancel" org-clock-cancel t]
13379 ["Goto running clock" org-clock-goto t]
13380 ["Display times" org-clock-display t]
13381 ["Create clock table" org-clock-report t]
13382 "--"
13383 ["Record DONE time"
13384 (progn (setq org-log-done (not org-log-done))
13385 (message "Switching to %s will %s record a timestamp"
13386 (car org-done-keywords)
13387 (if org-log-done "automatically" "not")))
13388 :style toggle :selected org-log-done])
13389 "--"
13390 ["Agenda Command..." org-agenda t]
13391 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
13392 ("File List for Agenda")
13393 ("Special views current file"
13394 ["TODO Tree" org-show-todo-tree t]
13395 ["Check Deadlines" org-check-deadlines t]
13396 ["Timeline" org-timeline t]
13397 ["Tags Tree" org-tags-sparse-tree t])
13398 "--"
13399 ("Hyperlinks"
13400 ["Store Link (Global)" org-store-link t]
13401 ["Insert Link" org-insert-link t]
13402 ["Follow Link" org-open-at-point t]
13403 "--"
13404 ["Next link" org-next-link t]
13405 ["Previous link" org-previous-link t]
13406 "--"
13407 ["Descriptive Links"
13408 (progn (org-add-to-invisibility-spec '(org-link)) (org-restart-font-lock))
13409 :style radio
13410 :selected (member '(org-link) buffer-invisibility-spec)]
13411 ["Literal Links"
13412 (progn
13413 (org-remove-from-invisibility-spec '(org-link)) (org-restart-font-lock))
13414 :style radio
13415 :selected (not (member '(org-link) buffer-invisibility-spec))])
13416 "--"
13417 ["Export/Publish..." org-export t]
13418 ("LaTeX"
13419 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
13420 :selected org-cdlatex-mode]
13421 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
13422 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
13423 ["Modify math symbol" org-cdlatex-math-modify
13424 (org-inside-LaTeX-fragment-p)]
13425 ["Export LaTeX fragments as images"
13426 (if (featurep 'org-exp)
13427 (setq org-export-with-LaTeX-fragments
13428 (not org-export-with-LaTeX-fragments))
13429 (require 'org-exp))
13430 :style toggle :selected (and (boundp 'org-export-with-LaTeX-fragments)
13431 org-export-with-LaTeX-fragments)])
13432 "--"
13433 ("Documentation"
13434 ["Show Version" org-version t]
13435 ["Info Documentation" org-info t])
13436 ("Customize"
13437 ["Browse Org Group" org-customize t]
13438 "--"
13439 ["Expand This Menu" org-create-customize-menu
13440 (fboundp 'customize-menu-create)])
13441 "--"
13442 ["Refresh setup" org-mode-restart t]
13445 (defun org-info (&optional node)
13446 "Read documentation for Org-mode in the info system.
13447 With optional NODE, go directly to that node."
13448 (interactive)
13449 (info (format "(org)%s" (or node ""))))
13451 (defun org-install-agenda-files-menu ()
13452 (let ((bl (buffer-list)))
13453 (save-excursion
13454 (while bl
13455 (set-buffer (pop bl))
13456 (if (org-mode-p) (setq bl nil)))
13457 (when (org-mode-p)
13458 (easy-menu-change
13459 '("Org") "File List for Agenda"
13460 (append
13461 (list
13462 ["Edit File List" (org-edit-agenda-file-list) t]
13463 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
13464 ["Remove Current File from List" org-remove-file t]
13465 ["Cycle through agenda files" org-cycle-agenda-files t]
13466 ["Occur in all agenda files" org-occur-in-agenda-files t]
13467 "--")
13468 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
13470 ;;;; Documentation
13472 ;;;###autoload
13473 (defun org-require-autoloaded-modules ()
13474 (interactive)
13475 (mapc 'require
13476 '(org-agenda org-archive org-clock org-colview
13477 org-exp org-id org-export-latex org-publish
13478 org-remember org-table)))
13480 ;;;###autoload
13481 (defun org-customize ()
13482 "Call the customize function with org as argument."
13483 (interactive)
13484 (org-load-modules-maybe)
13485 (org-require-autoloaded-modules)
13486 (customize-browse 'org))
13488 (defun org-create-customize-menu ()
13489 "Create a full customization menu for Org-mode, insert it into the menu."
13490 (interactive)
13491 (org-load-modules-maybe)
13492 (org-require-autoloaded-modules)
13493 (if (fboundp 'customize-menu-create)
13494 (progn
13495 (easy-menu-change
13496 '("Org") "Customize"
13497 `(["Browse Org group" org-customize t]
13498 "--"
13499 ,(customize-menu-create 'org)
13500 ["Set" Custom-set t]
13501 ["Save" Custom-save t]
13502 ["Reset to Current" Custom-reset-current t]
13503 ["Reset to Saved" Custom-reset-saved t]
13504 ["Reset to Standard Settings" Custom-reset-standard t]))
13505 (message "\"Org\"-menu now contains full customization menu"))
13506 (error "Cannot expand menu (outdated version of cus-edit.el)")))
13508 ;;;; Miscellaneous stuff
13510 ;;; Generally useful functions
13512 (defun org-find-text-property-in-string (prop s)
13513 "Return the first non-nil value of property PROP in string S."
13514 (or (get-text-property 0 prop s)
13515 (get-text-property (or (next-single-property-change 0 prop s) 0)
13516 prop s)))
13518 (defun org-display-warning (message) ;; Copied from Emacs-Muse
13519 "Display the given MESSAGE as a warning."
13520 (if (fboundp 'display-warning)
13521 (display-warning 'org message
13522 (if (featurep 'xemacs)
13523 'warning
13524 :warning))
13525 (let ((buf (get-buffer-create "*Org warnings*")))
13526 (with-current-buffer buf
13527 (goto-char (point-max))
13528 (insert "Warning (Org): " message)
13529 (unless (bolp)
13530 (newline)))
13531 (display-buffer buf)
13532 (sit-for 0))))
13534 (defun org-goto-marker-or-bmk (marker &optional bookmark)
13535 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
13536 (if (and marker (marker-buffer marker)
13537 (buffer-live-p (marker-buffer marker)))
13538 (progn
13539 (switch-to-buffer (marker-buffer marker))
13540 (if (or (> marker (point-max)) (< marker (point-min)))
13541 (widen))
13542 (goto-char marker))
13543 (if bookmark
13544 (bookmark-jump bookmark)
13545 (error "Cannot find location"))))
13547 (defun org-quote-csv-field (s)
13548 "Quote field for inclusion in CSV material."
13549 (if (string-match "[\",]" s)
13550 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
13553 (defun org-plist-delete (plist property)
13554 "Delete PROPERTY from PLIST.
13555 This is in contrast to merely setting it to 0."
13556 (let (p)
13557 (while plist
13558 (if (not (eq property (car plist)))
13559 (setq p (plist-put p (car plist) (nth 1 plist))))
13560 (setq plist (cddr plist)))
13563 (defun org-force-self-insert (N)
13564 "Needed to enforce self-insert under remapping."
13565 (interactive "p")
13566 (self-insert-command N))
13568 (defun org-string-width (s)
13569 "Compute width of string, ignoring invisible characters.
13570 This ignores character with invisibility property `org-link', and also
13571 characters with property `org-cwidth', because these will become invisible
13572 upon the next fontification round."
13573 (let (b l)
13574 (when (or (eq t buffer-invisibility-spec)
13575 (assq 'org-link buffer-invisibility-spec))
13576 (while (setq b (text-property-any 0 (length s)
13577 'invisible 'org-link s))
13578 (setq s (concat (substring s 0 b)
13579 (substring s (or (next-single-property-change
13580 b 'invisible s) (length s)))))))
13581 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
13582 (setq s (concat (substring s 0 b)
13583 (substring s (or (next-single-property-change
13584 b 'org-cwidth s) (length s))))))
13585 (setq l (string-width s) b -1)
13586 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
13587 (setq l (- l (get-text-property b 'org-dwidth-n s))))
13590 (defun org-get-indentation (&optional line)
13591 "Get the indentation of the current line, interpreting tabs.
13592 When LINE is given, assume it represents a line and compute its indentation."
13593 (if line
13594 (if (string-match "^ *" (org-remove-tabs line))
13595 (match-end 0))
13596 (save-excursion
13597 (beginning-of-line 1)
13598 (skip-chars-forward " \t")
13599 (current-column))))
13601 (defun org-remove-tabs (s &optional width)
13602 "Replace tabulators in S with spaces.
13603 Assumes that s is a single line, starting in column 0."
13604 (setq width (or width tab-width))
13605 (while (string-match "\t" s)
13606 (setq s (replace-match
13607 (make-string
13608 (- (* width (/ (+ (match-beginning 0) width) width))
13609 (match-beginning 0)) ?\ )
13610 t t s)))
13613 (defun org-fix-indentation (line ind)
13614 "Fix indentation in LINE.
13615 IND is a cons cell with target and minimum indentation.
13616 If the current indentation in LINE is smaller than the minimum,
13617 leave it alone. If it is larger than ind, set it to the target."
13618 (let* ((l (org-remove-tabs line))
13619 (i (org-get-indentation l))
13620 (i1 (car ind)) (i2 (cdr ind)))
13621 (if (>= i i2) (setq l (substring line i2)))
13622 (if (> i1 0)
13623 (concat (make-string i1 ?\ ) l)
13624 l)))
13626 (defun org-base-buffer (buffer)
13627 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
13628 (if (not buffer)
13629 buffer
13630 (or (buffer-base-buffer buffer)
13631 buffer)))
13633 (defun org-trim (s)
13634 "Remove whitespace at beginning and end of string."
13635 (if (string-match "\\`[ \t\n\r]+" s) (setq s (replace-match "" t t s)))
13636 (if (string-match "[ \t\n\r]+\\'" s) (setq s (replace-match "" t t s)))
13639 (defun org-wrap (string &optional width lines)
13640 "Wrap string to either a number of lines, or a width in characters.
13641 If WIDTH is non-nil, the string is wrapped to that width, however many lines
13642 that costs. If there is a word longer than WIDTH, the text is actually
13643 wrapped to the length of that word.
13644 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
13645 many lines, whatever width that takes.
13646 The return value is a list of lines, without newlines at the end."
13647 (let* ((words (org-split-string string "[ \t\n]+"))
13648 (maxword (apply 'max (mapcar 'org-string-width words)))
13649 w ll)
13650 (cond (width
13651 (org-do-wrap words (max maxword width)))
13652 (lines
13653 (setq w maxword)
13654 (setq ll (org-do-wrap words maxword))
13655 (if (<= (length ll) lines)
13657 (setq ll words)
13658 (while (> (length ll) lines)
13659 (setq w (1+ w))
13660 (setq ll (org-do-wrap words w)))
13661 ll))
13662 (t (error "Cannot wrap this")))))
13664 (defun org-do-wrap (words width)
13665 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
13666 (let (lines line)
13667 (while words
13668 (setq line (pop words))
13669 (while (and words (< (+ (length line) (length (car words))) width))
13670 (setq line (concat line " " (pop words))))
13671 (setq lines (push line lines)))
13672 (nreverse lines)))
13674 (defun org-split-string (string &optional separators)
13675 "Splits STRING into substrings at SEPARATORS.
13676 No empty strings are returned if there are matches at the beginning
13677 and end of string."
13678 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
13679 (start 0)
13680 notfirst
13681 (list nil))
13682 (while (and (string-match rexp string
13683 (if (and notfirst
13684 (= start (match-beginning 0))
13685 (< start (length string)))
13686 (1+ start) start))
13687 (< (match-beginning 0) (length string)))
13688 (setq notfirst t)
13689 (or (eq (match-beginning 0) 0)
13690 (and (eq (match-beginning 0) (match-end 0))
13691 (eq (match-beginning 0) start))
13692 (setq list
13693 (cons (substring string start (match-beginning 0))
13694 list)))
13695 (setq start (match-end 0)))
13696 (or (eq start (length string))
13697 (setq list
13698 (cons (substring string start)
13699 list)))
13700 (nreverse list)))
13702 (defun org-context ()
13703 "Return a list of contexts of the current cursor position.
13704 If several contexts apply, all are returned.
13705 Each context entry is a list with a symbol naming the context, and
13706 two positions indicating start and end of the context. Possible
13707 contexts are:
13709 :headline anywhere in a headline
13710 :headline-stars on the leading stars in a headline
13711 :todo-keyword on a TODO keyword (including DONE) in a headline
13712 :tags on the TAGS in a headline
13713 :priority on the priority cookie in a headline
13714 :item on the first line of a plain list item
13715 :item-bullet on the bullet/number of a plain list item
13716 :checkbox on the checkbox in a plain list item
13717 :table in an org-mode table
13718 :table-special on a special filed in a table
13719 :table-table in a table.el table
13720 :link on a hyperlink
13721 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE,COMMENT, QUOTE.
13722 :target on a <<target>>
13723 :radio-target on a <<<radio-target>>>
13724 :latex-fragment on a LaTeX fragment
13725 :latex-preview on a LaTeX fragment with overlayed preview image
13727 This function expects the position to be visible because it uses font-lock
13728 faces as a help to recognize the following contexts: :table-special, :link,
13729 and :keyword."
13730 (let* ((f (get-text-property (point) 'face))
13731 (faces (if (listp f) f (list f)))
13732 (p (point)) clist o)
13733 ;; First the large context
13734 (cond
13735 ((org-on-heading-p t)
13736 (push (list :headline (point-at-bol) (point-at-eol)) clist)
13737 (when (progn
13738 (beginning-of-line 1)
13739 (looking-at org-todo-line-tags-regexp))
13740 (push (org-point-in-group p 1 :headline-stars) clist)
13741 (push (org-point-in-group p 2 :todo-keyword) clist)
13742 (push (org-point-in-group p 4 :tags) clist))
13743 (goto-char p)
13744 (skip-chars-backward "^[\n\r \t") (or (eobp) (backward-char 1))
13745 (if (looking-at "\\[#[A-Z0-9]\\]")
13746 (push (org-point-in-group p 0 :priority) clist)))
13748 ((org-at-item-p)
13749 (push (org-point-in-group p 2 :item-bullet) clist)
13750 (push (list :item (point-at-bol)
13751 (save-excursion (org-end-of-item) (point)))
13752 clist)
13753 (and (org-at-item-checkbox-p)
13754 (push (org-point-in-group p 0 :checkbox) clist)))
13756 ((org-at-table-p)
13757 (push (list :table (org-table-begin) (org-table-end)) clist)
13758 (if (memq 'org-formula faces)
13759 (push (list :table-special
13760 (previous-single-property-change p 'face)
13761 (next-single-property-change p 'face)) clist)))
13762 ((org-at-table-p 'any)
13763 (push (list :table-table) clist)))
13764 (goto-char p)
13766 ;; Now the small context
13767 (cond
13768 ((org-at-timestamp-p)
13769 (push (org-point-in-group p 0 :timestamp) clist))
13770 ((memq 'org-link faces)
13771 (push (list :link
13772 (previous-single-property-change p 'face)
13773 (next-single-property-change p 'face)) clist))
13774 ((memq 'org-special-keyword faces)
13775 (push (list :keyword
13776 (previous-single-property-change p 'face)
13777 (next-single-property-change p 'face)) clist))
13778 ((org-on-target-p)
13779 (push (org-point-in-group p 0 :target) clist)
13780 (goto-char (1- (match-beginning 0)))
13781 (if (looking-at org-radio-target-regexp)
13782 (push (org-point-in-group p 0 :radio-target) clist))
13783 (goto-char p))
13784 ((setq o (car (delq nil
13785 (mapcar
13786 (lambda (x)
13787 (if (memq x org-latex-fragment-image-overlays) x))
13788 (org-overlays-at (point))))))
13789 (push (list :latex-fragment
13790 (org-overlay-start o) (org-overlay-end o)) clist)
13791 (push (list :latex-preview
13792 (org-overlay-start o) (org-overlay-end o)) clist))
13793 ((org-inside-LaTeX-fragment-p)
13794 ;; FIXME: positions wrong.
13795 (push (list :latex-fragment (point) (point)) clist)))
13797 (setq clist (nreverse (delq nil clist)))
13798 clist))
13800 ;; FIXME: Compare with at-regexp-p Do we need both?
13801 (defun org-in-regexp (re &optional nlines visually)
13802 "Check if point is inside a match of regexp.
13803 Normally only the current line is checked, but you can include NLINES extra
13804 lines both before and after point into the search.
13805 If VISUALLY is set, require that the cursor is not after the match but
13806 really on, so that the block visually is on the match."
13807 (catch 'exit
13808 (let ((pos (point))
13809 (eol (point-at-eol (+ 1 (or nlines 0))))
13810 (inc (if visually 1 0)))
13811 (save-excursion
13812 (beginning-of-line (- 1 (or nlines 0)))
13813 (while (re-search-forward re eol t)
13814 (if (and (<= (match-beginning 0) pos)
13815 (>= (+ inc (match-end 0)) pos))
13816 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
13818 (defun org-at-regexp-p (regexp)
13819 "Is point inside a match of REGEXP in the current line?"
13820 (catch 'exit
13821 (save-excursion
13822 (let ((pos (point)) (end (point-at-eol)))
13823 (beginning-of-line 1)
13824 (while (re-search-forward regexp end t)
13825 (if (and (<= (match-beginning 0) pos)
13826 (>= (match-end 0) pos))
13827 (throw 'exit t)))
13828 nil))))
13830 (defun org-occur-in-agenda-files (regexp &optional nlines)
13831 "Call `multi-occur' with buffers for all agenda files."
13832 (interactive "sOrg-files matching: \np")
13833 (let* ((files (org-agenda-files))
13834 (tnames (mapcar 'file-truename files))
13835 (extra org-agenda-text-search-extra-files)
13837 (when (eq (car extra) 'agenda-archives)
13838 (setq extra (cdr extra))
13839 (setq files (org-add-archive-files files)))
13840 (while (setq f (pop extra))
13841 (unless (member (file-truename f) tnames)
13842 (add-to-list 'files f 'append)
13843 (add-to-list 'tnames (file-truename f) 'append)))
13844 (multi-occur
13845 (mapcar (lambda (x) (or (get-file-buffer x) (find-file-noselect x))) files)
13846 regexp)))
13848 (if (boundp 'occur-mode-find-occurrence-hook)
13849 ;; Emacs 23
13850 (add-hook 'occur-mode-find-occurrence-hook
13851 (lambda ()
13852 (when (org-mode-p)
13853 (org-reveal))))
13854 ;; Emacs 22
13855 (defadvice occur-mode-goto-occurrence
13856 (after org-occur-reveal activate)
13857 (and (org-mode-p) (org-reveal)))
13858 (defadvice occur-mode-goto-occurrence-other-window
13859 (after org-occur-reveal activate)
13860 (and (org-mode-p) (org-reveal)))
13861 (defadvice occur-mode-display-occurrence
13862 (after org-occur-reveal activate)
13863 (when (org-mode-p)
13864 (let ((pos (occur-mode-find-occurrence)))
13865 (with-current-buffer (marker-buffer pos)
13866 (save-excursion
13867 (goto-char pos)
13868 (org-reveal)))))))
13870 (defun org-uniquify (list)
13871 "Remove duplicate elements from LIST."
13872 (let (res)
13873 (mapc (lambda (x) (add-to-list 'res x 'append)) list)
13874 res))
13876 (defun org-delete-all (elts list)
13877 "Remove all elements in ELTS from LIST."
13878 (while elts
13879 (setq list (delete (pop elts) list)))
13880 list)
13882 (defun org-back-over-empty-lines ()
13883 "Move backwards over whitespace, to the beginning of the first empty line.
13884 Returns the number of empty lines passed."
13885 (let ((pos (point)))
13886 (skip-chars-backward " \t\n\r")
13887 (beginning-of-line 2)
13888 (goto-char (min (point) pos))
13889 (count-lines (point) pos)))
13891 (defun org-skip-whitespace ()
13892 (skip-chars-forward " \t\n\r"))
13894 (defun org-point-in-group (point group &optional context)
13895 "Check if POINT is in match-group GROUP.
13896 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
13897 match. If the match group does ot exist or point is not inside it,
13898 return nil."
13899 (and (match-beginning group)
13900 (>= point (match-beginning group))
13901 (<= point (match-end group))
13902 (if context
13903 (list context (match-beginning group) (match-end group))
13904 t)))
13906 (defun org-switch-to-buffer-other-window (&rest args)
13907 "Switch to buffer in a second window on the current frame.
13908 In particular, do not allow pop-up frames."
13909 (let (pop-up-frames special-display-buffer-names special-display-regexps
13910 special-display-function)
13911 (apply 'switch-to-buffer-other-window args)))
13913 (defun org-combine-plists (&rest plists)
13914 "Create a single property list from all plists in PLISTS.
13915 The process starts by copying the first list, and then setting properties
13916 from the other lists. Settings in the last list are the most significant
13917 ones and overrule settings in the other lists."
13918 (let ((rtn (copy-sequence (pop plists)))
13919 p v ls)
13920 (while plists
13921 (setq ls (pop plists))
13922 (while ls
13923 (setq p (pop ls) v (pop ls))
13924 (setq rtn (plist-put rtn p v))))
13925 rtn))
13927 (defun org-move-line-down (arg)
13928 "Move the current line down. With prefix argument, move it past ARG lines."
13929 (interactive "p")
13930 (let ((col (current-column))
13931 beg end pos)
13932 (beginning-of-line 1) (setq beg (point))
13933 (beginning-of-line 2) (setq end (point))
13934 (beginning-of-line (+ 1 arg))
13935 (setq pos (move-marker (make-marker) (point)))
13936 (insert (delete-and-extract-region beg end))
13937 (goto-char pos)
13938 (org-move-to-column col)))
13940 (defun org-move-line-up (arg)
13941 "Move the current line up. With prefix argument, move it past ARG lines."
13942 (interactive "p")
13943 (let ((col (current-column))
13944 beg end pos)
13945 (beginning-of-line 1) (setq beg (point))
13946 (beginning-of-line 2) (setq end (point))
13947 (beginning-of-line (- arg))
13948 (setq pos (move-marker (make-marker) (point)))
13949 (insert (delete-and-extract-region beg end))
13950 (goto-char pos)
13951 (org-move-to-column col)))
13953 (defun org-replace-escapes (string table)
13954 "Replace %-escapes in STRING with values in TABLE.
13955 TABLE is an association list with keys like \"%a\" and string values.
13956 The sequences in STRING may contain normal field width and padding information,
13957 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
13958 so values can contain further %-escapes if they are define later in TABLE."
13959 (let ((case-fold-search nil)
13960 e re rpl)
13961 (while (setq e (pop table))
13962 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
13963 (while (string-match re string)
13964 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
13965 (cdr e)))
13966 (setq string (replace-match rpl t t string))))
13967 string))
13970 (defun org-sublist (list start end)
13971 "Return a section of LIST, from START to END.
13972 Counting starts at 1."
13973 (let (rtn (c start))
13974 (setq list (nthcdr (1- start) list))
13975 (while (and list (<= c end))
13976 (push (pop list) rtn)
13977 (setq c (1+ c)))
13978 (nreverse rtn)))
13980 (defun org-find-base-buffer-visiting (file)
13981 "Like `find-buffer-visiting' but alway return the base buffer and
13982 not an indirect buffer."
13983 (let ((buf (find-buffer-visiting file)))
13984 (if buf
13985 (or (buffer-base-buffer buf) buf)
13986 nil)))
13988 (defun org-image-file-name-regexp ()
13989 "Return regexp matching the file names of images."
13990 (if (fboundp 'image-file-name-regexp)
13991 (image-file-name-regexp)
13992 (let ((image-file-name-extensions
13993 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
13994 "xbm" "xpm" "pbm" "pgm" "ppm")))
13995 (concat "\\."
13996 (regexp-opt (nconc (mapcar 'upcase
13997 image-file-name-extensions)
13998 image-file-name-extensions)
14000 "\\'"))))
14002 (defun org-file-image-p (file)
14003 "Return non-nil if FILE is an image."
14004 (save-match-data
14005 (string-match (org-image-file-name-regexp) file)))
14007 (defun org-get-cursor-date ()
14008 "Return the date at cursor in as a time.
14009 This works in the calendar and in the agenda, anywhere else it just
14010 returns the current time."
14011 (let (date day defd)
14012 (cond
14013 ((eq major-mode 'calendar-mode)
14014 (setq date (calendar-cursor-to-date)
14015 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
14016 ((eq major-mode 'org-agenda-mode)
14017 (setq day (get-text-property (point) 'day))
14018 (if day
14019 (setq date (calendar-gregorian-from-absolute day)
14020 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date)
14021 (nth 2 date))))))
14022 (or defd (current-time))))
14024 (defvar org-agenda-action-marker (make-marker)
14025 "Marker pointing to the entry for the next agenda action.")
14027 (defun org-mark-entry-for-agenda-action ()
14028 "Mark the current entry as target of an agenda action.
14029 Agenda actions are actions executed from the agenda with the key `k',
14030 which make use of the date at the cursor."
14031 (interactive)
14032 (move-marker org-agenda-action-marker
14033 (save-excursion (org-back-to-heading t) (point))
14034 (current-buffer))
14035 (message
14036 "Entry marked for action; press `k' at desired date in agenda or calendar"))
14038 ;;; Paragraph filling stuff.
14039 ;; We want this to be just right, so use the full arsenal.
14041 (defun org-indent-line-function ()
14042 "Indent line like previous, but further if previous was headline or item."
14043 (interactive)
14044 (let* ((pos (point))
14045 (itemp (org-at-item-p))
14046 column bpos bcol tpos tcol bullet btype bullet-type)
14047 ;; Find the previous relevant line
14048 (beginning-of-line 1)
14049 (cond
14050 ((looking-at "#") (setq column 0))
14051 ((looking-at "\\*+ ") (setq column 0))
14053 (beginning-of-line 0)
14054 (while (and (not (bobp)) (looking-at "[ \t]*[\n:#|]"))
14055 (beginning-of-line 0))
14056 (cond
14057 ((looking-at "\\*+[ \t]+")
14058 (if (not org-adapt-indentation)
14059 (setq column 0)
14060 (goto-char (match-end 0))
14061 (setq column (current-column))))
14062 ((org-in-item-p)
14063 (org-beginning-of-item)
14064 (looking-at "[ \t]*\\(\\S-+\\)[ \t]*\\(\\[[- X]\\][ \t]*\\|.*? :: \\)?")
14065 (setq bpos (match-beginning 1) tpos (match-end 0)
14066 bcol (progn (goto-char bpos) (current-column))
14067 tcol (progn (goto-char tpos) (current-column))
14068 bullet (match-string 1)
14069 bullet-type (if (string-match "[0-9]" bullet) "n" bullet))
14070 (if (> tcol (+ bcol org-description-max-indent))
14071 (setq tcol (+ bcol 5)))
14072 (if (not itemp)
14073 (setq column tcol)
14074 (goto-char pos)
14075 (beginning-of-line 1)
14076 (if (looking-at "\\S-")
14077 (progn
14078 (looking-at "[ \t]*\\(\\S-+\\)[ \t]*")
14079 (setq bullet (match-string 1)
14080 btype (if (string-match "[0-9]" bullet) "n" bullet))
14081 (setq column (if (equal btype bullet-type) bcol tcol)))
14082 (setq column (org-get-indentation)))))
14083 (t (setq column (org-get-indentation))))))
14084 (goto-char pos)
14085 (if (<= (current-column) (current-indentation))
14086 (org-indent-line-to column)
14087 (save-excursion (org-indent-line-to column)))
14088 (setq column (current-column))
14089 (beginning-of-line 1)
14090 (if (looking-at
14091 "\\([ \t]+\\)\\(:[-_0-9a-zA-Z]+:\\)[ \t]*\\(\\S-.*\\(\\S-\\|$\\)\\)")
14092 (replace-match (concat "\\1" (format org-property-format
14093 (match-string 2) (match-string 3)))
14094 t nil))
14095 (org-move-to-column column)))
14097 (defun org-set-autofill-regexps ()
14098 (interactive)
14099 ;; In the paragraph separator we include headlines, because filling
14100 ;; text in a line directly attached to a headline would otherwise
14101 ;; fill the headline as well.
14102 (org-set-local 'comment-start-skip "^#+[ \t]*")
14103 (org-set-local 'paragraph-separate "\f\\|\\*+ \\|[ ]*$\\|[ \t]*[:|]")
14104 ;; The paragraph starter includes hand-formatted lists.
14105 (org-set-local 'paragraph-start
14106 "\f\\|[ ]*$\\|\\*+ \\|\f\\|[ \t]*\\([-+*][ \t]+\\|[0-9]+[.)][ \t]+\\)\\|[ \t]*[:|]")
14107 ;; Inhibit auto-fill for headers, tables and fixed-width lines.
14108 ;; But only if the user has not turned off tables or fixed-width regions
14109 (org-set-local
14110 'auto-fill-inhibit-regexp
14111 (concat "\\*+ \\|#\\+"
14112 "\\|[ \t]*" org-keyword-time-regexp
14113 (if (or org-enable-table-editor org-enable-fixed-width-editor)
14114 (concat
14115 "\\|[ \t]*["
14116 (if org-enable-table-editor "|" "")
14117 (if org-enable-fixed-width-editor ":" "")
14118 "]"))))
14119 ;; We use our own fill-paragraph function, to make sure that tables
14120 ;; and fixed-width regions are not wrapped. That function will pass
14121 ;; through to `fill-paragraph' when appropriate.
14122 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
14123 ; Adaptive filling: To get full control, first make sure that
14124 ;; `adaptive-fill-regexp' never matches. Then install our own matcher.
14125 (org-set-local 'adaptive-fill-regexp "\000")
14126 (org-set-local 'adaptive-fill-function
14127 'org-adaptive-fill-function)
14128 (org-set-local
14129 'align-mode-rules-list
14130 '((org-in-buffer-settings
14131 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
14132 (modes . '(org-mode))))))
14134 (defun org-fill-paragraph (&optional justify)
14135 "Re-align a table, pass through to fill-paragraph if no table."
14136 (let ((table-p (org-at-table-p))
14137 (table.el-p (org-at-table.el-p)))
14138 (cond ((and (equal (char-after (point-at-bol)) ?*)
14139 (save-excursion (goto-char (point-at-bol))
14140 (looking-at outline-regexp)))
14141 t) ; skip headlines
14142 (table.el-p t) ; skip table.el tables
14143 (table-p (org-table-align) t) ; align org-mode tables
14144 (t nil)))) ; call paragraph-fill
14146 ;; For reference, this is the default value of adaptive-fill-regexp
14147 ;; "[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"
14149 (defun org-adaptive-fill-function ()
14150 "Return a fill prefix for org-mode files.
14151 In particular, this makes sure hanging paragraphs for hand-formatted lists
14152 work correctly."
14153 (cond ((looking-at "#[ \t]+")
14154 (match-string 0))
14155 ((looking-at "[ \t]*\\([-*+] .*? :: \\)")
14156 (save-excursion
14157 (if (> (match-end 1) (+ (match-beginning 1)
14158 org-description-max-indent))
14159 (goto-char (+ (match-beginning 1) 5))
14160 (goto-char (match-end 0)))
14161 (make-string (current-column) ?\ )))
14162 ((looking-at "[ \t]*\\([-*+] \\|[0-9]+[.)] ?\\)?")
14163 (save-excursion
14164 (goto-char (match-end 0))
14165 (make-string (current-column) ?\ )))
14166 (t nil)))
14168 ;;; Other stuff.
14170 (defun org-toggle-fixed-width-section (arg)
14171 "Toggle the fixed-width export.
14172 If there is no active region, the QUOTE keyword at the current headline is
14173 inserted or removed. When present, it causes the text between this headline
14174 and the next to be exported as fixed-width text, and unmodified.
14175 If there is an active region, this command adds or removes a colon as the
14176 first character of this line. If the first character of a line is a colon,
14177 this line is also exported in fixed-width font."
14178 (interactive "P")
14179 (let* ((cc 0)
14180 (regionp (org-region-active-p))
14181 (beg (if regionp (region-beginning) (point)))
14182 (end (if regionp (region-end)))
14183 (nlines (or arg (if (and beg end) (count-lines beg end) 1)))
14184 (case-fold-search nil)
14185 (re "[ \t]*\\(:\\)")
14186 off)
14187 (if regionp
14188 (save-excursion
14189 (goto-char beg)
14190 (setq cc (current-column))
14191 (beginning-of-line 1)
14192 (setq off (looking-at re))
14193 (while (> nlines 0)
14194 (setq nlines (1- nlines))
14195 (beginning-of-line 1)
14196 (cond
14197 (arg
14198 (org-move-to-column cc t)
14199 (insert ":\n")
14200 (forward-line -1))
14201 ((and off (looking-at re))
14202 (replace-match "" t t nil 1))
14203 ((not off) (org-move-to-column cc t) (insert ":")))
14204 (forward-line 1)))
14205 (save-excursion
14206 (org-back-to-heading)
14207 (if (looking-at (concat outline-regexp
14208 "\\( *\\<" org-quote-string "\\>[ \t]*\\)"))
14209 (replace-match "" t t nil 1)
14210 (if (looking-at outline-regexp)
14211 (progn
14212 (goto-char (match-end 0))
14213 (insert org-quote-string " "))))))))
14215 ;;;; Functions extending outline functionality
14217 (defun org-beginning-of-line (&optional arg)
14218 "Go to the beginning of the current line. If that is invisible, continue
14219 to a visible line beginning. This makes the function of C-a more intuitive.
14220 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
14221 first attempt, and only move to after the tags when the cursor is already
14222 beyond the end of the headline."
14223 (interactive "P")
14224 (let ((pos (point)) refpos)
14225 (beginning-of-line 1)
14226 (if (bobp)
14228 (backward-char 1)
14229 (if (org-invisible-p)
14230 (while (and (not (bobp)) (org-invisible-p))
14231 (backward-char 1)
14232 (beginning-of-line 1))
14233 (forward-char 1)))
14234 (when org-special-ctrl-a/e
14235 (cond
14236 ((and (looking-at org-complex-heading-regexp)
14237 (= (char-after (match-end 1)) ?\ ))
14238 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
14239 (point-at-eol)))
14240 (goto-char
14241 (if (eq org-special-ctrl-a/e t)
14242 (cond ((> pos refpos) refpos)
14243 ((= pos (point)) refpos)
14244 (t (point)))
14245 (cond ((> pos (point)) (point))
14246 ((not (eq last-command this-command)) (point))
14247 (t refpos)))))
14248 ((org-at-item-p)
14249 (goto-char
14250 (if (eq org-special-ctrl-a/e t)
14251 (cond ((> pos (match-end 4)) (match-end 4))
14252 ((= pos (point)) (match-end 4))
14253 (t (point)))
14254 (cond ((> pos (point)) (point))
14255 ((not (eq last-command this-command)) (point))
14256 (t (match-end 4))))))))
14257 (org-no-warnings
14258 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
14260 (defun org-end-of-line (&optional arg)
14261 "Go to the end of the line.
14262 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
14263 first attempt, and only move to after the tags when the cursor is already
14264 beyond the end of the headline."
14265 (interactive "P")
14266 (if (or (not org-special-ctrl-a/e)
14267 (not (org-on-heading-p)))
14268 (end-of-line arg)
14269 (let ((pos (point)))
14270 (beginning-of-line 1)
14271 (if (looking-at (org-re ".*?\\([ \t]*\\)\\(:[[:alnum:]_@:]+:\\)[ \t]*$"))
14272 (if (eq org-special-ctrl-a/e t)
14273 (if (or (< pos (match-beginning 1))
14274 (= pos (match-end 0)))
14275 (goto-char (match-beginning 1))
14276 (goto-char (match-end 0)))
14277 (if (or (< pos (match-end 0)) (not (eq this-command last-command)))
14278 (goto-char (match-end 0))
14279 (goto-char (match-beginning 1))))
14280 (end-of-line arg))))
14281 (org-no-warnings
14282 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
14285 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
14286 (define-key org-mode-map "\C-e" 'org-end-of-line)
14288 (defun org-kill-line (&optional arg)
14289 "Kill line, to tags or end of line."
14290 (interactive "P")
14291 (cond
14292 ((or (not org-special-ctrl-k)
14293 (bolp)
14294 (not (org-on-heading-p)))
14295 (call-interactively 'kill-line))
14296 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@:]+:\\)\\)[ \t]*$"))
14297 (kill-region (point) (match-beginning 1))
14298 (org-set-tags nil t))
14299 (t (kill-region (point) (point-at-eol)))))
14301 (define-key org-mode-map "\C-k" 'org-kill-line)
14303 (defun org-yank (&optional arg)
14304 "Yank. If the kill is a subtree, treat it specially.
14305 This command will look at the current kill and check if is a single
14306 subtree, or a series of subtrees[1]. If it passes the test, and if the
14307 cursor is at the beginning of a line or after the stars of a currently
14308 empty headline, then the yank is handled specially. How exactly depends
14309 on the value of the following variables, both set by default.
14311 org-yank-folded-subtrees
14312 When set, the subtree(s) will be folded after insertion, but only
14313 if doing so would now swallow text after the yanked text.
14315 org-yank-adjusted-subtrees
14316 When set, the subtree will be promoted or demoted in order to
14317 fit into the local outline tree structure, which means that the level
14318 will be adjusted so that it becomes the smaller one of the two
14319 *visible* surrounding headings.
14321 Any prefix to this command will cause `yank' to be called directly with
14322 no special treatment. In particular, a simple `C-u' prefix will just
14323 plainly yank the text as it is.
14325 \[1] Basically, the test checks if the first non-white line is a heading
14326 and if there are no other headings with fewer stars."
14327 (interactive "P")
14328 (setq this-command 'yank)
14329 (if arg
14330 (call-interactively 'yank)
14331 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
14332 (and (org-kill-is-subtree-p)
14333 (or (bolp)
14334 (and (looking-at "[ \t]*$")
14335 (string-match
14336 "\\`\\*+\\'"
14337 (buffer-substring (point-at-bol) (point)))))))
14338 swallowp)
14339 (cond
14340 ((and subtreep org-yank-folded-subtrees)
14341 (let ((beg (point))
14342 end)
14343 (if (and subtreep org-yank-adjusted-subtrees)
14344 (org-paste-subtree nil nil 'for-yank)
14345 (call-interactively 'yank))
14346 (setq end (point))
14347 (goto-char beg)
14348 (when (and (bolp) subtreep
14349 (not (setq swallowp
14350 (org-yank-folding-would-swallow-text beg end))))
14351 (or (looking-at outline-regexp)
14352 (re-search-forward (concat "^" outline-regexp) end t))
14353 (while (and (< (point) end) (looking-at outline-regexp))
14354 (hide-subtree)
14355 (org-cycle-show-empty-lines 'folded)
14356 (condition-case nil
14357 (outline-forward-same-level 1)
14358 (error (goto-char end)))))
14359 (when swallowp
14360 (message
14361 "Yanked text not folded because that would swallow text"))
14362 (goto-char end)
14363 (skip-chars-forward " \t\n\r")
14364 (beginning-of-line 1)
14365 (push-mark beg 'nomsg)))
14366 ((and subtreep org-yank-adjusted-subtrees)
14367 (let ((beg (point-at-bol)))
14368 (org-paste-subtree nil nil 'for-yank)
14369 (push-mark beg 'nomsg)))
14371 (call-interactively 'yank))))))
14373 (defun org-yank-folding-would-swallow-text (beg end)
14374 "Would hide-subtree at BEG swallow any text after END?"
14375 (let (level)
14376 (save-excursion
14377 (goto-char beg)
14378 (when (or (looking-at outline-regexp)
14379 (re-search-forward (concat "^" outline-regexp) end t))
14380 (setq level (org-outline-level)))
14381 (goto-char end)
14382 (skip-chars-forward " \t\r\n\v\f")
14383 (if (or (eobp)
14384 (and (bolp) (looking-at org-outline-regexp)
14385 (<= (org-outline-level) level)))
14386 nil ; Nothing would be swallowed
14387 t)))) ; something would swallow
14389 (define-key org-mode-map "\C-y" 'org-yank)
14391 (defun org-invisible-p ()
14392 "Check if point is at a character currently not visible."
14393 ;; Early versions of noutline don't have `outline-invisible-p'.
14394 (if (fboundp 'outline-invisible-p)
14395 (outline-invisible-p)
14396 (get-char-property (point) 'invisible)))
14398 (defun org-invisible-p2 ()
14399 "Check if point is at a character currently not visible."
14400 (save-excursion
14401 (if (and (eolp) (not (bobp))) (backward-char 1))
14402 ;; Early versions of noutline don't have `outline-invisible-p'.
14403 (if (fboundp 'outline-invisible-p)
14404 (outline-invisible-p)
14405 (get-char-property (point) 'invisible))))
14407 (defun org-back-to-heading (&optional invisible-ok)
14408 "Call `outline-back-to-heading', but provide a better error message."
14409 (condition-case nil
14410 (outline-back-to-heading invisible-ok)
14411 (error (error "Before first headline at position %d in buffer %s"
14412 (point) (current-buffer)))))
14414 (defun org-before-first-heading-p ()
14415 "Before first heading?"
14416 (save-excursion
14417 (null (re-search-backward "^\\*+ " nil t))))
14419 (defalias 'org-on-heading-p 'outline-on-heading-p)
14420 (defalias 'org-at-heading-p 'outline-on-heading-p)
14421 (defun org-at-heading-or-item-p ()
14422 (or (org-on-heading-p) (org-at-item-p)))
14424 (defun org-on-target-p ()
14425 (or (org-in-regexp org-radio-target-regexp)
14426 (org-in-regexp org-target-regexp)))
14428 (defun org-up-heading-all (arg)
14429 "Move to the heading line of which the present line is a subheading.
14430 This function considers both visible and invisible heading lines.
14431 With argument, move up ARG levels."
14432 (if (fboundp 'outline-up-heading-all)
14433 (outline-up-heading-all arg) ; emacs 21 version of outline.el
14434 (outline-up-heading arg t))) ; emacs 22 version of outline.el
14436 (defun org-up-heading-safe ()
14437 "Move to the heading line of which the present line is a subheading.
14438 This version will not throw an error. It will return the level of the
14439 headline found, or nil if no higher level is found."
14440 (let (start-level re)
14441 (org-back-to-heading t)
14442 (setq start-level (funcall outline-level))
14443 (if (equal start-level 1)
14445 (setq re (concat "^\\*\\{1," (number-to-string (1- start-level)) "\\} "))
14446 (if (re-search-backward re nil t)
14447 (funcall outline-level)))))
14449 (defun org-first-sibling-p ()
14450 "Is this heading the first child of its parents?"
14451 (interactive)
14452 (let ((re (concat "^" outline-regexp))
14453 level l)
14454 (unless (org-at-heading-p t)
14455 (error "Not at a heading"))
14456 (setq level (funcall outline-level))
14457 (save-excursion
14458 (if (not (re-search-backward re nil t))
14460 (setq l (funcall outline-level))
14461 (< l level)))))
14463 (defun org-goto-sibling (&optional previous)
14464 "Goto the next sibling, even if it is invisible.
14465 When PREVIOUS is set, go to the previous sibling instead. Returns t
14466 when a sibling was found. When none is found, return nil and don't
14467 move point."
14468 (let ((fun (if previous 're-search-backward 're-search-forward))
14469 (pos (point))
14470 (re (concat "^" outline-regexp))
14471 level l)
14472 (when (condition-case nil (org-back-to-heading t) (error nil))
14473 (setq level (funcall outline-level))
14474 (catch 'exit
14475 (or previous (forward-char 1))
14476 (while (funcall fun re nil t)
14477 (setq l (funcall outline-level))
14478 (when (< l level) (goto-char pos) (throw 'exit nil))
14479 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
14480 (goto-char pos)
14481 nil))))
14483 (defun org-show-siblings ()
14484 "Show all siblings of the current headline."
14485 (save-excursion
14486 (while (org-goto-sibling) (org-flag-heading nil)))
14487 (save-excursion
14488 (while (org-goto-sibling 'previous)
14489 (org-flag-heading nil))))
14491 (defun org-show-hidden-entry ()
14492 "Show an entry where even the heading is hidden."
14493 (save-excursion
14494 (org-show-entry)))
14496 (defun org-flag-heading (flag &optional entry)
14497 "Flag the current heading. FLAG non-nil means make invisible.
14498 When ENTRY is non-nil, show the entire entry."
14499 (save-excursion
14500 (org-back-to-heading t)
14501 ;; Check if we should show the entire entry
14502 (if entry
14503 (progn
14504 (org-show-entry)
14505 (save-excursion
14506 (and (outline-next-heading)
14507 (org-flag-heading nil))))
14508 (outline-flag-region (max (point-min) (1- (point)))
14509 (save-excursion (outline-end-of-heading) (point))
14510 flag))))
14512 (defun org-forward-same-level (arg)
14513 "Move forward to the ARG'th subheading at same level as this one.
14514 Stop at the first and last subheadings of a superior heading.
14515 This is like outline-forward-same-level, but invisible headings are ok."
14516 (interactive "p")
14517 (org-back-to-heading t)
14518 (while (> arg 0)
14519 (let ((point-to-move-to (save-excursion
14520 (org-get-next-sibling))))
14521 (if point-to-move-to
14522 (progn
14523 (goto-char point-to-move-to)
14524 (setq arg (1- arg)))
14525 (progn
14526 (setq arg 0)
14527 (error "No following same-level heading"))))))
14529 (defun org-get-next-sibling ()
14530 "Move to next heading of the same level, and return point.
14531 If there is no such heading, return nil.
14532 This is like outline-next-sibling, but invisible headings are ok."
14533 (let ((level (funcall outline-level)))
14534 (outline-next-heading)
14535 (while (and (not (eobp)) (> (funcall outline-level) level))
14536 (outline-next-heading))
14537 (if (or (eobp) (< (funcall outline-level) level))
14539 (point))))
14541 (defun org-end-of-subtree (&optional invisible-OK to-heading)
14542 ;; This is an exact copy of the original function, but it uses
14543 ;; `org-back-to-heading', to make it work also in invisible
14544 ;; trees. And is uses an invisible-OK argument.
14545 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
14546 (org-back-to-heading invisible-OK)
14547 (let ((first t)
14548 (level (funcall outline-level)))
14549 (while (and (not (eobp))
14550 (or first (> (funcall outline-level) level)))
14551 (setq first nil)
14552 (outline-next-heading))
14553 (unless to-heading
14554 (if (memq (preceding-char) '(?\n ?\^M))
14555 (progn
14556 ;; Go to end of line before heading
14557 (forward-char -1)
14558 (if (memq (preceding-char) '(?\n ?\^M))
14559 ;; leave blank line before heading
14560 (forward-char -1))))))
14561 (point))
14563 (defun org-show-subtree ()
14564 "Show everything after this heading at deeper levels."
14565 (outline-flag-region
14566 (point)
14567 (save-excursion
14568 (outline-end-of-subtree) (outline-next-heading) (point))
14569 nil))
14571 (defun org-show-entry ()
14572 "Show the body directly following this heading.
14573 Show the heading too, if it is currently invisible."
14574 (interactive)
14575 (save-excursion
14576 (condition-case nil
14577 (progn
14578 (org-back-to-heading t)
14579 (outline-flag-region
14580 (max (point-min) (1- (point)))
14581 (save-excursion
14582 (re-search-forward
14583 (concat "[\r\n]\\(" outline-regexp "\\)") nil 'move)
14584 (or (match-beginning 1) (point-max)))
14585 nil))
14586 (error nil))))
14588 (defun org-make-options-regexp (kwds)
14589 "Make a regular expression for keyword lines."
14590 (concat
14592 "#?[ \t]*\\+\\("
14593 (mapconcat 'regexp-quote kwds "\\|")
14594 "\\):[ \t]*"
14595 "\\(.+\\)"))
14597 ;; Make isearch reveal the necessary context
14598 (defun org-isearch-end ()
14599 "Reveal context after isearch exits."
14600 (when isearch-success ; only if search was successful
14601 (if (featurep 'xemacs)
14602 ;; Under XEmacs, the hook is run in the correct place,
14603 ;; we directly show the context.
14604 (org-show-context 'isearch)
14605 ;; In Emacs the hook runs *before* restoring the overlays.
14606 ;; So we have to use a one-time post-command-hook to do this.
14607 ;; (Emacs 22 has a special variable, see function `org-mode')
14608 (unless (and (boundp 'isearch-mode-end-hook-quit)
14609 isearch-mode-end-hook-quit)
14610 ;; Only when the isearch was not quitted.
14611 (org-add-hook 'post-command-hook 'org-isearch-post-command
14612 'append 'local)))))
14614 (defun org-isearch-post-command ()
14615 "Remove self from hook, and show context."
14616 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
14617 (org-show-context 'isearch))
14620 ;;;; Integration with and fixes for other packages
14622 ;;; Imenu support
14624 (defvar org-imenu-markers nil
14625 "All markers currently used by Imenu.")
14626 (make-variable-buffer-local 'org-imenu-markers)
14628 (defun org-imenu-new-marker (&optional pos)
14629 "Return a new marker for use by Imenu, and remember the marker."
14630 (let ((m (make-marker)))
14631 (move-marker m (or pos (point)))
14632 (push m org-imenu-markers)
14635 (defun org-imenu-get-tree ()
14636 "Produce the index for Imenu."
14637 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
14638 (setq org-imenu-markers nil)
14639 (let* ((n org-imenu-depth)
14640 (re (concat "^" outline-regexp))
14641 (subs (make-vector (1+ n) nil))
14642 (last-level 0)
14643 m tree level head)
14644 (save-excursion
14645 (save-restriction
14646 (widen)
14647 (goto-char (point-max))
14648 (while (re-search-backward re nil t)
14649 (setq level (org-reduced-level (funcall outline-level)))
14650 (when (<= level n)
14651 (looking-at org-complex-heading-regexp)
14652 (setq head (org-link-display-format
14653 (org-match-string-no-properties 4))
14654 m (org-imenu-new-marker))
14655 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
14656 (if (>= level last-level)
14657 (push (cons head m) (aref subs level))
14658 (push (cons head (aref subs (1+ level))) (aref subs level))
14659 (loop for i from (1+ level) to n do (aset subs i nil)))
14660 (setq last-level level)))))
14661 (aref subs 1)))
14663 (eval-after-load "imenu"
14664 '(progn
14665 (add-hook 'imenu-after-jump-hook
14666 (lambda ()
14667 (if (eq major-mode 'org-mode)
14668 (org-show-context 'org-goto))))))
14670 (defun org-link-display-format (link)
14671 "Replace a link with either the description, or the link target
14672 if no description is present"
14673 (save-match-data
14674 (if (string-match org-bracket-link-analytic-regexp link)
14675 (replace-match (or (match-string 5 link)
14676 (concat (match-string 1 link)
14677 (match-string 3 link)))
14678 nil nil link)
14679 link)))
14681 ;; Speedbar support
14683 (defvar org-speedbar-restriction-lock-overlay (org-make-overlay 1 1)
14684 "Overlay marking the agenda restriction line in speedbar.")
14685 (org-overlay-put org-speedbar-restriction-lock-overlay
14686 'face 'org-agenda-restriction-lock)
14687 (org-overlay-put org-speedbar-restriction-lock-overlay
14688 'help-echo "Agendas are currently limited to this item.")
14689 (org-detach-overlay org-speedbar-restriction-lock-overlay)
14691 (defun org-speedbar-set-agenda-restriction ()
14692 "Restrict future agenda commands to the location at point in speedbar.
14693 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
14694 (interactive)
14695 (require 'org-agenda)
14696 (let (p m tp np dir txt w)
14697 (cond
14698 ((setq p (text-property-any (point-at-bol) (point-at-eol)
14699 'org-imenu t))
14700 (setq m (get-text-property p 'org-imenu-marker))
14701 (save-excursion
14702 (save-restriction
14703 (set-buffer (marker-buffer m))
14704 (goto-char m)
14705 (org-agenda-set-restriction-lock 'subtree))))
14706 ((setq p (text-property-any (point-at-bol) (point-at-eol)
14707 'speedbar-function 'speedbar-find-file))
14708 (setq tp (previous-single-property-change
14709 (1+ p) 'speedbar-function)
14710 np (next-single-property-change
14711 tp 'speedbar-function)
14712 dir (speedbar-line-directory)
14713 txt (buffer-substring-no-properties (or tp (point-min))
14714 (or np (point-max))))
14715 (save-excursion
14716 (save-restriction
14717 (set-buffer (find-file-noselect
14718 (let ((default-directory dir))
14719 (expand-file-name txt))))
14720 (unless (org-mode-p)
14721 (error "Cannot restrict to non-Org-mode file"))
14722 (org-agenda-set-restriction-lock 'file))))
14723 (t (error "Don't know how to restrict Org-mode's agenda")))
14724 (org-move-overlay org-speedbar-restriction-lock-overlay
14725 (point-at-bol) (point-at-eol))
14726 (setq current-prefix-arg nil)
14727 (org-agenda-maybe-redo)))
14729 (eval-after-load "speedbar"
14730 '(progn
14731 (speedbar-add-supported-extension ".org")
14732 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
14733 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
14734 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
14735 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
14736 (add-hook 'speedbar-visiting-tag-hook
14737 (lambda () (and (org-mode-p) (org-show-context 'org-goto))))))
14740 ;;; Fixes and Hacks for problems with other packages
14742 ;; Make flyspell not check words in links, to not mess up our keymap
14743 (defun org-mode-flyspell-verify ()
14744 "Don't let flyspell put overlays at active buttons."
14745 (not (get-text-property (point) 'keymap)))
14747 ;; Make `bookmark-jump' show the jump location if it was hidden.
14748 (eval-after-load "bookmark"
14749 '(if (boundp 'bookmark-after-jump-hook)
14750 ;; We can use the hook
14751 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
14752 ;; Hook not available, use advice
14753 (defadvice bookmark-jump (after org-make-visible activate)
14754 "Make the position visible."
14755 (org-bookmark-jump-unhide))))
14757 ;; Make sure saveplace show the location if it was hidden
14758 (eval-after-load "saveplace"
14759 '(defadvice save-place-find-file-hook (after org-make-visible activate)
14760 "Make the position visible."
14761 (org-bookmark-jump-unhide)))
14763 (defun org-bookmark-jump-unhide ()
14764 "Unhide the current position, to show the bookmark location."
14765 (and (org-mode-p)
14766 (or (org-invisible-p)
14767 (save-excursion (goto-char (max (point-min) (1- (point))))
14768 (org-invisible-p)))
14769 (org-show-context 'bookmark-jump)))
14771 ;; Make session.el ignore our circular variable
14772 (eval-after-load "session"
14773 '(add-to-list 'session-globals-exclude 'org-mark-ring))
14775 ;;;; Experimental code
14777 (defun org-closed-in-range ()
14778 "Sparse tree of items closed in a certain time range.
14779 Still experimental, may disappear in the future."
14780 (interactive)
14781 ;; Get the time interval from the user.
14782 (let* ((time1 (time-to-seconds
14783 (org-read-date nil 'to-time nil "Starting date: ")))
14784 (time2 (time-to-seconds
14785 (org-read-date nil 'to-time nil "End date:")))
14786 ;; callback function
14787 (callback (lambda ()
14788 (let ((time
14789 (time-to-seconds
14790 (apply 'encode-time
14791 (org-parse-time-string
14792 (match-string 1))))))
14793 ;; check if time in interval
14794 (and (>= time time1) (<= time time2))))))
14795 ;; make tree, check each match with the callback
14796 (org-occur "CLOSED: +\\[\\(.*?\\)\\]" nil callback)))
14799 ;;;; Finish up
14801 (provide 'org)
14803 (run-hooks 'org-load-hook)
14805 ;; arch-tag: e77da1a7-acc7-4336-b19e-efa25af3f9fd
14807 ;;; org.el ends here