Don't allow org-schedule/deadline to clobber repeaters.
[org-mode.git] / lisp / org.el
blob0c4f1b003779c0a94b8b44b3c0fe1dc76252a685
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.04c
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)
90 ;;;; Customization variables
92 ;;; Version
94 (defconst org-version "6.04c"
95 "The version number of the file org.el.")
97 (defun org-version (&optional here)
98 "Show the org-mode version in the echo area.
99 With prefix arg HERE, insert it at point."
100 (interactive "P")
101 (let ((version (format "Org-mode version %s" org-version)))
102 (message version)
103 (if here
104 (insert version))))
106 ;;; Compatibility constants
108 ;;; The custom variables
110 (defgroup org nil
111 "Outline-based notes management and organizer."
112 :tag "Org"
113 :group 'outlines
114 :group 'hypermedia
115 :group 'calendar)
117 (defcustom org-load-hook nil
118 "Hook that is run after org.el has been loaded."
119 :group 'org
120 :type 'hook)
122 (defvar org-modules) ; defined below
123 (defvar org-modules-loaded nil
124 "Have the modules been loaded already?")
126 (defun org-load-modules-maybe (&optional force)
127 "Load all extensions listed in `org-default-extensions'."
128 (when (or force (not org-modules-loaded))
129 (mapc (lambda (ext)
130 (condition-case nil (require ext)
131 (error (message "Problems while trying to load feature `%s'" ext))))
132 org-modules)
133 (setq org-modules-loaded t)))
135 (defun org-set-modules (var value)
136 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
137 (set var value)
138 (when (featurep 'org)
139 (org-load-modules-maybe 'force)))
141 (when (org-bound-and-true-p org-modules)
142 (let ((a (member 'org-infojs org-modules)))
143 (and a (setcar a 'org-jsinfo))))
145 (defcustom org-modules '(org-bbdb org-bibtex org-gnus org-info org-jsinfo org-irc org-mew org-mhe org-rmail org-vm org-wl)
146 "Modules that should always be loaded together with org.el.
147 If a description starts with <C>, the file is not part of Emacs
148 and loading it will require that you have downloaded and properly installed
149 the org-mode distribution.
151 You can also use this system to load external packages (i.e. neither Org
152 core modules, not modules from the CONTRIB directory). Just add symbols
153 to the end of the list. If the package is called org-xyz.el, then you need
154 to add the symbol `xyz', and the package must have a call to
156 (provide 'org-xyz)"
157 :group 'org
158 :set 'org-set-modules
159 :type
160 '(set :greedy t
161 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
162 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
163 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
164 (const :tag " id: Global id's for identifying entries" org-id)
165 (const :tag " info: Links to Info nodes" org-info)
166 (const :tag " jsinfo: Set up Sebastian Rose's JavaScript org-info.js" org-jsinfo)
167 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
168 (const :tag " mac-message: Links to messages in Apple Mail" org-mac-message)
169 (const :tag " mew Links to Mew folders/messages" org-mew)
170 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
171 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
172 (const :tag " vm: Links to VM folders/messages" org-vm)
173 (const :tag " wl: Links to Wanderlust folders/messages" org-wl)
174 (const :tag " mouse: Additional mouse support" org-mouse)
176 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
177 (const :tag "C annotation-helper: Call Remeber directly from Browser" org-annotation-helper)
178 (const :tag "C bookmark: Org links to bookmarks" org-bookmark)
179 (const :tag "C depend: TODO dependencies for Org-mode" org-depend)
180 (const :tag "C elisp-symbol: Org links to emacs-lisp symbols" org-elisp-symbol)
181 (const :tag "C eval: Include command output as text" org-eval)
182 (const :tag "C expiry: Expiry mechanism for Org entries" org-expiry)
183 (const :tag "C id: Global id's for identifying entries" org-id)
184 (const :tag "C interactive-query: Interactive modification of tags query" org-interactive-query)
185 (const :tag "C mairix: Hook mairix search into Org for different MUAs" org-mairix)
186 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
187 (const :tag "C mtags: Support for muse-like tags" org-mtags)
188 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
189 (const :tag "C registry: A registry for Org links" org-registry)
190 (const :tag "C org2rem: Convert org appointments into reminders" org2rem)
191 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
192 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
193 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
194 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
197 (defgroup org-startup nil
198 "Options concerning startup of Org-mode."
199 :tag "Org Startup"
200 :group 'org)
202 (defcustom org-startup-folded t
203 "Non-nil means, entering Org-mode will switch to OVERVIEW.
204 This can also be configured on a per-file basis by adding one of
205 the following lines anywhere in the buffer:
207 #+STARTUP: fold
208 #+STARTUP: nofold
209 #+STARTUP: content"
210 :group 'org-startup
211 :type '(choice
212 (const :tag "nofold: show all" nil)
213 (const :tag "fold: overview" t)
214 (const :tag "content: all headlines" content)))
216 (defcustom org-startup-truncated t
217 "Non-nil means, entering Org-mode will set `truncate-lines'.
218 This is useful since some lines containing links can be very long and
219 uninteresting. Also tables look terrible when wrapped."
220 :group 'org-startup
221 :type 'boolean)
223 (defcustom org-startup-indented nil
224 "Non-nil means, turn on `org-indent-mode' on startup.
225 This can also be configured on a per-file basis by adding one of
226 the following lines anywhere in the buffer:
228 #+STARTUP: localindent
229 #+STARTUP: indent
230 #+STARTUP: noindent"
231 :group 'org-structure
232 :type '(choice
233 (const :tag "Not" nil)
234 (const :tag "Locally" local)
235 (const :tag "Globally (slow on startup in large files)" t)))
237 (defcustom org-startup-align-all-tables nil
238 "Non-nil means, align all tables when visiting a file.
239 This is useful when the column width in tables is forced with <N> cookies
240 in table fields. Such tables will look correct only after the first re-align.
241 This can also be configured on a per-file basis by adding one of
242 the following lines anywhere in the buffer:
243 #+STARTUP: align
244 #+STARTUP: noalign"
245 :group 'org-startup
246 :type 'boolean)
248 (defcustom org-insert-mode-line-in-empty-file nil
249 "Non-nil means insert the first line setting Org-mode in empty files.
250 When the function `org-mode' is called interactively in an empty file, this
251 normally means that the file name does not automatically trigger Org-mode.
252 To ensure that the file will always be in Org-mode in the future, a
253 line enforcing Org-mode will be inserted into the buffer, if this option
254 has been set."
255 :group 'org-startup
256 :type 'boolean)
258 (defcustom org-replace-disputed-keys nil
259 "Non-nil means use alternative key bindings for some keys.
260 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
261 These keys are also used by other packages like `CUA-mode' or `windmove.el'.
262 If you want to use Org-mode together with one of these other modes,
263 or more generally if you would like to move some Org-mode commands to
264 other keys, set this variable and configure the keys with the variable
265 `org-disputed-keys'.
267 This option is only relevant at load-time of Org-mode, and must be set
268 *before* org.el is loaded. Changing it requires a restart of Emacs to
269 become effective."
270 :group 'org-startup
271 :type 'boolean)
273 (if (fboundp 'defvaralias)
274 (defvaralias 'org-CUA-compatible 'org-replace-disputed-keys))
276 (defcustom org-disputed-keys
277 '(([(shift up)] . [(meta p)])
278 ([(shift down)] . [(meta n)])
279 ([(shift left)] . [(meta -)])
280 ([(shift right)] . [(meta +)])
281 ([(control shift right)] . [(meta shift +)])
282 ([(control shift left)] . [(meta shift -)]))
283 "Keys for which Org-mode and other modes compete.
284 This is an alist, cars are the default keys, second element specifies
285 the alternative to use when `org-replace-disputed-keys' is t.
287 Keys can be specified in any syntax supported by `define-key'.
288 The value of this option takes effect only at Org-mode's startup,
289 therefore you'll have to restart Emacs to apply it after changing."
290 :group 'org-startup
291 :type 'alist)
293 (defun org-key (key)
294 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
295 Or return the original if not disputed."
296 (if org-replace-disputed-keys
297 (let* ((nkey (key-description key))
298 (x (org-find-if (lambda (x)
299 (equal (key-description (car x)) nkey))
300 org-disputed-keys)))
301 (if x (cdr x) key))
302 key))
304 (defun org-find-if (predicate seq)
305 (catch 'exit
306 (while seq
307 (if (funcall predicate (car seq))
308 (throw 'exit (car seq))
309 (pop seq)))))
311 (defun org-defkey (keymap key def)
312 "Define a key, possibly translated, as returned by `org-key'."
313 (define-key keymap (org-key key) def))
315 (defcustom org-ellipsis nil
316 "The ellipsis to use in the Org-mode outline.
317 When nil, just use the standard three dots. When a string, use that instead,
318 When a face, use the standart 3 dots, but with the specified face.
319 The change affects only Org-mode (which will then use its own display table).
320 Changing this requires executing `M-x org-mode' in a buffer to become
321 effective."
322 :group 'org-startup
323 :type '(choice (const :tag "Default" nil)
324 (face :tag "Face" :value org-warning)
325 (string :tag "String" :value "...#")))
327 (defvar org-display-table nil
328 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
330 (defgroup org-keywords nil
331 "Keywords in Org-mode."
332 :tag "Org Keywords"
333 :group 'org)
335 (defcustom org-deadline-string "DEADLINE:"
336 "String to mark deadline entries.
337 A deadline is this string, followed by a time stamp. Should be a word,
338 terminated by a colon. You can insert a schedule keyword and
339 a timestamp with \\[org-deadline].
340 Changes become only effective after restarting Emacs."
341 :group 'org-keywords
342 :type 'string)
344 (defcustom org-scheduled-string "SCHEDULED:"
345 "String to mark scheduled TODO entries.
346 A schedule is this string, followed by a time stamp. Should be a word,
347 terminated by a colon. You can insert a schedule keyword and
348 a timestamp with \\[org-schedule].
349 Changes become only effective after restarting Emacs."
350 :group 'org-keywords
351 :type 'string)
353 (defcustom org-closed-string "CLOSED:"
354 "String used as the prefix for timestamps logging closing a TODO entry."
355 :group 'org-keywords
356 :type 'string)
358 (defcustom org-clock-string "CLOCK:"
359 "String used as prefix for timestamps clocking work hours on an item."
360 :group 'org-keywords
361 :type 'string)
363 (defcustom org-comment-string "COMMENT"
364 "Entries starting with this keyword will never be exported.
365 An entry can be toggled between COMMENT and normal with
366 \\[org-toggle-comment].
367 Changes become only effective after restarting Emacs."
368 :group 'org-keywords
369 :type 'string)
371 (defcustom org-quote-string "QUOTE"
372 "Entries starting with this keyword will be exported in fixed-width font.
373 Quoting applies only to the text in the entry following the headline, and does
374 not extend beyond the next headline, even if that is lower level.
375 An entry can be toggled between QUOTE and normal with
376 \\[org-toggle-fixed-width-section]."
377 :group 'org-keywords
378 :type 'string)
380 (defconst org-repeat-re
381 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*\\([.+]?\\+[0-9]+[dwmy]\\)"
382 "Regular expression for specifying repeated events.
383 After a match, group 1 contains the repeat expression.")
385 (defgroup org-structure nil
386 "Options concerning the general structure of Org-mode files."
387 :tag "Org Structure"
388 :group 'org)
390 (defgroup org-reveal-location nil
391 "Options about how to make context of a location visible."
392 :tag "Org Reveal Location"
393 :group 'org-structure)
395 (defconst org-context-choice
396 '(choice
397 (const :tag "Always" t)
398 (const :tag "Never" nil)
399 (repeat :greedy t :tag "Individual contexts"
400 (cons
401 (choice :tag "Context"
402 (const agenda)
403 (const org-goto)
404 (const occur-tree)
405 (const tags-tree)
406 (const link-search)
407 (const mark-goto)
408 (const bookmark-jump)
409 (const isearch)
410 (const default))
411 (boolean))))
412 "Contexts for the reveal options.")
414 (defcustom org-show-hierarchy-above '((default . t))
415 "Non-nil means, show full hierarchy when revealing a location.
416 Org-mode often shows locations in an org-mode file which might have
417 been invisible before. When this is set, the hierarchy of headings
418 above the exposed location is shown.
419 Turning this off for example for sparse trees makes them very compact.
420 Instead of t, this can also be an alist specifying this option for different
421 contexts. Valid contexts are
422 agenda when exposing an entry from the agenda
423 org-goto when using the command `org-goto' on key C-c C-j
424 occur-tree when using the command `org-occur' on key C-c /
425 tags-tree when constructing a sparse tree based on tags matches
426 link-search when exposing search matches associated with a link
427 mark-goto when exposing the jump goal of a mark
428 bookmark-jump when exposing a bookmark location
429 isearch when exiting from an incremental search
430 default default for all contexts not set explicitly"
431 :group 'org-reveal-location
432 :type org-context-choice)
434 (defcustom org-show-following-heading '((default . nil))
435 "Non-nil means, show following heading when revealing a location.
436 Org-mode often shows locations in an org-mode file which might have
437 been invisible before. When this is set, the heading following the
438 match is shown.
439 Turning this off for example for sparse trees makes them very compact,
440 but makes it harder to edit the location of the match. In such a case,
441 use the command \\[org-reveal] to show more context.
442 Instead of t, this can also be an alist specifying this option for different
443 contexts. See `org-show-hierarchy-above' for valid contexts."
444 :group 'org-reveal-location
445 :type org-context-choice)
447 (defcustom org-show-siblings '((default . nil) (isearch t))
448 "Non-nil means, show all sibling heading when revealing a location.
449 Org-mode often shows locations in an org-mode file which might have
450 been invisible before. When this is set, the sibling of the current entry
451 heading are all made visible. If `org-show-hierarchy-above' is t,
452 the same happens on each level of the hierarchy above the current entry.
454 By default this is on for the isearch context, off for all other contexts.
455 Turning this off for example for sparse trees makes them very compact,
456 but makes it harder to edit the location of the match. In such a case,
457 use the command \\[org-reveal] to show more context.
458 Instead of t, this can also be an alist specifying this option for different
459 contexts. See `org-show-hierarchy-above' for valid contexts."
460 :group 'org-reveal-location
461 :type org-context-choice)
463 (defcustom org-show-entry-below '((default . nil))
464 "Non-nil means, show the entry below a headline when revealing a location.
465 Org-mode often shows locations in an org-mode file which might have
466 been invisible before. When this is set, the text below the headline that is
467 exposed is also shown.
469 By default this is off for all contexts.
470 Instead of t, this can also be an alist specifying this option for different
471 contexts. See `org-show-hierarchy-above' for valid contexts."
472 :group 'org-reveal-location
473 :type org-context-choice)
475 (defcustom org-indirect-buffer-display 'other-window
476 "How should indirect tree buffers be displayed?
477 This applies to indirect buffers created with the commands
478 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
479 Valid values are:
480 current-window Display in the current window
481 other-window Just display in another window.
482 dedicated-frame Create one new frame, and re-use it each time.
483 new-frame Make a new frame each time. Note that in this case
484 previously-made indirect buffers are kept, and you need to
485 kill these buffers yourself."
486 :group 'org-structure
487 :group 'org-agenda-windows
488 :type '(choice
489 (const :tag "In current window" current-window)
490 (const :tag "In current frame, other window" other-window)
491 (const :tag "Each time a new frame" new-frame)
492 (const :tag "One dedicated frame" dedicated-frame)))
494 (defgroup org-cycle nil
495 "Options concerning visibility cycling in Org-mode."
496 :tag "Org Cycle"
497 :group 'org-structure)
499 (defcustom org-drawers '("PROPERTIES" "CLOCK")
500 "Names of drawers. Drawers are not opened by cycling on the headline above.
501 Drawers only open with a TAB on the drawer line itself. A drawer looks like
502 this:
503 :DRAWERNAME:
504 .....
505 :END:
506 The drawer \"PROPERTIES\" is special for capturing properties through
507 the property API.
509 Drawers can be defined on the per-file basis with a line like:
511 #+DRAWERS: HIDDEN STATE PROPERTIES"
512 :group 'org-structure
513 :type '(repeat (string :tag "Drawer Name")))
515 (defcustom org-cycle-global-at-bob nil
516 "Cycle globally if cursor is at beginning of buffer and not at a headline.
517 This makes it possible to do global cycling without having to use S-TAB or
518 C-u TAB. For this special case to work, the first line of the buffer
519 must not be a headline - it may be empty ot some other text. When used in
520 this way, `org-cycle-hook' is disables temporarily, to make sure the
521 cursor stays at the beginning of the buffer.
522 When this option is nil, don't do anything special at the beginning
523 of the buffer."
524 :group 'org-cycle
525 :type 'boolean)
527 (defcustom org-cycle-emulate-tab t
528 "Where should `org-cycle' emulate TAB.
529 nil Never
530 white Only in completely white lines
531 whitestart Only at the beginning of lines, before the first non-white char
532 t Everywhere except in headlines
533 exc-hl-bol Everywhere except at the start of a headline
534 If TAB is used in a place where it does not emulate TAB, the current subtree
535 visibility is cycled."
536 :group 'org-cycle
537 :type '(choice (const :tag "Never" nil)
538 (const :tag "Only in completely white lines" white)
539 (const :tag "Before first char in a line" whitestart)
540 (const :tag "Everywhere except in headlines" t)
541 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)
544 (defcustom org-cycle-separator-lines 2
545 "Number of empty lines needed to keep an empty line between collapsed trees.
546 If you leave an empty line between the end of a subtree and the following
547 headline, this empty line is hidden when the subtree is folded.
548 Org-mode will leave (exactly) one empty line visible if the number of
549 empty lines is equal or larger to the number given in this variable.
550 So the default 2 means, at least 2 empty lines after the end of a subtree
551 are needed to produce free space between a collapsed subtree and the
552 following headline.
554 Special case: when 0, never leave empty lines in collapsed view."
555 :group 'org-cycle
556 :type 'integer)
558 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
559 org-cycle-hide-drawers
560 org-cycle-show-empty-lines
561 org-optimize-window-after-visibility-change)
562 "Hook that is run after `org-cycle' has changed the buffer visibility.
563 The function(s) in this hook must accept a single argument which indicates
564 the new state that was set by the most recent `org-cycle' command. The
565 argument is a symbol. After a global state change, it can have the values
566 `overview', `content', or `all'. After a local state change, it can have
567 the values `folded', `children', or `subtree'."
568 :group 'org-cycle
569 :type 'hook)
571 (defgroup org-edit-structure nil
572 "Options concerning structure editing in Org-mode."
573 :tag "Org Edit Structure"
574 :group 'org-structure)
576 (defcustom org-odd-levels-only nil
577 "Non-nil means, skip even levels and only use odd levels for the outline.
578 This has the effect that two stars are being added/taken away in
579 promotion/demotion commands. It also influences how levels are
580 handled by the exporters.
581 Changing it requires restart of `font-lock-mode' to become effective
582 for fontification also in regions already fontified.
583 You may also set this on a per-file basis by adding one of the following
584 lines to the buffer:
586 #+STARTUP: odd
587 #+STARTUP: oddeven"
588 :group 'org-edit-structure
589 :group 'org-font-lock
590 :type 'boolean)
592 (defcustom org-adapt-indentation t
593 "Non-nil means, adapt indentation when promoting and demoting.
594 When this is set and the *entire* text in an entry is indented, the
595 indentation is increased by one space in a demotion command, and
596 decreased by one in a promotion command. If any line in the entry
597 body starts at column 0, indentation is not changed at all."
598 :group 'org-edit-structure
599 :type 'boolean)
601 (defcustom org-special-ctrl-a/e nil
602 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
603 When t, `C-a' will bring back the cursor to the beginning of the
604 headline text, i.e. after the stars and after a possible TODO keyword.
605 In an item, this will be the position after the bullet.
606 When the cursor is already at that position, another `C-a' will bring
607 it to the beginning of the line.
608 `C-e' will jump to the end of the headline, ignoring the presence of tags
609 in the headline. A second `C-e' will then jump to the true end of the
610 line, after any tags.
611 When set to the symbol `reversed', the first `C-a' or `C-e' works normally,
612 and only a directly following, identical keypress will bring the cursor
613 to the special positions."
614 :group 'org-edit-structure
615 :type '(choice
616 (const :tag "off" nil)
617 (const :tag "after bullet first" t)
618 (const :tag "border first" reversed)))
620 (if (fboundp 'defvaralias)
621 (defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e))
623 (defcustom org-special-ctrl-k nil
624 "Non-nil means `C-k' will behave specially in headlines.
625 When nil, `C-k' will call the default `kill-line' command.
626 When t, the following will happen while the cursor is in the headline:
628 - When the cursor is at the beginning of a headline, kill the entire
629 line and possible the folded subtree below the line.
630 - When in the middle of the headline text, kill the headline up to the tags.
631 - When after the headline text, kill the tags."
632 :group 'org-edit-structure
633 :type 'boolean)
635 (defcustom org-M-RET-may-split-line '((default . t))
636 "Non-nil means, M-RET will split the line at the cursor position.
637 When nil, it will go to the end of the line before making a
638 new line.
639 You may also set this option in a different way for different
640 contexts. Valid contexts are:
642 headline when creating a new headline
643 item when creating a new item
644 table in a table field
645 default the value to be used for all contexts not explicitly
646 customized"
647 :group 'org-structure
648 :group 'org-table
649 :type '(choice
650 (const :tag "Always" t)
651 (const :tag "Never" nil)
652 (repeat :greedy t :tag "Individual contexts"
653 (cons
654 (choice :tag "Context"
655 (const headline)
656 (const item)
657 (const table)
658 (const default))
659 (boolean)))))
662 (defcustom org-blank-before-new-entry '((heading . nil)
663 (plain-list-item . nil))
664 "Should `org-insert-heading' leave a blank line before new heading/item?
665 The value is an alist, with `heading' and `plain-list-item' as car,
666 and a boolean flag as cdr."
667 :group 'org-edit-structure
668 :type '(list
669 (cons (const heading) (boolean))
670 (cons (const plain-list-item) (boolean))))
672 (defcustom org-insert-heading-hook nil
673 "Hook being run after inserting a new heading."
674 :group 'org-edit-structure
675 :type 'hook)
677 (defcustom org-enable-fixed-width-editor t
678 "Non-nil means, lines starting with \":\" are treated as fixed-width.
679 This currently only means, they are never auto-wrapped.
680 When nil, such lines will be treated like ordinary lines.
681 See also the QUOTE keyword."
682 :group 'org-edit-structure
683 :type 'boolean)
685 (defcustom org-goto-auto-isearch t
686 "Non-nil means, typing characters in org-goto starts incremental search."
687 :group 'org-edit-structure
688 :type 'boolean)
690 (defgroup org-sparse-trees nil
691 "Options concerning sparse trees in Org-mode."
692 :tag "Org Sparse Trees"
693 :group 'org-structure)
695 (defcustom org-highlight-sparse-tree-matches t
696 "Non-nil means, highlight all matches that define a sparse tree.
697 The highlights will automatically disappear the next time the buffer is
698 changed by an edit command."
699 :group 'org-sparse-trees
700 :type 'boolean)
702 (defcustom org-remove-highlights-with-change t
703 "Non-nil means, any change to the buffer will remove temporary highlights.
704 Such highlights are created by `org-occur' and `org-clock-display'.
705 When nil, `C-c C-c needs to be used to get rid of the highlights.
706 The highlights created by `org-preview-latex-fragment' always need
707 `C-c C-c' to be removed."
708 :group 'org-sparse-trees
709 :group 'org-time
710 :type 'boolean)
713 (defcustom org-occur-hook '(org-first-headline-recenter)
714 "Hook that is run after `org-occur' has constructed a sparse tree.
715 This can be used to recenter the window to show as much of the structure
716 as possible."
717 :group 'org-sparse-trees
718 :type 'hook)
720 (defgroup org-plain-lists nil
721 "Options concerning plain lists in Org-mode."
722 :tag "Org Plain lists"
723 :group 'org-structure)
725 (defcustom org-cycle-include-plain-lists nil
726 "Non-nil means, include plain lists into visibility cycling.
727 This means that during cycling, plain list items will *temporarily* be
728 interpreted as outline headlines with a level given by 1000+i where i is the
729 indentation of the bullet. In all other operations, plain list items are
730 not seen as headlines. For example, you cannot assign a TODO keyword to
731 such an item."
732 :group 'org-plain-lists
733 :type 'boolean)
735 (defcustom org-plain-list-ordered-item-terminator t
736 "The character that makes a line with leading number an ordered list item.
737 Valid values are ?. and ?\). To get both terminators, use t. While
738 ?. may look nicer, it creates the danger that a line with leading
739 number may be incorrectly interpreted as an item. ?\) therefore is
740 the safe choice."
741 :group 'org-plain-lists
742 :type '(choice (const :tag "dot like in \"2.\"" ?.)
743 (const :tag "paren like in \"2)\"" ?\))
744 (const :tab "both" t)))
746 (defcustom org-empty-line-terminates-plain-lists nil
747 "Non-nil means, an empty line ends all plain list levels.
748 When nil, empty lines are part of the preceeding item."
749 :group 'org-plain-lists
750 :type 'boolean)
752 (defcustom org-auto-renumber-ordered-lists t
753 "Non-nil means, automatically renumber ordered plain lists.
754 Renumbering happens when the sequence have been changed with
755 \\[org-shiftmetaup] or \\[org-shiftmetadown]. After other editing commands,
756 use \\[org-ctrl-c-ctrl-c] to trigger renumbering."
757 :group 'org-plain-lists
758 :type 'boolean)
760 (defcustom org-provide-checkbox-statistics t
761 "Non-nil means, update checkbox statistics after insert and toggle.
762 When this is set, checkbox statistics is updated each time you either insert
763 a new checkbox with \\[org-insert-todo-heading] or toggle a checkbox
764 with \\[org-ctrl-c-ctrl-c\\]."
765 :group 'org-plain-lists
766 :type 'boolean)
768 (defcustom org-description-max-indent 20
769 "Maximum indentation for the second line of a description list.
770 When the indentation would be larger than this, it will become
771 5 characters instead."
772 :group 'org-plain-lists
773 :type 'integer)
775 (defgroup org-imenu-and-speedbar nil
776 "Options concerning imenu and speedbar in Org-mode."
777 :tag "Org Imenu and Speedbar"
778 :group 'org-structure)
780 (defcustom org-imenu-depth 2
781 "The maximum level for Imenu access to Org-mode headlines.
782 This also applied for speedbar access."
783 :group 'org-imenu-and-speedbar
784 :type 'number)
786 (defgroup org-table nil
787 "Options concerning tables in Org-mode."
788 :tag "Org Table"
789 :group 'org)
791 (defcustom org-enable-table-editor 'optimized
792 "Non-nil means, lines starting with \"|\" are handled by the table editor.
793 When nil, such lines will be treated like ordinary lines.
795 When equal to the symbol `optimized', the table editor will be optimized to
796 do the following:
797 - Automatic overwrite mode in front of whitespace in table fields.
798 This makes the structure of the table stay in tact as long as the edited
799 field does not exceed the column width.
800 - Minimize the number of realigns. Normally, the table is aligned each time
801 TAB or RET are pressed to move to another field. With optimization this
802 happens only if changes to a field might have changed the column width.
803 Optimization requires replacing the functions `self-insert-command',
804 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
805 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
806 very good at guessing when a re-align will be necessary, but you can always
807 force one with \\[org-ctrl-c-ctrl-c].
809 If you would like to use the optimized version in Org-mode, but the
810 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
812 This variable can be used to turn on and off the table editor during a session,
813 but in order to toggle optimization, a restart is required.
815 See also the variable `org-table-auto-blank-field'."
816 :group 'org-table
817 :type '(choice
818 (const :tag "off" nil)
819 (const :tag "on" t)
820 (const :tag "on, optimized" optimized)))
822 (defcustom org-table-tab-recognizes-table.el t
823 "Non-nil means, TAB will automatically notice a table.el table.
824 When it sees such a table, it moves point into it and - if necessary -
825 calls `table-recognize-table'."
826 :group 'org-table-editing
827 :type 'boolean)
829 (defgroup org-link nil
830 "Options concerning links in Org-mode."
831 :tag "Org Link"
832 :group 'org)
834 (defvar org-link-abbrev-alist-local nil
835 "Buffer-local version of `org-link-abbrev-alist', which see.
836 The value of this is taken from the #+LINK lines.")
837 (make-variable-buffer-local 'org-link-abbrev-alist-local)
839 (defcustom org-link-abbrev-alist nil
840 "Alist of link abbreviations.
841 The car of each element is a string, to be replaced at the start of a link.
842 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
843 links in Org-mode buffers can have an optional tag after a double colon, e.g.
845 [[linkkey:tag][description]]
847 If REPLACE is a string, the tag will simply be appended to create the link.
848 If the string contains \"%s\", the tag will be inserted there.
850 REPLACE may also be a function that will be called with the tag as the
851 only argument to create the link, which should be returned as a string.
853 See the manual for examples."
854 :group 'org-link
855 :type 'alist)
857 (defcustom org-descriptive-links t
858 "Non-nil means, hide link part and only show description of bracket links.
859 Bracket links are like [[link][descritpion]]. This variable sets the initial
860 state in new org-mode buffers. The setting can then be toggled on a
861 per-buffer basis from the Org->Hyperlinks menu."
862 :group 'org-link
863 :type 'boolean)
865 (defcustom org-link-file-path-type 'adaptive
866 "How the path name in file links should be stored.
867 Valid values are:
869 relative Relative to the current directory, i.e. the directory of the file
870 into which the link is being inserted.
871 absolute Absolute path, if possible with ~ for home directory.
872 noabbrev Absolute path, no abbreviation of home directory.
873 adaptive Use relative path for files in the current directory and sub-
874 directories of it. For other files, use an absolute path."
875 :group 'org-link
876 :type '(choice
877 (const relative)
878 (const absolute)
879 (const noabbrev)
880 (const adaptive)))
882 (defcustom org-activate-links '(bracket angle plain radio tag date)
883 "Types of links that should be activated in Org-mode files.
884 This is a list of symbols, each leading to the activation of a certain link
885 type. In principle, it does not hurt to turn on most link types - there may
886 be a small gain when turning off unused link types. The types are:
888 bracket The recommended [[link][description]] or [[link]] links with hiding.
889 angular Links in angular brackes that may contain whitespace like
890 <bbdb:Carsten Dominik>.
891 plain Plain links in normal text, no whitespace, like http://google.com.
892 radio Text that is matched by a radio target, see manual for details.
893 tag Tag settings in a headline (link to tag search).
894 date Time stamps (link to calendar).
896 Changing this variable requires a restart of Emacs to become effective."
897 :group 'org-link
898 :type '(set (const :tag "Double bracket links (new style)" bracket)
899 (const :tag "Angular bracket links (old style)" angular)
900 (const :tag "Plain text links" plain)
901 (const :tag "Radio target matches" radio)
902 (const :tag "Tags" tag)
903 (const :tag "Timestamps" date)))
905 (defcustom org-make-link-description-function nil
906 "Function to use to generate link descriptions from links. If
907 nil the link location will be used. This function must take two
908 parameters; the first is the link and the second the description
909 org-insert-link has generated, and should return the description
910 to use."
911 :group 'org-link
912 :type 'function)
914 (defgroup org-link-store nil
915 "Options concerning storing links in Org-mode."
916 :tag "Org Store Link"
917 :group 'org-link)
919 (defcustom org-email-link-description-format "Email %c: %.30s"
920 "Format of the description part of a link to an email or usenet message.
921 The following %-excapes will be replaced by corresponding information:
923 %F full \"From\" field
924 %f name, taken from \"From\" field, address if no name
925 %T full \"To\" field
926 %t first name in \"To\" field, address if no name
927 %c correspondent. Unually \"from NAME\", but if you sent it yourself, it
928 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
929 %s subject
930 %m message-id.
932 You may use normal field width specification between the % and the letter.
933 This is for example useful to limit the length of the subject.
935 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
936 :group 'org-link-store
937 :type 'string)
939 (defcustom org-from-is-user-regexp
940 (let (r1 r2)
941 (when (and user-mail-address (not (string= user-mail-address "")))
942 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
943 (when (and user-full-name (not (string= user-full-name "")))
944 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
945 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
946 "Regexp mached against the \"From:\" header of an email or usenet message.
947 It should match if the message is from the user him/herself."
948 :group 'org-link-store
949 :type 'regexp)
951 (defcustom org-context-in-file-links t
952 "Non-nil means, file links from `org-store-link' contain context.
953 A search string will be added to the file name with :: as separator and
954 used to find the context when the link is activated by the command
955 `org-open-at-point'.
956 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
957 negates this setting for the duration of the command."
958 :group 'org-link-store
959 :type 'boolean)
961 (defcustom org-keep-stored-link-after-insertion nil
962 "Non-nil means, keep link in list for entire session.
964 The command `org-store-link' adds a link pointing to the current
965 location to an internal list. These links accumulate during a session.
966 The command `org-insert-link' can be used to insert links into any
967 Org-mode file (offering completion for all stored links). When this
968 option is nil, every link which has been inserted once using \\[org-insert-link]
969 will be removed from the list, to make completing the unused links
970 more efficient."
971 :group 'org-link-store
972 :type 'boolean)
974 (defgroup org-link-follow nil
975 "Options concerning following links in Org-mode."
976 :tag "Org Follow Link"
977 :group 'org-link)
979 (defcustom org-follow-link-hook nil
980 "Hook that is run after a link has been followed."
981 :group 'org-link-follow
982 :type 'hook)
984 (defcustom org-tab-follows-link nil
985 "Non-nil means, on links TAB will follow the link.
986 Needs to be set before org.el is loaded."
987 :group 'org-link-follow
988 :type 'boolean)
990 (defcustom org-return-follows-link nil
991 "Non-nil means, on links RET will follow the link.
992 Needs to be set before org.el is loaded."
993 :group 'org-link-follow
994 :type 'boolean)
996 (defcustom org-mouse-1-follows-link
997 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
998 "Non-nil means, mouse-1 on a link will follow the link.
999 A longer mouse click will still set point. Does not work on XEmacs.
1000 Needs to be set before org.el is loaded."
1001 :group 'org-link-follow
1002 :type 'boolean)
1004 (defcustom org-mark-ring-length 4
1005 "Number of different positions to be recorded in the ring
1006 Changing this requires a restart of Emacs to work correctly."
1007 :group 'org-link-follow
1008 :type 'interger)
1010 (defcustom org-link-frame-setup
1011 '((vm . vm-visit-folder-other-frame)
1012 (gnus . gnus-other-frame)
1013 (file . find-file-other-window))
1014 "Setup the frame configuration for following links.
1015 When following a link with Emacs, it may often be useful to display
1016 this link in another window or frame. This variable can be used to
1017 set this up for the different types of links.
1018 For VM, use any of
1019 `vm-visit-folder'
1020 `vm-visit-folder-other-frame'
1021 For Gnus, use any of
1022 `gnus'
1023 `gnus-other-frame'
1024 For FILE, use any of
1025 `find-file'
1026 `find-file-other-window'
1027 `find-file-other-frame'
1028 For the calendar, use the variable `calendar-setup'.
1029 For BBDB, it is currently only possible to display the matches in
1030 another window."
1031 :group 'org-link-follow
1032 :type '(list
1033 (cons (const vm)
1034 (choice
1035 (const vm-visit-folder)
1036 (const vm-visit-folder-other-window)
1037 (const vm-visit-folder-other-frame)))
1038 (cons (const gnus)
1039 (choice
1040 (const gnus)
1041 (const gnus-other-frame)))
1042 (cons (const file)
1043 (choice
1044 (const find-file)
1045 (const find-file-other-window)
1046 (const find-file-other-frame)))))
1048 (defcustom org-display-internal-link-with-indirect-buffer nil
1049 "Non-nil means, use indirect buffer to display infile links.
1050 Activating internal links (from one location in a file to another location
1051 in the same file) normally just jumps to the location. When the link is
1052 activated with a C-u prefix (or with mouse-3), the link is displayed in
1053 another window. When this option is set, the other window actually displays
1054 an indirect buffer clone of the current buffer, to avoid any visibility
1055 changes to the current buffer."
1056 :group 'org-link-follow
1057 :type 'boolean)
1059 (defcustom org-open-non-existing-files nil
1060 "Non-nil means, `org-open-file' will open non-existing files.
1061 When nil, an error will be generated."
1062 :group 'org-link-follow
1063 :type 'boolean)
1065 (defcustom org-link-mailto-program '(browse-url "mailto:%a?subject=%s")
1066 "Function and arguments to call for following mailto links.
1067 This is a list with the first element being a lisp function, and the
1068 remaining elements being arguments to the function. In string arguments,
1069 %a will be replaced by the address, and %s will be replaced by the subject
1070 if one was given like in <mailto:arthur@galaxy.org::this subject>."
1071 :group 'org-link-follow
1072 :type '(choice
1073 (const :tag "browse-url" (browse-url-mail "mailto:%a?subject=%s"))
1074 (const :tag "compose-mail" (compose-mail "%a" "%s"))
1075 (const :tag "message-mail" (message-mail "%a" "%s"))
1076 (cons :tag "other" (function) (repeat :tag "argument" sexp))))
1078 (defcustom org-confirm-shell-link-function 'yes-or-no-p
1079 "Non-nil means, ask for confirmation before executing shell links.
1080 Shell links can be dangerous: just think about a link
1082 [[shell:rm -rf ~/*][Google Search]]
1084 This link would show up in your Org-mode document as \"Google Search\",
1085 but really it would remove your entire home directory.
1086 Therefore we advise against setting this variable to nil.
1087 Just change it to `y-or-n-p' of you want to confirm with a
1088 single keystroke rather than having to type \"yes\"."
1089 :group 'org-link-follow
1090 :type '(choice
1091 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1092 (const :tag "with y-or-n (faster)" y-or-n-p)
1093 (const :tag "no confirmation (dangerous)" nil)))
1095 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
1096 "Non-nil means, ask for confirmation before executing Emacs Lisp links.
1097 Elisp links can be dangerous: just think about a link
1099 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
1101 This link would show up in your Org-mode document as \"Google Search\",
1102 but really it would remove your entire home directory.
1103 Therefore we advise against setting this variable to nil.
1104 Just change it to `y-or-n-p' of you want to confirm with a
1105 single keystroke rather than having to type \"yes\"."
1106 :group 'org-link-follow
1107 :type '(choice
1108 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1109 (const :tag "with y-or-n (faster)" y-or-n-p)
1110 (const :tag "no confirmation (dangerous)" nil)))
1112 (defconst org-file-apps-defaults-gnu
1113 '((remote . emacs)
1114 (t . mailcap))
1115 "Default file applications on a UNIX or GNU/Linux system.
1116 See `org-file-apps'.")
1118 (defconst org-file-apps-defaults-macosx
1119 '((remote . emacs)
1120 (t . "open %s")
1121 ("ps" . "gv %s")
1122 ("ps.gz" . "gv %s")
1123 ("eps" . "gv %s")
1124 ("eps.gz" . "gv %s")
1125 ("dvi" . "xdvi %s")
1126 ("fig" . "xfig %s"))
1127 "Default file applications on a MacOS X system.
1128 The system \"open\" is known as a default, but we use X11 applications
1129 for some files for which the OS does not have a good default.
1130 See `org-file-apps'.")
1132 (defconst org-file-apps-defaults-windowsnt
1133 (list
1134 '(remote . emacs)
1135 (cons t
1136 (list (if (featurep 'xemacs)
1137 'mswindows-shell-execute
1138 'w32-shell-execute)
1139 "open" 'file)))
1140 "Default file applications on a Windows NT system.
1141 The system \"open\" is used for most files.
1142 See `org-file-apps'.")
1144 (defcustom org-file-apps
1146 ("txt" . emacs)
1147 ("tex" . emacs)
1148 ("ltx" . emacs)
1149 ("org" . emacs)
1150 ("el" . emacs)
1151 ("bib" . emacs)
1153 "External applications for opening `file:path' items in a document.
1154 Org-mode uses system defaults for different file types, but
1155 you can use this variable to set the application for a given file
1156 extension. The entries in this list are cons cells where the car identifies
1157 files and the cdr the corresponding command. Possible values for the
1158 file identifier are
1159 \"ext\" A string identifying an extension
1160 `directory' Matches a directory
1161 `remote' Matches a remote file, accessible through tramp or efs.
1162 Remote files most likely should be visited through Emacs
1163 because external applications cannot handle such paths.
1164 t Default for all remaining files
1166 Possible values for the command are:
1167 `emacs' The file will be visited by the current Emacs process.
1168 `default' Use the default application for this file type.
1169 string A command to be executed by a shell; %s will be replaced
1170 by the path to the file.
1171 sexp A Lisp form which will be evaluated. The file path will
1172 be available in the Lisp variable `file'.
1173 For more examples, see the system specific constants
1174 `org-file-apps-defaults-macosx'
1175 `org-file-apps-defaults-windowsnt'
1176 `org-file-apps-defaults-gnu'."
1177 :group 'org-link-follow
1178 :type '(repeat
1179 (cons (choice :value ""
1180 (string :tag "Extension")
1181 (const :tag "Default for unrecognized files" t)
1182 (const :tag "Remote file" remote)
1183 (const :tag "Links to a directory" directory))
1184 (choice :value ""
1185 (const :tag "Visit with Emacs" emacs)
1186 (const :tag "Use system default" default)
1187 (string :tag "Command")
1188 (sexp :tag "Lisp form")))))
1190 (defgroup org-refile nil
1191 "Options concerning refiling entries in Org-mode."
1192 :tag "Org Remember"
1193 :group 'org)
1195 (defcustom org-directory "~/org"
1196 "Directory with org files.
1197 This directory will be used as default to prompt for org files.
1198 Used by the hooks for remember.el."
1199 :group 'org-refile
1200 :group 'org-remember
1201 :type 'directory)
1203 (defcustom org-default-notes-file "~/.notes"
1204 "Default target for storing notes.
1205 Used by the hooks for remember.el. This can be a string, or nil to mean
1206 the value of `remember-data-file'.
1207 You can set this on a per-template basis with the variable
1208 `org-remember-templates'."
1209 :group 'org-refile
1210 :group 'org-remember
1211 :type '(choice
1212 (const :tag "Default from remember-data-file" nil)
1213 file))
1215 (defcustom org-goto-interface 'outline
1216 "The default interface to be used for `org-goto'.
1217 Allowed vaues are:
1218 outline The interface shows an outline of the relevant file
1219 and the correct heading is found by moving through
1220 the outline or by searching with incremental search.
1221 outline-path-completion Headlines in the current buffer are offered via
1222 completion."
1223 :group 'org-refile
1224 :type '(choice
1225 (const :tag "Outline" outline)
1226 (const :tag "Outline-path-completion" outline-path-completion)))
1228 (defcustom org-reverse-note-order nil
1229 "Non-nil means, store new notes at the beginning of a file or entry.
1230 When nil, new notes will be filed to the end of a file or entry.
1231 This can also be a list with cons cells of regular expressions that
1232 are matched against file names, and values."
1233 :group 'org-remember
1234 :type '(choice
1235 (const :tag "Reverse always" t)
1236 (const :tag "Reverse never" nil)
1237 (repeat :tag "By file name regexp"
1238 (cons regexp boolean))))
1240 (defcustom org-refile-targets nil
1241 "Targets for refiling entries with \\[org-refile].
1242 This is list of cons cells. Each cell contains:
1243 - a specification of the files to be considered, either a list of files,
1244 or a symbol whose function or variable value will be used to retrieve
1245 a file name or a list of file names. Nil means, refile to a different
1246 heading in the current buffer.
1247 - A specification of how to find candidate refile targets. This may be
1248 any of
1249 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
1250 This tag has to be present in all target headlines, inheritance will
1251 not be considered.
1252 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
1253 todo keyword.
1254 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
1255 headlines that are refiling targets.
1256 - a cons cell (:level . N). Any headline of level N is considered a target.
1257 - a cons cell (:maxlevel . N). Any headline with level <= N is a target."
1258 :group 'org-remember
1259 :type '(repeat
1260 (cons
1261 (choice :value org-agenda-files
1262 (const :tag "All agenda files" org-agenda-files)
1263 (const :tag "Current buffer" nil)
1264 (function) (variable) (file))
1265 (choice :tag "Identify target headline by"
1266 (cons :tag "Specific tag" (const :tag) (string))
1267 (cons :tag "TODO keyword" (const :todo) (string))
1268 (cons :tag "Regular expression" (const :regexp) (regexp))
1269 (cons :tag "Level number" (const :level) (integer))
1270 (cons :tag "Max Level number" (const :maxlevel) (integer))))))
1272 (defcustom org-refile-use-outline-path nil
1273 "Non-nil means, provide refile targets as paths.
1274 So a level 3 headline will be available as level1/level2/level3.
1275 When the value is `file', also include the file name (without directory)
1276 into the path. When `full-file-path', include the full file path."
1277 :group 'org-remember
1278 :type '(choice
1279 (const :tag "Not" nil)
1280 (const :tag "Yes" t)
1281 (const :tag "Start with file name" file)
1282 (const :tag "Start with full file path" full-file-path)))
1284 (defgroup org-todo nil
1285 "Options concerning TODO items in Org-mode."
1286 :tag "Org TODO"
1287 :group 'org)
1289 (defgroup org-progress nil
1290 "Options concerning Progress logging in Org-mode."
1291 :tag "Org Progress"
1292 :group 'org-time)
1294 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
1295 "List of TODO entry keyword sequences and their interpretation.
1296 \\<org-mode-map>This is a list of sequences.
1298 Each sequence starts with a symbol, either `sequence' or `type',
1299 indicating if the keywords should be interpreted as a sequence of
1300 action steps, or as different types of TODO items. The first
1301 keywords are states requiring action - these states will select a headline
1302 for inclusion into the global TODO list Org-mode produces. If one of
1303 the \"keywords\" is the vertical bat \"|\" the remaining keywords
1304 signify that no further action is necessary. If \"|\" is not found,
1305 the last keyword is treated as the only DONE state of the sequence.
1307 The command \\[org-todo] cycles an entry through these states, and one
1308 additional state where no keyword is present. For details about this
1309 cycling, see the manual.
1311 TODO keywords and interpretation can also be set on a per-file basis with
1312 the special #+SEQ_TODO and #+TYP_TODO lines.
1314 Each keyword can optionally specify a character for fast state selection
1315 \(in combination with the variable `org-use-fast-todo-selection')
1316 and specifiers for state change logging, using the same syntax
1317 that is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says
1318 that the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
1319 indicates to record a time stamp each time this state is selected.
1321 Each keyword may also specify if a timestamp or a note should be
1322 recorded when entering or leaving the state, by adding additional
1323 characters in the parenthesis after the keyword. This looks like this:
1324 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
1325 record only the time of the state change. With X and Y being either
1326 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
1327 Y when leaving the state if and only if the *target* state does not
1328 define X. You may omit any of the fast-selection key or X or /Y,
1329 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
1331 For backward compatibility, this variable may also be just a list
1332 of keywords - in this case the interptetation (sequence or type) will be
1333 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
1334 :group 'org-todo
1335 :group 'org-keywords
1336 :type '(choice
1337 (repeat :tag "Old syntax, just keywords"
1338 (string :tag "Keyword"))
1339 (repeat :tag "New syntax"
1340 (cons
1341 (choice
1342 :tag "Interpretation"
1343 (const :tag "Sequence (cycling hits every state)" sequence)
1344 (const :tag "Type (cycling directly to DONE)" type))
1345 (repeat
1346 (string :tag "Keyword"))))))
1348 (defvar org-todo-keywords-1 nil
1349 "All TODO and DONE keywords active in a buffer.")
1350 (make-variable-buffer-local 'org-todo-keywords-1)
1351 (defvar org-todo-keywords-for-agenda nil)
1352 (defvar org-done-keywords-for-agenda nil)
1353 (defvar org-agenda-contributing-files nil)
1354 (defvar org-not-done-keywords nil)
1355 (make-variable-buffer-local 'org-not-done-keywords)
1356 (defvar org-done-keywords nil)
1357 (make-variable-buffer-local 'org-done-keywords)
1358 (defvar org-todo-heads nil)
1359 (make-variable-buffer-local 'org-todo-heads)
1360 (defvar org-todo-sets nil)
1361 (make-variable-buffer-local 'org-todo-sets)
1362 (defvar org-todo-log-states nil)
1363 (make-variable-buffer-local 'org-todo-log-states)
1364 (defvar org-todo-kwd-alist nil)
1365 (make-variable-buffer-local 'org-todo-kwd-alist)
1366 (defvar org-todo-key-alist nil)
1367 (make-variable-buffer-local 'org-todo-key-alist)
1368 (defvar org-todo-key-trigger nil)
1369 (make-variable-buffer-local 'org-todo-key-trigger)
1371 (defcustom org-todo-interpretation 'sequence
1372 "Controls how TODO keywords are interpreted.
1373 This variable is in principle obsolete and is only used for
1374 backward compatibility, if the interpretation of todo keywords is
1375 not given already in `org-todo-keywords'. See that variable for
1376 more information."
1377 :group 'org-todo
1378 :group 'org-keywords
1379 :type '(choice (const sequence)
1380 (const type)))
1382 (defcustom org-use-fast-todo-selection 'prefix
1383 "Non-nil means, use the fast todo selection scheme with C-c C-t.
1384 This variable describes if and under what circumstances the cycling
1385 mechanism for TODO keywords will be replaced by a single-key, direct
1386 selection scheme.
1388 When nil, fast selection is never used.
1390 When the symbol `prefix', it will be used when `org-todo' is called with
1391 a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and `C-u t'
1392 in an agenda buffer.
1394 When t, fast selection is used by default. In this case, the prefix
1395 argument forces cycling instead.
1397 In all cases, the special interface is only used if access keys have actually
1398 been assigned by the user, i.e. if keywords in the configuration are followed
1399 by a letter in parenthesis, like TODO(t)."
1400 :group 'org-todo
1401 :type '(choice
1402 (const :tag "Never" nil)
1403 (const :tag "By default" t)
1404 (const :tag "Only with C-u C-c C-t" prefix)))
1406 (defcustom org-provide-todo-statistics t
1407 "Non-nil means, update todo statistics after insert and toggle.
1408 When this is set, todo statistics is updated in the parent of the current
1409 entry each time a todo state is changed."
1410 :group 'org-todo
1411 :type 'boolean)
1413 (defcustom org-after-todo-state-change-hook nil
1414 "Hook which is run after the state of a TODO item was changed.
1415 The new state (a string with a TODO keyword, or nil) is available in the
1416 Lisp variable `state'."
1417 :group 'org-todo
1418 :type 'hook)
1420 (defcustom org-log-done nil
1421 "Non-nil means, record a CLOSED timestamp when moving an entry to DONE.
1422 When equal to the list (done), also prompt for a closing note.
1423 This can also be configured on a per-file basis by adding one of
1424 the following lines anywhere in the buffer:
1426 #+STARTUP: logdone
1427 #+STARTUP: lognotedone
1428 #+STARTUP: nologdone"
1429 :group 'org-todo
1430 :group 'org-progress
1431 :type '(choice
1432 (const :tag "No logging" nil)
1433 (const :tag "Record CLOSED timestamp" time)
1434 (const :tag "Record CLOSED timestamp with closing note." note)))
1436 ;; Normalize old uses of org-log-done.
1437 (cond
1438 ((eq org-log-done t) (setq org-log-done 'time))
1439 ((and (listp org-log-done) (memq 'done org-log-done))
1440 (setq org-log-done 'note)))
1442 (defcustom org-log-note-clock-out nil
1443 "Non-nil means, recored a note when clocking out of an item.
1444 This can also be configured on a per-file basis by adding one of
1445 the following lines anywhere in the buffer:
1447 #+STARTUP: lognoteclock-out
1448 #+STARTUP: nolognoteclock-out"
1449 :group 'org-todo
1450 :group 'org-progress
1451 :type 'boolean)
1453 (defcustom org-log-done-with-time t
1454 "Non-nil means, the CLOSED time stamp will contain date and time.
1455 When nil, only the date will be recorded."
1456 :group 'org-progress
1457 :type 'boolean)
1459 (defcustom org-log-note-headings
1460 '((done . "CLOSING NOTE %t")
1461 (state . "State %-12s %t")
1462 (note . "Note taken on %t")
1463 (clock-out . ""))
1464 "Headings for notes added to entries.
1465 The value is an alist, with the car being a symbol indicating the note
1466 context, and the cdr is the heading to be used. The heading may also be the
1467 empty string.
1468 %t in the heading will be replaced by a time stamp.
1469 %s will be replaced by the new TODO state, in double quotes.
1470 %u will be replaced by the user name.
1471 %U will be replaced by the full user name."
1472 :group 'org-todo
1473 :group 'org-progress
1474 :type '(list :greedy t
1475 (cons (const :tag "Heading when closing an item" done) string)
1476 (cons (const :tag
1477 "Heading when changing todo state (todo sequence only)"
1478 state) string)
1479 (cons (const :tag "Heading when just taking a note" note) string)
1480 (cons (const :tag "Heading when clocking out" clock-out) string)))
1482 (unless (assq 'note org-log-note-headings)
1483 (push '(note . "%t") org-log-note-headings))
1485 (defcustom org-log-states-order-reversed t
1486 "Non-nil means, the latest state change note will be directly after heading.
1487 When nil, the notes will be orderer according to time."
1488 :group 'org-todo
1489 :group 'org-progress
1490 :type 'boolean)
1492 (defcustom org-log-repeat 'time
1493 "Non-nil means, record moving through the DONE state when triggering repeat.
1494 An auto-repeating tasks is immediately switched back to TODO when marked
1495 done. If you are not logging state changes (by adding \"@\" or \"!\" to
1496 the TODO keyword definition, or recording a closing note by setting
1497 `org-log-done', there will be no record of the task moving through DONE.
1498 This variable forces taking a note anyway. Possible values are:
1500 nil Don't force a record
1501 time Record a time stamp
1502 note Record a note
1504 This option can also be set with on a per-file-basis with
1506 #+STARTUP: logrepeat
1507 #+STARTUP: lognoterepeat
1508 #+STARTUP: nologrepeat
1510 You can have local logging settings for a subtree by setting the LOGGING
1511 property to one or more of these keywords."
1512 :group 'org-todo
1513 :group 'org-progress
1514 :type '(choice
1515 (const :tag "Don't force a record" nil)
1516 (const :tag "Force recording the DONE state" time)
1517 (const :tag "Force recording a note with the DONE state" note)))
1520 (defgroup org-priorities nil
1521 "Priorities in Org-mode."
1522 :tag "Org Priorities"
1523 :group 'org-todo)
1525 (defcustom org-highest-priority ?A
1526 "The highest priority of TODO items. A character like ?A, ?B etc.
1527 Must have a smaller ASCII number than `org-lowest-priority'."
1528 :group 'org-priorities
1529 :type 'character)
1531 (defcustom org-lowest-priority ?C
1532 "The lowest priority of TODO items. A character like ?A, ?B etc.
1533 Must have a larger ASCII number than `org-highest-priority'."
1534 :group 'org-priorities
1535 :type 'character)
1537 (defcustom org-default-priority ?B
1538 "The default priority of TODO items.
1539 This is the priority an item get if no explicit priority is given."
1540 :group 'org-priorities
1541 :type 'character)
1543 (defcustom org-priority-start-cycle-with-default t
1544 "Non-nil means, start with default priority when starting to cycle.
1545 When this is nil, the first step in the cycle will be (depending on the
1546 command used) one higher or lower that the default priority."
1547 :group 'org-priorities
1548 :type 'boolean)
1550 (defgroup org-time nil
1551 "Options concerning time stamps and deadlines in Org-mode."
1552 :tag "Org Time"
1553 :group 'org)
1555 (defcustom org-insert-labeled-timestamps-at-point nil
1556 "Non-nil means, SCHEDULED and DEADLINE timestamps are inserted at point.
1557 When nil, these labeled time stamps are forces into the second line of an
1558 entry, just after the headline. When scheduling from the global TODO list,
1559 the time stamp will always be forced into the second line."
1560 :group 'org-time
1561 :type 'boolean)
1563 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
1564 "Formats for `format-time-string' which are used for time stamps.
1565 It is not recommended to change this constant.")
1567 (defcustom org-time-stamp-rounding-minutes '(0 5)
1568 "Number of minutes to round time stamps to.
1569 These are two values, the first applies when first creating a time stamp.
1570 The second applies when changing it with the commands `S-up' and `S-down'.
1571 When changing the time stamp, this means that it will change in steps
1572 of N minutes, as given by the second value.
1574 When a setting is 0 or 1, insert the time unmodified. Useful rounding
1575 numbers should be factors of 60, so for example 5, 10, 15.
1577 When this is larger than 1, you can still force an exact time-stamp by using
1578 a double prefix argument to a time-stamp command like `C-c .' or `C-c !',
1579 and by using a prefix arg to `S-up/down' to specify the exact number
1580 of minutes to shift."
1581 :group 'org-time
1582 :get '(lambda (var) ; Make sure all entries have 5 elements
1583 (if (integerp (default-value var))
1584 (list (default-value var) 5)
1585 (default-value var)))
1586 :type '(list
1587 (integer :tag "when inserting times")
1588 (integer :tag "when modifying times")))
1590 ;; Normalize old customizations of this variable.
1591 (when (integerp org-time-stamp-rounding-minutes)
1592 (setq org-time-stamp-rounding-minutes
1593 (list org-time-stamp-rounding-minutes
1594 org-time-stamp-rounding-minutes)))
1596 (defcustom org-display-custom-times nil
1597 "Non-nil means, overlay custom formats over all time stamps.
1598 The formats are defined through the variable `org-time-stamp-custom-formats'.
1599 To turn this on on a per-file basis, insert anywhere in the file:
1600 #+STARTUP: customtime"
1601 :group 'org-time
1602 :set 'set-default
1603 :type 'sexp)
1604 (make-variable-buffer-local 'org-display-custom-times)
1606 (defcustom org-time-stamp-custom-formats
1607 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
1608 "Custom formats for time stamps. See `format-time-string' for the syntax.
1609 These are overlayed over the default ISO format if the variable
1610 `org-display-custom-times' is set. Time like %H:%M should be at the
1611 end of the second format."
1612 :group 'org-time
1613 :type 'sexp)
1615 (defun org-time-stamp-format (&optional long inactive)
1616 "Get the right format for a time string."
1617 (let ((f (if long (cdr org-time-stamp-formats)
1618 (car org-time-stamp-formats))))
1619 (if inactive
1620 (concat "[" (substring f 1 -1) "]")
1621 f)))
1623 (defcustom org-time-clocksum-format "%d:%02d"
1624 "The format string used when creating CLOCKSUM lines, or when
1625 org-mode generates a time duration."
1626 :group 'org-time
1627 :type 'string)
1629 (defcustom org-deadline-warning-days 14
1630 "No. of days before expiration during which a deadline becomes active.
1631 This variable governs the display in sparse trees and in the agenda.
1632 When 0 or negative, it means use this number (the absolute value of it)
1633 even if a deadline has a different individual lead time specified."
1634 :group 'org-time
1635 :group 'org-agenda-daily/weekly
1636 :type 'number)
1638 (defcustom org-read-date-prefer-future t
1639 "Non-nil means, assume future for incomplete date input from user.
1640 This affects the following situations:
1641 1. The user gives a day, but no month.
1642 For example, if today is the 15th, and you enter \"3\", Org-mode will
1643 read this as the third of *next* month. However, if you enter \"17\",
1644 it will be considered as *this* month.
1645 2. The user gives a month but not a year.
1646 For example, if it is april and you enter \"feb 2\", this will be read
1647 as feb 2, *next* year. \"May 5\", however, will be this year.
1649 Currently this does not work for ISO week specifications.
1651 When this option is nil, the current month and year will always be used
1652 as defaults."
1653 :group 'org-time
1654 :type 'boolean)
1656 (defcustom org-read-date-display-live t
1657 "Non-nil means, display current interpretation of date prompt live.
1658 This display will be in an overlay, in the minibuffer."
1659 :group 'org-time
1660 :type 'boolean)
1662 (defcustom org-read-date-popup-calendar t
1663 "Non-nil means, pop up a calendar when prompting for a date.
1664 In the calendar, the date can be selected with mouse-1. However, the
1665 minibuffer will also be active, and you can simply enter the date as well.
1666 When nil, only the minibuffer will be available."
1667 :group 'org-time
1668 :type 'boolean)
1669 (if (fboundp 'defvaralias)
1670 (defvaralias 'org-popup-calendar-for-date-prompt
1671 'org-read-date-popup-calendar))
1673 (defcustom org-extend-today-until 0
1674 "The hour when your day really ends.
1675 This has influence for the following applications:
1676 - When switching the agenda to \"today\". It it is still earlier than
1677 the time given here, the day recognized as TODAY is actually yesterday.
1678 - When a date is read from the user and it is still before the time given
1679 here, the current date and time will be assumed to be yesterday, 23:59.
1681 FIXME:
1682 IMPORTANT: This is still a very experimental feature, it may disappear
1683 again or it may be extended to mean more things."
1684 :group 'org-time
1685 :type 'number)
1687 (defcustom org-edit-timestamp-down-means-later nil
1688 "Non-nil means, S-down will increase the time in a time stamp.
1689 When nil, S-up will increase."
1690 :group 'org-time
1691 :type 'boolean)
1693 (defcustom org-calendar-follow-timestamp-change t
1694 "Non-nil means, make the calendar window follow timestamp changes.
1695 When a timestamp is modified and the calendar window is visible, it will be
1696 moved to the new date."
1697 :group 'org-time
1698 :type 'boolean)
1700 (defgroup org-tags nil
1701 "Options concerning tags in Org-mode."
1702 :tag "Org Tags"
1703 :group 'org)
1705 (defcustom org-tag-alist nil
1706 "List of tags allowed in Org-mode files.
1707 When this list is nil, Org-mode will base TAG input on what is already in the
1708 buffer.
1709 The value of this variable is an alist, the car of each entry must be a
1710 keyword as a string, the cdr may be a character that is used to select
1711 that tag through the fast-tag-selection interface.
1712 See the manual for details."
1713 :group 'org-tags
1714 :type '(repeat
1715 (choice
1716 (cons (string :tag "Tag name")
1717 (character :tag "Access char"))
1718 (const :tag "Start radio group" (:startgroup))
1719 (const :tag "End radio group" (:endgroup)))))
1721 (defvar org-file-tags nil
1722 "List of tags that can be inherited by all entries in the file.
1723 The tags will be inherited if the variable `org-use-tag-inheritance'
1724 says they should be.
1725 This variable is populated from #+TAG lines.")
1727 (defcustom org-use-fast-tag-selection 'auto
1728 "Non-nil means, use fast tag selection scheme.
1729 This is a special interface to select and deselect tags with single keys.
1730 When nil, fast selection is never used.
1731 When the symbol `auto', fast selection is used if and only if selection
1732 characters for tags have been configured, either through the variable
1733 `org-tag-alist' or through a #+TAGS line in the buffer.
1734 When t, fast selection is always used and selection keys are assigned
1735 automatically if necessary."
1736 :group 'org-tags
1737 :type '(choice
1738 (const :tag "Always" t)
1739 (const :tag "Never" nil)
1740 (const :tag "When selection characters are configured" 'auto)))
1742 (defcustom org-fast-tag-selection-single-key nil
1743 "Non-nil means, fast tag selection exits after first change.
1744 When nil, you have to press RET to exit it.
1745 During fast tag selection, you can toggle this flag with `C-c'.
1746 This variable can also have the value `expert'. In this case, the window
1747 displaying the tags menu is not even shown, until you press C-c again."
1748 :group 'org-tags
1749 :type '(choice
1750 (const :tag "No" nil)
1751 (const :tag "Yes" t)
1752 (const :tag "Expert" expert)))
1754 (defvar org-fast-tag-selection-include-todo nil
1755 "Non-nil means, fast tags selection interface will also offer TODO states.
1756 This is an undocumented feature, you should not rely on it.")
1758 (defcustom org-tags-column (if (featurep 'xemacs) -79 -80)
1759 "The column to which tags should be indented in a headline.
1760 If this number is positive, it specifies the column. If it is negative,
1761 it means that the tags should be flushright to that column. For example,
1762 -80 works well for a normal 80 character screen."
1763 :group 'org-tags
1764 :type 'integer)
1766 (defcustom org-auto-align-tags t
1767 "Non-nil means, realign tags after pro/demotion of TODO state change.
1768 These operations change the length of a headline and therefore shift
1769 the tags around. With this options turned on, after each such operation
1770 the tags are again aligned to `org-tags-column'."
1771 :group 'org-tags
1772 :type 'boolean)
1774 (defcustom org-use-tag-inheritance t
1775 "Non-nil means, tags in levels apply also for sublevels.
1776 When nil, only the tags directly given in a specific line apply there.
1777 If this option is t, a match early-on in a tree can lead to a large
1778 number of matches in the subtree. If you only want to see the first
1779 match in a tree during a search, check out the variable
1780 `org-tags-match-list-sublevels'.
1782 This may also be a list of tags that should be inherited, or a regexp that
1783 matches tags that should be inherited."
1784 :group 'org-tags
1785 :type '(choice
1786 (const :tag "Not" nil)
1787 (const :tag "Always" t)
1788 (repeat :tag "Specific tags" (string :tag "Tag"))
1789 (regexp :tag "Tags matched by regexp")))
1791 (defun org-tag-inherit-p (tag)
1792 "Check if TAG is one that should be inherited."
1793 (cond
1794 ((eq org-use-tag-inheritance t) t)
1795 ((not org-use-tag-inheritance) nil)
1796 ((stringp org-use-tag-inheritance)
1797 (string-match org-use-tag-inheritance tag))
1798 ((listp org-use-tag-inheritance)
1799 (member tag org-use-tag-inheritance))
1800 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
1802 (defcustom org-tags-match-list-sublevels t
1803 "Non-nil means list also sublevels of headlines matching tag search.
1804 Because of tag inheritance (see variable `org-use-tag-inheritance'),
1805 the sublevels of a headline matching a tag search often also match
1806 the same search. Listing all of them can create very long lists.
1807 Setting this variable to nil causes subtrees of a match to be skipped.
1808 This option is off by default, because inheritance in on. If you turn
1809 inheritance off, you very likely want to turn this option on.
1811 As a special case, if the tag search is restricted to TODO items, the
1812 value of this variable is ignored and sublevels are always checked, to
1813 make sure all corresponding TODO items find their way into the list."
1814 :group 'org-tags
1815 :type 'boolean)
1817 (defvar org-tags-history nil
1818 "History of minibuffer reads for tags.")
1819 (defvar org-last-tags-completion-table nil
1820 "The last used completion table for tags.")
1821 (defvar org-after-tags-change-hook nil
1822 "Hook that is run after the tags in a line have changed.")
1824 (defgroup org-properties nil
1825 "Options concerning properties in Org-mode."
1826 :tag "Org Properties"
1827 :group 'org)
1829 (defcustom org-property-format "%-10s %s"
1830 "How property key/value pairs should be formatted by `indent-line'.
1831 When `indent-line' hits a property definition, it will format the line
1832 according to this format, mainly to make sure that the values are
1833 lined-up with respect to each other."
1834 :group 'org-properties
1835 :type 'string)
1837 (defcustom org-use-property-inheritance nil
1838 "Non-nil means, properties apply also for sublevels.
1840 This setting is chiefly used during property searches. Turning it on can
1841 cause significant overhead when doing a search, which is why it is not
1842 on by default.
1844 When nil, only the properties directly given in the current entry count.
1845 When t, every property is inherited. The value may also be a list of
1846 properties that should have inheritance, or a regular expression matching
1847 properties that should be inherited.
1849 However, note that some special properties use inheritance under special
1850 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
1851 and the properties ending in \"_ALL\" when they are used as descriptor
1852 for valid values of a property.
1854 Note for programmers:
1855 When querying an entry with `org-entry-get', you can control if inheritance
1856 should be used. By default, `org-entry-get' looks only at the local
1857 properties. You can request inheritance by setting the inherit argument
1858 to t (to force inheritance) or to `selective' (to respect the setting
1859 in this variable)."
1860 :group 'org-properties
1861 :type '(choice
1862 (const :tag "Not" nil)
1863 (const :tag "Always" t)
1864 (repeat :tag "Specific properties" (string :tag "Property"))
1865 (regexp :tag "Properties matched by regexp")))
1867 (defun org-property-inherit-p (property)
1868 "Check if PROPERTY is one that should be inherited."
1869 (cond
1870 ((eq org-use-property-inheritance t) t)
1871 ((not org-use-property-inheritance) nil)
1872 ((stringp org-use-property-inheritance)
1873 (string-match org-use-property-inheritance property))
1874 ((listp org-use-property-inheritance)
1875 (member property org-use-property-inheritance))
1876 (t (error "Invalid setting of `org-use-property-inheritance'"))))
1878 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
1879 "The default column format, if no other format has been defined.
1880 This variable can be set on the per-file basis by inserting a line
1882 #+COLUMNS: %25ITEM ....."
1883 :group 'org-properties
1884 :type 'string)
1886 (defcustom org-columns-ellipses ".."
1887 "The ellipses to be used when a field in column view is truncated.
1888 When this is the empty string, as many characters as possible are shown,
1889 but then there will be no visual indication that the field has been truncated.
1890 When this is a string of length N, the last N characters of a truncated
1891 field are replaced by this string. If the column is narrower than the
1892 ellipses string, only part of the ellipses string will be shown."
1893 :group 'org-properties
1894 :type 'string)
1897 (defcustom org-effort-property "Effort"
1898 "The property that is being used to keep track of effort estimates.
1899 Effort estimates given in this property need to have the format H:MM."
1900 :group 'org-properties
1901 :group 'org-progress
1902 :type '(string :tag "Property"))
1904 (defconst org-global-properties-fixed
1905 '(("VISIBILITY_ALL" . "folded children content all"))
1906 "List of property/value pairs that can be inherited by any entry.
1907 These are fixed values, for the preset properties.")
1910 (defcustom org-global-properties nil
1911 "List of property/value pairs that can be inherited by any entry.
1912 You can set buffer-local values for this by adding lines like
1914 #+PROPERTY: NAME VALUE"
1915 :group 'org-properties
1916 :type '(repeat
1917 (cons (string :tag "Property")
1918 (string :tag "Value"))))
1920 (defvar org-file-properties nil
1921 "List of property/value pairs that can be inherited by any entry.
1922 Valid for the current buffer.
1923 This variable is populated from #+PROPERTY lines.")
1924 (make-variable-buffer-local 'org-file-properties)
1926 (defgroup org-agenda nil
1927 "Options concerning agenda views in Org-mode."
1928 :tag "Org Agenda"
1929 :group 'org)
1931 (defvar org-category nil
1932 "Variable used by org files to set a category for agenda display.
1933 Such files should use a file variable to set it, for example
1935 # -*- mode: org; org-category: \"ELisp\"
1937 or contain a special line
1939 #+CATEGORY: ELisp
1941 If the file does not specify a category, then file's base name
1942 is used instead.")
1943 (make-variable-buffer-local 'org-category)
1945 (defcustom org-agenda-files nil
1946 "The files to be used for agenda display.
1947 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
1948 \\[org-remove-file]. You can also use customize to edit the list.
1950 If an entry is a directory, all files in that directory that are matched by
1951 `org-agenda-file-regexp' will be part of the file list.
1953 If the value of the variable is not a list but a single file name, then
1954 the list of agenda files is actually stored and maintained in that file, one
1955 agenda file per line."
1956 :group 'org-agenda
1957 :type '(choice
1958 (repeat :tag "List of files and directories" file)
1959 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
1961 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
1962 "Regular expression to match files for `org-agenda-files'.
1963 If any element in the list in that variable contains a directory instead
1964 of a normal file, all files in that directory that are matched by this
1965 regular expression will be included."
1966 :group 'org-agenda
1967 :type 'regexp)
1969 (defcustom org-agenda-text-search-extra-files nil
1970 "List of extra files to be searched by text search commands.
1971 These files will be search in addition to the agenda files by the
1972 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
1973 Note that these files will only be searched for text search commands,
1974 not for the other agenda views like todo lists, tag searches or the weekly
1975 agenda. This variable is intended to list notes and possibly archive files
1976 that should also be searched by these two commands.
1977 In fact, if the first element in the list is the symbol `agenda-archives',
1978 than all archive files of all agenda files will be added to the search
1979 scope."
1980 :group 'org-agenda
1981 :type '(set :greedy t
1982 (const :tag "Agenda Archives" agenda-archives)
1983 (repeat :inline t (file))))
1985 (if (fboundp 'defvaralias)
1986 (defvaralias 'org-agenda-multi-occur-extra-files
1987 'org-agenda-text-search-extra-files))
1989 (defcustom org-agenda-skip-unavailable-files nil
1990 "t means to just skip non-reachable files in `org-agenda-files'.
1991 Nil means to remove them, after a query, from the list."
1992 :group 'org-agenda
1993 :type 'boolean)
1995 (defcustom org-calendar-to-agenda-key [?c]
1996 "The key to be installed in `calendar-mode-map' for switching to the agenda.
1997 The command `org-calendar-goto-agenda' will be bound to this key. The
1998 default is the character `c' because then `c' can be used to switch back and
1999 forth between agenda and calendar."
2000 :group 'org-agenda
2001 :type 'sexp)
2003 (eval-after-load "calendar"
2004 '(org-defkey calendar-mode-map org-calendar-to-agenda-key
2005 'org-calendar-goto-agenda))
2007 (defgroup org-latex nil
2008 "Options for embedding LaTeX code into Org-mode."
2009 :tag "Org LaTeX"
2010 :group 'org)
2012 (defcustom org-format-latex-options
2013 '(:foreground default :background default :scale 1.0
2014 :html-foreground "Black" :html-background "Transparent" :html-scale 1.0
2015 :matchers ("begin" "$" "$$" "\\(" "\\["))
2016 "Options for creating images from LaTeX fragments.
2017 This is a property list with the following properties:
2018 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
2019 `default' means use the foreground of the default face.
2020 :background the background color, or \"Transparent\".
2021 `default' means use the background of the default face.
2022 :scale a scaling factor for the size of the images.
2023 :html-foreground, :html-background, :html-scale
2024 the same numbers for HTML export.
2025 :matchers a list indicating which matchers should be used to
2026 find LaTeX fragments. Valid members of this list are:
2027 \"begin\" find environments
2028 \"$\" find math expressions surrounded by $...$
2029 \"$$\" find math expressions surrounded by $$....$$
2030 \"\\(\" find math expressions surrounded by \\(...\\)
2031 \"\\ [\" find math expressions surrounded by \\ [...\\]"
2032 :group 'org-latex
2033 :type 'plist)
2035 (defcustom org-format-latex-header "\\documentclass{article}
2036 \\usepackage{fullpage} % do not remove
2037 \\usepackage{amssymb}
2038 \\usepackage[usenames]{color}
2039 \\usepackage{amsmath}
2040 \\usepackage{latexsym}
2041 \\usepackage[mathscr]{eucal}
2042 \\pagestyle{empty} % do not remove"
2043 "The document header used for processing LaTeX fragments."
2044 :group 'org-latex
2045 :type 'string)
2048 (defgroup org-font-lock nil
2049 "Font-lock settings for highlighting in Org-mode."
2050 :tag "Org Font Lock"
2051 :group 'org)
2053 (defcustom org-level-color-stars-only nil
2054 "Non-nil means fontify only the stars in each headline.
2055 When nil, the entire headline is fontified.
2056 Changing it requires restart of `font-lock-mode' to become effective
2057 also in regions already fontified."
2058 :group 'org-font-lock
2059 :type 'boolean)
2061 (defcustom org-hide-leading-stars nil
2062 "Non-nil means, hide the first N-1 stars in a headline.
2063 This works by using the face `org-hide' for these stars. This
2064 face is white for a light background, and black for a dark
2065 background. You may have to customize the face `org-hide' to
2066 make this work.
2067 Changing it requires restart of `font-lock-mode' to become effective
2068 also in regions already fontified.
2069 You may also set this on a per-file basis by adding one of the following
2070 lines to the buffer:
2072 #+STARTUP: hidestars
2073 #+STARTUP: showstars"
2074 :group 'org-font-lock
2075 :type 'boolean)
2077 (defcustom org-fontify-done-headline nil
2078 "Non-nil means, change the face of a headline if it is marked DONE.
2079 Normally, only the TODO/DONE keyword indicates the state of a headline.
2080 When this is non-nil, the headline after the keyword is set to the
2081 `org-headline-done' as an additional indication."
2082 :group 'org-font-lock
2083 :type 'boolean)
2085 (defcustom org-fontify-emphasized-text t
2086 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
2087 Changing this variable requires a restart of Emacs to take effect."
2088 :group 'org-font-lock
2089 :type 'boolean)
2091 (defcustom org-highlight-latex-fragments-and-specials nil
2092 "Non-nil means, fontify what is treated specially by the exporters."
2093 :group 'org-font-lock
2094 :type 'boolean)
2096 (defcustom org-hide-emphasis-markers nil
2097 "Non-nil mean font-lock should hide the emphasis marker characters."
2098 :group 'org-font-lock
2099 :type 'boolean)
2101 (defvar org-emph-re nil
2102 "Regular expression for matching emphasis.")
2103 (defvar org-verbatim-re nil
2104 "Regular expression for matching verbatim text.")
2105 (defvar org-emphasis-regexp-components) ; defined just below
2106 (defvar org-emphasis-alist) ; defined just below
2107 (defun org-set-emph-re (var val)
2108 "Set variable and compute the emphasis regular expression."
2109 (set var val)
2110 (when (and (boundp 'org-emphasis-alist)
2111 (boundp 'org-emphasis-regexp-components)
2112 org-emphasis-alist org-emphasis-regexp-components)
2113 (let* ((e org-emphasis-regexp-components)
2114 (pre (car e))
2115 (post (nth 1 e))
2116 (border (nth 2 e))
2117 (body (nth 3 e))
2118 (nl (nth 4 e))
2119 (stacked (and nil (nth 5 e))) ; stacked is no longer allowed, forced to nil
2120 (body1 (concat body "*?"))
2121 (markers (mapconcat 'car org-emphasis-alist ""))
2122 (vmarkers (mapconcat
2123 (lambda (x) (if (eq (nth 4 x) 'verbatim) (car x) ""))
2124 org-emphasis-alist "")))
2125 ;; make sure special characters appear at the right position in the class
2126 (if (string-match "\\^" markers)
2127 (setq markers (concat (replace-match "" t t markers) "^")))
2128 (if (string-match "-" markers)
2129 (setq markers (concat (replace-match "" t t markers) "-")))
2130 (if (string-match "\\^" vmarkers)
2131 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
2132 (if (string-match "-" vmarkers)
2133 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
2134 (if (> nl 0)
2135 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
2136 (int-to-string nl) "\\}")))
2137 ;; Make the regexp
2138 (setq org-emph-re
2139 (concat "\\([" pre (if (and nil stacked) markers) "]\\|^\\)"
2140 "\\("
2141 "\\([" markers "]\\)"
2142 "\\("
2143 "[^" border "]\\|"
2144 "[^" border (if (and nil stacked) markers) "]"
2145 body1
2146 "[^" border (if (and nil stacked) markers) "]"
2147 "\\)"
2148 "\\3\\)"
2149 "\\([" post (if (and nil stacked) markers) "]\\|$\\)"))
2150 (setq org-verbatim-re
2151 (concat "\\([" pre "]\\|^\\)"
2152 "\\("
2153 "\\([" vmarkers "]\\)"
2154 "\\("
2155 "[^" border "]\\|"
2156 "[^" border "]"
2157 body1
2158 "[^" border "]"
2159 "\\)"
2160 "\\3\\)"
2161 "\\([" post "]\\|$\\)")))))
2163 (defcustom org-emphasis-regexp-components
2164 '(" \t('\"" "- \t.,:?;'\")" " \t\r\n,\"'" "." 1)
2165 "Components used to build the regular expression for emphasis.
2166 This is a list with 6 entries. Terminology: In an emphasis string
2167 like \" *strong word* \", we call the initial space PREMATCH, the final
2168 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
2169 and \"trong wor\" is the body. The different components in this variable
2170 specify what is allowed/forbidden in each part:
2172 pre Chars allowed as prematch. Beginning of line will be allowed too.
2173 post Chars allowed as postmatch. End of line will be allowed too.
2174 border The chars *forbidden* as border characters.
2175 body-regexp A regexp like \".\" to match a body character. Don't use
2176 non-shy groups here, and don't allow newline here.
2177 newline The maximum number of newlines allowed in an emphasis exp.
2179 Use customize to modify this, or restart Emacs after changing it."
2180 :group 'org-font-lock
2181 :set 'org-set-emph-re
2182 :type '(list
2183 (sexp :tag "Allowed chars in pre ")
2184 (sexp :tag "Allowed chars in post ")
2185 (sexp :tag "Forbidden chars in border ")
2186 (sexp :tag "Regexp for body ")
2187 (integer :tag "number of newlines allowed")
2188 (option (boolean :tag "Please ignore this button"))))
2190 (defcustom org-emphasis-alist
2191 `(("*" bold "<b>" "</b>")
2192 ("/" italic "<i>" "</i>")
2193 ("_" underline "<u>" "</u>")
2194 ("=" org-code "<code>" "</code>" verbatim)
2195 ("~" org-verbatim "" "" verbatim)
2196 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))
2197 "<del>" "</del>")
2199 "Special syntax for emphasized text.
2200 Text starting and ending with a special character will be emphasized, for
2201 example *bold*, _underlined_ and /italic/. This variable sets the marker
2202 characters, the face to be used by font-lock for highlighting in Org-mode
2203 Emacs buffers, and the HTML tags to be used for this.
2204 Use customize to modify this, or restart Emacs after changing it."
2205 :group 'org-font-lock
2206 :set 'org-set-emph-re
2207 :type '(repeat
2208 (list
2209 (string :tag "Marker character")
2210 (choice
2211 (face :tag "Font-lock-face")
2212 (plist :tag "Face property list"))
2213 (string :tag "HTML start tag")
2214 (string :tag "HTML end tag")
2215 (option (const verbatim)))))
2217 ;;; Miscellaneous options
2219 (defgroup org-completion nil
2220 "Completion in Org-mode."
2221 :tag "Org Completion"
2222 :group 'org)
2224 (defcustom org-completion-fallback-command 'hippie-expand
2225 "The expansion command called by \\[org-complete] in normal context.
2226 Normal means, no org-mode-specific context."
2227 :group 'org-completion
2228 :type 'function)
2230 ;;; Functions and variables from ther packages
2231 ;; Declared here to avoid compiler warnings
2233 ;; XEmacs only
2234 (defvar outline-mode-menu-heading)
2235 (defvar outline-mode-menu-show)
2236 (defvar outline-mode-menu-hide)
2237 (defvar zmacs-regions) ; XEmacs regions
2239 ;; Emacs only
2240 (defvar mark-active)
2242 ;; Various packages
2243 (declare-function calendar-absolute-from-iso "cal-iso" (date))
2244 (declare-function calendar-forward-day "cal-move" (arg))
2245 (declare-function calendar-goto-date "cal-move" (date))
2246 (declare-function calendar-goto-today "cal-move" ())
2247 (declare-function calendar-iso-from-absolute "cal-iso" (date))
2248 (defvar calc-embedded-close-formula)
2249 (defvar calc-embedded-open-formula)
2250 (declare-function cdlatex-tab "ext:cdlatex" ())
2251 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
2252 (defvar font-lock-unfontify-region-function)
2253 (declare-function iswitchb-mode "iswitchb" (&optional arg))
2254 (declare-function iswitchb-read-buffer (prompt &optional default require-match start matches-set))
2255 (defvar iswitchb-temp-buflist)
2256 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
2257 (declare-function org-agenda-skip "org-agenda" ())
2258 (declare-function org-format-agenda-item "org-agenda"
2259 (extra txt &optional category tags dotime noprefix remove-re))
2260 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
2261 (declare-function org-agenda-change-all-lines "org-agenda"
2262 (newhead hdmarker &optional fixface))
2263 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
2264 (declare-function org-agenda-maybe-redo "org-agenda" ())
2265 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
2266 (beg end))
2267 (declare-function parse-time-string "parse-time" (string))
2268 (declare-function remember "remember" (&optional initial))
2269 (declare-function remember-buffer-desc "remember" ())
2270 (declare-function remember-finalize "remember" ())
2271 (defvar remember-save-after-remembering)
2272 (defvar remember-data-file)
2273 (defvar remember-register)
2274 (defvar remember-buffer)
2275 (defvar remember-handler-functions)
2276 (defvar remember-annotation-functions)
2277 (defvar texmathp-why)
2278 (declare-function speedbar-line-directory "speedbar" (&optional depth))
2279 (declare-function table--at-cell-p "table" (position &optional object at-column))
2281 (defvar w3m-current-url)
2282 (defvar w3m-current-title)
2284 (defvar org-latex-regexps)
2286 ;;; Autoload and prepare some org modules
2288 ;; Some table stuff that needs to be defined here, because it is used
2289 ;; by the functions setting up org-mode or checking for table context.
2291 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
2292 "Detects an org-type or table-type table.")
2293 (defconst org-table-line-regexp "^[ \t]*|"
2294 "Detects an org-type table line.")
2295 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
2296 "Detects an org-type table line.")
2297 (defconst org-table-hline-regexp "^[ \t]*|-"
2298 "Detects an org-type table hline.")
2299 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
2300 "Detects a table-type table hline.")
2301 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
2302 "Searching from within a table (any type) this finds the first line
2303 outside the table.")
2305 ;; Autoload the functions in org-table.el that are needed by functions here.
2307 (eval-and-compile
2308 (org-autoload "org-table"
2309 '(org-table-align org-table-begin org-table-blank-field
2310 org-table-convert org-table-convert-region org-table-copy-down
2311 org-table-copy-region org-table-create
2312 org-table-create-or-convert-from-region
2313 org-table-create-with-table.el org-table-current-dline
2314 org-table-cut-region org-table-delete-column org-table-edit-field
2315 org-table-edit-formulas org-table-end org-table-eval-formula
2316 org-table-export org-table-field-info
2317 org-table-get-stored-formulas org-table-goto-column
2318 org-table-hline-and-move org-table-import org-table-insert-column
2319 org-table-insert-hline org-table-insert-row org-table-iterate
2320 org-table-justify-field-maybe org-table-kill-row
2321 org-table-maybe-eval-formula org-table-maybe-recalculate-line
2322 org-table-move-column org-table-move-column-left
2323 org-table-move-column-right org-table-move-row
2324 org-table-move-row-down org-table-move-row-up
2325 org-table-next-field org-table-next-row org-table-paste-rectangle
2326 org-table-previous-field org-table-recalculate
2327 org-table-rotate-recalc-marks org-table-sort-lines org-table-sum
2328 org-table-toggle-coordinate-overlays
2329 org-table-toggle-formula-debugger org-table-wrap-region
2330 orgtbl-mode turn-on-orgtbl)))
2332 (defun org-at-table-p (&optional table-type)
2333 "Return t if the cursor is inside an org-type table.
2334 If TABLE-TYPE is non-nil, also check for table.el-type tables."
2335 (if org-enable-table-editor
2336 (save-excursion
2337 (beginning-of-line 1)
2338 (looking-at (if table-type org-table-any-line-regexp
2339 org-table-line-regexp)))
2340 nil))
2341 (defsubst org-table-p () (org-at-table-p))
2343 (defun org-at-table.el-p ()
2344 "Return t if and only if we are at a table.el table."
2345 (and (org-at-table-p 'any)
2346 (save-excursion
2347 (goto-char (org-table-begin 'any))
2348 (looking-at org-table1-hline-regexp))))
2349 (defun org-table-recognize-table.el ()
2350 "If there is a table.el table nearby, recognize it and move into it."
2351 (if org-table-tab-recognizes-table.el
2352 (if (org-at-table.el-p)
2353 (progn
2354 (beginning-of-line 1)
2355 (if (looking-at org-table-dataline-regexp)
2357 (if (looking-at org-table1-hline-regexp)
2358 (progn
2359 (beginning-of-line 2)
2360 (if (looking-at org-table-any-border-regexp)
2361 (beginning-of-line -1)))))
2362 (if (re-search-forward "|" (org-table-end t) t)
2363 (progn
2364 (require 'table)
2365 (if (table--at-cell-p (point))
2367 (message "recognizing table.el table...")
2368 (table-recognize-table)
2369 (message "recognizing table.el table...done")))
2370 (error "This should not happen..."))
2372 nil)
2373 nil))
2375 (defun org-at-table-hline-p ()
2376 "Return t if the cursor is inside a hline in a table."
2377 (if org-enable-table-editor
2378 (save-excursion
2379 (beginning-of-line 1)
2380 (looking-at org-table-hline-regexp))
2381 nil))
2383 (defvar org-table-clean-did-remove-column nil)
2385 (defun org-table-map-tables (function)
2386 "Apply FUNCTION to the start of all tables in the buffer."
2387 (save-excursion
2388 (save-restriction
2389 (widen)
2390 (goto-char (point-min))
2391 (while (re-search-forward org-table-any-line-regexp nil t)
2392 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size)))
2393 (beginning-of-line 1)
2394 (if (looking-at org-table-line-regexp)
2395 (save-excursion (funcall function)))
2396 (re-search-forward org-table-any-border-regexp nil 1))))
2397 (message "Mapping tables: done"))
2399 ;; Declare and autoload functions from org-exp.el
2401 (declare-function org-default-export-plist "org-exp")
2402 (declare-function org-infile-export-plist "org-exp")
2403 (declare-function org-get-current-options "org-exp")
2404 (eval-and-compile
2405 (org-autoload "org-exp"
2406 '(org-export org-export-as-ascii org-export-visible
2407 org-insert-export-options-template org-export-as-html-and-open
2408 org-export-as-html-batch org-export-as-html-to-buffer
2409 org-replace-region-by-html org-export-region-as-html
2410 org-export-as-html org-export-icalendar-this-file
2411 org-export-icalendar-all-agenda-files
2412 org-table-clean-before-export
2413 org-export-icalendar-combine-agenda-files org-export-as-xoxo)))
2415 ;; Declare and autoload functions from org-exp.el
2417 (eval-and-compile
2418 (org-autoload "org-exp"
2419 '(org-agenda org-agenda-list org-search-view
2420 org-todo-list org-tags-view org-agenda-list-stuck-projects
2421 org-diary org-agenda-to-appt)))
2423 ;; Autoload org-remember
2425 (eval-and-compile
2426 (org-autoload "org-remember"
2427 '(org-remember-insinuate org-remember-annotation
2428 org-remember-apply-template org-remember org-remember-handler)))
2430 ;; Autoload org-clock.el
2433 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock"
2434 (beg end))
2435 (declare-function org-update-mode-line "org-clock" ())
2436 (defvar org-clock-start-time)
2437 (defvar org-clock-marker (make-marker)
2438 "Marker recording the last clock-in.")
2440 (eval-and-compile
2441 (org-autoload
2442 "org-clock"
2443 '(org-clock-in org-clock-out org-clock-cancel
2444 org-clock-goto org-clock-sum org-clock-display
2445 org-remove-clock-overlays org-clock-report
2446 org-clocktable-shift org-dblock-write:clocktable
2447 org-get-clocktable)))
2449 (defun org-clock-update-time-maybe ()
2450 "If this is a CLOCK line, update it and return t.
2451 Otherwise, return nil."
2452 (interactive)
2453 (save-excursion
2454 (beginning-of-line 1)
2455 (skip-chars-forward " \t")
2456 (when (looking-at org-clock-string)
2457 (let ((re (concat "[ \t]*" org-clock-string
2458 " *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
2459 "\\([ \t]*=>.*\\)?\\)?"))
2460 ts te h m s)
2461 (cond
2462 ((not (looking-at re))
2463 nil)
2464 ((not (match-end 2))
2465 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
2466 (> org-clock-marker (point))
2467 (<= org-clock-marker (point-at-eol)))
2468 ;; The clock is running here
2469 (setq org-clock-start-time
2470 (apply 'encode-time
2471 (org-parse-time-string (match-string 1))))
2472 (org-update-mode-line)))
2474 (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
2475 (end-of-line 1)
2476 (setq ts (match-string 1)
2477 te (match-string 3))
2478 (setq s (- (time-to-seconds
2479 (apply 'encode-time (org-parse-time-string te)))
2480 (time-to-seconds
2481 (apply 'encode-time (org-parse-time-string ts))))
2482 h (floor (/ s 3600))
2483 s (- s (* 3600 h))
2484 m (floor (/ s 60))
2485 s (- s (* 60 s)))
2486 (insert " => " (format "%2d:%02d" h m))
2487 t))))))
2489 (defun org-check-running-clock ()
2490 "Check if the current buffer contains the running clock.
2491 If yes, offer to stop it and to save the buffer with the changes."
2492 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
2493 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
2494 (buffer-name))))
2495 (org-clock-out)
2496 (when (y-or-n-p "Save changed buffer?")
2497 (save-buffer))))
2499 (defun org-clocktable-try-shift (dir n)
2500 "Check if this line starts a clock table, if yes, shift the time block."
2501 (when (org-match-line "#\\+BEGIN: clocktable\\>")
2502 (org-clocktable-shift dir n)))
2504 ;; Autoload archiving code
2505 ;; The stuff that is needed for cycling and tags has to be defined here.
2507 (defgroup org-archive nil
2508 "Options concerning archiving in Org-mode."
2509 :tag "Org Archive"
2510 :group 'org-structure)
2512 (defcustom org-archive-location "%s_archive::"
2513 "The location where subtrees should be archived.
2515 Otherwise, the value of this variable is a string, consisting of two
2516 parts, separated by a double-colon.
2518 The first part is a file name - when omitted, archiving happens in the same
2519 file. %s will be replaced by the current file name (without directory part).
2520 Archiving to a different file is useful to keep archived entries from
2521 contributing to the Org-mode Agenda.
2523 The part after the double colon is a headline. The archived entries will be
2524 filed under that headline. When omitted, the subtrees are simply filed away
2525 at the end of the file, as top-level entries.
2527 Here are a few examples:
2528 \"%s_archive::\"
2529 If the current file is Projects.org, archive in file
2530 Projects.org_archive, as top-level trees. This is the default.
2532 \"::* Archived Tasks\"
2533 Archive in the current file, under the top-level headline
2534 \"* Archived Tasks\".
2536 \"~/org/archive.org::\"
2537 Archive in file ~/org/archive.org (absolute path), as top-level trees.
2539 \"basement::** Finished Tasks\"
2540 Archive in file ./basement (relative path), as level 3 trees
2541 below the level 2 heading \"** Finished Tasks\".
2543 You may set this option on a per-file basis by adding to the buffer a
2544 line like
2546 #+ARCHIVE: basement::** Finished Tasks
2548 You may also define it locally for a subtree by setting an ARCHIVE property
2549 in the entry. If such a property is found in an entry, or anywhere up
2550 the hierarchy, it will be used."
2551 :group 'org-archive
2552 :type 'string)
2554 (defcustom org-archive-tag "ARCHIVE"
2555 "The tag that marks a subtree as archived.
2556 An archived subtree does not open during visibility cycling, and does
2557 not contribute to the agenda listings.
2558 After changing this, font-lock must be restarted in the relevant buffers to
2559 get the proper fontification."
2560 :group 'org-archive
2561 :group 'org-keywords
2562 :type 'string)
2564 (defcustom org-agenda-skip-archived-trees t
2565 "Non-nil means, the agenda will skip any items located in archived trees.
2566 An archived tree is a tree marked with the tag ARCHIVE."
2567 :group 'org-archive
2568 :group 'org-agenda-skip
2569 :type 'boolean)
2571 (defcustom org-cycle-open-archived-trees nil
2572 "Non-nil means, `org-cycle' will open archived trees.
2573 An archived tree is a tree marked with the tag ARCHIVE.
2574 When nil, archived trees will stay folded. You can still open them with
2575 normal outline commands like `show-all', but not with the cycling commands."
2576 :group 'org-archive
2577 :group 'org-cycle
2578 :type 'boolean)
2580 (defcustom org-sparse-tree-open-archived-trees nil
2581 "Non-nil means sparse tree construction shows matches in archived trees.
2582 When nil, matches in these trees are highlighted, but the trees are kept in
2583 collapsed state."
2584 :group 'org-archive
2585 :group 'org-sparse-trees
2586 :type 'boolean)
2588 (defun org-cycle-hide-archived-subtrees (state)
2589 "Re-hide all archived subtrees after a visibility state change."
2590 (when (and (not org-cycle-open-archived-trees)
2591 (not (memq state '(overview folded))))
2592 (save-excursion
2593 (let* ((globalp (memq state '(contents all)))
2594 (beg (if globalp (point-min) (point)))
2595 (end (if globalp (point-max) (org-end-of-subtree t))))
2596 (org-hide-archived-subtrees beg end)
2597 (goto-char beg)
2598 (if (looking-at (concat ".*:" org-archive-tag ":"))
2599 (message "%s" (substitute-command-keys
2600 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
2602 (defun org-force-cycle-archived ()
2603 "Cycle subtree even if it is archived."
2604 (interactive)
2605 (setq this-command 'org-cycle)
2606 (let ((org-cycle-open-archived-trees t))
2607 (call-interactively 'org-cycle)))
2609 (defun org-hide-archived-subtrees (beg end)
2610 "Re-hide all archived subtrees after a visibility state change."
2611 (save-excursion
2612 (let* ((re (concat ":" org-archive-tag ":")))
2613 (goto-char beg)
2614 (while (re-search-forward re end t)
2615 (and (org-on-heading-p) (hide-subtree))
2616 (org-end-of-subtree t)))))
2618 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
2620 (eval-and-compile
2621 (org-autoload "org-archive"
2622 '(org-add-archive-files org-archive-subtree
2623 org-archive-to-archive-sibling org-toggle-archive-tag)))
2625 ;; Autoload Column View Code
2627 (declare-function org-columns-number-to-string "org-colview")
2628 (declare-function org-columns-get-format-and-top-level "org-colview")
2629 (declare-function org-columns-compute "org-colview")
2631 (org-autoload (if (featurep 'xemacs) "org-colview-xemacs" "org-colview")
2632 '(org-columns-number-to-string org-columns-get-format-and-top-level
2633 org-columns-compute org-agenda-columns org-columns-remove-overlays
2634 org-columns org-insert-columns-dblock))
2636 ;; Autoload ID code
2638 (org-autoload "org-id"
2639 '(org-id-get-create org-id-new org-id-copy org-id-get
2640 org-id-get-with-outline-path-completion
2641 org-id-get-with-outline-drilling
2642 org-id-goto org-id-find))
2644 ;;; Variables for pre-computed regular expressions, all buffer local
2646 (defvar org-drawer-regexp nil
2647 "Matches first line of a hidden block.")
2648 (make-variable-buffer-local 'org-drawer-regexp)
2649 (defvar org-todo-regexp nil
2650 "Matches any of the TODO state keywords.")
2651 (make-variable-buffer-local 'org-todo-regexp)
2652 (defvar org-not-done-regexp nil
2653 "Matches any of the TODO state keywords except the last one.")
2654 (make-variable-buffer-local 'org-not-done-regexp)
2655 (defvar org-todo-line-regexp nil
2656 "Matches a headline and puts TODO state into group 2 if present.")
2657 (make-variable-buffer-local 'org-todo-line-regexp)
2658 (defvar org-complex-heading-regexp nil
2659 "Matches a headline and puts everything into groups:
2660 group 1: the stars
2661 group 2: The todo keyword, maybe
2662 group 3: Priority cookie
2663 group 4: True headline
2664 group 5: Tags")
2665 (make-variable-buffer-local 'org-complex-heading-regexp)
2666 (defvar org-todo-line-tags-regexp nil
2667 "Matches a headline and puts TODO state into group 2 if present.
2668 Also put tags into group 4 if tags are present.")
2669 (make-variable-buffer-local 'org-todo-line-tags-regexp)
2670 (defvar org-nl-done-regexp nil
2671 "Matches newline followed by a headline with the DONE keyword.")
2672 (make-variable-buffer-local 'org-nl-done-regexp)
2673 (defvar org-looking-at-done-regexp nil
2674 "Matches the DONE keyword a point.")
2675 (make-variable-buffer-local 'org-looking-at-done-regexp)
2676 (defvar org-ds-keyword-length 12
2677 "Maximum length of the Deadline and SCHEDULED keywords.")
2678 (make-variable-buffer-local 'org-ds-keyword-length)
2679 (defvar org-deadline-regexp nil
2680 "Matches the DEADLINE keyword.")
2681 (make-variable-buffer-local 'org-deadline-regexp)
2682 (defvar org-deadline-time-regexp nil
2683 "Matches the DEADLINE keyword together with a time stamp.")
2684 (make-variable-buffer-local 'org-deadline-time-regexp)
2685 (defvar org-deadline-line-regexp nil
2686 "Matches the DEADLINE keyword and the rest of the line.")
2687 (make-variable-buffer-local 'org-deadline-line-regexp)
2688 (defvar org-scheduled-regexp nil
2689 "Matches the SCHEDULED keyword.")
2690 (make-variable-buffer-local 'org-scheduled-regexp)
2691 (defvar org-scheduled-time-regexp nil
2692 "Matches the SCHEDULED keyword together with a time stamp.")
2693 (make-variable-buffer-local 'org-scheduled-time-regexp)
2694 (defvar org-closed-time-regexp nil
2695 "Matches the CLOSED keyword together with a time stamp.")
2696 (make-variable-buffer-local 'org-closed-time-regexp)
2698 (defvar org-keyword-time-regexp nil
2699 "Matches any of the 4 keywords, together with the time stamp.")
2700 (make-variable-buffer-local 'org-keyword-time-regexp)
2701 (defvar org-keyword-time-not-clock-regexp nil
2702 "Matches any of the 3 keywords, together with the time stamp.")
2703 (make-variable-buffer-local 'org-keyword-time-not-clock-regexp)
2704 (defvar org-maybe-keyword-time-regexp nil
2705 "Matches a timestamp, possibly preceeded by a keyword.")
2706 (make-variable-buffer-local 'org-maybe-keyword-time-regexp)
2707 (defvar org-planning-or-clock-line-re nil
2708 "Matches a line with planning or clock info.")
2709 (make-variable-buffer-local 'org-planning-or-clock-line-re)
2711 (defconst org-plain-time-of-day-regexp
2712 (concat
2713 "\\(\\<[012]?[0-9]"
2714 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
2715 "\\(--?"
2716 "\\(\\<[012]?[0-9]"
2717 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
2718 "\\)?")
2719 "Regular expression to match a plain time or time range.
2720 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
2721 groups carry important information:
2722 0 the full match
2723 1 the first time, range or not
2724 8 the second time, if it is a range.")
2726 (defconst org-plain-time-extension-regexp
2727 (concat
2728 "\\(\\<[012]?[0-9]"
2729 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
2730 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
2731 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
2732 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
2733 groups carry important information:
2734 0 the full match
2735 7 hours of duration
2736 9 minutes of duration")
2738 (defconst org-stamp-time-of-day-regexp
2739 (concat
2740 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
2741 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
2742 "\\(--?"
2743 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
2744 "Regular expression to match a timestamp time or time range.
2745 After a match, the following groups carry important information:
2746 0 the full match
2747 1 date plus weekday, for backreferencing to make sure both times on same day
2748 2 the first time, range or not
2749 4 the second time, if it is a range.")
2751 (defconst org-startup-options
2752 '(("fold" org-startup-folded t)
2753 ("overview" org-startup-folded t)
2754 ("nofold" org-startup-folded nil)
2755 ("showall" org-startup-folded nil)
2756 ("content" org-startup-folded content)
2757 ("hidestars" org-hide-leading-stars t)
2758 ("showstars" org-hide-leading-stars nil)
2759 ("odd" org-odd-levels-only t)
2760 ("oddeven" org-odd-levels-only nil)
2761 ("align" org-startup-align-all-tables t)
2762 ("noalign" org-startup-align-all-tables nil)
2763 ("customtime" org-display-custom-times t)
2764 ("logdone" org-log-done time)
2765 ("lognotedone" org-log-done note)
2766 ("nologdone" org-log-done nil)
2767 ("lognoteclock-out" org-log-note-clock-out t)
2768 ("nolognoteclock-out" org-log-note-clock-out nil)
2769 ("logrepeat" org-log-repeat state)
2770 ("lognoterepeat" org-log-repeat note)
2771 ("nologrepeat" org-log-repeat nil)
2772 ("constcgs" constants-unit-system cgs)
2773 ("constSI" constants-unit-system SI))
2774 "Variable associated with STARTUP options for org-mode.
2775 Each element is a list of three items: The startup options as written
2776 in the #+STARTUP line, the corresponding variable, and the value to
2777 set this variable to if the option is found. An optional forth element PUSH
2778 means to push this value onto the list in the variable.")
2780 (defun org-set-regexps-and-options ()
2781 "Precompute regular expressions for current buffer."
2782 (when (org-mode-p)
2783 (org-set-local 'org-todo-kwd-alist nil)
2784 (org-set-local 'org-todo-key-alist nil)
2785 (org-set-local 'org-todo-key-trigger nil)
2786 (org-set-local 'org-todo-keywords-1 nil)
2787 (org-set-local 'org-done-keywords nil)
2788 (org-set-local 'org-todo-heads nil)
2789 (org-set-local 'org-todo-sets nil)
2790 (org-set-local 'org-todo-log-states nil)
2791 (org-set-local 'org-file-properties nil)
2792 (org-set-local 'org-file-tags nil)
2793 (let ((re (org-make-options-regexp
2794 '("CATEGORY" "SEQ_TODO" "TYP_TODO" "TODO" "COLUMNS"
2795 "STARTUP" "ARCHIVE" "FILETAGS" "TAGS" "LINK" "PRIORITIES"
2796 "CONSTANTS" "PROPERTY" "DRAWERS" "SETUPFILE")))
2797 (splitre "[ \t]+")
2798 kwds kws0 kwsa key log value cat arch tags const links hw dws
2799 tail sep kws1 prio props ftags drawers
2800 ext-setup-or-nil setup-contents (start 0))
2801 (save-excursion
2802 (save-restriction
2803 (widen)
2804 (goto-char (point-min))
2805 (while (or (and ext-setup-or-nil
2806 (string-match re ext-setup-or-nil start)
2807 (setq start (match-end 0)))
2808 (and (setq ext-setup-or-nil nil start 0)
2809 (re-search-forward re nil t)))
2810 (setq key (upcase (match-string 1 ext-setup-or-nil))
2811 value (org-match-string-no-properties 2 ext-setup-or-nil))
2812 (cond
2813 ((equal key "CATEGORY")
2814 (if (string-match "[ \t]+$" value)
2815 (setq value (replace-match "" t t value)))
2816 (setq cat value))
2817 ((member key '("SEQ_TODO" "TODO"))
2818 (push (cons 'sequence (org-split-string value splitre)) kwds))
2819 ((equal key "TYP_TODO")
2820 (push (cons 'type (org-split-string value splitre)) kwds))
2821 ((equal key "TAGS")
2822 (setq tags (append tags (org-split-string value splitre))))
2823 ((equal key "COLUMNS")
2824 (org-set-local 'org-columns-default-format value))
2825 ((equal key "LINK")
2826 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value)
2827 (push (cons (match-string 1 value)
2828 (org-trim (match-string 2 value)))
2829 links)))
2830 ((equal key "PRIORITIES")
2831 (setq prio (org-split-string value " +")))
2832 ((equal key "PROPERTY")
2833 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
2834 (push (cons (match-string 1 value) (match-string 2 value))
2835 props)))
2836 ((equal key "FILETAGS")
2837 (when (string-match "\\S-" value)
2838 (setq ftags
2839 (append
2840 ftags
2841 (apply 'append
2842 (mapcar (lambda (x) (org-split-string x ":"))
2843 (org-split-string value)))))))
2844 ((equal key "DRAWERS")
2845 (setq drawers (org-split-string value splitre)))
2846 ((equal key "CONSTANTS")
2847 (setq const (append const (org-split-string value splitre))))
2848 ((equal key "STARTUP")
2849 (let ((opts (org-split-string value splitre))
2850 l var val)
2851 (while (setq l (pop opts))
2852 (when (setq l (assoc l org-startup-options))
2853 (setq var (nth 1 l) val (nth 2 l))
2854 (if (not (nth 3 l))
2855 (set (make-local-variable var) val)
2856 (if (not (listp (symbol-value var)))
2857 (set (make-local-variable var) nil))
2858 (set (make-local-variable var) (symbol-value var))
2859 (add-to-list var val))))))
2860 ((equal key "ARCHIVE")
2861 (string-match " *$" value)
2862 (setq arch (replace-match "" t t value))
2863 (remove-text-properties 0 (length arch)
2864 '(face t fontified t) arch))
2865 ((equal key "SETUPFILE")
2866 (setq setup-contents (org-file-contents
2867 (expand-file-name
2868 (org-remove-double-quotes value))
2869 'noerror))
2870 (if (not ext-setup-or-nil)
2871 (setq ext-setup-or-nil setup-contents start 0)
2872 (setq ext-setup-or-nil
2873 (concat (substring ext-setup-or-nil 0 start)
2874 "\n" setup-contents "\n"
2875 (substring ext-setup-or-nil start)))))
2876 ))))
2877 (when cat
2878 (org-set-local 'org-category (intern cat))
2879 (push (cons "CATEGORY" cat) props))
2880 (when prio
2881 (if (< (length prio) 3) (setq prio '("A" "C" "B")))
2882 (setq prio (mapcar 'string-to-char prio))
2883 (org-set-local 'org-highest-priority (nth 0 prio))
2884 (org-set-local 'org-lowest-priority (nth 1 prio))
2885 (org-set-local 'org-default-priority (nth 2 prio)))
2886 (and props (org-set-local 'org-file-properties (nreverse props)))
2887 (and ftags (org-set-local 'org-file-tags ftags))
2888 (and drawers (org-set-local 'org-drawers drawers))
2889 (and arch (org-set-local 'org-archive-location arch))
2890 (and links (setq org-link-abbrev-alist-local (nreverse links)))
2891 ;; Process the TODO keywords
2892 (unless kwds
2893 ;; Use the global values as if they had been given locally.
2894 (setq kwds (default-value 'org-todo-keywords))
2895 (if (stringp (car kwds))
2896 (setq kwds (list (cons org-todo-interpretation
2897 (default-value 'org-todo-keywords)))))
2898 (setq kwds (reverse kwds)))
2899 (setq kwds (nreverse kwds))
2900 (let (inter kws kw)
2901 (while (setq kws (pop kwds))
2902 (setq inter (pop kws) sep (member "|" kws)
2903 kws0 (delete "|" (copy-sequence kws))
2904 kwsa nil
2905 kws1 (mapcar
2906 (lambda (x)
2907 ;; 1 2
2908 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x)
2909 (progn
2910 (setq kw (match-string 1 x)
2911 key (and (match-end 2) (match-string 2 x))
2912 log (org-extract-log-state-settings x))
2913 (push (cons kw (and key (string-to-char key))) kwsa)
2914 (and log (push log org-todo-log-states))
2916 (error "Invalid TODO keyword %s" x)))
2917 kws0)
2918 kwsa (if kwsa (append '((:startgroup))
2919 (nreverse kwsa)
2920 '((:endgroup))))
2921 hw (car kws1)
2922 dws (if sep (org-remove-keyword-keys (cdr sep)) (last kws1))
2923 tail (list inter hw (car dws) (org-last dws)))
2924 (add-to-list 'org-todo-heads hw 'append)
2925 (push kws1 org-todo-sets)
2926 (setq org-done-keywords (append org-done-keywords dws nil))
2927 (setq org-todo-key-alist (append org-todo-key-alist kwsa))
2928 (mapc (lambda (x) (push (cons x tail) org-todo-kwd-alist)) kws1)
2929 (setq org-todo-keywords-1 (append org-todo-keywords-1 kws1 nil)))
2930 (setq org-todo-sets (nreverse org-todo-sets)
2931 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
2932 org-todo-key-trigger (delq nil (mapcar 'cdr org-todo-key-alist))
2933 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist)))
2934 ;; Process the constants
2935 (when const
2936 (let (e cst)
2937 (while (setq e (pop const))
2938 (if (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)" e)
2939 (push (cons (match-string 1 e) (match-string 2 e)) cst)))
2940 (setq org-table-formula-constants-local cst)))
2942 ;; Process the tags.
2943 (when tags
2944 (let (e tgs)
2945 (while (setq e (pop tags))
2946 (cond
2947 ((equal e "{") (push '(:startgroup) tgs))
2948 ((equal e "}") (push '(:endgroup) tgs))
2949 ((string-match (org-re "^\\([[:alnum:]_@]+\\)(\\(.\\))$") e)
2950 (push (cons (match-string 1 e)
2951 (string-to-char (match-string 2 e)))
2952 tgs))
2953 (t (push (list e) tgs))))
2954 (org-set-local 'org-tag-alist nil)
2955 (while (setq e (pop tgs))
2956 (or (and (stringp (car e))
2957 (assoc (car e) org-tag-alist))
2958 (push e org-tag-alist)))))
2960 ;; Compute the regular expressions and other local variables
2961 (if (not org-done-keywords)
2962 (setq org-done-keywords (list (org-last org-todo-keywords-1))))
2963 (setq org-ds-keyword-length (+ 2 (max (length org-deadline-string)
2964 (length org-scheduled-string)
2965 (length org-clock-string)
2966 (length org-closed-string)))
2967 org-drawer-regexp
2968 (concat "^[ \t]*:\\("
2969 (mapconcat 'regexp-quote org-drawers "\\|")
2970 "\\):[ \t]*$")
2971 org-not-done-keywords
2972 (org-delete-all org-done-keywords (copy-sequence org-todo-keywords-1))
2973 org-todo-regexp
2974 (concat "\\<\\(" (mapconcat 'regexp-quote org-todo-keywords-1
2975 "\\|") "\\)\\>")
2976 org-not-done-regexp
2977 (concat "\\<\\("
2978 (mapconcat 'regexp-quote org-not-done-keywords "\\|")
2979 "\\)\\>")
2980 org-todo-line-regexp
2981 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
2982 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
2983 "\\)\\>\\)?[ \t]*\\(.*\\)")
2984 org-complex-heading-regexp
2985 (concat "^\\(\\*+\\)\\(?:[ \t]+\\("
2986 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
2987 "\\)\\>\\)?\\(?:[ \t]*\\(\\[#.\\]\\)\\)?[ \t]*\\(.*?\\)"
2988 "\\(?:[ \t]+\\(:[[:alnum:]_@:]+:\\)\\)?[ \t]*$")
2989 org-nl-done-regexp
2990 (concat "\n\\*+[ \t]+"
2991 "\\(?:" (mapconcat 'regexp-quote org-done-keywords "\\|")
2992 "\\)" "\\>")
2993 org-todo-line-tags-regexp
2994 (concat "^\\(\\*+\\)[ \t]+\\(?:\\("
2995 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
2996 (org-re
2997 "\\)\\>\\)? *\\(.*?\\([ \t]:[[:alnum:]:_@]+:[ \t]*\\)?$\\)"))
2998 org-looking-at-done-regexp
2999 (concat "^" "\\(?:"
3000 (mapconcat 'regexp-quote org-done-keywords "\\|") "\\)"
3001 "\\>")
3002 org-deadline-regexp (concat "\\<" org-deadline-string)
3003 org-deadline-time-regexp
3004 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
3005 org-deadline-line-regexp
3006 (concat "\\<\\(" org-deadline-string "\\).*")
3007 org-scheduled-regexp
3008 (concat "\\<" org-scheduled-string)
3009 org-scheduled-time-regexp
3010 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
3011 org-closed-time-regexp
3012 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
3013 org-keyword-time-regexp
3014 (concat "\\<\\(" org-scheduled-string
3015 "\\|" org-deadline-string
3016 "\\|" org-closed-string
3017 "\\|" org-clock-string "\\)"
3018 " *[[<]\\([^]>]+\\)[]>]")
3019 org-keyword-time-not-clock-regexp
3020 (concat "\\<\\(" org-scheduled-string
3021 "\\|" org-deadline-string
3022 "\\|" org-closed-string
3023 "\\)"
3024 " *[[<]\\([^]>]+\\)[]>]")
3025 org-maybe-keyword-time-regexp
3026 (concat "\\(\\<\\(" org-scheduled-string
3027 "\\|" org-deadline-string
3028 "\\|" org-closed-string
3029 "\\|" org-clock-string "\\)\\)?"
3030 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^]\r\n>]*?[]>]\\|<%%([^\r\n>]*>\\)")
3031 org-planning-or-clock-line-re
3032 (concat "\\(?:^[ \t]*\\(" org-scheduled-string
3033 "\\|" org-deadline-string
3034 "\\|" org-closed-string "\\|" org-clock-string
3035 "\\)\\>\\)")
3037 (org-compute-latex-and-specials-regexp)
3038 (org-set-font-lock-defaults))))
3040 (defun org-file-contents (file &optional noerror)
3041 "Return the contents of FILE, as a string."
3042 (if (or (not file)
3043 (not (file-readable-p file)))
3044 (if noerror
3045 (progn
3046 (message "Cannot read file %s" file)
3047 (ding) (sit-for 2)
3049 (error "Cannot read file %s" file))
3050 (with-temp-buffer
3051 (insert-file-contents file)
3052 (buffer-string))))
3054 (defun org-extract-log-state-settings (x)
3055 "Extract the log state setting from a TODO keyword string.
3056 This will extract info from a string like \"WAIT(w@/!)\"."
3057 (let (kw key log1 log2)
3058 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
3059 (setq kw (match-string 1 x)
3060 key (and (match-end 2) (match-string 2 x))
3061 log1 (and (match-end 3) (match-string 3 x))
3062 log2 (and (match-end 4) (match-string 4 x)))
3063 (and (or log1 log2)
3064 (list kw
3065 (and log1 (if (equal log1 "!") 'time 'note))
3066 (and log2 (if (equal log2 "!") 'time 'note)))))))
3068 (defun org-remove-keyword-keys (list)
3069 "Remove a pair of parenthesis at the end of each string in LIST."
3070 (mapcar (lambda (x)
3071 (if (string-match "(.*)$" x)
3072 (substring x 0 (match-beginning 0))
3074 list))
3076 ;; FIXME: this could be done much better, using second characters etc.
3077 (defun org-assign-fast-keys (alist)
3078 "Assign fast keys to a keyword-key alist.
3079 Respect keys that are already there."
3080 (let (new e k c c1 c2 (char ?a))
3081 (while (setq e (pop alist))
3082 (cond
3083 ((equal e '(:startgroup)) (push e new))
3084 ((equal e '(:endgroup)) (push e new))
3086 (setq k (car e) c2 nil)
3087 (if (cdr e)
3088 (setq c (cdr e))
3089 ;; automatically assign a character.
3090 (setq c1 (string-to-char
3091 (downcase (substring
3092 k (if (= (string-to-char k) ?@) 1 0)))))
3093 (if (or (rassoc c1 new) (rassoc c1 alist))
3094 (while (or (rassoc char new) (rassoc char alist))
3095 (setq char (1+ char)))
3096 (setq c2 c1))
3097 (setq c (or c2 char)))
3098 (push (cons k c) new))))
3099 (nreverse new)))
3101 ;;; Some variables used in various places
3103 (defvar org-window-configuration nil
3104 "Used in various places to store a window configuration.")
3105 (defvar org-finish-function nil
3106 "Function to be called when `C-c C-c' is used.
3107 This is for getting out of special buffers like remember.")
3110 ;; FIXME: Occasionally check by commenting these, to make sure
3111 ;; no other functions uses these, forgetting to let-bind them.
3112 (defvar entry)
3113 (defvar state)
3114 (defvar last-state)
3115 (defvar date)
3116 (defvar description)
3118 ;; Defined somewhere in this file, but used before definition.
3119 (defvar org-html-entities)
3120 (defvar org-struct-menu)
3121 (defvar org-org-menu)
3122 (defvar org-tbl-menu)
3123 (defvar org-agenda-keymap)
3125 ;;;; Define the Org-mode
3127 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
3128 (error "Conflict with outdated version of allout.el. Load org.el before allout.el, or ugrade to newer allout, for example by switching to Emacs 22."))
3131 ;; We use a before-change function to check if a table might need
3132 ;; an update.
3133 (defvar org-table-may-need-update t
3134 "Indicates that a table might need an update.
3135 This variable is set by `org-before-change-function'.
3136 `org-table-align' sets it back to nil.")
3137 (defun org-before-change-function (beg end)
3138 "Every change indicates that a table might need an update."
3139 (setq org-table-may-need-update t))
3140 (defvar org-mode-map)
3141 (defvar org-mode-hook nil)
3142 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
3143 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
3144 (defvar org-table-buffer-is-an nil)
3145 (defconst org-outline-regexp "\\*+ ")
3147 ;;;###autoload
3148 (define-derived-mode org-mode outline-mode "Org"
3149 "Outline-based notes management and organizer, alias
3150 \"Carsten's outline-mode for keeping track of everything.\"
3152 Org-mode develops organizational tasks around a NOTES file which
3153 contains information about projects as plain text. Org-mode is
3154 implemented on top of outline-mode, which is ideal to keep the content
3155 of large files well structured. It supports ToDo items, deadlines and
3156 time stamps, which magically appear in the diary listing of the Emacs
3157 calendar. Tables are easily created with a built-in table editor.
3158 Plain text URL-like links connect to websites, emails (VM), Usenet
3159 messages (Gnus), BBDB entries, and any files related to the project.
3160 For printing and sharing of notes, an Org-mode file (or a part of it)
3161 can be exported as a structured ASCII or HTML file.
3163 The following commands are available:
3165 \\{org-mode-map}"
3167 ;; Get rid of Outline menus, they are not needed
3168 ;; Need to do this here because define-derived-mode sets up
3169 ;; the keymap so late. Still, it is a waste to call this each time
3170 ;; we switch another buffer into org-mode.
3171 (if (featurep 'xemacs)
3172 (when (boundp 'outline-mode-menu-heading)
3173 ;; Assume this is Greg's port, it used easymenu
3174 (easy-menu-remove outline-mode-menu-heading)
3175 (easy-menu-remove outline-mode-menu-show)
3176 (easy-menu-remove outline-mode-menu-hide))
3177 (define-key org-mode-map [menu-bar headings] 'undefined)
3178 (define-key org-mode-map [menu-bar hide] 'undefined)
3179 (define-key org-mode-map [menu-bar show] 'undefined))
3181 (org-load-modules-maybe)
3182 (easy-menu-add org-org-menu)
3183 (easy-menu-add org-tbl-menu)
3184 (org-install-agenda-files-menu)
3185 (if org-descriptive-links (org-add-to-invisibility-spec '(org-link)))
3186 (org-add-to-invisibility-spec '(org-cwidth))
3187 (when (featurep 'xemacs)
3188 (org-set-local 'line-move-ignore-invisible t))
3189 (org-set-local 'outline-regexp org-outline-regexp)
3190 (org-set-local 'outline-level 'org-outline-level)
3191 (when (and org-ellipsis
3192 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
3193 (fboundp 'make-glyph-code))
3194 (unless org-display-table
3195 (setq org-display-table (make-display-table)))
3196 (set-display-table-slot
3197 org-display-table 4
3198 (vconcat (mapcar
3199 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
3200 org-ellipsis)))
3201 (if (stringp org-ellipsis) org-ellipsis "..."))))
3202 (setq buffer-display-table org-display-table))
3203 (org-set-regexps-and-options)
3204 ;; Calc embedded
3205 (org-set-local 'calc-embedded-open-mode "# ")
3206 (modify-syntax-entry ?# "<")
3207 (modify-syntax-entry ?@ "w")
3208 (if org-startup-truncated (setq truncate-lines t))
3209 (org-set-local 'font-lock-unfontify-region-function
3210 'org-unfontify-region)
3211 ;; Activate before-change-function
3212 (org-set-local 'org-table-may-need-update t)
3213 (org-add-hook 'before-change-functions 'org-before-change-function nil
3214 'local)
3215 ;; Check for running clock before killing a buffer
3216 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
3217 ;; Paragraphs and auto-filling
3218 (org-set-autofill-regexps)
3219 (setq indent-line-function 'org-indent-line-function)
3220 (org-update-radio-target-regexp)
3222 ;; Comment characters
3223 ; (org-set-local 'comment-start "#") ;; FIXME: this breaks wrapping
3224 (org-set-local 'comment-padding " ")
3226 ;; Align options lines
3227 (org-set-local
3228 'align-mode-rules-list
3229 '((org-in-buffer-settings
3230 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
3231 (modes . '(org-mode)))))
3233 ;; Imenu
3234 (org-set-local 'imenu-create-index-function
3235 'org-imenu-get-tree)
3237 ;; Make isearch reveal context
3238 (if (or (featurep 'xemacs)
3239 (not (boundp 'outline-isearch-open-invisible-function)))
3240 ;; Emacs 21 and XEmacs make use of the hook
3241 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
3242 ;; Emacs 22 deals with this through a special variable
3243 (org-set-local 'outline-isearch-open-invisible-function
3244 (lambda (&rest ignore) (org-show-context 'isearch))))
3246 ;; If empty file that did not turn on org-mode automatically, make it to.
3247 (if (and org-insert-mode-line-in-empty-file
3248 (interactive-p)
3249 (= (point-min) (point-max)))
3250 (insert "# -*- mode: org -*-\n\n"))
3252 (unless org-inhibit-startup
3253 (when org-startup-align-all-tables
3254 (let ((bmp (buffer-modified-p)))
3255 (org-table-map-tables 'org-table-align)
3256 (set-buffer-modified-p bmp)))
3257 (org-set-startup-visibility)))
3259 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
3261 (defun org-current-time ()
3262 "Current time, possibly rounded to `org-time-stamp-rounding-minutes'."
3263 (if (> (car org-time-stamp-rounding-minutes) 1)
3264 (let ((r (car org-time-stamp-rounding-minutes))
3265 (time (decode-time)))
3266 (apply 'encode-time
3267 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
3268 (nthcdr 2 time))))
3269 (current-time)))
3271 ;;;; Font-Lock stuff, including the activators
3273 (defvar org-mouse-map (make-sparse-keymap))
3274 (org-defkey org-mouse-map
3275 (if (featurep 'xemacs) [button2] [mouse-2]) 'org-open-at-mouse)
3276 (org-defkey org-mouse-map
3277 (if (featurep 'xemacs) [button3] [mouse-3]) 'org-find-file-at-mouse)
3278 (when org-mouse-1-follows-link
3279 (org-defkey org-mouse-map [follow-link] 'mouse-face))
3280 (when org-tab-follows-link
3281 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
3282 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
3283 (when org-return-follows-link
3284 (org-defkey org-mouse-map [(return)] 'org-open-at-point)
3285 (org-defkey org-mouse-map "\C-m" 'org-open-at-point))
3287 (require 'font-lock)
3289 (defconst org-non-link-chars "]\t\n\r<>")
3290 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "news"
3291 "shell" "elisp"))
3292 (defvar org-link-types-re nil
3293 "Matches a link that has a url-like prefix like \"http:\"")
3294 (defvar org-link-re-with-space nil
3295 "Matches a link with spaces, optional angular brackets around it.")
3296 (defvar org-link-re-with-space2 nil
3297 "Matches a link with spaces, optional angular brackets around it.")
3298 (defvar org-angle-link-re nil
3299 "Matches link with angular brackets, spaces are allowed.")
3300 (defvar org-plain-link-re nil
3301 "Matches plain link, without spaces.")
3302 (defvar org-bracket-link-regexp nil
3303 "Matches a link in double brackets.")
3304 (defvar org-bracket-link-analytic-regexp nil
3305 "Regular expression used to analyze links.
3306 Here is what the match groups contain after a match:
3307 1: http:
3308 2: http
3309 3: path
3310 4: [desc]
3311 5: desc")
3312 (defvar org-any-link-re nil
3313 "Regular expression matching any link.")
3315 (defun org-make-link-regexps ()
3316 "Update the link regular expressions.
3317 This should be called after the variable `org-link-types' has changed."
3318 (setq org-link-types-re
3319 (concat
3320 "\\`\\(" (mapconcat 'identity org-link-types "\\|") "\\):")
3321 org-link-re-with-space
3322 (concat
3323 "<?\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
3324 "\\([^" org-non-link-chars " ]"
3325 "[^" org-non-link-chars "]*"
3326 "[^" org-non-link-chars " ]\\)>?")
3327 org-link-re-with-space2
3328 (concat
3329 "<?\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
3330 "\\([^" org-non-link-chars " ]"
3331 "[^]\t\n\r]*"
3332 "[^" org-non-link-chars " ]\\)>?")
3333 org-angle-link-re
3334 (concat
3335 "<\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
3336 "\\([^" org-non-link-chars " ]"
3337 "[^" org-non-link-chars "]*"
3338 "\\)>")
3339 org-plain-link-re
3340 (concat
3341 "\\<\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
3342 "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
3343 org-bracket-link-regexp
3344 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
3345 org-bracket-link-analytic-regexp
3346 (concat
3347 "\\[\\["
3348 "\\(\\(" (mapconcat 'identity org-link-types "\\|") "\\):\\)?"
3349 "\\([^]]+\\)"
3350 "\\]"
3351 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
3352 "\\]")
3353 org-any-link-re
3354 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
3355 org-angle-link-re "\\)\\|\\("
3356 org-plain-link-re "\\)")))
3358 (org-make-link-regexps)
3360 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^\r\n>]*?\\)>"
3361 "Regular expression for fast time stamp matching.")
3362 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^\r\n>]*?\\)[]>]"
3363 "Regular expression for fast time stamp matching.")
3364 (defconst org-ts-regexp0 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]-+0-9>\r\n ]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
3365 "Regular expression matching time strings for analysis.
3366 This one does not require the space after the date, so it can be used
3367 on a string that terminates immediately after the date.")
3368 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) +\\([^]-+0-9>\r\n ]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
3369 "Regular expression matching time strings for analysis.")
3370 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
3371 "Regular expression matching time stamps, with groups.")
3372 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
3373 "Regular expression matching time stamps (also [..]), with groups.")
3374 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
3375 "Regular expression matching a time stamp range.")
3376 (defconst org-tr-regexp-both
3377 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
3378 "Regular expression matching a time stamp range.")
3379 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
3380 org-ts-regexp "\\)?")
3381 "Regular expression matching a time stamp or time stamp range.")
3382 (defconst org-tsr-regexp-both (concat org-ts-regexp-both "\\(--?-?"
3383 org-ts-regexp-both "\\)?")
3384 "Regular expression matching a time stamp or time stamp range.
3385 The time stamps may be either active or inactive.")
3387 (defvar org-emph-face nil)
3389 (defun org-do-emphasis-faces (limit)
3390 "Run through the buffer and add overlays to links."
3391 (let (rtn)
3392 (while (and (not rtn) (re-search-forward org-emph-re limit t))
3393 (if (not (= (char-after (match-beginning 3))
3394 (char-after (match-beginning 4))))
3395 (progn
3396 (setq rtn t)
3397 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
3398 'face
3399 (nth 1 (assoc (match-string 3)
3400 org-emphasis-alist)))
3401 (add-text-properties (match-beginning 2) (match-end 2)
3402 '(font-lock-multiline t))
3403 (when org-hide-emphasis-markers
3404 (add-text-properties (match-end 4) (match-beginning 5)
3405 '(invisible org-link))
3406 (add-text-properties (match-beginning 3) (match-end 3)
3407 '(invisible org-link)))))
3408 (backward-char 1))
3409 rtn))
3411 (defun org-emphasize (&optional char)
3412 "Insert or change an emphasis, i.e. a font like bold or italic.
3413 If there is an active region, change that region to a new emphasis.
3414 If there is no region, just insert the marker characters and position
3415 the cursor between them.
3416 CHAR should be either the marker character, or the first character of the
3417 HTML tag associated with that emphasis. If CHAR is a space, the means
3418 to remove the emphasis of the selected region.
3419 If char is not given (for example in an interactive call) it
3420 will be prompted for."
3421 (interactive)
3422 (let ((eal org-emphasis-alist) e det
3423 (erc org-emphasis-regexp-components)
3424 (prompt "")
3425 (string "") beg end move tag c s)
3426 (if (org-region-active-p)
3427 (setq beg (region-beginning) end (region-end)
3428 string (buffer-substring beg end))
3429 (setq move t))
3431 (while (setq e (pop eal))
3432 (setq tag (car (org-split-string (nth 2 e) "[ <>/]+"))
3433 c (aref tag 0))
3434 (push (cons c (string-to-char (car e))) det)
3435 (setq prompt (concat prompt (format " [%s%c]%s" (car e) c
3436 (substring tag 1)))))
3437 (unless char
3438 (message "%s" (concat "Emphasis marker or tag:" prompt))
3439 (setq char (read-char-exclusive)))
3440 (setq char (or (cdr (assoc char det)) char))
3441 (if (equal char ?\ )
3442 (setq s "" move nil)
3443 (unless (assoc (char-to-string char) org-emphasis-alist)
3444 (error "No such emphasis marker: \"%c\"" char))
3445 (setq s (char-to-string char)))
3446 (while (and (> (length string) 1)
3447 (equal (substring string 0 1) (substring string -1))
3448 (assoc (substring string 0 1) org-emphasis-alist))
3449 (setq string (substring string 1 -1)))
3450 (setq string (concat s string s))
3451 (if beg (delete-region beg end))
3452 (unless (or (bolp)
3453 (string-match (concat "[" (nth 0 erc) "\n]")
3454 (char-to-string (char-before (point)))))
3455 (insert " "))
3456 (unless (string-match (concat "[" (nth 1 erc) "\n]")
3457 (char-to-string (char-after (point))))
3458 (insert " ") (backward-char 1))
3459 (insert string)
3460 (and move (backward-char 1))))
3462 (defconst org-nonsticky-props
3463 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text))
3466 (defun org-activate-plain-links (limit)
3467 "Run through the buffer and add overlays to links."
3468 (catch 'exit
3469 (let (f)
3470 (while (re-search-forward org-plain-link-re limit t)
3471 (setq f (get-text-property (match-beginning 0) 'face))
3472 (if (or (eq f 'org-tag)
3473 (and (listp f) (memq 'org-tag f)))
3475 (add-text-properties (match-beginning 0) (match-end 0)
3476 (list 'mouse-face 'highlight
3477 'rear-nonsticky org-nonsticky-props
3478 'keymap org-mouse-map
3480 (throw 'exit t))))))
3482 (defun org-activate-code (limit)
3483 (if (re-search-forward "^[ \t]*\\(:.*\\)" limit t)
3484 (unless (get-text-property (match-beginning 1) 'face)
3485 (remove-text-properties (match-beginning 0) (match-end 0)
3486 '(display t invisible t intangible t))
3487 t)))
3489 (defun org-activate-angle-links (limit)
3490 "Run through the buffer and add overlays to links."
3491 (if (re-search-forward org-angle-link-re limit t)
3492 (progn
3493 (add-text-properties (match-beginning 0) (match-end 0)
3494 (list 'mouse-face 'highlight
3495 'rear-nonsticky org-nonsticky-props
3496 'keymap org-mouse-map
3498 t)))
3500 (defun org-activate-bracket-links (limit)
3501 "Run through the buffer and add overlays to bracketed links."
3502 (if (re-search-forward org-bracket-link-regexp limit t)
3503 (let* ((help (concat "LINK: "
3504 (org-match-string-no-properties 1)))
3505 ;; FIXME: above we should remove the escapes.
3506 ;; but that requires another match, protecting match data,
3507 ;; a lot of overhead for font-lock.
3508 (ip (org-maybe-intangible
3509 (list 'invisible 'org-link 'rear-nonsticky org-nonsticky-props
3510 'keymap org-mouse-map 'mouse-face 'highlight
3511 'font-lock-multiline t 'help-echo help)))
3512 (vp (list 'rear-nonsticky org-nonsticky-props
3513 'keymap org-mouse-map 'mouse-face 'highlight
3514 ' font-lock-multiline t 'help-echo help)))
3515 ;; We need to remove the invisible property here. Table narrowing
3516 ;; may have made some of this invisible.
3517 (remove-text-properties (match-beginning 0) (match-end 0)
3518 '(invisible nil))
3519 (if (match-end 3)
3520 (progn
3521 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
3522 (add-text-properties (match-beginning 3) (match-end 3) vp)
3523 (add-text-properties (match-end 3) (match-end 0) ip))
3524 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
3525 (add-text-properties (match-beginning 1) (match-end 1) vp)
3526 (add-text-properties (match-end 1) (match-end 0) ip))
3527 t)))
3529 (defun org-activate-dates (limit)
3530 "Run through the buffer and add overlays to dates."
3531 (if (re-search-forward org-tsr-regexp-both limit t)
3532 (progn
3533 (add-text-properties (match-beginning 0) (match-end 0)
3534 (list 'mouse-face 'highlight
3535 'rear-nonsticky org-nonsticky-props
3536 'keymap org-mouse-map))
3537 (when org-display-custom-times
3538 (if (match-end 3)
3539 (org-display-custom-time (match-beginning 3) (match-end 3)))
3540 (org-display-custom-time (match-beginning 1) (match-end 1)))
3541 t)))
3543 (defvar org-target-link-regexp nil
3544 "Regular expression matching radio targets in plain text.")
3545 (defvar org-target-regexp "<<\\([^<>\n\r]+\\)>>"
3546 "Regular expression matching a link target.")
3547 (defvar org-radio-target-regexp "<<<\\([^<>\n\r]+\\)>>>"
3548 "Regular expression matching a radio target.")
3549 (defvar org-any-target-regexp "<<<?\\([^<>\n\r]+\\)>>>?" ; FIXME, not exact, would match <<<aaa>> as a radio target.
3550 "Regular expression matching any target.")
3552 (defun org-activate-target-links (limit)
3553 "Run through the buffer and add overlays to target matches."
3554 (when org-target-link-regexp
3555 (let ((case-fold-search t))
3556 (if (re-search-forward org-target-link-regexp limit t)
3557 (progn
3558 (add-text-properties (match-beginning 0) (match-end 0)
3559 (list 'mouse-face 'highlight
3560 'rear-nonsticky org-nonsticky-props
3561 'keymap org-mouse-map
3562 'help-echo "Radio target link"
3563 'org-linked-text t))
3564 t)))))
3566 (defun org-update-radio-target-regexp ()
3567 "Find all radio targets in this file and update the regular expression."
3568 (interactive)
3569 (when (memq 'radio org-activate-links)
3570 (setq org-target-link-regexp
3571 (org-make-target-link-regexp (org-all-targets 'radio)))
3572 (org-restart-font-lock)))
3574 (defun org-hide-wide-columns (limit)
3575 (let (s e)
3576 (setq s (text-property-any (point) (or limit (point-max))
3577 'org-cwidth t))
3578 (when s
3579 (setq e (next-single-property-change s 'org-cwidth))
3580 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
3581 (goto-char e)
3582 t)))
3584 (defvar org-latex-and-specials-regexp nil
3585 "Regular expression for highlighting export special stuff.")
3586 (defvar org-match-substring-regexp)
3587 (defvar org-match-substring-with-braces-regexp)
3588 (defvar org-export-html-special-string-regexps)
3590 (defun org-compute-latex-and-specials-regexp ()
3591 "Compute regular expression for stuff treated specially by exporters."
3592 (if (not org-highlight-latex-fragments-and-specials)
3593 (org-set-local 'org-latex-and-specials-regexp nil)
3594 (require 'org-exp)
3595 (let*
3596 ((matchers (plist-get org-format-latex-options :matchers))
3597 (latexs (delq nil (mapcar (lambda (x) (if (member (car x) matchers) x))
3598 org-latex-regexps)))
3599 (options (org-combine-plists (org-default-export-plist)
3600 (org-infile-export-plist)))
3601 (org-export-with-sub-superscripts (plist-get options :sub-superscript))
3602 (org-export-with-LaTeX-fragments (plist-get options :LaTeX-fragments))
3603 (org-export-with-TeX-macros (plist-get options :TeX-macros))
3604 (org-export-html-expand (plist-get options :expand-quoted-html))
3605 (org-export-with-special-strings (plist-get options :special-strings))
3606 (re-sub
3607 (cond
3608 ((equal org-export-with-sub-superscripts '{})
3609 (list org-match-substring-with-braces-regexp))
3610 (org-export-with-sub-superscripts
3611 (list org-match-substring-regexp))
3612 (t nil)))
3613 (re-latex
3614 (if org-export-with-LaTeX-fragments
3615 (mapcar (lambda (x) (nth 1 x)) latexs)))
3616 (re-macros
3617 (if org-export-with-TeX-macros
3618 (list (concat "\\\\"
3619 (regexp-opt
3620 (append (mapcar 'car org-html-entities)
3621 (if (boundp 'org-latex-entities)
3622 org-latex-entities nil))
3623 'words))) ; FIXME
3625 ;; (list "\\\\\\(?:[a-zA-Z]+\\)")))
3626 (re-special (if org-export-with-special-strings
3627 (mapcar (lambda (x) (car x))
3628 org-export-html-special-string-regexps)))
3629 (re-rest
3630 (delq nil
3631 (list
3632 (if org-export-html-expand "@<[^>\n]+>")
3633 ))))
3634 (org-set-local
3635 'org-latex-and-specials-regexp
3636 (mapconcat 'identity (append re-latex re-sub re-macros re-special
3637 re-rest) "\\|")))))
3639 (defun org-do-latex-and-special-faces (limit)
3640 "Run through the buffer and add overlays to links."
3641 (when org-latex-and-specials-regexp
3642 (let (rtn d)
3643 (while (and (not rtn) (re-search-forward org-latex-and-specials-regexp
3644 limit t))
3645 (if (not (memq (car-safe (get-text-property (1+ (match-beginning 0))
3646 'face))
3647 '(org-code org-verbatim underline)))
3648 (progn
3649 (setq rtn t
3650 d (cond ((member (char-after (1+ (match-beginning 0)))
3651 '(?_ ?^)) 1)
3652 (t 0)))
3653 (font-lock-prepend-text-property
3654 (+ d (match-beginning 0)) (match-end 0)
3655 'face 'org-latex-and-export-specials)
3656 (add-text-properties (+ d (match-beginning 0)) (match-end 0)
3657 '(font-lock-multiline t)))))
3658 rtn)))
3660 (defun org-restart-font-lock ()
3661 "Restart font-lock-mode, to force refontification."
3662 (when (and (boundp 'font-lock-mode) font-lock-mode)
3663 (font-lock-mode -1)
3664 (font-lock-mode 1)))
3666 (defun org-all-targets (&optional radio)
3667 "Return a list of all targets in this file.
3668 With optional argument RADIO, only find radio targets."
3669 (let ((re (if radio org-radio-target-regexp org-target-regexp))
3670 rtn)
3671 (save-excursion
3672 (goto-char (point-min))
3673 (while (re-search-forward re nil t)
3674 (add-to-list 'rtn (downcase (org-match-string-no-properties 1))))
3675 rtn)))
3677 (defun org-make-target-link-regexp (targets)
3678 "Make regular expression matching all strings in TARGETS.
3679 The regular expression finds the targets also if there is a line break
3680 between words."
3681 (and targets
3682 (concat
3683 "\\<\\("
3684 (mapconcat
3685 (lambda (x)
3686 (while (string-match " +" x)
3687 (setq x (replace-match "\\s-+" t t x)))
3689 targets
3690 "\\|")
3691 "\\)\\>")))
3693 (defun org-activate-tags (limit)
3694 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@:]+:\\)[ \r\n]") limit t)
3695 (progn
3696 (add-text-properties (match-beginning 1) (match-end 1)
3697 (list 'mouse-face 'highlight
3698 'rear-nonsticky org-nonsticky-props
3699 'keymap org-mouse-map))
3700 t)))
3702 (defun org-outline-level ()
3703 (save-excursion
3704 (looking-at outline-regexp)
3705 (if (match-beginning 1)
3706 (+ (org-get-string-indentation (match-string 1)) 1000)
3707 (1- (- (match-end 0) (match-beginning 0))))))
3709 (defvar org-font-lock-keywords nil)
3711 (defconst org-property-re (org-re "^[ \t]*\\(:\\([-[:alnum:]_]+\\):\\)[ \t]*\\([^ \t\r\n].*\\)")
3712 "Regular expression matching a property line.")
3714 (defvar org-font-lock-hook nil
3715 "Functions to be called for special font lock stuff.")
3717 (defun org-font-lock-hook (limit)
3718 (run-hook-with-args 'org-font-lock-hook limit))
3720 (defun org-set-font-lock-defaults ()
3721 (let* ((em org-fontify-emphasized-text)
3722 (lk org-activate-links)
3723 (org-font-lock-extra-keywords
3724 (list
3725 ;; Call the hook
3726 '(org-font-lock-hook)
3727 ;; Headlines
3728 '("^\\(\\**\\)\\(\\* \\)\\(.*\\)" (1 (org-get-level-face 1))
3729 (2 (org-get-level-face 2)) (3 (org-get-level-face 3)))
3730 ;; Table lines
3731 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
3732 (1 'org-table t))
3733 ;; Table internals
3734 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
3735 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
3736 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
3737 ;; Drawers
3738 (list org-drawer-regexp '(0 'org-special-keyword t))
3739 (list "^[ \t]*:END:" '(0 'org-special-keyword t))
3740 ;; Properties
3741 (list org-property-re
3742 '(1 'org-special-keyword t)
3743 '(3 'org-property-value t))
3744 (if org-format-transports-properties-p
3745 '("| *\\(<[0-9]+>\\) *" (1 'org-formula t)))
3746 ;; Links
3747 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
3748 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
3749 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
3750 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
3751 (if (memq 'radio lk) '(org-activate-target-links (0 'org-link t)))
3752 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
3753 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
3754 '(org-hide-wide-columns (0 nil append))
3755 ;; TODO lines
3756 (list (concat "^\\*+[ \t]+" org-todo-regexp)
3757 '(1 (org-get-todo-face 1) t))
3758 ;; DONE
3759 (if org-fontify-done-headline
3760 (list (concat "^[*]+ +\\<\\("
3761 (mapconcat 'regexp-quote org-done-keywords "\\|")
3762 "\\)\\(.*\\)")
3763 '(2 'org-headline-done t))
3764 nil)
3765 ;; Priorities
3766 (list (concat "\\[#[A-Z0-9]\\]") '(0 'org-special-keyword t))
3767 ;; Special keywords
3768 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
3769 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
3770 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
3771 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
3772 ;; Emphasis
3773 (if em
3774 (if (featurep 'xemacs)
3775 '(org-do-emphasis-faces (0 nil append))
3776 '(org-do-emphasis-faces)))
3777 ;; Checkboxes
3778 '("^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +\\(\\[[- X]\\]\\)"
3779 2 'bold prepend)
3780 (if org-provide-checkbox-statistics
3781 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
3782 (0 (org-get-checkbox-statistics-face) t)))
3783 ;; Description list items
3784 '("^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +\\(.*? ::\\)"
3785 2 'bold prepend)
3786 (list (concat "^\\*+ \\(.*:" org-archive-tag ":.*\\)")
3787 '(1 'org-archived prepend))
3788 ;; Specials
3789 '(org-do-latex-and-special-faces)
3790 ;; Code
3791 '(org-activate-code (1 'org-code t))
3792 ;; COMMENT
3793 (list (concat "^\\*+[ \t]+\\<\\(" org-comment-string
3794 "\\|" org-quote-string "\\)\\>")
3795 '(1 'org-special-keyword t))
3796 '("^#.*" (0 'font-lock-comment-face t))
3798 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
3799 ;; Now set the full font-lock-keywords
3800 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
3801 (org-set-local 'font-lock-defaults
3802 '(org-font-lock-keywords t nil nil backward-paragraph))
3803 (kill-local-variable 'font-lock-keywords) nil))
3805 (defvar org-m nil)
3806 (defvar org-l nil)
3807 (defvar org-f nil)
3808 (defun org-get-level-face (n)
3809 "Get the right face for match N in font-lock matching of healdines."
3810 (setq org-l (- (match-end 2) (match-beginning 1) 1))
3811 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
3812 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
3813 (cond
3814 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
3815 ((eq n 2) org-f)
3816 (t (if org-level-color-stars-only nil org-f))))
3818 (defun org-get-todo-face (kwd)
3819 "Get the right face for a TODO keyword KWD.
3820 If KWD is a number, get the corresponding match group."
3821 (if (numberp kwd) (setq kwd (match-string kwd)))
3822 (or (cdr (assoc kwd org-todo-keyword-faces))
3823 (and (member kwd org-done-keywords) 'org-done)
3824 'org-todo))
3826 (defun org-unfontify-region (beg end &optional maybe_loudly)
3827 "Remove fontification and activation overlays from links."
3828 (font-lock-default-unfontify-region beg end)
3829 (let* ((buffer-undo-list t)
3830 (inhibit-read-only t) (inhibit-point-motion-hooks t)
3831 (inhibit-modification-hooks t)
3832 deactivate-mark buffer-file-name buffer-file-truename)
3833 (remove-text-properties beg end
3834 '(mouse-face t keymap t org-linked-text t
3835 invisible t intangible t))))
3837 ;;;; Visibility cycling, including org-goto and indirect buffer
3839 ;;; Cycling
3841 (defvar org-cycle-global-status nil)
3842 (make-variable-buffer-local 'org-cycle-global-status)
3843 (defvar org-cycle-subtree-status nil)
3844 (make-variable-buffer-local 'org-cycle-subtree-status)
3846 ;;;###autoload
3847 (defun org-cycle (&optional arg)
3848 "Visibility cycling for Org-mode.
3850 - When this function is called with a prefix argument, rotate the entire
3851 buffer through 3 states (global cycling)
3852 1. OVERVIEW: Show only top-level headlines.
3853 2. CONTENTS: Show all headlines of all levels, but no body text.
3854 3. SHOW ALL: Show everything.
3855 When called with two C-c C-u prefixes, switch to the startup visibility,
3856 determined by the variable `org-startup-folded', and by any VISIBILITY
3857 properties in the buffer.
3859 - When point is at the beginning of a headline, rotate the subtree started
3860 by this line through 3 different states (local cycling)
3861 1. FOLDED: Only the main headline is shown.
3862 2. CHILDREN: The main headline and the direct children are shown.
3863 From this state, you can move to one of the children
3864 and zoom in further.
3865 3. SUBTREE: Show the entire subtree, including body text.
3867 - When there is a numeric prefix, go up to a heading with level ARG, do
3868 a `show-subtree' and return to the previous cursor position. If ARG
3869 is negative, go up that many levels.
3871 - When point is not at the beginning of a headline, execute the global
3872 binding for TAB, which is re-indenting the line. See the option
3873 `org-cycle-emulate-tab' for details.
3875 - Special case: if point is at the beginning of the buffer and there is
3876 no headline in line 1, this function will act as if called with prefix arg.
3877 But only if also the variable `org-cycle-global-at-bob' is t."
3878 (interactive "P")
3879 (org-load-modules-maybe)
3880 (let* ((outline-regexp
3881 (if (and (org-mode-p) org-cycle-include-plain-lists)
3882 "\\(?:\\*+ \\|\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) \\)"
3883 outline-regexp))
3884 (bob-special (and org-cycle-global-at-bob (bobp)
3885 (not (looking-at outline-regexp))))
3886 (org-cycle-hook
3887 (if bob-special
3888 (delq 'org-optimize-window-after-visibility-change
3889 (copy-sequence org-cycle-hook))
3890 org-cycle-hook))
3891 (pos (point)))
3893 (if (or bob-special (equal arg '(4)))
3894 ;; special case: use global cycling
3895 (setq arg t))
3897 (cond
3899 ((equal arg '(16))
3900 (org-set-startup-visibility)
3901 (message "Startup visibility, plus VISIBILITY properties."))
3903 ((org-at-table-p 'any)
3904 ;; Enter the table or move to the next field in the table
3905 (or (org-table-recognize-table.el)
3906 (progn
3907 (if arg (org-table-edit-field t)
3908 (org-table-justify-field-maybe)
3909 (call-interactively 'org-table-next-field)))))
3911 ((eq arg t) ;; Global cycling
3913 (cond
3914 ((and (eq last-command this-command)
3915 (eq org-cycle-global-status 'overview))
3916 ;; We just created the overview - now do table of contents
3917 ;; This can be slow in very large buffers, so indicate action
3918 (message "CONTENTS...")
3919 (org-content)
3920 (message "CONTENTS...done")
3921 (setq org-cycle-global-status 'contents)
3922 (run-hook-with-args 'org-cycle-hook 'contents))
3924 ((and (eq last-command this-command)
3925 (eq org-cycle-global-status 'contents))
3926 ;; We just showed the table of contents - now show everything
3927 (show-all)
3928 (message "SHOW ALL")
3929 (setq org-cycle-global-status 'all)
3930 (run-hook-with-args 'org-cycle-hook 'all))
3933 ;; Default action: go to overview
3934 (org-overview)
3935 (message "OVERVIEW")
3936 (setq org-cycle-global-status 'overview)
3937 (run-hook-with-args 'org-cycle-hook 'overview))))
3939 ((and org-drawers org-drawer-regexp
3940 (save-excursion
3941 (beginning-of-line 1)
3942 (looking-at org-drawer-regexp)))
3943 ;; Toggle block visibility
3944 (org-flag-drawer
3945 (not (get-char-property (match-end 0) 'invisible))))
3947 ((integerp arg)
3948 ;; Show-subtree, ARG levels up from here.
3949 (save-excursion
3950 (org-back-to-heading)
3951 (outline-up-heading (if (< arg 0) (- arg)
3952 (- (funcall outline-level) arg)))
3953 (org-show-subtree)))
3955 ((and (save-excursion (beginning-of-line 1) (looking-at outline-regexp))
3956 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
3957 ;; At a heading: rotate between three different views
3958 (org-back-to-heading)
3959 (let ((goal-column 0) eoh eol eos)
3960 ;; First, some boundaries
3961 (save-excursion
3962 (org-back-to-heading)
3963 (save-excursion
3964 (beginning-of-line 2)
3965 (while (and (not (eobp)) ;; this is like `next-line'
3966 (get-char-property (1- (point)) 'invisible))
3967 (beginning-of-line 2)) (setq eol (point)))
3968 (outline-end-of-heading) (setq eoh (point))
3969 (org-end-of-subtree t)
3970 (unless (eobp)
3971 (skip-chars-forward " \t\n")
3972 (beginning-of-line 1) ; in case this is an item
3974 (setq eos (1- (point))))
3975 ;; Find out what to do next and set `this-command'
3976 (cond
3977 ((= eos eoh)
3978 ;; Nothing is hidden behind this heading
3979 (message "EMPTY ENTRY")
3980 (setq org-cycle-subtree-status nil)
3981 (save-excursion
3982 (goto-char eos)
3983 (outline-next-heading)
3984 (if (org-invisible-p) (org-flag-heading nil))))
3985 ((or (>= eol eos)
3986 (not (string-match "\\S-" (buffer-substring eol eos))))
3987 ;; Entire subtree is hidden in one line: open it
3988 (org-show-entry)
3989 (show-children)
3990 (message "CHILDREN")
3991 (save-excursion
3992 (goto-char eos)
3993 (outline-next-heading)
3994 (if (org-invisible-p) (org-flag-heading nil)))
3995 (setq org-cycle-subtree-status 'children)
3996 (run-hook-with-args 'org-cycle-hook 'children))
3997 ((and (eq last-command this-command)
3998 (eq org-cycle-subtree-status 'children))
3999 ;; We just showed the children, now show everything.
4000 (org-show-subtree)
4001 (message "SUBTREE")
4002 (setq org-cycle-subtree-status 'subtree)
4003 (run-hook-with-args 'org-cycle-hook 'subtree))
4005 ;; Default action: hide the subtree.
4006 (hide-subtree)
4007 (message "FOLDED")
4008 (setq org-cycle-subtree-status 'folded)
4009 (run-hook-with-args 'org-cycle-hook 'folded)))))
4011 ;; TAB emulation and template completion
4012 (buffer-read-only (org-back-to-heading))
4014 ((org-try-structure-completion))
4016 ((org-try-cdlatex-tab))
4018 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
4019 (or (not (bolp))
4020 (not (looking-at outline-regexp))))
4021 (call-interactively (global-key-binding "\t")))
4023 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
4024 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
4025 (or (and (eq org-cycle-emulate-tab 'white)
4026 (= (match-end 0) (point-at-eol)))
4027 (and (eq org-cycle-emulate-tab 'whitestart)
4028 (>= (match-end 0) pos))))
4030 (eq org-cycle-emulate-tab t))
4031 (call-interactively (global-key-binding "\t")))
4033 (t (save-excursion
4034 (org-back-to-heading)
4035 (org-cycle))))))
4037 ;;;###autoload
4038 (defun org-global-cycle (&optional arg)
4039 "Cycle the global visibility. For details see `org-cycle'.
4040 With C-u prefix arg, switch to startup visibility.
4041 With a numeric prefix, show all headlines up to that level."
4042 (interactive "P")
4043 (let ((org-cycle-include-plain-lists
4044 (if (org-mode-p) org-cycle-include-plain-lists nil)))
4045 (cond
4046 ((integerp arg)
4047 (show-all)
4048 (hide-sublevels arg)
4049 (setq org-cycle-global-status 'contents))
4050 ((equal arg '(4))
4051 (org-set-startup-visibility)
4052 (message "Startup visibility, plus VISIBILITY properties."))
4054 (org-cycle '(4))))))
4056 (defun org-set-startup-visibility ()
4057 "Set the visibility required by startup options and properties."
4058 (cond
4059 ((eq org-startup-folded t)
4060 (org-cycle '(4)))
4061 ((eq org-startup-folded 'content)
4062 (let ((this-command 'org-cycle) (last-command 'org-cycle))
4063 (org-cycle '(4)) (org-cycle '(4)))))
4064 (org-set-visibility-according-to-property 'no-cleanup)
4065 (org-cycle-hide-archived-subtrees 'all)
4066 (org-cycle-hide-drawers 'all)
4067 (org-cycle-show-empty-lines 'all))
4069 (defun org-set-visibility-according-to-property (&optional no-cleanup)
4070 "Switch subtree visibilities according to :VISIBILITY: property."
4071 (interactive)
4072 (let (state)
4073 (save-excursion
4074 (goto-char (point-min))
4075 (while (re-search-forward
4076 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
4077 nil t)
4078 (setq state (match-string 1))
4079 (save-excursion
4080 (org-back-to-heading t)
4081 (hide-subtree)
4082 (org-reveal)
4083 (cond
4084 ((equal state '("fold" "folded"))
4085 (hide-subtree))
4086 ((equal state "children")
4087 (org-show-hidden-entry)
4088 (show-children))
4089 ((equal state "content")
4090 (save-excursion
4091 (save-restriction
4092 (org-narrow-to-subtree)
4093 (org-content))))
4094 ((member state '("all" "showall"))
4095 (show-subtree)))))
4096 (unless no-cleanup
4097 (org-cycle-hide-archived-subtrees 'all)
4098 (org-cycle-hide-drawers 'all)
4099 (org-cycle-show-empty-lines 'all)))))
4101 (defun org-overview ()
4102 "Switch to overview mode, shoing only top-level headlines.
4103 Really, this shows all headlines with level equal or greater than the level
4104 of the first headline in the buffer. This is important, because if the
4105 first headline is not level one, then (hide-sublevels 1) gives confusing
4106 results."
4107 (interactive)
4108 (let ((level (save-excursion
4109 (goto-char (point-min))
4110 (if (re-search-forward (concat "^" outline-regexp) nil t)
4111 (progn
4112 (goto-char (match-beginning 0))
4113 (funcall outline-level))))))
4114 (and level (hide-sublevels level))))
4116 (defun org-content (&optional arg)
4117 "Show all headlines in the buffer, like a table of contents.
4118 With numerical argument N, show content up to level N."
4119 (interactive "P")
4120 (save-excursion
4121 ;; Visit all headings and show their offspring
4122 (and (integerp arg) (org-overview))
4123 (goto-char (point-max))
4124 (catch 'exit
4125 (while (and (progn (condition-case nil
4126 (outline-previous-visible-heading 1)
4127 (error (goto-char (point-min))))
4129 (looking-at outline-regexp))
4130 (if (integerp arg)
4131 (show-children (1- arg))
4132 (show-branches))
4133 (if (bobp) (throw 'exit nil))))))
4136 (defun org-optimize-window-after-visibility-change (state)
4137 "Adjust the window after a change in outline visibility.
4138 This function is the default value of the hook `org-cycle-hook'."
4139 (when (get-buffer-window (current-buffer))
4140 (cond
4141 ; ((eq state 'overview) (org-first-headline-recenter 1))
4142 ; ((eq state 'overview) (org-beginning-of-line))
4143 ((eq state 'content) nil)
4144 ((eq state 'all) nil)
4145 ((eq state 'folded) nil)
4146 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
4147 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
4149 (defun org-compact-display-after-subtree-move ()
4150 (let (beg end)
4151 (save-excursion
4152 (if (org-up-heading-safe)
4153 (progn
4154 (hide-subtree)
4155 (show-entry)
4156 (show-children)
4157 (org-cycle-show-empty-lines 'children)
4158 (org-cycle-hide-drawers 'children))
4159 (org-overview)))))
4161 (defun org-cycle-show-empty-lines (state)
4162 "Show empty lines above all visible headlines.
4163 The region to be covered depends on STATE when called through
4164 `org-cycle-hook'. Lisp program can use t for STATE to get the
4165 entire buffer covered. Note that an empty line is only shown if there
4166 are at least `org-cycle-separator-lines' empty lines before the headeline."
4167 (when (> org-cycle-separator-lines 0)
4168 (save-excursion
4169 (let* ((n org-cycle-separator-lines)
4170 (re (cond
4171 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
4172 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
4173 (t (let ((ns (number-to-string (- n 2))))
4174 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
4175 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
4176 beg end)
4177 (cond
4178 ((memq state '(overview contents t))
4179 (setq beg (point-min) end (point-max)))
4180 ((memq state '(children folded))
4181 (setq beg (point) end (progn (org-end-of-subtree t t)
4182 (beginning-of-line 2)
4183 (point)))))
4184 (when beg
4185 (goto-char beg)
4186 (while (re-search-forward re end t)
4187 (if (not (get-char-property (match-end 1) 'invisible))
4188 (outline-flag-region
4189 (match-beginning 1) (match-end 1) nil)))))))
4190 ;; Never hide empty lines at the end of the file.
4191 (save-excursion
4192 (goto-char (point-max))
4193 (outline-previous-heading)
4194 (outline-end-of-heading)
4195 (if (and (looking-at "[ \t\n]+")
4196 (= (match-end 0) (point-max)))
4197 (outline-flag-region (point) (match-end 0) nil))))
4199 (defun org-cycle-hide-drawers (state)
4200 "Re-hide all drawers after a visibility state change."
4201 (when (and (org-mode-p)
4202 (not (memq state '(overview folded))))
4203 (save-excursion
4204 (let* ((globalp (memq state '(contents all)))
4205 (beg (if globalp (point-min) (point)))
4206 (end (if globalp (point-max) (org-end-of-subtree t))))
4207 (goto-char beg)
4208 (while (re-search-forward org-drawer-regexp end t)
4209 (org-flag-drawer t))))))
4211 (defun org-flag-drawer (flag)
4212 (save-excursion
4213 (beginning-of-line 1)
4214 (when (looking-at "^[ \t]*:[a-zA-Z][a-zA-Z0-9]*:")
4215 (let ((b (match-end 0))
4216 (outline-regexp org-outline-regexp))
4217 (if (re-search-forward
4218 "^[ \t]*:END:"
4219 (save-excursion (outline-next-heading) (point)) t)
4220 (outline-flag-region b (point-at-eol) flag)
4221 (error ":END: line missing"))))))
4223 (defun org-subtree-end-visible-p ()
4224 "Is the end of the current subtree visible?"
4225 (pos-visible-in-window-p
4226 (save-excursion (org-end-of-subtree t) (point))))
4228 (defun org-first-headline-recenter (&optional N)
4229 "Move cursor to the first headline and recenter the headline.
4230 Optional argument N means, put the headline into the Nth line of the window."
4231 (goto-char (point-min))
4232 (when (re-search-forward (concat "^\\(" outline-regexp "\\)") nil t)
4233 (beginning-of-line)
4234 (recenter (prefix-numeric-value N))))
4236 ;;; Org-goto
4238 (defvar org-goto-window-configuration nil)
4239 (defvar org-goto-marker nil)
4240 (defvar org-goto-map
4241 (let ((map (make-sparse-keymap)))
4242 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command mouse-drag-region universal-argument org-occur)) cmd)
4243 (while (setq cmd (pop cmds))
4244 (substitute-key-definition cmd cmd map global-map)))
4245 (suppress-keymap map)
4246 (org-defkey map "\C-m" 'org-goto-ret)
4247 (org-defkey map [(return)] 'org-goto-ret)
4248 (org-defkey map [(left)] 'org-goto-left)
4249 (org-defkey map [(right)] 'org-goto-right)
4250 (org-defkey map [(control ?g)] 'org-goto-quit)
4251 (org-defkey map "\C-i" 'org-cycle)
4252 (org-defkey map [(tab)] 'org-cycle)
4253 (org-defkey map [(down)] 'outline-next-visible-heading)
4254 (org-defkey map [(up)] 'outline-previous-visible-heading)
4255 (if org-goto-auto-isearch
4256 (if (fboundp 'define-key-after)
4257 (define-key-after map [t] 'org-goto-local-auto-isearch)
4258 nil)
4259 (org-defkey map "q" 'org-goto-quit)
4260 (org-defkey map "n" 'outline-next-visible-heading)
4261 (org-defkey map "p" 'outline-previous-visible-heading)
4262 (org-defkey map "f" 'outline-forward-same-level)
4263 (org-defkey map "b" 'outline-backward-same-level)
4264 (org-defkey map "u" 'outline-up-heading))
4265 (org-defkey map "/" 'org-occur)
4266 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
4267 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
4268 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
4269 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
4270 (org-defkey map "\C-c\C-u" 'outline-up-heading)
4271 map))
4273 (defconst org-goto-help
4274 "Browse buffer copy, to find location or copy text. Just type for auto-isearch.
4275 RET=jump to location [Q]uit and return to previous location
4276 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
4278 (defvar org-goto-start-pos) ; dynamically scoped parameter
4280 ;; FIXME: Docstring doe not mention both interfaces
4281 (defun org-goto (&optional alternative-interface)
4282 "Look up a different location in the current file, keeping current visibility.
4284 When you want look-up or go to a different location in a document, the
4285 fastest way is often to fold the entire buffer and then dive into the tree.
4286 This method has the disadvantage, that the previous location will be folded,
4287 which may not be what you want.
4289 This command works around this by showing a copy of the current buffer
4290 in an indirect buffer, in overview mode. You can dive into the tree in
4291 that copy, use org-occur and incremental search to find a location.
4292 When pressing RET or `Q', the command returns to the original buffer in
4293 which the visibility is still unchanged. After RET is will also jump to
4294 the location selected in the indirect buffer and expose the
4295 the headline hierarchy above."
4296 (interactive "P")
4297 (let* ((org-refile-targets '((nil . (:maxlevel . 10))))
4298 (org-refile-use-outline-path t)
4299 (interface
4300 (if (not alternative-interface)
4301 org-goto-interface
4302 (if (eq org-goto-interface 'outline)
4303 'outline-path-completion
4304 'outline)))
4305 (org-goto-start-pos (point))
4306 (selected-point
4307 (if (eq interface 'outline)
4308 (car (org-get-location (current-buffer) org-goto-help))
4309 (nth 3 (org-refile-get-location "Goto: ")))))
4310 (if selected-point
4311 (progn
4312 (org-mark-ring-push org-goto-start-pos)
4313 (goto-char selected-point)
4314 (if (or (org-invisible-p) (org-invisible-p2))
4315 (org-show-context 'org-goto)))
4316 (message "Quit"))))
4318 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
4319 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
4320 (defvar org-goto-local-auto-isearch-map) ; defined below
4322 (defun org-get-location (buf help)
4323 "Let the user select a location in the Org-mode buffer BUF.
4324 This function uses a recursive edit. It returns the selected position
4325 or nil."
4326 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
4327 (isearch-hide-immediately nil)
4328 (isearch-search-fun-function
4329 (lambda () 'org-goto-local-search-forward-headings))
4330 (org-goto-selected-point org-goto-exit-command))
4331 (save-excursion
4332 (save-window-excursion
4333 (delete-other-windows)
4334 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
4335 (switch-to-buffer
4336 (condition-case nil
4337 (make-indirect-buffer (current-buffer) "*org-goto*")
4338 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
4339 (with-output-to-temp-buffer "*Help*"
4340 (princ help))
4341 (shrink-window-if-larger-than-buffer (get-buffer-window "*Help*"))
4342 (setq buffer-read-only nil)
4343 (let ((org-startup-truncated t)
4344 (org-startup-folded nil)
4345 (org-startup-align-all-tables nil))
4346 (org-mode)
4347 (org-overview))
4348 (setq buffer-read-only t)
4349 (if (and (boundp 'org-goto-start-pos)
4350 (integer-or-marker-p org-goto-start-pos))
4351 (let ((org-show-hierarchy-above t)
4352 (org-show-siblings t)
4353 (org-show-following-heading t))
4354 (goto-char org-goto-start-pos)
4355 (and (org-invisible-p) (org-show-context)))
4356 (goto-char (point-min)))
4357 (org-beginning-of-line)
4358 (message "Select location and press RET")
4359 (use-local-map org-goto-map)
4360 (recursive-edit)
4362 (kill-buffer "*org-goto*")
4363 (cons org-goto-selected-point org-goto-exit-command)))
4365 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
4366 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
4367 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
4368 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char)
4370 (defun org-goto-local-search-forward-headings (string bound noerror)
4371 "Search and make sure that anu matches are in headlines."
4372 (catch 'return
4373 (while (search-forward string bound noerror)
4374 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
4375 (and (member :headline context)
4376 (not (member :tags context))))
4377 (throw 'return (point))))))
4379 (defun org-goto-local-auto-isearch ()
4380 "Start isearch."
4381 (interactive)
4382 (goto-char (point-min))
4383 (let ((keys (this-command-keys)))
4384 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
4385 (isearch-mode t)
4386 (isearch-process-search-char (string-to-char keys)))))
4388 (defun org-goto-ret (&optional arg)
4389 "Finish `org-goto' by going to the new location."
4390 (interactive "P")
4391 (setq org-goto-selected-point (point)
4392 org-goto-exit-command 'return)
4393 (throw 'exit nil))
4395 (defun org-goto-left ()
4396 "Finish `org-goto' by going to the new location."
4397 (interactive)
4398 (if (org-on-heading-p)
4399 (progn
4400 (beginning-of-line 1)
4401 (setq org-goto-selected-point (point)
4402 org-goto-exit-command 'left)
4403 (throw 'exit nil))
4404 (error "Not on a heading")))
4406 (defun org-goto-right ()
4407 "Finish `org-goto' by going to the new location."
4408 (interactive)
4409 (if (org-on-heading-p)
4410 (progn
4411 (setq org-goto-selected-point (point)
4412 org-goto-exit-command 'right)
4413 (throw 'exit nil))
4414 (error "Not on a heading")))
4416 (defun org-goto-quit ()
4417 "Finish `org-goto' without cursor motion."
4418 (interactive)
4419 (setq org-goto-selected-point nil)
4420 (setq org-goto-exit-command 'quit)
4421 (throw 'exit nil))
4423 ;;; Indirect buffer display of subtrees
4425 (defvar org-indirect-dedicated-frame nil
4426 "This is the frame being used for indirect tree display.")
4427 (defvar org-last-indirect-buffer nil)
4429 (defun org-tree-to-indirect-buffer (&optional arg)
4430 "Create indirect buffer and narrow it to current subtree.
4431 With numerical prefix ARG, go up to this level and then take that tree.
4432 If ARG is negative, go up that many levels.
4433 If `org-indirect-buffer-display' is not `new-frame', the command removes the
4434 indirect buffer previously made with this command, to avoid proliferation of
4435 indirect buffers. However, when you call the command with a `C-u' prefix, or
4436 when `org-indirect-buffer-display' is `new-frame', the last buffer
4437 is kept so that you can work with several indirect buffers at the same time.
4438 If `org-indirect-buffer-display' is `dedicated-frame', the C-u prefix also
4439 requests that a new frame be made for the new buffer, so that the dedicated
4440 frame is not changed."
4441 (interactive "P")
4442 (let ((cbuf (current-buffer))
4443 (cwin (selected-window))
4444 (pos (point))
4445 beg end level heading ibuf)
4446 (save-excursion
4447 (org-back-to-heading t)
4448 (when (numberp arg)
4449 (setq level (org-outline-level))
4450 (if (< arg 0) (setq arg (+ level arg)))
4451 (while (> (setq level (org-outline-level)) arg)
4452 (outline-up-heading 1 t)))
4453 (setq beg (point)
4454 heading (org-get-heading))
4455 (org-end-of-subtree t) (setq end (point)))
4456 (if (and (buffer-live-p org-last-indirect-buffer)
4457 (not (eq org-indirect-buffer-display 'new-frame))
4458 (not arg))
4459 (kill-buffer org-last-indirect-buffer))
4460 (setq ibuf (org-get-indirect-buffer cbuf)
4461 org-last-indirect-buffer ibuf)
4462 (cond
4463 ((or (eq org-indirect-buffer-display 'new-frame)
4464 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
4465 (select-frame (make-frame))
4466 (delete-other-windows)
4467 (switch-to-buffer ibuf)
4468 (org-set-frame-title heading))
4469 ((eq org-indirect-buffer-display 'dedicated-frame)
4470 (raise-frame
4471 (select-frame (or (and org-indirect-dedicated-frame
4472 (frame-live-p org-indirect-dedicated-frame)
4473 org-indirect-dedicated-frame)
4474 (setq org-indirect-dedicated-frame (make-frame)))))
4475 (delete-other-windows)
4476 (switch-to-buffer ibuf)
4477 (org-set-frame-title (concat "Indirect: " heading)))
4478 ((eq org-indirect-buffer-display 'current-window)
4479 (switch-to-buffer ibuf))
4480 ((eq org-indirect-buffer-display 'other-window)
4481 (pop-to-buffer ibuf))
4482 (t (error "Invalid value.")))
4483 (if (featurep 'xemacs)
4484 (save-excursion (org-mode) (turn-on-font-lock)))
4485 (narrow-to-region beg end)
4486 (show-all)
4487 (goto-char pos)
4488 (and (window-live-p cwin) (select-window cwin))))
4490 (defun org-get-indirect-buffer (&optional buffer)
4491 (setq buffer (or buffer (current-buffer)))
4492 (let ((n 1) (base (buffer-name buffer)) bname)
4493 (while (buffer-live-p
4494 (get-buffer (setq bname (concat base "-" (number-to-string n)))))
4495 (setq n (1+ n)))
4496 (condition-case nil
4497 (make-indirect-buffer buffer bname 'clone)
4498 (error (make-indirect-buffer buffer bname)))))
4500 (defun org-set-frame-title (title)
4501 "Set the title of the current frame to the string TITLE."
4502 ;; FIXME: how to name a single frame in XEmacs???
4503 (unless (featurep 'xemacs)
4504 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
4506 ;;;; Structure editing
4508 ;;; Inserting headlines
4510 (defun org-insert-heading (&optional force-heading)
4511 "Insert a new heading or item with same depth at point.
4512 If point is in a plain list and FORCE-HEADING is nil, create a new list item.
4513 If point is at the beginning of a headline, insert a sibling before the
4514 current headline. If point is not at the beginning, do not split the line,
4515 but create the new hedline after the current line."
4516 (interactive "P")
4517 (if (= (buffer-size) 0)
4518 (insert "\n* ")
4519 (when (or force-heading (not (org-insert-item)))
4520 (let* ((head (save-excursion
4521 (condition-case nil
4522 (progn
4523 (org-back-to-heading)
4524 (match-string 0))
4525 (error "*"))))
4526 (blank (cdr (assq 'heading org-blank-before-new-entry)))
4527 pos)
4528 (cond
4529 ((and (org-on-heading-p) (bolp)
4530 (or (bobp)
4531 (save-excursion (backward-char 1) (not (org-invisible-p)))))
4532 ;; insert before the current line
4533 (open-line (if blank 2 1)))
4534 ((and (bolp)
4535 (or (bobp)
4536 (save-excursion
4537 (backward-char 1) (not (org-invisible-p)))))
4538 ;; insert right here
4539 nil)
4541 ;; in the middle of the line
4542 (org-show-entry)
4543 (let ((split
4544 (org-get-alist-option org-M-RET-may-split-line 'headline))
4545 tags pos)
4546 (if (org-on-heading-p)
4547 (progn
4548 (looking-at ".*?\\([ \t]+\\(:[[:alnum:]_@:]+:\\)\\)?[ \t]*$")
4549 (setq tags (and (match-end 2) (match-string 2)))
4550 (and (match-end 1)
4551 (delete-region (match-beginning 1) (match-end 1)))
4552 (setq pos (point-at-bol))
4553 (or split (end-of-line 1))
4554 (delete-horizontal-space)
4555 (newline (if blank 2 1))
4556 (when tags
4557 (save-excursion
4558 (goto-char pos)
4559 (end-of-line 1)
4560 (insert " " tags)
4561 (org-set-tags nil 'align))))
4562 (or split (end-of-line 1))
4563 (newline (if blank 2 1))))))
4564 (insert head) (just-one-space)
4565 (setq pos (point))
4566 (end-of-line 1)
4567 (unless (= (point) pos) (just-one-space) (backward-delete-char 1))
4568 (run-hooks 'org-insert-heading-hook)))))
4570 (defun org-get-heading (&optional no-tags)
4571 "Return the heading of the current entry, without the stars."
4572 (save-excursion
4573 (org-back-to-heading t)
4574 (if (looking-at
4575 (if no-tags
4576 (org-re "\\*+[ \t]+\\([^\n\r]*?\\)\\([ \t]+:[[:alnum:]:_@]+:[ \t]*\\)?$")
4577 "\\*+[ \t]+\\([^\r\n]*\\)"))
4578 (match-string 1) "")))
4580 (defun org-insert-heading-after-current ()
4581 "Insert a new heading with same level as current, after current subtree."
4582 (interactive)
4583 (org-back-to-heading)
4584 (org-insert-heading)
4585 (org-move-subtree-down)
4586 (end-of-line 1))
4588 (defun org-insert-todo-heading (arg)
4589 "Insert a new heading with the same level and TODO state as current heading.
4590 If the heading has no TODO state, or if the state is DONE, use the first
4591 state (TODO by default). Also with prefix arg, force first state."
4592 (interactive "P")
4593 (when (not (org-insert-item 'checkbox))
4594 (org-insert-heading)
4595 (save-excursion
4596 (org-back-to-heading)
4597 (outline-previous-heading)
4598 (looking-at org-todo-line-regexp))
4599 (if (or arg
4600 (not (match-beginning 2))
4601 (member (match-string 2) org-done-keywords))
4602 (insert (car org-todo-keywords-1) " ")
4603 (insert (match-string 2) " "))
4604 (when org-provide-todo-statistics
4605 (org-update-parent-todo-statistics))))
4607 (defun org-insert-subheading (arg)
4608 "Insert a new subheading and demote it.
4609 Works for outline headings and for plain lists alike."
4610 (interactive "P")
4611 (org-insert-heading arg)
4612 (cond
4613 ((org-on-heading-p) (org-do-demote))
4614 ((org-at-item-p) (org-indent-item 1))))
4616 (defun org-insert-todo-subheading (arg)
4617 "Insert a new subheading with TODO keyword or checkbox and demote it.
4618 Works for outline headings and for plain lists alike."
4619 (interactive "P")
4620 (org-insert-todo-heading arg)
4621 (cond
4622 ((org-on-heading-p) (org-do-demote))
4623 ((org-at-item-p) (org-indent-item 1))))
4625 ;;; Promotion and Demotion
4627 (defun org-promote-subtree ()
4628 "Promote the entire subtree.
4629 See also `org-promote'."
4630 (interactive)
4631 (save-excursion
4632 (org-map-tree 'org-promote))
4633 (org-fix-position-after-promote))
4635 (defun org-demote-subtree ()
4636 "Demote the entire subtree. See `org-demote'.
4637 See also `org-promote'."
4638 (interactive)
4639 (save-excursion
4640 (org-map-tree 'org-demote))
4641 (org-fix-position-after-promote))
4644 (defun org-do-promote ()
4645 "Promote the current heading higher up the tree.
4646 If the region is active in `transient-mark-mode', promote all headings
4647 in the region."
4648 (interactive)
4649 (save-excursion
4650 (if (org-region-active-p)
4651 (org-map-region 'org-promote (region-beginning) (region-end))
4652 (org-promote)))
4653 (org-fix-position-after-promote))
4655 (defun org-do-demote ()
4656 "Demote the current heading lower down the tree.
4657 If the region is active in `transient-mark-mode', demote all headings
4658 in the region."
4659 (interactive)
4660 (save-excursion
4661 (if (org-region-active-p)
4662 (org-map-region 'org-demote (region-beginning) (region-end))
4663 (org-demote)))
4664 (org-fix-position-after-promote))
4666 (defun org-fix-position-after-promote ()
4667 "Make sure that after pro/demotion cursor position is right."
4668 (let ((pos (point)))
4669 (when (save-excursion
4670 (beginning-of-line 1)
4671 (looking-at org-todo-line-regexp)
4672 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
4673 (cond ((eobp) (insert " "))
4674 ((eolp) (insert " "))
4675 ((equal (char-after) ?\ ) (forward-char 1))))))
4677 (defun org-reduced-level (l)
4678 (if org-odd-levels-only (1+ (floor (/ l 2))) l))
4680 (defun org-get-valid-level (level &optional change)
4681 "Rectify a level change under the influence of `org-odd-levels-only'
4682 LEVEL is a current level, CHANGE is by how much the level should be
4683 modified. Even if CHANGE is nil, LEVEL may be returned modified because
4684 even level numbers will become the next higher odd number."
4685 (if org-odd-levels-only
4686 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
4687 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
4688 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
4689 (max 1 (+ level change))))
4691 (if (boundp 'define-obsolete-function-alias)
4692 (if (or (featurep 'xemacs) (< emacs-major-version 23))
4693 (define-obsolete-function-alias 'org-get-legal-level
4694 'org-get-valid-level)
4695 (define-obsolete-function-alias 'org-get-legal-level
4696 'org-get-valid-level "23.1")))
4698 (defun org-promote ()
4699 "Promote the current heading higher up the tree.
4700 If the region is active in `transient-mark-mode', promote all headings
4701 in the region."
4702 (org-back-to-heading t)
4703 (let* ((level (save-match-data (funcall outline-level)))
4704 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
4705 (diff (abs (- level (length up-head) -1))))
4706 (if (= level 1) (error "Cannot promote to level 0. UNDO to recover if necessary"))
4707 (replace-match up-head nil t)
4708 ;; Fixup tag positioning
4709 (and org-auto-align-tags (org-set-tags nil t))
4710 (if org-adapt-indentation (org-fixup-indentation (- diff)))))
4712 (defun org-demote ()
4713 "Demote the current heading lower down the tree.
4714 If the region is active in `transient-mark-mode', demote all headings
4715 in the region."
4716 (org-back-to-heading t)
4717 (let* ((level (save-match-data (funcall outline-level)))
4718 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
4719 (diff (abs (- level (length down-head) -1))))
4720 (replace-match down-head nil t)
4721 ;; Fixup tag positioning
4722 (and org-auto-align-tags (org-set-tags nil t))
4723 (if org-adapt-indentation (org-fixup-indentation diff))))
4725 (defun org-map-tree (fun)
4726 "Call FUN for every heading underneath the current one."
4727 (org-back-to-heading)
4728 (let ((level (funcall outline-level)))
4729 (save-excursion
4730 (funcall fun)
4731 (while (and (progn
4732 (outline-next-heading)
4733 (> (funcall outline-level) level))
4734 (not (eobp)))
4735 (funcall fun)))))
4737 (defun org-map-region (fun beg end)
4738 "Call FUN for every heading between BEG and END."
4739 (let ((org-ignore-region t))
4740 (save-excursion
4741 (setq end (copy-marker end))
4742 (goto-char beg)
4743 (if (and (re-search-forward (concat "^" outline-regexp) nil t)
4744 (< (point) end))
4745 (funcall fun))
4746 (while (and (progn
4747 (outline-next-heading)
4748 (< (point) end))
4749 (not (eobp)))
4750 (funcall fun)))))
4752 (defun org-fixup-indentation (diff)
4753 "Change the indentation in the current entry by DIFF
4754 However, if any line in the current entry has no indentation, or if it
4755 would end up with no indentation after the change, nothing at all is done."
4756 (save-excursion
4757 (let ((end (save-excursion (outline-next-heading)
4758 (point-marker)))
4759 (prohibit (if (> diff 0)
4760 "^\\S-"
4761 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
4762 col)
4763 (unless (save-excursion (end-of-line 1)
4764 (re-search-forward prohibit end t))
4765 (while (and (< (point) end)
4766 (re-search-forward "^[ \t]+" end t))
4767 (goto-char (match-end 0))
4768 (setq col (current-column))
4769 (if (< diff 0) (replace-match ""))
4770 (indent-to (+ diff col))))
4771 (move-marker end nil))))
4773 (defun org-convert-to-odd-levels ()
4774 "Convert an org-mode file with all levels allowed to one with odd levels.
4775 This will leave level 1 alone, convert level 2 to level 3, level 3 to
4776 level 5 etc."
4777 (interactive)
4778 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
4779 (let ((org-odd-levels-only nil) n)
4780 (save-excursion
4781 (goto-char (point-min))
4782 (while (re-search-forward "^\\*\\*+ " nil t)
4783 (setq n (- (length (match-string 0)) 2))
4784 (while (>= (setq n (1- n)) 0)
4785 (org-demote))
4786 (end-of-line 1))))))
4789 (defun org-convert-to-oddeven-levels ()
4790 "Convert an org-mode file with only odd levels to one with odd and even levels.
4791 This promotes level 3 to level 2, level 5 to level 3 etc. If the file contains a
4792 section with an even level, conversion would destroy the structure of the file. An error
4793 is signaled in this case."
4794 (interactive)
4795 (goto-char (point-min))
4796 ;; First check if there are no even levels
4797 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
4798 (org-show-context t)
4799 (error "Not all levels are odd in this file. Conversion not possible."))
4800 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
4801 (let ((org-odd-levels-only nil) n)
4802 (save-excursion
4803 (goto-char (point-min))
4804 (while (re-search-forward "^\\*\\*+ " nil t)
4805 (setq n (/ (1- (length (match-string 0))) 2))
4806 (while (>= (setq n (1- n)) 0)
4807 (org-promote))
4808 (end-of-line 1))))))
4810 (defun org-tr-level (n)
4811 "Make N odd if required."
4812 (if org-odd-levels-only (1+ (/ n 2)) n))
4814 ;;; Vertical tree motion, cutting and pasting of subtrees
4816 (defun org-move-subtree-up (&optional arg)
4817 "Move the current subtree up past ARG headlines of the same level."
4818 (interactive "p")
4819 (org-move-subtree-down (- (prefix-numeric-value arg))))
4821 (defun org-move-subtree-down (&optional arg)
4822 "Move the current subtree down past ARG headlines of the same level."
4823 (interactive "p")
4824 (setq arg (prefix-numeric-value arg))
4825 (let ((movfunc (if (> arg 0) 'outline-get-next-sibling
4826 'outline-get-last-sibling))
4827 (ins-point (make-marker))
4828 (cnt (abs arg))
4829 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
4830 ;; Select the tree
4831 (org-back-to-heading)
4832 (setq beg0 (point))
4833 (save-excursion
4834 (setq ne-beg (org-back-over-empty-lines))
4835 (setq beg (point)))
4836 (save-match-data
4837 (save-excursion (outline-end-of-heading)
4838 (setq folded (org-invisible-p)))
4839 (outline-end-of-subtree))
4840 (outline-next-heading)
4841 (setq ne-end (org-back-over-empty-lines))
4842 (setq end (point))
4843 (goto-char beg0)
4844 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
4845 ;; include less whitespace
4846 (save-excursion
4847 (goto-char beg)
4848 (forward-line (- ne-beg ne-end))
4849 (setq beg (point))))
4850 ;; Find insertion point, with error handling
4851 (while (> cnt 0)
4852 (or (and (funcall movfunc) (looking-at outline-regexp))
4853 (progn (goto-char beg0)
4854 (error "Cannot move past superior level or buffer limit")))
4855 (setq cnt (1- cnt)))
4856 (if (> arg 0)
4857 ;; Moving forward - still need to move over subtree
4858 (progn (org-end-of-subtree t t)
4859 (save-excursion
4860 (org-back-over-empty-lines)
4861 (or (bolp) (newline)))))
4862 (setq ne-ins (org-back-over-empty-lines))
4863 (move-marker ins-point (point))
4864 (setq txt (buffer-substring beg end))
4865 (org-save-markers-in-region beg end)
4866 (delete-region beg end)
4867 (outline-flag-region (1- beg) beg nil)
4868 (outline-flag-region (1- (point)) (point) nil)
4869 (let ((bbb (point)))
4870 (insert-before-markers txt)
4871 (org-reinstall-markers-in-region bbb)
4872 (move-marker ins-point bbb))
4873 (or (bolp) (insert "\n"))
4874 (setq ins-end (point))
4875 (goto-char ins-point)
4876 (org-skip-whitespace)
4877 (when (and (< arg 0)
4878 (org-first-sibling-p)
4879 (> ne-ins ne-beg))
4880 ;; Move whitespace back to beginning
4881 (save-excursion
4882 (goto-char ins-end)
4883 (let ((kill-whole-line t))
4884 (kill-line (- ne-ins ne-beg)) (point)))
4885 (insert (make-string (- ne-ins ne-beg) ?\n)))
4886 (move-marker ins-point nil)
4887 (org-compact-display-after-subtree-move)
4888 (unless folded
4889 (org-show-entry)
4890 (show-children)
4891 (org-cycle-hide-drawers 'children))))
4893 (defvar org-subtree-clip ""
4894 "Clipboard for cut and paste of subtrees.
4895 This is actually only a copy of the kill, because we use the normal kill
4896 ring. We need it to check if the kill was created by `org-copy-subtree'.")
4898 (defvar org-subtree-clip-folded nil
4899 "Was the last copied subtree folded?
4900 This is used to fold the tree back after pasting.")
4902 (defun org-cut-subtree (&optional n)
4903 "Cut the current subtree into the clipboard.
4904 With prefix arg N, cut this many sequential subtrees.
4905 This is a short-hand for marking the subtree and then cutting it."
4906 (interactive "p")
4907 (org-copy-subtree n 'cut))
4909 (defun org-copy-subtree (&optional n cut force-store-markers)
4910 "Cut the current subtree into the clipboard.
4911 With prefix arg N, cut this many sequential subtrees.
4912 This is a short-hand for marking the subtree and then copying it.
4913 If CUT is non-nil, actually cut the subtree.
4914 If FORCE-STORE-MARKERS is non-nil, store the relative locations
4915 of some markers in the region, even if CUT is non-nil. This is
4916 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
4917 (interactive "p")
4918 (let (beg end folded (beg0 (point)))
4919 (if (interactive-p)
4920 (org-back-to-heading nil) ; take what looks like a subtree
4921 (org-back-to-heading t)) ; take what is really there
4922 (org-back-over-empty-lines)
4923 (setq beg (point))
4924 (skip-chars-forward " \t\r\n")
4925 (save-match-data
4926 (save-excursion (outline-end-of-heading)
4927 (setq folded (org-invisible-p)))
4928 (condition-case nil
4929 (outline-forward-same-level (1- n))
4930 (error nil))
4931 (org-end-of-subtree t t))
4932 (org-back-over-empty-lines)
4933 (setq end (point))
4934 (goto-char beg0)
4935 (when (> end beg)
4936 (setq org-subtree-clip-folded folded)
4937 (when (or cut force-store-markers)
4938 (org-save-markers-in-region beg end))
4939 (if cut (kill-region beg end) (copy-region-as-kill beg end))
4940 (setq org-subtree-clip (current-kill 0))
4941 (message "%s: Subtree(s) with %d characters"
4942 (if cut "Cut" "Copied")
4943 (length org-subtree-clip)))))
4945 (defun org-paste-subtree (&optional level tree)
4946 "Paste the clipboard as a subtree, with modification of headline level.
4947 The entire subtree is promoted or demoted in order to match a new headline
4948 level. By default, the new level is derived from the visible headings
4949 before and after the insertion point, and taken to be the inferior headline
4950 level of the two. So if the previous visible heading is level 3 and the
4951 next is level 4 (or vice versa), level 4 will be used for insertion.
4952 This makes sure that the subtree remains an independent subtree and does
4953 not swallow low level entries.
4955 You can also force a different level, either by using a numeric prefix
4956 argument, or by inserting the heading marker by hand. For example, if the
4957 cursor is after \"*****\", then the tree will be shifted to level 5.
4959 If you want to insert the tree as is, just use \\[yank].
4961 If optional TREE is given, use this text instead of the kill ring."
4962 (interactive "P")
4963 (unless (org-kill-is-subtree-p tree)
4964 (error "%s"
4965 (substitute-command-keys
4966 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
4967 (let* ((txt (or tree (and kill-ring (current-kill 0))))
4968 (^re (concat "^\\(" outline-regexp "\\)"))
4969 (re (concat "\\(" outline-regexp "\\)"))
4970 (^re_ (concat "\\(\\*+\\)[ \t]*"))
4972 (old-level (if (string-match ^re txt)
4973 (- (match-end 0) (match-beginning 0) 1)
4974 -1))
4975 (force-level (cond (level (prefix-numeric-value level))
4976 ((string-match
4977 ^re_ (buffer-substring (point-at-bol) (point)))
4978 (- (match-end 1) (match-beginning 1)))
4979 (t nil)))
4980 (previous-level (save-excursion
4981 (condition-case nil
4982 (progn
4983 (outline-previous-visible-heading 1)
4984 (if (looking-at re)
4985 (- (match-end 0) (match-beginning 0) 1)
4987 (error 1))))
4988 (next-level (save-excursion
4989 (condition-case nil
4990 (progn
4991 (or (looking-at outline-regexp)
4992 (outline-next-visible-heading 1))
4993 (if (looking-at re)
4994 (- (match-end 0) (match-beginning 0) 1)
4996 (error 1))))
4997 (new-level (or force-level (max previous-level next-level)))
4998 (shift (if (or (= old-level -1)
4999 (= new-level -1)
5000 (= old-level new-level))
5002 (- new-level old-level)))
5003 (delta (if (> shift 0) -1 1))
5004 (func (if (> shift 0) 'org-demote 'org-promote))
5005 (org-odd-levels-only nil)
5006 beg end)
5007 ;; Remove the forced level indicator
5008 (if force-level
5009 (delete-region (point-at-bol) (point)))
5010 ;; Paste
5011 (beginning-of-line 1)
5012 (org-back-over-empty-lines)
5013 (setq beg (point))
5014 (insert-before-markers txt)
5015 (unless (string-match "\n\\'" txt) (insert "\n"))
5016 (org-reinstall-markers-in-region beg)
5017 (setq end (point))
5018 (goto-char beg)
5019 (skip-chars-forward " \t\n\r")
5020 (setq beg (point))
5021 ;; Shift if necessary
5022 (unless (= shift 0)
5023 (save-restriction
5024 (narrow-to-region beg end)
5025 (while (not (= shift 0))
5026 (org-map-region func (point-min) (point-max))
5027 (setq shift (+ delta shift)))
5028 (goto-char (point-min))))
5029 (when (interactive-p)
5030 (message "Clipboard pasted as level %d subtree" new-level))
5031 (if (and kill-ring
5032 (eq org-subtree-clip (current-kill 0))
5033 org-subtree-clip-folded)
5034 ;; The tree was folded before it was killed/copied
5035 (hide-subtree))))
5037 (defun org-kill-is-subtree-p (&optional txt)
5038 "Check if the current kill is an outline subtree, or a set of trees.
5039 Returns nil if kill does not start with a headline, or if the first
5040 headline level is not the largest headline level in the tree.
5041 So this will actually accept several entries of equal levels as well,
5042 which is OK for `org-paste-subtree'.
5043 If optional TXT is given, check this string instead of the current kill."
5044 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
5045 (start-level (and kill
5046 (string-match (concat "\\`\\([ \t\n\r]*?\n\\)?\\("
5047 org-outline-regexp "\\)")
5048 kill)
5049 (- (match-end 2) (match-beginning 2) 1)))
5050 (re (concat "^" org-outline-regexp))
5051 (start (1+ (match-beginning 2))))
5052 (if (not start-level)
5053 (progn
5054 nil) ;; does not even start with a heading
5055 (catch 'exit
5056 (while (setq start (string-match re kill (1+ start)))
5057 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
5058 (throw 'exit nil)))
5059 t))))
5061 (defvar org-markers-to-move nil
5062 "Markers that should be moved with a cut-and-paste operation.
5063 Those markers are stored together with their positions relative to
5064 the start of the region.")
5066 (defun org-save-markers-in-region (beg end)
5067 "Check markers in region.
5068 If these markers are between BEG and END, record their position relative
5069 to BEG, so that after moving the block of text, we can put the markers back
5070 into place.
5071 This function gets called just before an entry or tree gets cut from the
5072 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
5073 called immediately, to move the markers with the entries."
5074 (setq org-markers-to-move nil)
5075 (when (featurep 'org-clock)
5076 (org-clock-save-markers-for-cut-and-paste beg end))
5077 (when (featurep 'org-agenda)
5078 (org-agenda-save-markers-for-cut-and-paste beg end)))
5080 (defun org-check-and-save-marker (marker beg end)
5081 "Check if MARKER is between BEG and END.
5082 If yes, remember the marker and the distance to BEG."
5083 (when (and (marker-buffer marker)
5084 (equal (marker-buffer marker) (current-buffer)))
5085 (if (and (>= marker beg) (< marker end))
5086 (push (cons marker (- marker beg)) org-markers-to-move))))
5088 (defun org-reinstall-markers-in-region (beg)
5089 "Move all remembered markers to their position relative to BEG."
5090 (mapc (lambda (x)
5091 (move-marker (car x) (+ beg (cdr x))))
5092 org-markers-to-move)
5093 (setq org-markers-to-move nil))
5095 (defun org-narrow-to-subtree ()
5096 "Narrow buffer to the current subtree."
5097 (interactive)
5098 (save-excursion
5099 (save-match-data
5100 (narrow-to-region
5101 (progn (org-back-to-heading) (point))
5102 (progn (org-end-of-subtree t t) (point))))))
5105 ;;; Outline Sorting
5107 (defun org-sort (with-case)
5108 "Call `org-sort-entries-or-items' or `org-table-sort-lines'.
5109 Optional argument WITH-CASE means sort case-sensitively."
5110 (interactive "P")
5111 (if (org-at-table-p)
5112 (org-call-with-arg 'org-table-sort-lines with-case)
5113 (org-call-with-arg 'org-sort-entries-or-items with-case)))
5115 (defun org-sort-remove-invisible (s)
5116 (remove-text-properties 0 (length s) org-rm-props s)
5117 (while (string-match org-bracket-link-regexp s)
5118 (setq s (replace-match (if (match-end 2)
5119 (match-string 3 s)
5120 (match-string 1 s)) t t s)))
5123 (defvar org-priority-regexp) ; defined later in the file
5125 (defun org-sort-entries-or-items (&optional with-case sorting-type getkey-func property)
5126 "Sort entries on a certain level of an outline tree.
5127 If there is an active region, the entries in the region are sorted.
5128 Else, if the cursor is before the first entry, sort the top-level items.
5129 Else, the children of the entry at point are sorted.
5131 Sorting can be alphabetically, numerically, and by date/time as given by
5132 the first time stamp in the entry. The command prompts for the sorting
5133 type unless it has been given to the function through the SORTING-TYPE
5134 argument, which needs to a character, any of (?n ?N ?a ?A ?t ?T ?p ?P ?f ?F).
5135 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
5136 called with point at the beginning of the record. It must return either
5137 a string or a number that should serve as the sorting key for that record.
5139 Comparing entries ignores case by default. However, with an optional argument
5140 WITH-CASE, the sorting considers case as well."
5141 (interactive "P")
5142 (let ((case-func (if with-case 'identity 'downcase))
5143 start beg end stars re re2
5144 txt what tmp plain-list-p)
5145 ;; Find beginning and end of region to sort
5146 (cond
5147 ((org-region-active-p)
5148 ;; we will sort the region
5149 (setq end (region-end)
5150 what "region")
5151 (goto-char (region-beginning))
5152 (if (not (org-on-heading-p)) (outline-next-heading))
5153 (setq start (point)))
5154 ((org-at-item-p)
5155 ;; we will sort this plain list
5156 (org-beginning-of-item-list) (setq start (point))
5157 (org-end-of-item-list) (setq end (point))
5158 (goto-char start)
5159 (setq plain-list-p t
5160 what "plain list"))
5161 ((or (org-on-heading-p)
5162 (condition-case nil (progn (org-back-to-heading) t) (error nil)))
5163 ;; we will sort the children of the current headline
5164 (org-back-to-heading)
5165 (setq start (point)
5166 end (progn (org-end-of-subtree t t)
5167 (org-back-over-empty-lines)
5168 (point))
5169 what "children")
5170 (goto-char start)
5171 (show-subtree)
5172 (outline-next-heading))
5174 ;; we will sort the top-level entries in this file
5175 (goto-char (point-min))
5176 (or (org-on-heading-p) (outline-next-heading))
5177 (setq start (point) end (point-max) what "top-level")
5178 (goto-char start)
5179 (show-all)))
5181 (setq beg (point))
5182 (if (>= beg end) (error "Nothing to sort"))
5184 (unless plain-list-p
5185 (looking-at "\\(\\*+\\)")
5186 (setq stars (match-string 1)
5187 re (concat "^" (regexp-quote stars) " +")
5188 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[^*]")
5189 txt (buffer-substring beg end))
5190 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
5191 (if (and (not (equal stars "*")) (string-match re2 txt))
5192 (error "Region to sort contains a level above the first entry")))
5194 (unless sorting-type
5195 (message
5196 (if plain-list-p
5197 "Sort %s: [a]lpha [n]umeric [t]ime [f]unc A/N/T/F means reversed:"
5198 "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:")
5199 what)
5200 (setq sorting-type (read-char-exclusive))
5202 (and (= (downcase sorting-type) ?f)
5203 (setq getkey-func
5204 (completing-read "Sort using function: "
5205 obarray 'fboundp t nil nil))
5206 (setq getkey-func (intern getkey-func)))
5208 (and (= (downcase sorting-type) ?r)
5209 (setq property
5210 (completing-read "Property: "
5211 (mapcar 'list (org-buffer-property-keys t))
5212 nil t))))
5214 (message "Sorting entries...")
5216 (save-restriction
5217 (narrow-to-region start end)
5219 (let ((dcst (downcase sorting-type))
5220 (now (current-time)))
5221 (sort-subr
5222 (/= dcst sorting-type)
5223 ;; This function moves to the beginning character of the "record" to
5224 ;; be sorted.
5225 (if plain-list-p
5226 (lambda nil
5227 (if (org-at-item-p) t (goto-char (point-max))))
5228 (lambda nil
5229 (if (re-search-forward re nil t)
5230 (goto-char (match-beginning 0))
5231 (goto-char (point-max)))))
5232 ;; This function moves to the last character of the "record" being
5233 ;; sorted.
5234 (if plain-list-p
5235 'org-end-of-item
5236 (lambda nil
5237 (save-match-data
5238 (condition-case nil
5239 (outline-forward-same-level 1)
5240 (error
5241 (goto-char (point-max)))))))
5243 ;; This function returns the value that gets sorted against.
5244 (if plain-list-p
5245 (lambda nil
5246 (when (looking-at "[ \t]*[-+*0-9.)]+[ \t]+")
5247 (cond
5248 ((= dcst ?n)
5249 (string-to-number (buffer-substring (match-end 0)
5250 (point-at-eol))))
5251 ((= dcst ?a)
5252 (buffer-substring (match-end 0) (point-at-eol)))
5253 ((= dcst ?t)
5254 (if (re-search-forward org-ts-regexp
5255 (point-at-eol) t)
5256 (org-time-string-to-time (match-string 0))
5257 now))
5258 ((= dcst ?f)
5259 (if getkey-func
5260 (progn
5261 (setq tmp (funcall getkey-func))
5262 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
5263 tmp)
5264 (error "Invalid key function `%s'" getkey-func)))
5265 (t (error "Invalid sorting type `%c'" sorting-type)))))
5266 (lambda nil
5267 (cond
5268 ((= dcst ?n)
5269 (if (looking-at outline-regexp)
5270 (string-to-number (buffer-substring (match-end 0)
5271 (point-at-eol)))
5272 nil))
5273 ((= dcst ?a)
5274 (funcall case-func (buffer-substring (point-at-bol)
5275 (point-at-eol))))
5276 ((= dcst ?t)
5277 (if (re-search-forward org-ts-regexp
5278 (save-excursion
5279 (forward-line 2)
5280 (point)) t)
5281 (org-time-string-to-time (match-string 0))
5282 now))
5283 ((= dcst ?p)
5284 (if (re-search-forward org-priority-regexp (point-at-eol) t)
5285 (string-to-char (match-string 2))
5286 org-default-priority))
5287 ((= dcst ?r)
5288 (or (org-entry-get nil property) ""))
5289 ((= dcst ?o)
5290 (if (looking-at org-complex-heading-regexp)
5291 (- 9999 (length (member (match-string 2)
5292 org-todo-keywords-1)))))
5293 ((= dcst ?f)
5294 (if getkey-func
5295 (progn
5296 (setq tmp (funcall getkey-func))
5297 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
5298 tmp)
5299 (error "Invalid key function `%s'" getkey-func)))
5300 (t (error "Invalid sorting type `%c'" sorting-type)))))
5302 (cond
5303 ((= dcst ?a) 'string<)
5304 ((= dcst ?t) 'time-less-p)
5305 (t nil)))))
5306 (message "Sorting entries...done")))
5308 (defun org-do-sort (table what &optional with-case sorting-type)
5309 "Sort TABLE of WHAT according to SORTING-TYPE.
5310 The user will be prompted for the SORTING-TYPE if the call to this
5311 function does not specify it. WHAT is only for the prompt, to indicate
5312 what is being sorted. The sorting key will be extracted from
5313 the car of the elements of the table.
5314 If WITH-CASE is non-nil, the sorting will be case-sensitive."
5315 (unless sorting-type
5316 (message
5317 "Sort %s: [a]lphabetic. [n]umeric. [t]ime. A/N/T means reversed:"
5318 what)
5319 (setq sorting-type (read-char-exclusive)))
5320 (let ((dcst (downcase sorting-type))
5321 extractfun comparefun)
5322 ;; Define the appropriate functions
5323 (cond
5324 ((= dcst ?n)
5325 (setq extractfun 'string-to-number
5326 comparefun (if (= dcst sorting-type) '< '>)))
5327 ((= dcst ?a)
5328 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
5329 (lambda(x) (downcase (org-sort-remove-invisible x))))
5330 comparefun (if (= dcst sorting-type)
5331 'string<
5332 (lambda (a b) (and (not (string< a b))
5333 (not (string= a b)))))))
5334 ((= dcst ?t)
5335 (setq extractfun
5336 (lambda (x)
5337 (if (string-match org-ts-regexp x)
5338 (time-to-seconds
5339 (org-time-string-to-time (match-string 0 x)))
5341 comparefun (if (= dcst sorting-type) '< '>)))
5342 (t (error "Invalid sorting type `%c'" sorting-type)))
5344 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
5345 table)
5346 (lambda (a b) (funcall comparefun (car a) (car b))))))
5348 ;;; Editing source examples
5350 (defvar org-exit-edit-mode-map (make-sparse-keymap))
5351 (define-key org-exit-edit-mode-map "\C-c'" 'org-edit-src-exit)
5352 (defvar org-edit-src-force-single-line nil)
5353 (defvar org-edit-src-from-org-mode nil)
5355 (define-minor-mode org-exit-edit-mode
5356 "Minor mode installing a single key binding, \"C-c '\" to exit special edit.")
5358 (defun org-edit-src-code ()
5359 "Edit the source code example at point.
5360 An indirect buffer is created, and that buffer is then narrowed to the
5361 example at point and switched to the correct language mode. When done,
5362 exit by killing the buffer with \\[org-edit-src-exit]."
5363 (interactive)
5364 (let ((line (org-current-line))
5365 (case-fold-search t)
5366 (msg (substitute-command-keys
5367 "Edit, then exit with C-c ' (C-c and single quote)"))
5368 (info (org-edit-src-find-region-and-lang))
5369 (org-mode-p (eq major-mode 'org-mode))
5370 beg end lang lang-f single)
5371 (if (not info)
5373 (setq beg (nth 0 info)
5374 end (nth 1 info)
5375 lang (nth 2 info)
5376 single (nth 3 info)
5377 lang-f (intern (concat lang "-mode")))
5378 (unless (functionp lang-f)
5379 (error "No such language mode: %s" lang-f))
5380 (goto-line line)
5381 (if (get-buffer "*Org Edit Src Example*")
5382 (kill-buffer "*Org Edit Src Example*"))
5383 (switch-to-buffer (make-indirect-buffer (current-buffer)
5384 "*Org Edit Src Example*"))
5385 (narrow-to-region beg end)
5386 (remove-text-properties beg end '(display nil invisible nil
5387 intangible nil))
5388 (let ((org-inhibit-startup t))
5389 (funcall lang-f))
5390 (set (make-local-variable 'org-edit-src-force-single-line) single)
5391 (set (make-local-variable 'org-edit-src-from-org-mode) org-mode-p)
5392 (when org-mode-p
5393 (goto-char (point-min))
5394 (while (re-search-forward "^," nil t)
5395 (replace-match "")))
5396 (goto-line line)
5397 (org-exit-edit-mode)
5398 (org-set-local 'header-line-format msg)
5399 (message "%s" msg)
5400 t)))
5402 (defun org-edit-src-find-region-and-lang ()
5403 "Find the region and language for a local edit.
5404 Return a list with beginning and end of the region, a string representing
5405 the language, a switch telling of the content should be in a single line."
5406 (let ((re-list
5408 ("<src\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</src>" lang)
5409 ("<literal\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</literal>" style)
5410 ("<example>[ \t]*\n?" "\n?[ \t]*</example>" "fundamental")
5411 ("<lisp>[ \t]*\n?" "\n?[ \t]*</lisp>" "emacs-lisp")
5412 ("<perl>[ \t]*\n?" "\n?[ \t]*</perl>" "perl")
5413 ("<python>[ \t]*\n?" "\n?[ \t]*</python>" "python")
5414 ("<ruby>[ \t]*\n?" "\n?[ \t]*</ruby>" "ruby")
5415 ("^#\\+begin_src\\( \\([^ \t\n]+\\)\\)?.*\n" "\n#\\+end_src" 2)
5416 ("^#\\+begin_example.*\n" "^#\\+end_example" "fundamental")
5417 ("^#\\+html:" "\n" "html" single-line)
5418 ("^#\\+begin_html.*\n" "\n#\\+end_html" "html")
5419 ("^#\\+begin_latex.*\n" "\n#\\+end_latex" "latex")
5420 ("^#\\+latex:" "\n" "latex" single-line)
5421 ("^#\\+begin_ascii.*\n" "\n#\\+end_ascii" "fundamental")
5422 ("^#\\+ascii:" "\n" "ascii" single-line)
5424 (pos (point))
5425 re re1 re2 single beg end lang)
5426 (catch 'exit
5427 (while (setq entry (pop re-list))
5428 (setq re1 (car entry) re2 (nth 1 entry) lang (nth 2 entry)
5429 single (nth 3 entry))
5430 (save-excursion
5431 (if (or (looking-at re1)
5432 (re-search-backward re1 nil t))
5433 (progn
5434 (setq beg (match-end 0) lang (org-edit-src-get-lang lang))
5435 (if (and (re-search-forward re2 nil t)
5436 (>= (match-end 0) pos))
5437 (throw 'exit (list beg (match-beginning 0) lang single))))
5438 (if (or (looking-at re2)
5439 (re-search-forward re2 nil t))
5440 (progn
5441 (setq end (match-beginning 0))
5442 (if (and (re-search-backward re1 nil t)
5443 (<= (match-beginning 0) pos))
5444 (throw 'exit
5445 (list (match-end 0) end
5446 (org-edit-src-get-lang lang) single)))))))))))
5448 (defun org-edit-src-get-lang (lang)
5449 "Extract the src language."
5450 (let ((m (match-string 0)))
5451 (cond
5452 ((stringp lang) lang)
5453 ((integerp lang) (match-string lang))
5454 ((and (eq lang lang)
5455 (string-match "\\<lang=\"\\([^ \t\n\"]+\\)\"" m))
5456 (match-string 1 m))
5457 ((and (eq lang lang)
5458 (string-match "\\<style=\"\\([^ \t\n\"]+\\)\"" m))
5459 (match-string 1 m))
5460 (t "fundamental"))))
5462 (defun org-edit-src-exit ()
5463 "Exit special edit and protect problematic lines."
5464 (interactive)
5465 (unless (buffer-base-buffer (current-buffer))
5466 (error "This is not an indirect buffer, something is wrong..."))
5467 (unless (> (point-min) 1)
5468 (error "This buffer is not narrowed, something is wrong..."))
5469 (goto-char (point-min))
5470 (if (looking-at "[ \t\n]*\n") (replace-match ""))
5471 (if (re-search-forward "\n[ \t\n]*\\'" nil t) (replace-match ""))
5472 (when (org-bound-and-true-p org-edit-src-force-single-line)
5473 (goto-char (point-min))
5474 (while (re-search-forward "\n" nil t)
5475 (replace-match " "))
5476 (goto-char (point-min))
5477 (if (looking-at "\\s-*") (replace-match " "))
5478 (if (re-search-forward "\\s-+\\'" nil t)
5479 (replace-match "")))
5480 (when (org-bound-and-true-p org-edit-src-from-org-mode)
5481 (goto-char (point-min))
5482 (while (re-search-forward (if (org-mode-p) "^\\(.\\)" "^\\([*#]\\)") nil t)
5483 (replace-match ",\\1"))
5484 (when font-lock-mode
5485 (font-lock-unfontify-region (point-min) (point-max)))
5486 (put-text-property (point-min) (point-max) 'font-lock-fontified t))
5487 (kill-buffer (current-buffer)))
5489 ;;;; Plain list items, including checkboxes
5491 ;;; Plain list items
5493 (defun org-at-item-p ()
5494 "Is point in a line starting a hand-formatted item?"
5495 (let ((llt org-plain-list-ordered-item-terminator))
5496 (save-excursion
5497 (goto-char (point-at-bol))
5498 (looking-at
5499 (cond
5500 ((eq llt t) "\\([ \t]*\\([-+]\\|\\([0-9]+[.)]\\)\\)\\|[ \t]+\\*\\)\\( \\|$\\)")
5501 ((= llt ?.) "\\([ \t]*\\([-+]\\|\\([0-9]+\\.\\)\\)\\|[ \t]+\\*\\)\\( \\|$\\)")
5502 ((= llt ?\)) "\\([ \t]*\\([-+]\\|\\([0-9]+))\\)\\|[ \t]+\\*\\)\\( \\|$\\)")
5503 (t (error "Invalid value of `org-plain-list-ordered-item-terminator'")))))))
5505 (defun org-in-item-p ()
5506 "It the cursor inside a plain list item.
5507 Does not have to be the first line."
5508 (save-excursion
5509 (condition-case nil
5510 (progn
5511 (org-beginning-of-item)
5512 (org-at-item-p)
5514 (error nil))))
5516 (defun org-insert-item (&optional checkbox)
5517 "Insert a new item at the current level.
5518 Return t when things worked, nil when we are not in an item."
5519 (when (save-excursion
5520 (condition-case nil
5521 (progn
5522 (org-beginning-of-item)
5523 (org-at-item-p)
5524 (if (org-invisible-p) (error "Invisible item"))
5526 (error nil)))
5527 (let* ((bul (match-string 0))
5528 (descp (save-excursion (goto-char (match-beginning 0))
5529 (beginning-of-line 1)
5530 (save-match-data
5531 (looking-at "[ \t]*.*? ::"))))
5532 (eow (save-excursion (beginning-of-line 1) (looking-at "[ \t]*")
5533 (match-end 0)))
5534 (blank (cdr (assq 'plain-list-item org-blank-before-new-entry)))
5535 pos)
5536 (if descp (setq checkbox nil))
5537 (cond
5538 ((and (org-at-item-p) (<= (point) eow))
5539 ;; before the bullet
5540 (beginning-of-line 1)
5541 (open-line (if blank 2 1)))
5542 ((<= (point) eow)
5543 (beginning-of-line 1))
5545 (unless (org-get-alist-option org-M-RET-may-split-line 'item)
5546 (end-of-line 1)
5547 (delete-horizontal-space))
5548 (newline (if blank 2 1))))
5549 (insert bul
5550 (if checkbox "[ ]" "")
5551 (if descp (concat (if checkbox " " "")
5552 (read-string "Term: ") " :: ") ""))
5553 (just-one-space)
5554 (setq pos (point))
5555 (end-of-line 1)
5556 (unless (= (point) pos) (just-one-space) (backward-delete-char 1)))
5557 (org-maybe-renumber-ordered-list)
5558 (and checkbox (org-update-checkbox-count-maybe))
5561 ;;; Checkboxes
5563 (defun org-at-item-checkbox-p ()
5564 "Is point at a line starting a plain-list item with a checklet?"
5565 (and (org-at-item-p)
5566 (save-excursion
5567 (goto-char (match-end 0))
5568 (skip-chars-forward " \t")
5569 (looking-at "\\[[- X]\\]"))))
5571 (defun org-toggle-checkbox (&optional arg)
5572 "Toggle the checkbox in the current line."
5573 (interactive "P")
5574 (catch 'exit
5575 (let (beg end status (firstnew 'unknown))
5576 (cond
5577 ((org-region-active-p)
5578 (setq beg (region-beginning) end (region-end)))
5579 ((org-on-heading-p)
5580 (setq beg (point) end (save-excursion (outline-next-heading) (point))))
5581 ((org-at-item-checkbox-p)
5582 (let ((pos (point)))
5583 (replace-match
5584 (cond (arg "[-]")
5585 ((member (match-string 0) '("[ ]" "[-]")) "[X]")
5586 (t "[ ]"))
5587 t t)
5588 (goto-char pos))
5589 (throw 'exit t))
5590 (t (error "Not at a checkbox or heading, and no active region")))
5591 (save-excursion
5592 (goto-char beg)
5593 (while (< (point) end)
5594 (when (org-at-item-checkbox-p)
5595 (setq status (equal (match-string 0) "[X]"))
5596 (when (eq firstnew 'unknown)
5597 (setq firstnew (not status)))
5598 (replace-match
5599 (if (if arg (not status) firstnew) "[X]" "[ ]") t t))
5600 (beginning-of-line 2)))))
5601 (org-update-checkbox-count-maybe))
5603 (defun org-update-checkbox-count-maybe ()
5604 "Update checkbox statistics unless turned off by user."
5605 (when org-provide-checkbox-statistics
5606 (org-update-checkbox-count)))
5608 (defun org-update-checkbox-count (&optional all)
5609 "Update the checkbox statistics in the current section.
5610 This will find all statistic cookies like [57%] and [6/12] and update them
5611 with the current numbers. With optional prefix argument ALL, do this for
5612 the whole buffer."
5613 (interactive "P")
5614 (save-excursion
5615 (let* ((buffer-invisibility-spec (org-inhibit-invisibility)) ; Emacs 21
5616 (beg (condition-case nil
5617 (progn (outline-back-to-heading) (point))
5618 (error (point-min))))
5619 (end (move-marker (make-marker)
5620 (progn (outline-next-heading) (point))))
5621 (re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
5622 (re-box "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +\\(\\[[- X]\\]\\)")
5623 (re-find (concat re "\\|" re-box))
5624 beg-cookie end-cookie is-percent c-on c-off lim
5625 eline curr-ind next-ind continue-from startsearch
5626 (cstat 0)
5628 (when all
5629 (goto-char (point-min))
5630 (outline-next-heading)
5631 (setq beg (point) end (point-max)))
5632 (goto-char end)
5633 ;; find each statistic cookie
5634 (while (re-search-backward re-find beg t)
5635 (setq beg-cookie (match-beginning 1)
5636 end-cookie (match-end 1)
5637 cstat (+ cstat (if end-cookie 1 0))
5638 startsearch (point-at-eol)
5639 continue-from (point-at-bol)
5640 is-percent (match-beginning 2)
5641 lim (cond
5642 ((org-on-heading-p) (outline-next-heading) (point))
5643 ((org-at-item-p) (org-end-of-item) (point))
5644 (t nil))
5645 c-on 0
5646 c-off 0)
5647 (when lim
5648 ;; find first checkbox for this cookie and gather
5649 ;; statistics from all that are at this indentation level
5650 (goto-char startsearch)
5651 (if (re-search-forward re-box lim t)
5652 (progn
5653 (org-beginning-of-item)
5654 (setq curr-ind (org-get-indentation))
5655 (setq next-ind curr-ind)
5656 (while (and (bolp) (org-at-item-p) (= curr-ind next-ind))
5657 (save-excursion (end-of-line) (setq eline (point)))
5658 (if (re-search-forward re-box eline t)
5659 (if (member (match-string 2) '("[ ]" "[-]"))
5660 (setq c-off (1+ c-off))
5661 (setq c-on (1+ c-on))
5664 (org-end-of-item)
5665 (setq next-ind (org-get-indentation))
5667 (goto-char continue-from)
5668 ;; update cookie
5669 (when end-cookie
5670 (delete-region beg-cookie end-cookie)
5671 (goto-char beg-cookie)
5672 (insert
5673 (if is-percent
5674 (format "[%d%%]" (/ (* 100 c-on) (max 1 (+ c-on c-off))))
5675 (format "[%d/%d]" c-on (+ c-on c-off)))))
5676 ;; update items checkbox if it has one
5677 (when (org-at-item-p)
5678 (org-beginning-of-item)
5679 (when (and (> (+ c-on c-off) 0)
5680 (re-search-forward re-box (point-at-eol) t))
5681 (setq beg-cookie (match-beginning 2)
5682 end-cookie (match-end 2))
5683 (delete-region beg-cookie end-cookie)
5684 (goto-char beg-cookie)
5685 (cond ((= c-off 0) (insert "[X]"))
5686 ((= c-on 0) (insert "[ ]"))
5687 (t (insert "[-]")))
5689 (goto-char continue-from))
5690 (when (interactive-p)
5691 (message "Checkbox satistics updated %s (%d places)"
5692 (if all "in entire file" "in current outline entry") cstat)))))
5694 (defun org-get-checkbox-statistics-face ()
5695 "Select the face for checkbox statistics.
5696 The face will be `org-done' when all relevant boxes are checked. Otherwise
5697 it will be `org-todo'."
5698 (if (match-end 1)
5699 (if (equal (match-string 1) "100%") 'org-done 'org-todo)
5700 (if (and (> (match-end 2) (match-beginning 2))
5701 (equal (match-string 2) (match-string 3)))
5702 'org-done
5703 'org-todo)))
5705 (defun org-get-indentation (&optional line)
5706 "Get the indentation of the current line, interpreting tabs.
5707 When LINE is given, assume it represents a line and compute its indentation."
5708 (if line
5709 (if (string-match "^ *" (org-remove-tabs line))
5710 (match-end 0))
5711 (save-excursion
5712 (beginning-of-line 1)
5713 (skip-chars-forward " \t")
5714 (current-column))))
5716 (defun org-remove-tabs (s &optional width)
5717 "Replace tabulators in S with spaces.
5718 Assumes that s is a single line, starting in column 0."
5719 (setq width (or width tab-width))
5720 (while (string-match "\t" s)
5721 (setq s (replace-match
5722 (make-string
5723 (- (* width (/ (+ (match-beginning 0) width) width))
5724 (match-beginning 0)) ?\ )
5725 t t s)))
5728 (defun org-fix-indentation (line ind)
5729 "Fix indentation in LINE.
5730 IND is a cons cell with target and minimum indentation.
5731 If the current indenation in LINE is smaller than the minimum,
5732 leave it alone. If it is larger than ind, set it to the target."
5733 (let* ((l (org-remove-tabs line))
5734 (i (org-get-indentation l))
5735 (i1 (car ind)) (i2 (cdr ind)))
5736 (if (>= i i2) (setq l (substring line i2)))
5737 (if (> i1 0)
5738 (concat (make-string i1 ?\ ) l)
5739 l)))
5741 (defun org-beginning-of-item ()
5742 "Go to the beginning of the current hand-formatted item.
5743 If the cursor is not in an item, throw an error."
5744 (interactive)
5745 (let ((pos (point))
5746 (limit (save-excursion
5747 (condition-case nil
5748 (progn
5749 (org-back-to-heading)
5750 (beginning-of-line 2) (point))
5751 (error (point-min)))))
5752 (ind-empty (if org-empty-line-terminates-plain-lists 0 10000))
5753 ind ind1)
5754 (if (org-at-item-p)
5755 (beginning-of-line 1)
5756 (beginning-of-line 1)
5757 (skip-chars-forward " \t")
5758 (setq ind (current-column))
5759 (if (catch 'exit
5760 (while t
5761 (beginning-of-line 0)
5762 (if (or (bobp) (< (point) limit)) (throw 'exit nil))
5764 (if (looking-at "[ \t]*$")
5765 (setq ind1 ind-empty)
5766 (skip-chars-forward " \t")
5767 (setq ind1 (current-column)))
5768 (if (< ind1 ind)
5769 (progn (beginning-of-line 1) (throw 'exit (org-at-item-p))))))
5771 (goto-char pos)
5772 (error "Not in an item")))))
5774 (defun org-end-of-item ()
5775 "Go to the end of the current hand-formatted item.
5776 If the cursor is not in an item, throw an error."
5777 (interactive)
5778 (let* ((pos (point))
5779 ind1
5780 (ind-empty (if org-empty-line-terminates-plain-lists 0 10000))
5781 (limit (save-excursion (outline-next-heading) (point)))
5782 (ind (save-excursion
5783 (org-beginning-of-item)
5784 (skip-chars-forward " \t")
5785 (current-column)))
5786 (end (catch 'exit
5787 (while t
5788 (beginning-of-line 2)
5789 (if (eobp) (throw 'exit (point)))
5790 (if (>= (point) limit) (throw 'exit (point-at-bol)))
5791 (if (looking-at "[ \t]*$")
5792 (setq ind1 ind-empty)
5793 (skip-chars-forward " \t")
5794 (setq ind1 (current-column)))
5795 (if (<= ind1 ind)
5796 (throw 'exit (point-at-bol)))))))
5797 (if end
5798 (goto-char end)
5799 (goto-char pos)
5800 (error "Not in an item"))))
5802 (defun org-next-item ()
5803 "Move to the beginning of the next item in the current plain list.
5804 Error if not at a plain list, or if this is the last item in the list."
5805 (interactive)
5806 (let (ind ind1 (pos (point)))
5807 (org-beginning-of-item)
5808 (setq ind (org-get-indentation))
5809 (org-end-of-item)
5810 (setq ind1 (org-get-indentation))
5811 (unless (and (org-at-item-p) (= ind ind1))
5812 (goto-char pos)
5813 (error "On last item"))))
5815 (defun org-previous-item ()
5816 "Move to the beginning of the previous item in the current plain list.
5817 Error if not at a plain list, or if this is the first item in the list."
5818 (interactive)
5819 (let (beg ind ind1 (pos (point)))
5820 (org-beginning-of-item)
5821 (setq beg (point))
5822 (setq ind (org-get-indentation))
5823 (goto-char beg)
5824 (catch 'exit
5825 (while t
5826 (beginning-of-line 0)
5827 (if (looking-at "[ \t]*$")
5829 (if (<= (setq ind1 (org-get-indentation)) ind)
5830 (throw 'exit t)))))
5831 (condition-case nil
5832 (if (or (not (org-at-item-p))
5833 (< ind1 (1- ind)))
5834 (error "")
5835 (org-beginning-of-item))
5836 (error (goto-char pos)
5837 (error "On first item")))))
5839 (defun org-first-list-item-p ()
5840 "Is this heading the item in a plain list?"
5841 (unless (org-at-item-p)
5842 (error "Not at a plain list item"))
5843 (org-beginning-of-item)
5844 (= (point) (save-excursion (org-beginning-of-item-list))))
5846 (defun org-move-item-down ()
5847 "Move the plain list item at point down, i.e. swap with following item.
5848 Subitems (items with larger indentation) are considered part of the item,
5849 so this really moves item trees."
5850 (interactive)
5851 (let (beg beg0 end end0 ind ind1 (pos (point)) txt ne-end ne-beg)
5852 (org-beginning-of-item)
5853 (setq beg0 (point))
5854 (save-excursion
5855 (setq ne-beg (org-back-over-empty-lines))
5856 (setq beg (point)))
5857 (goto-char beg0)
5858 (setq ind (org-get-indentation))
5859 (org-end-of-item)
5860 (setq end0 (point))
5861 (setq ind1 (org-get-indentation))
5862 (setq ne-end (org-back-over-empty-lines))
5863 (setq end (point))
5864 (goto-char beg0)
5865 (when (and (org-first-list-item-p) (< ne-end ne-beg))
5866 ;; include less whitespace
5867 (save-excursion
5868 (goto-char beg)
5869 (forward-line (- ne-beg ne-end))
5870 (setq beg (point))))
5871 (goto-char end0)
5872 (if (and (org-at-item-p) (= ind ind1))
5873 (progn
5874 (org-end-of-item)
5875 (org-back-over-empty-lines)
5876 (setq txt (buffer-substring beg end))
5877 (save-excursion
5878 (delete-region beg end))
5879 (setq pos (point))
5880 (insert txt)
5881 (goto-char pos) (org-skip-whitespace)
5882 (org-maybe-renumber-ordered-list))
5883 (goto-char pos)
5884 (error "Cannot move this item further down"))))
5886 (defun org-move-item-up (arg)
5887 "Move the plain list item at point up, i.e. swap with previous item.
5888 Subitems (items with larger indentation) are considered part of the item,
5889 so this really moves item trees."
5890 (interactive "p")
5891 (let (beg beg0 end ind ind1 (pos (point)) txt
5892 ne-beg ne-ins ins-end)
5893 (org-beginning-of-item)
5894 (setq beg0 (point))
5895 (setq ind (org-get-indentation))
5896 (save-excursion
5897 (setq ne-beg (org-back-over-empty-lines))
5898 (setq beg (point)))
5899 (goto-char beg0)
5900 (org-end-of-item)
5901 (setq end (point))
5902 (goto-char beg0)
5903 (catch 'exit
5904 (while t
5905 (beginning-of-line 0)
5906 (if (looking-at "[ \t]*$")
5907 (if org-empty-line-terminates-plain-lists
5908 (progn
5909 (goto-char pos)
5910 (error "Cannot move this item further up"))
5911 nil)
5912 (if (<= (setq ind1 (org-get-indentation)) ind)
5913 (throw 'exit t)))))
5914 (condition-case nil
5915 (org-beginning-of-item)
5916 (error (goto-char beg)
5917 (error "Cannot move this item further up")))
5918 (setq ind1 (org-get-indentation))
5919 (if (and (org-at-item-p) (= ind ind1))
5920 (progn
5921 (setq ne-ins (org-back-over-empty-lines))
5922 (setq txt (buffer-substring beg end))
5923 (save-excursion
5924 (delete-region beg end))
5925 (setq pos (point))
5926 (insert txt)
5927 (setq ins-end (point))
5928 (goto-char pos) (org-skip-whitespace)
5930 (when (and (org-first-list-item-p) (> ne-ins ne-beg))
5931 ;; Move whitespace back to beginning
5932 (save-excursion
5933 (goto-char ins-end)
5934 (let ((kill-whole-line t))
5935 (kill-line (- ne-ins ne-beg)) (point)))
5936 (insert (make-string (- ne-ins ne-beg) ?\n)))
5938 (org-maybe-renumber-ordered-list))
5939 (goto-char pos)
5940 (error "Cannot move this item further up"))))
5942 (defun org-maybe-renumber-ordered-list ()
5943 "Renumber the ordered list at point if setup allows it.
5944 This tests the user option `org-auto-renumber-ordered-lists' before
5945 doing the renumbering."
5946 (interactive)
5947 (when (and org-auto-renumber-ordered-lists
5948 (org-at-item-p))
5949 (if (match-beginning 3)
5950 (org-renumber-ordered-list 1)
5951 (org-fix-bullet-type))))
5953 (defun org-maybe-renumber-ordered-list-safe ()
5954 (condition-case nil
5955 (save-excursion
5956 (org-maybe-renumber-ordered-list))
5957 (error nil)))
5959 (defun org-cycle-list-bullet (&optional which)
5960 "Cycle through the different itemize/enumerate bullets.
5961 This cycle the entire list level through the sequence:
5963 `-' -> `+' -> `*' -> `1.' -> `1)'
5965 If WHICH is a string, use that as the new bullet. If WHICH is an integer,
5966 0 meand `-', 1 means `+' etc."
5967 (interactive "P")
5968 (org-preserve-lc
5969 (org-beginning-of-item-list)
5970 (org-at-item-p)
5971 (beginning-of-line 1)
5972 (let ((current (match-string 0))
5973 (prevp (eq which 'previous))
5974 new)
5975 (setq new (cond
5976 ((and (numberp which)
5977 (nth (1- which) '("-" "+" "*" "1." "1)"))))
5978 ((string-match "-" current) (if prevp "1)" "+"))
5979 ((string-match "\\+" current)
5980 (if prevp "-" (if (looking-at "\\S-") "1." "*")))
5981 ((string-match "\\*" current) (if prevp "+" "1."))
5982 ((string-match "\\." current) (if prevp "*" "1)"))
5983 ((string-match ")" current) (if prevp "1." "-"))
5984 (t (error "This should not happen"))))
5985 (and (looking-at "\\([ \t]*\\)\\S-+") (replace-match (concat "\\1" new)))
5986 (org-fix-bullet-type)
5987 (org-maybe-renumber-ordered-list))))
5989 (defun org-get-string-indentation (s)
5990 "What indentation has S due to SPACE and TAB at the beginning of the string?"
5991 (let ((n -1) (i 0) (w tab-width) c)
5992 (catch 'exit
5993 (while (< (setq n (1+ n)) (length s))
5994 (setq c (aref s n))
5995 (cond ((= c ?\ ) (setq i (1+ i)))
5996 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
5997 (t (throw 'exit t)))))
6000 (defun org-renumber-ordered-list (arg)
6001 "Renumber an ordered plain list.
6002 Cursor needs to be in the first line of an item, the line that starts
6003 with something like \"1.\" or \"2)\"."
6004 (interactive "p")
6005 (unless (and (org-at-item-p)
6006 (match-beginning 3))
6007 (error "This is not an ordered list"))
6008 (let ((line (org-current-line))
6009 (col (current-column))
6010 (ind (org-get-string-indentation
6011 (buffer-substring (point-at-bol) (match-beginning 3))))
6012 ;; (term (substring (match-string 3) -1))
6013 ind1 (n (1- arg))
6014 fmt)
6015 ;; find where this list begins
6016 (org-beginning-of-item-list)
6017 (looking-at "[ \t]*[0-9]+\\([.)]\\)")
6018 (setq fmt (concat "%d" (match-string 1)))
6019 (beginning-of-line 0)
6020 ;; walk forward and replace these numbers
6021 (catch 'exit
6022 (while t
6023 (catch 'next
6024 (beginning-of-line 2)
6025 (if (eobp) (throw 'exit nil))
6026 (if (looking-at "[ \t]*$") (throw 'next nil))
6027 (skip-chars-forward " \t") (setq ind1 (current-column))
6028 (if (> ind1 ind) (throw 'next t))
6029 (if (< ind1 ind) (throw 'exit t))
6030 (if (not (org-at-item-p)) (throw 'exit nil))
6031 (delete-region (match-beginning 2) (match-end 2))
6032 (goto-char (match-beginning 2))
6033 (insert (format fmt (setq n (1+ n)))))))
6034 (goto-line line)
6035 (org-move-to-column col)))
6037 (defun org-fix-bullet-type ()
6038 "Make sure all items in this list have the same bullet as the firsst item."
6039 (interactive)
6040 (unless (org-at-item-p) (error "This is not a list"))
6041 (let ((line (org-current-line))
6042 (col (current-column))
6043 (ind (current-indentation))
6044 ind1 bullet)
6045 ;; find where this list begins
6046 (org-beginning-of-item-list)
6047 (beginning-of-line 1)
6048 ;; find out what the bullet type is
6049 (looking-at "[ \t]*\\(\\S-+\\)")
6050 (setq bullet (match-string 1))
6051 ;; walk forward and replace these numbers
6052 (beginning-of-line 0)
6053 (catch 'exit
6054 (while t
6055 (catch 'next
6056 (beginning-of-line 2)
6057 (if (eobp) (throw 'exit nil))
6058 (if (looking-at "[ \t]*$") (throw 'next nil))
6059 (skip-chars-forward " \t") (setq ind1 (current-column))
6060 (if (> ind1 ind) (throw 'next t))
6061 (if (< ind1 ind) (throw 'exit t))
6062 (if (not (org-at-item-p)) (throw 'exit nil))
6063 (skip-chars-forward " \t")
6064 (looking-at "\\S-+")
6065 (replace-match bullet))))
6066 (goto-line line)
6067 (org-move-to-column col)
6068 (if (string-match "[0-9]" bullet)
6069 (org-renumber-ordered-list 1))))
6071 (defun org-beginning-of-item-list ()
6072 "Go to the beginning of the current item list.
6073 I.e. to the first item in this list."
6074 (interactive)
6075 (org-beginning-of-item)
6076 (let ((pos (point-at-bol))
6077 (ind (org-get-indentation))
6078 ind1)
6079 ;; find where this list begins
6080 (catch 'exit
6081 (while t
6082 (catch 'next
6083 (beginning-of-line 0)
6084 (if (looking-at "[ \t]*$")
6085 (throw (if (bobp) 'exit 'next) t))
6086 (skip-chars-forward " \t") (setq ind1 (current-column))
6087 (if (or (< ind1 ind)
6088 (and (= ind1 ind)
6089 (not (org-at-item-p)))
6090 (bobp))
6091 (throw 'exit t)
6092 (when (org-at-item-p) (setq pos (point-at-bol)))))))
6093 (goto-char pos)))
6096 (defun org-end-of-item-list ()
6097 "Go to the end of the current item list.
6098 I.e. to the text after the last item."
6099 (interactive)
6100 (org-beginning-of-item)
6101 (let ((pos (point-at-bol))
6102 (ind (org-get-indentation))
6103 ind1)
6104 ;; find where this list begins
6105 (catch 'exit
6106 (while t
6107 (catch 'next
6108 (beginning-of-line 2)
6109 (if (looking-at "[ \t]*$")
6110 (throw (if (eobp) 'exit 'next) t))
6111 (skip-chars-forward " \t") (setq ind1 (current-column))
6112 (if (or (< ind1 ind)
6113 (and (= ind1 ind)
6114 (not (org-at-item-p)))
6115 (eobp))
6116 (progn
6117 (setq pos (point-at-bol))
6118 (throw 'exit t))))))
6119 (goto-char pos)))
6122 (defvar org-last-indent-begin-marker (make-marker))
6123 (defvar org-last-indent-end-marker (make-marker))
6125 (defun org-outdent-item (arg)
6126 "Outdent a local list item."
6127 (interactive "p")
6128 (org-indent-item (- arg)))
6130 (defun org-indent-item (arg)
6131 "Indent a local list item."
6132 (interactive "p")
6133 (unless (org-at-item-p)
6134 (error "Not on an item"))
6135 (save-excursion
6136 (let (beg end ind ind1 tmp delta ind-down ind-up)
6137 (if (memq last-command '(org-shiftmetaright org-shiftmetaleft))
6138 (setq beg org-last-indent-begin-marker
6139 end org-last-indent-end-marker)
6140 (org-beginning-of-item)
6141 (setq beg (move-marker org-last-indent-begin-marker (point)))
6142 (org-end-of-item)
6143 (setq end (move-marker org-last-indent-end-marker (point))))
6144 (goto-char beg)
6145 (setq tmp (org-item-indent-positions)
6146 ind (car tmp)
6147 ind-down (nth 2 tmp)
6148 ind-up (nth 1 tmp)
6149 delta (if (> arg 0)
6150 (if ind-down (- ind-down ind) 2)
6151 (if ind-up (- ind-up ind) -2)))
6152 (if (< (+ delta ind) 0) (error "Cannot outdent beyond margin"))
6153 (while (< (point) end)
6154 (beginning-of-line 1)
6155 (skip-chars-forward " \t") (setq ind1 (current-column))
6156 (delete-region (point-at-bol) (point))
6157 (or (eolp) (org-indent-to-column (+ ind1 delta)))
6158 (beginning-of-line 2))))
6159 (org-fix-bullet-type)
6160 (org-maybe-renumber-ordered-list-safe)
6161 (save-excursion
6162 (beginning-of-line 0)
6163 (condition-case nil (org-beginning-of-item) (error nil))
6164 (org-maybe-renumber-ordered-list-safe)))
6166 (defun org-item-indent-positions ()
6167 "Return indentation for plain list items.
6168 This returns a list with three values: The current indentation, the
6169 parent indentation and the indentation a child should habe.
6170 Assumes cursor in item line."
6171 (let* ((bolpos (point-at-bol))
6172 (ind (org-get-indentation))
6173 ind-down ind-up pos)
6174 (save-excursion
6175 (org-beginning-of-item-list)
6176 (skip-chars-backward "\n\r \t")
6177 (when (org-in-item-p)
6178 (org-beginning-of-item)
6179 (setq ind-up (org-get-indentation))))
6180 (setq pos (point))
6181 (save-excursion
6182 (cond
6183 ((and (condition-case nil (progn (org-previous-item) t)
6184 (error nil))
6185 (or (forward-char 1) t)
6186 (re-search-forward "^\\([ \t]*\\([-+]\\|\\([0-9]+[.)]\\)\\)\\|[ \t]+\\*\\)\\( \\|$\\)" bolpos t))
6187 (setq ind-down (org-get-indentation)))
6188 ((and (goto-char pos)
6189 (org-at-item-p))
6190 (goto-char (match-end 0))
6191 (skip-chars-forward " \t")
6192 (setq ind-down (current-column)))))
6193 (list ind ind-up ind-down)))
6195 ;;; The orgstruct minor mode
6197 ;; Define a minor mode which can be used in other modes in order to
6198 ;; integrate the org-mode structure editing commands.
6200 ;; This is really a hack, because the org-mode structure commands use
6201 ;; keys which normally belong to the major mode. Here is how it
6202 ;; works: The minor mode defines all the keys necessary to operate the
6203 ;; structure commands, but wraps the commands into a function which
6204 ;; tests if the cursor is currently at a headline or a plain list
6205 ;; item. If that is the case, the structure command is used,
6206 ;; temporarily setting many Org-mode variables like regular
6207 ;; expressions for filling etc. However, when any of those keys is
6208 ;; used at a different location, function uses `key-binding' to look
6209 ;; up if the key has an associated command in another currently active
6210 ;; keymap (minor modes, major mode, global), and executes that
6211 ;; command. There might be problems if any of the keys is otherwise
6212 ;; used as a prefix key.
6214 ;; Another challenge is that the key binding for TAB can be tab or \C-i,
6215 ;; likewise the binding for RET can be return or \C-m. Orgtbl-mode
6216 ;; addresses this by checking explicitly for both bindings.
6218 (defvar orgstruct-mode-map (make-sparse-keymap)
6219 "Keymap for the minor `orgstruct-mode'.")
6221 (defvar org-local-vars nil
6222 "List of local variables, for use by `orgstruct-mode'")
6224 ;;;###autoload
6225 (define-minor-mode orgstruct-mode
6226 "Toggle the minor more `orgstruct-mode'.
6227 This mode is for using Org-mode structure commands in other modes.
6228 The following key behave as if Org-mode was active, if the cursor
6229 is on a headline, or on a plain list item (both in the definition
6230 of Org-mode).
6232 M-up Move entry/item up
6233 M-down Move entry/item down
6234 M-left Promote
6235 M-right Demote
6236 M-S-up Move entry/item up
6237 M-S-down Move entry/item down
6238 M-S-left Promote subtree
6239 M-S-right Demote subtree
6240 M-q Fill paragraph and items like in Org-mode
6241 C-c ^ Sort entries
6242 C-c - Cycle list bullet
6243 TAB Cycle item visibility
6244 M-RET Insert new heading/item
6245 S-M-RET Insert new TODO heading / Chekbox item
6246 C-c C-c Set tags / toggle checkbox"
6247 nil " OrgStruct" nil
6248 (org-load-modules-maybe)
6249 (and (orgstruct-setup) (defun orgstruct-setup () nil)))
6251 ;;;###autoload
6252 (defun turn-on-orgstruct ()
6253 "Unconditionally turn on `orgstruct-mode'."
6254 (orgstruct-mode 1))
6256 ;;;###autoload
6257 (defun turn-on-orgstruct++ ()
6258 "Unconditionally turn on `orgstruct-mode', and force org-mode indentations.
6259 In addition to setting orgstruct-mode, this also exports all indentation and
6260 autofilling variables from org-mode into the buffer. Note that turning
6261 off orgstruct-mode will *not* remove these additional settings."
6262 (orgstruct-mode 1)
6263 (let (var val)
6264 (mapc
6265 (lambda (x)
6266 (when (string-match
6267 "^\\(paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
6268 (symbol-name (car x)))
6269 (setq var (car x) val (nth 1 x))
6270 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
6271 org-local-vars)))
6273 (defun orgstruct-error ()
6274 "Error when there is no default binding for a structure key."
6275 (interactive)
6276 (error "This key has no function outside structure elements"))
6278 (defun orgstruct-setup ()
6279 "Setup orgstruct keymaps."
6280 (let ((nfunc 0)
6281 (bindings
6282 (list
6283 '([(meta up)] org-metaup)
6284 '([(meta down)] org-metadown)
6285 '([(meta left)] org-metaleft)
6286 '([(meta right)] org-metaright)
6287 '([(meta shift up)] org-shiftmetaup)
6288 '([(meta shift down)] org-shiftmetadown)
6289 '([(meta shift left)] org-shiftmetaleft)
6290 '([(meta shift right)] org-shiftmetaright)
6291 '([(shift up)] org-shiftup)
6292 '([(shift down)] org-shiftdown)
6293 '("\C-c\C-c" org-ctrl-c-ctrl-c)
6294 '("\M-q" fill-paragraph)
6295 '("\C-c^" org-sort)
6296 '("\C-c-" org-cycle-list-bullet)))
6297 elt key fun cmd)
6298 (while (setq elt (pop bindings))
6299 (setq nfunc (1+ nfunc))
6300 (setq key (org-key (car elt))
6301 fun (nth 1 elt)
6302 cmd (orgstruct-make-binding fun nfunc key))
6303 (org-defkey orgstruct-mode-map key cmd))
6305 ;; Special treatment needed for TAB and RET
6306 (org-defkey orgstruct-mode-map [(tab)]
6307 (orgstruct-make-binding 'org-cycle 102 [(tab)] "\C-i"))
6308 (org-defkey orgstruct-mode-map "\C-i"
6309 (orgstruct-make-binding 'org-cycle 103 "\C-i" [(tab)]))
6311 (org-defkey orgstruct-mode-map "\M-\C-m"
6312 (orgstruct-make-binding 'org-insert-heading 105
6313 "\M-\C-m" [(meta return)]))
6314 (org-defkey orgstruct-mode-map [(meta return)]
6315 (orgstruct-make-binding 'org-insert-heading 106
6316 [(meta return)] "\M-\C-m"))
6318 (org-defkey orgstruct-mode-map [(shift meta return)]
6319 (orgstruct-make-binding 'org-insert-todo-heading 107
6320 [(meta return)] "\M-\C-m"))
6322 (unless org-local-vars
6323 (setq org-local-vars (org-get-local-variables)))
6327 (defun orgstruct-make-binding (fun n &rest keys)
6328 "Create a function for binding in the structure minor mode.
6329 FUN is the command to call inside a table. N is used to create a unique
6330 command name. KEYS are keys that should be checked in for a command
6331 to execute outside of tables."
6332 (eval
6333 (list 'defun
6334 (intern (concat "orgstruct-hijacker-command-" (int-to-string n)))
6335 '(arg)
6336 (concat "In Structure, run `" (symbol-name fun) "'.\n"
6337 "Outside of structure, run the binding of `"
6338 (mapconcat (lambda (x) (format "%s" x)) keys "' or `")
6339 "'.")
6340 '(interactive "p")
6341 (list 'if
6342 '(org-context-p 'headline 'item)
6343 (list 'org-run-like-in-org-mode (list 'quote fun))
6344 (list 'let '(orgstruct-mode)
6345 (list 'call-interactively
6346 (append '(or)
6347 (mapcar (lambda (k)
6348 (list 'key-binding k))
6349 keys)
6350 '('orgstruct-error))))))))
6352 (defun org-context-p (&rest contexts)
6353 "Check if local context is and of CONTEXTS.
6354 Possible values in the list of contexts are `table', `headline', and `item'."
6355 (let ((pos (point)))
6356 (goto-char (point-at-bol))
6357 (prog1 (or (and (memq 'table contexts)
6358 (looking-at "[ \t]*|"))
6359 (and (memq 'headline contexts)
6360 (looking-at "\\*+"))
6361 (and (memq 'item contexts)
6362 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)")))
6363 (goto-char pos))))
6365 (defun org-get-local-variables ()
6366 "Return a list of all local variables in an org-mode buffer."
6367 (let (varlist)
6368 (with-current-buffer (get-buffer-create "*Org tmp*")
6369 (erase-buffer)
6370 (org-mode)
6371 (setq varlist (buffer-local-variables)))
6372 (kill-buffer "*Org tmp*")
6373 (delq nil
6374 (mapcar
6375 (lambda (x)
6376 (setq x
6377 (if (symbolp x)
6378 (list x)
6379 (list (car x) (list 'quote (cdr x)))))
6380 (if (string-match
6381 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|fill-paragraph\\|adaptive-fill\\|indent-\\)"
6382 (symbol-name (car x)))
6383 x nil))
6384 varlist))))
6386 ;;;###autoload
6387 (defun org-run-like-in-org-mode (cmd)
6388 (org-load-modules-maybe)
6389 (unless org-local-vars
6390 (setq org-local-vars (org-get-local-variables)))
6391 (eval (list 'let org-local-vars
6392 (list 'call-interactively (list 'quote cmd)))))
6394 ;;;; Archiving
6396 (defun org-get-category (&optional pos)
6397 "Get the category applying to position POS."
6398 (get-text-property (or pos (point)) 'org-category))
6400 (defun org-refresh-category-properties ()
6401 "Refresh category text properties in the buffer."
6402 (let ((def-cat (cond
6403 ((null org-category)
6404 (if buffer-file-name
6405 (file-name-sans-extension
6406 (file-name-nondirectory buffer-file-name))
6407 "???"))
6408 ((symbolp org-category) (symbol-name org-category))
6409 (t org-category)))
6410 beg end cat pos optionp)
6411 (org-unmodified
6412 (save-excursion
6413 (save-restriction
6414 (widen)
6415 (goto-char (point-min))
6416 (put-text-property (point) (point-max) 'org-category def-cat)
6417 (while (re-search-forward
6418 "^\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
6419 (setq pos (match-end 0)
6420 optionp (equal (char-after (match-beginning 0)) ?#)
6421 cat (org-trim (match-string 2)))
6422 (if optionp
6423 (setq beg (point-at-bol) end (point-max))
6424 (org-back-to-heading t)
6425 (setq beg (point) end (org-end-of-subtree t t)))
6426 (put-text-property beg end 'org-category cat)
6427 (goto-char pos)))))))
6430 ;;;; Link Stuff
6432 ;;; Link abbreviations
6434 (defun org-link-expand-abbrev (link)
6435 "Apply replacements as defined in `org-link-abbrev-alist."
6436 (if (string-match "^\\([a-zA-Z][-_a-zA-Z0-9]*\\)\\(::?\\(.*\\)\\)?$" link)
6437 (let* ((key (match-string 1 link))
6438 (as (or (assoc key org-link-abbrev-alist-local)
6439 (assoc key org-link-abbrev-alist)))
6440 (tag (and (match-end 2) (match-string 3 link)))
6441 rpl)
6442 (if (not as)
6443 link
6444 (setq rpl (cdr as))
6445 (cond
6446 ((symbolp rpl) (funcall rpl tag))
6447 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
6448 (t (concat rpl tag)))))
6449 link))
6451 ;;; Storing and inserting links
6453 (defvar org-insert-link-history nil
6454 "Minibuffer history for links inserted with `org-insert-link'.")
6456 (defvar org-stored-links nil
6457 "Contains the links stored with `org-store-link'.")
6459 (defvar org-store-link-plist nil
6460 "Plist with info about the most recently link created with `org-store-link'.")
6462 (defvar org-link-protocols nil
6463 "Link protocols added to Org-mode using `org-add-link-type'.")
6465 (defvar org-store-link-functions nil
6466 "List of functions that are called to create and store a link.
6467 Each function will be called in turn until one returns a non-nil
6468 value. Each function should check if it is responsible for creating
6469 this link (for example by looking at the major mode).
6470 If not, it must exit and return nil.
6471 If yes, it should return a non-nil value after a calling
6472 `org-store-link-props' with a list of properties and values.
6473 Special properties are:
6475 :type The link prefix. like \"http\". This must be given.
6476 :link The link, like \"http://www.astro.uva.nl/~dominik\".
6477 This is obligatory as well.
6478 :description Optional default description for the second pair
6479 of brackets in an Org-mode link. The user can still change
6480 this when inserting this link into an Org-mode buffer.
6482 In addition to these, any additional properties can be specified
6483 and then used in remember templates.")
6485 (defun org-add-link-type (type &optional follow export)
6486 "Add TYPE to the list of `org-link-types'.
6487 Re-compute all regular expressions depending on `org-link-types'
6489 FOLLOW and EXPORT are two functions.
6491 FOLLOW should take the link path as the single argument and do whatever
6492 is necessary to follow the link, for example find a file or display
6493 a mail message.
6495 EXPORT should format the link path for export to one of the export formats.
6496 It should be a function accepting three arguments:
6498 path the path of the link, the text after the prefix (like \"http:\")
6499 desc the description of the link, if any, nil if there was no descripton
6500 format the export format, a symbol like `html' or `latex'.
6502 The function may use the FORMAT information to return different values
6503 depending on the format. The return value will be put literally into
6504 the exported file.
6505 Org-mode has a built-in default for exporting links. If you are happy with
6506 this default, there is no need to define an export function for the link
6507 type. For a simple example of an export function, see `org-bbdb.el'."
6508 (add-to-list 'org-link-types type t)
6509 (org-make-link-regexps)
6510 (if (assoc type org-link-protocols)
6511 (setcdr (assoc type org-link-protocols) (list follow export))
6512 (push (list type follow export) org-link-protocols)))
6515 ;;;###autoload
6516 (defun org-store-link (arg)
6517 "\\<org-mode-map>Store an org-link to the current location.
6518 This link is added to `org-stored-links' and can later be inserted
6519 into an org-buffer with \\[org-insert-link].
6521 For some link types, a prefix arg is interpreted:
6522 For links to usenet articles, arg negates `org-usenet-links-prefer-google'.
6523 For file links, arg negates `org-context-in-file-links'."
6524 (interactive "P")
6525 (org-load-modules-maybe)
6526 (setq org-store-link-plist nil) ; reset
6527 (org-store-link-set-default-date)
6528 (let (link cpltxt desc description search txt)
6529 (cond
6531 ((run-hook-with-args-until-success 'org-store-link-functions)
6532 (setq link (plist-get org-store-link-plist :link)
6533 desc (or (plist-get org-store-link-plist :description) link)))
6535 ((eq major-mode 'calendar-mode)
6536 (let ((cd (calendar-cursor-to-date)))
6537 (setq link
6538 (format-time-string
6539 (car org-time-stamp-formats)
6540 (apply 'encode-time
6541 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
6542 nil nil nil))))
6543 (org-store-link-props :type "calendar" :date cd)))
6545 ((eq major-mode 'w3-mode)
6546 (setq cpltxt (url-view-url t)
6547 link (org-make-link cpltxt))
6548 (org-store-link-props :type "w3" :url (url-view-url t)))
6550 ((eq major-mode 'w3m-mode)
6551 (setq cpltxt (or w3m-current-title w3m-current-url)
6552 link (org-make-link w3m-current-url))
6553 (org-store-link-props :type "w3m" :url (url-view-url t)))
6555 ((setq search (run-hook-with-args-until-success
6556 'org-create-file-search-functions))
6557 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
6558 "::" search))
6559 (setq cpltxt (or description link)))
6561 ((eq major-mode 'image-mode)
6562 (setq cpltxt (concat "file:"
6563 (abbreviate-file-name buffer-file-name))
6564 link (org-make-link cpltxt))
6565 (org-store-link-props :type "image" :file buffer-file-name))
6567 ((eq major-mode 'dired-mode)
6568 ;; link to the file in the current line
6569 (setq cpltxt (concat "file:"
6570 (abbreviate-file-name
6571 (expand-file-name
6572 (dired-get-filename nil t))))
6573 link (org-make-link cpltxt)))
6575 ((and buffer-file-name (org-mode-p))
6576 ;; Just link to current headline
6577 (setq cpltxt (concat "file:"
6578 (abbreviate-file-name buffer-file-name)))
6579 ;; Add a context search string
6580 (when (org-xor org-context-in-file-links arg)
6581 ;; Check if we are on a target
6582 (if (org-in-regexp "<<\\(.*?\\)>>")
6583 (setq cpltxt (concat cpltxt "::" (match-string 1)))
6584 (setq txt (cond
6585 ((org-on-heading-p) nil)
6586 ((org-region-active-p)
6587 (buffer-substring (region-beginning) (region-end)))
6588 (t nil)))
6589 (when (or (null txt) (string-match "\\S-" txt))
6590 (setq cpltxt
6591 (concat cpltxt "::"
6592 (condition-case nil
6593 (org-make-org-heading-search-string txt)
6594 (error "")))
6595 desc "NONE"))))
6596 (if (string-match "::\\'" cpltxt)
6597 (setq cpltxt (substring cpltxt 0 -2)))
6598 (setq link (org-make-link cpltxt)))
6600 ((buffer-file-name (buffer-base-buffer))
6601 ;; Just link to this file here.
6602 (setq cpltxt (concat "file:"
6603 (abbreviate-file-name
6604 (buffer-file-name (buffer-base-buffer)))))
6605 ;; Add a context string
6606 (when (org-xor org-context-in-file-links arg)
6607 (setq txt (if (org-region-active-p)
6608 (buffer-substring (region-beginning) (region-end))
6609 (buffer-substring (point-at-bol) (point-at-eol))))
6610 ;; Only use search option if there is some text.
6611 (when (string-match "\\S-" txt)
6612 (setq cpltxt
6613 (concat cpltxt "::" (org-make-org-heading-search-string txt))
6614 desc "NONE")))
6615 (setq link (org-make-link cpltxt)))
6617 ((interactive-p)
6618 (error "Cannot link to a buffer which is not visiting a file"))
6620 (t (setq link nil)))
6622 (if (consp link) (setq cpltxt (car link) link (cdr link)))
6623 (setq link (or link cpltxt)
6624 desc (or desc cpltxt))
6625 (if (equal desc "NONE") (setq desc nil))
6627 (if (and (interactive-p) link)
6628 (progn
6629 (setq org-stored-links
6630 (cons (list link desc) org-stored-links))
6631 (message "Stored: %s" (or desc link)))
6632 (and link (org-make-link-string link desc)))))
6634 (defun org-store-link-props (&rest plist)
6635 "Store link properties, extract names and addresses."
6636 (let (x adr)
6637 (when (setq x (plist-get plist :from))
6638 (setq adr (mail-extract-address-components x))
6639 (plist-put plist :fromname (car adr))
6640 (plist-put plist :fromaddress (nth 1 adr)))
6641 (when (setq x (plist-get plist :to))
6642 (setq adr (mail-extract-address-components x))
6643 (plist-put plist :toname (car adr))
6644 (plist-put plist :toaddress (nth 1 adr))))
6645 (let ((from (plist-get plist :from))
6646 (to (plist-get plist :to)))
6647 (when (and from to org-from-is-user-regexp)
6648 (plist-put plist :fromto
6649 (if (string-match org-from-is-user-regexp from)
6650 (concat "to %t")
6651 (concat "from %f")))))
6652 (setq org-store-link-plist plist))
6654 (defun org-add-link-props (&rest plist)
6655 "Add these properties to the link property list."
6656 (let (key value)
6657 (while plist
6658 (setq key (pop plist) value (pop plist))
6659 (setq org-store-link-plist
6660 (plist-put org-store-link-plist key value)))))
6662 (defun org-store-link-set-default-date ()
6663 "Store the date at the cursor so that remember templates can access it.
6664 This works in the calendar, and in the Org Agenda. It is a no-op in
6665 any other modes."
6666 (let (date day defd)
6667 (cond
6668 ((eq major-mode 'calendar-mode)
6669 (setq date (calendar-cursor-to-date)
6670 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
6671 ((eq major-mode 'org-agenda-mode)
6672 (setq day (get-text-property (point) 'day))
6673 (if day
6674 (setq date (calendar-gregorian-from-absolute day)
6675 defd (encode-time 0 0 0 (nth 1 date) (nth 0 date)
6676 (nth 2 date))))))
6677 (when defd
6678 (org-store-link-props :default-time defd))))
6680 (defun org-email-link-description (&optional fmt)
6681 "Return the description part of an email link.
6682 This takes information from `org-store-link-plist' and formats it
6683 according to FMT (default from `org-email-link-description-format')."
6684 (setq fmt (or fmt org-email-link-description-format))
6685 (let* ((p org-store-link-plist)
6686 (to (plist-get p :toaddress))
6687 (from (plist-get p :fromaddress))
6688 (table
6689 (list
6690 (cons "%c" (plist-get p :fromto))
6691 (cons "%F" (plist-get p :from))
6692 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
6693 (cons "%T" (plist-get p :to))
6694 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
6695 (cons "%s" (plist-get p :subject))
6696 (cons "%m" (plist-get p :message-id)))))
6697 (when (string-match "%c" fmt)
6698 ;; Check if the user wrote this message
6699 (if (and org-from-is-user-regexp from to
6700 (save-match-data (string-match org-from-is-user-regexp from)))
6701 (setq fmt (replace-match "to %t" t t fmt))
6702 (setq fmt (replace-match "from %f" t t fmt))))
6703 (org-replace-escapes fmt table)))
6705 (defun org-make-org-heading-search-string (&optional string heading)
6706 "Make search string for STRING or current headline."
6707 (interactive)
6708 (let ((s (or string (org-get-heading))))
6709 (unless (and string (not heading))
6710 ;; We are using a headline, clean up garbage in there.
6711 (if (string-match org-todo-regexp s)
6712 (setq s (replace-match "" t t s)))
6713 (if (string-match (org-re ":[[:alnum:]_@:]+:[ \t]*$") s)
6714 (setq s (replace-match "" t t s)))
6715 (setq s (org-trim s))
6716 (if (string-match (concat "^\\(" org-quote-string "\\|"
6717 org-comment-string "\\)") s)
6718 (setq s (replace-match "" t t s)))
6719 (while (string-match org-ts-regexp s)
6720 (setq s (replace-match "" t t s))))
6721 (while (string-match "[^a-zA-Z_0-9 \t]+" s)
6722 (setq s (replace-match " " t t s)))
6723 (or string (setq s (concat "*" s))) ; Add * for headlines
6724 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
6726 (defun org-make-link (&rest strings)
6727 "Concatenate STRINGS."
6728 (apply 'concat strings))
6730 (defun org-make-link-string (link &optional description)
6731 "Make a link with brackets, consisting of LINK and DESCRIPTION."
6732 (unless (string-match "\\S-" link)
6733 (error "Empty link"))
6734 (when (stringp description)
6735 ;; Remove brackets from the description, they are fatal.
6736 (while (string-match "\\[" description)
6737 (setq description (replace-match "{" t t description)))
6738 (while (string-match "\\]" description)
6739 (setq description (replace-match "}" t t description))))
6740 (when (equal (org-link-escape link) description)
6741 ;; No description needed, it is identical
6742 (setq description nil))
6743 (when (and (not description)
6744 (not (equal link (org-link-escape link))))
6745 (setq description link))
6746 (concat "[[" (org-link-escape link) "]"
6747 (if description (concat "[" description "]") "")
6748 "]"))
6750 (defconst org-link-escape-chars
6751 '((?\ . "%20")
6752 (?\[ . "%5B")
6753 (?\] . "%5D")
6754 (?\340 . "%E0") ; `a
6755 (?\342 . "%E2") ; ^a
6756 (?\347 . "%E7") ; ,c
6757 (?\350 . "%E8") ; `e
6758 (?\351 . "%E9") ; 'e
6759 (?\352 . "%EA") ; ^e
6760 (?\356 . "%EE") ; ^i
6761 (?\364 . "%F4") ; ^o
6762 (?\371 . "%F9") ; `u
6763 (?\373 . "%FB") ; ^u
6764 (?\; . "%3B")
6765 (?? . "%3F")
6766 (?= . "%3D")
6767 (?+ . "%2B")
6769 "Association list of escapes for some characters problematic in links.
6770 This is the list that is used for internal purposes.")
6772 (defconst org-link-escape-chars-browser
6773 '((?\ . "%20")) ; 32 for the SPC char
6774 "Association list of escapes for some characters problematic in links.
6775 This is the list that is used before handing over to the browser.")
6777 (defun org-link-escape (text &optional table)
6778 "Escape charaters in TEXT that are problematic for links."
6779 (setq table (or table org-link-escape-chars))
6780 (when text
6781 (let ((re (mapconcat (lambda (x) (regexp-quote
6782 (char-to-string (car x))))
6783 table "\\|")))
6784 (while (string-match re text)
6785 (setq text
6786 (replace-match
6787 (cdr (assoc (string-to-char (match-string 0 text))
6788 table))
6789 t t text)))
6790 text)))
6792 (defun org-link-unescape (text &optional table)
6793 "Reverse the action of `org-link-escape'."
6794 (setq table (or table org-link-escape-chars))
6795 (when text
6796 (let ((re (mapconcat (lambda (x) (regexp-quote (cdr x)))
6797 table "\\|")))
6798 (while (string-match re text)
6799 (setq text
6800 (replace-match
6801 (char-to-string (car (rassoc (match-string 0 text) table)))
6802 t t text)))
6803 text)))
6805 (defun org-xor (a b)
6806 "Exclusive or."
6807 (if a (not b) b))
6809 (defun org-get-header (header)
6810 "Find a header field in the current buffer."
6811 (save-excursion
6812 (goto-char (point-min))
6813 (let ((case-fold-search t) s)
6814 (cond
6815 ((eq header 'from)
6816 (if (re-search-forward "^From:\\s-+\\(.*\\)" nil t)
6817 (setq s (match-string 1)))
6818 (while (string-match "\"" s)
6819 (setq s (replace-match "" t t s)))
6820 (if (string-match "[<(].*" s)
6821 (setq s (replace-match "" t t s))))
6822 ((eq header 'message-id)
6823 (if (re-search-forward "^message-id:\\s-+\\(.*\\)" nil t)
6824 (setq s (match-string 1))))
6825 ((eq header 'subject)
6826 (if (re-search-forward "^subject:\\s-+\\(.*\\)" nil t)
6827 (setq s (match-string 1)))))
6828 (if (string-match "\\`[ \t\]+" s) (setq s (replace-match "" t t s)))
6829 (if (string-match "[ \t\]+\\'" s) (setq s (replace-match "" t t s)))
6830 s)))
6833 (defun org-fixup-message-id-for-http (s)
6834 "Replace special characters in a message id, so it can be used in an http query."
6835 (while (string-match "<" s)
6836 (setq s (replace-match "%3C" t t s)))
6837 (while (string-match ">" s)
6838 (setq s (replace-match "%3E" t t s)))
6839 (while (string-match "@" s)
6840 (setq s (replace-match "%40" t t s)))
6843 ;;;###autoload
6844 (defun org-insert-link-global ()
6845 "Insert a link like Org-mode does.
6846 This command can be called in any mode to insert a link in Org-mode syntax."
6847 (interactive)
6848 (org-load-modules-maybe)
6849 (org-run-like-in-org-mode 'org-insert-link))
6851 (defun org-insert-link (&optional complete-file link-location)
6852 "Insert a link. At the prompt, enter the link.
6854 Completion can be used to select a link previously stored with
6855 `org-store-link'. When the empty string is entered (i.e. if you just
6856 press RET at the prompt), the link defaults to the most recently
6857 stored link. As SPC triggers completion in the minibuffer, you need to
6858 use M-SPC or C-q SPC to force the insertion of a space character.
6860 You will also be prompted for a description, and if one is given, it will
6861 be displayed in the buffer instead of the link.
6863 If there is already a link at point, this command will allow you to edit link
6864 and description parts.
6866 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
6867 be selected using completion. The path to the file will be relative to the
6868 current directory if the file is in the current directory or a subdirectory.
6869 Otherwise, the link will be the absolute path as completed in the minibuffer
6870 \(i.e. normally ~/path/to/file).
6872 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
6873 the current directory or below. With three \\[universal-argument] prefixes, negate the meaning
6874 of `org-keep-stored-link-after-insertion'.
6876 If `org-make-link-description-function' is non-nil, this function will be
6877 called with the link target, and the result will be the default
6878 link description.
6880 If the LINK-LOCATION parameter is non-nil, this value will be
6881 used as the link location instead of reading one interactively."
6882 (interactive "P")
6883 (let* ((wcf (current-window-configuration))
6884 (region (if (org-region-active-p)
6885 (buffer-substring (region-beginning) (region-end))))
6886 (remove (and region (list (region-beginning) (region-end))))
6887 (desc region)
6888 tmphist ; byte-compile incorrectly complains about this
6889 (link link-location)
6890 entry file)
6891 (cond
6892 (link-location) ; specified by arg, just use it.
6893 ((org-in-regexp org-bracket-link-regexp 1)
6894 ;; We do have a link at point, and we are going to edit it.
6895 (setq remove (list (match-beginning 0) (match-end 0)))
6896 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
6897 (setq link (read-string "Link: "
6898 (org-link-unescape
6899 (org-match-string-no-properties 1)))))
6900 ((or (org-in-regexp org-angle-link-re)
6901 (org-in-regexp org-plain-link-re))
6902 ;; Convert to bracket link
6903 (setq remove (list (match-beginning 0) (match-end 0))
6904 link (read-string "Link: "
6905 (org-remove-angle-brackets (match-string 0)))))
6906 ((equal complete-file '(4))
6907 ;; Completing read for file names.
6908 (setq file (read-file-name "File: "))
6909 (let ((pwd (file-name-as-directory (expand-file-name ".")))
6910 (pwd1 (file-name-as-directory (abbreviate-file-name
6911 (expand-file-name ".")))))
6912 (cond
6913 ((equal complete-file '(16))
6914 (setq link (org-make-link
6915 "file:"
6916 (abbreviate-file-name (expand-file-name file)))))
6917 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
6918 (setq link (org-make-link "file:" (match-string 1 file))))
6919 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
6920 (expand-file-name file))
6921 (setq link (org-make-link
6922 "file:" (match-string 1 (expand-file-name file)))))
6923 (t (setq link (org-make-link "file:" file))))))
6925 ;; Read link, with completion for stored links.
6926 (with-output-to-temp-buffer "*Org Links*"
6927 (princ "Insert a link. Use TAB to complete valid link prefixes.\n")
6928 (when org-stored-links
6929 (princ "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
6930 (princ (mapconcat
6931 (lambda (x)
6932 (if (nth 1 x) (concat (car x) " (" (nth 1 x) ")") (car x)))
6933 (reverse org-stored-links) "\n"))))
6934 (let ((cw (selected-window)))
6935 (select-window (get-buffer-window "*Org Links*"))
6936 (shrink-window-if-larger-than-buffer)
6937 (setq truncate-lines t)
6938 (select-window cw))
6939 ;; Fake a link history, containing the stored links.
6940 (setq tmphist (append (mapcar 'car org-stored-links)
6941 org-insert-link-history))
6942 (unwind-protect
6943 (setq link (org-completing-read
6944 "Link: "
6945 (append
6946 (mapcar (lambda (x) (list (concat (car x) ":")))
6947 (append org-link-abbrev-alist-local org-link-abbrev-alist))
6948 (mapcar (lambda (x) (list (concat x ":")))
6949 org-link-types))
6950 nil nil nil
6951 'tmphist
6952 (or (car (car org-stored-links)))))
6953 (set-window-configuration wcf)
6954 (kill-buffer "*Org Links*"))
6955 (setq entry (assoc link org-stored-links))
6956 (or entry (push link org-insert-link-history))
6957 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
6958 (not org-keep-stored-link-after-insertion))
6959 (setq org-stored-links (delq (assoc link org-stored-links)
6960 org-stored-links)))
6961 (setq desc (or desc (nth 1 entry)))))
6963 (if (string-match org-plain-link-re link)
6964 ;; URL-like link, normalize the use of angular brackets.
6965 (setq link (org-make-link (org-remove-angle-brackets link))))
6967 ;; Check if we are linking to the current file with a search option
6968 ;; If yes, simplify the link by using only the search option.
6969 (when (and buffer-file-name
6970 (string-match "\\<file:\\(.+?\\)::\\([^>]+\\)" link))
6971 (let* ((path (match-string 1 link))
6972 (case-fold-search nil)
6973 (search (match-string 2 link)))
6974 (save-match-data
6975 (if (equal (file-truename buffer-file-name) (file-truename path))
6976 ;; We are linking to this same file, with a search option
6977 (setq link search)))))
6979 ;; Check if we can/should use a relative path. If yes, simplify the link
6980 (when (string-match "\\<file:\\(.*\\)" link)
6981 (let* ((path (match-string 1 link))
6982 (origpath path)
6983 (case-fold-search nil))
6984 (cond
6985 ((eq org-link-file-path-type 'absolute)
6986 (setq path (abbreviate-file-name (expand-file-name path))))
6987 ((eq org-link-file-path-type 'noabbrev)
6988 (setq path (expand-file-name path)))
6989 ((eq org-link-file-path-type 'relative)
6990 (setq path (file-relative-name path)))
6992 (save-match-data
6993 (if (string-match (concat "^" (regexp-quote
6994 (file-name-as-directory
6995 (expand-file-name "."))))
6996 (expand-file-name path))
6997 ;; We are linking a file with relative path name.
6998 (setq path (substring (expand-file-name path)
6999 (match-end 0)))))))
7000 (setq link (concat "file:" path))
7001 (if (equal desc origpath)
7002 (setq desc path))))
7004 (if org-make-link-description-function
7005 (setq desc (funcall org-make-link-description-function link desc)))
7007 (setq desc (read-string "Description: " desc))
7008 (unless (string-match "\\S-" desc) (setq desc nil))
7009 (if remove (apply 'delete-region remove))
7010 (insert (org-make-link-string link desc))))
7012 (defun org-completing-read (&rest args)
7013 (let ((minibuffer-local-completion-map
7014 (copy-keymap minibuffer-local-completion-map)))
7015 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
7016 (apply 'completing-read args)))
7018 ;;; Opening/following a link
7020 (defvar org-link-search-failed nil)
7022 (defun org-next-link ()
7023 "Move forward to the next link.
7024 If the link is in hidden text, expose it."
7025 (interactive)
7026 (when (and org-link-search-failed (eq this-command last-command))
7027 (goto-char (point-min))
7028 (message "Link search wrapped back to beginning of buffer"))
7029 (setq org-link-search-failed nil)
7030 (let* ((pos (point))
7031 (ct (org-context))
7032 (a (assoc :link ct)))
7033 (if a (goto-char (nth 2 a)))
7034 (if (re-search-forward org-any-link-re nil t)
7035 (progn
7036 (goto-char (match-beginning 0))
7037 (if (org-invisible-p) (org-show-context)))
7038 (goto-char pos)
7039 (setq org-link-search-failed t)
7040 (error "No further link found"))))
7042 (defun org-previous-link ()
7043 "Move backward to the previous link.
7044 If the link is in hidden text, expose it."
7045 (interactive)
7046 (when (and org-link-search-failed (eq this-command last-command))
7047 (goto-char (point-max))
7048 (message "Link search wrapped back to end of buffer"))
7049 (setq org-link-search-failed nil)
7050 (let* ((pos (point))
7051 (ct (org-context))
7052 (a (assoc :link ct)))
7053 (if a (goto-char (nth 1 a)))
7054 (if (re-search-backward org-any-link-re nil t)
7055 (progn
7056 (goto-char (match-beginning 0))
7057 (if (org-invisible-p) (org-show-context)))
7058 (goto-char pos)
7059 (setq org-link-search-failed t)
7060 (error "No further link found"))))
7062 (defun org-find-file-at-mouse (ev)
7063 "Open file link or URL at mouse."
7064 (interactive "e")
7065 (mouse-set-point ev)
7066 (org-open-at-point 'in-emacs))
7068 (defun org-open-at-mouse (ev)
7069 "Open file link or URL at mouse."
7070 (interactive "e")
7071 (mouse-set-point ev)
7072 (org-open-at-point))
7074 (defvar org-window-config-before-follow-link nil
7075 "The window configuration before following a link.
7076 This is saved in case the need arises to restore it.")
7078 (defvar org-open-link-marker (make-marker)
7079 "Marker pointing to the location where `org-open-at-point; was called.")
7081 ;;;###autoload
7082 (defun org-open-at-point-global ()
7083 "Follow a link like Org-mode does.
7084 This command can be called in any mode to follow a link that has
7085 Org-mode syntax."
7086 (interactive)
7087 (org-run-like-in-org-mode 'org-open-at-point))
7089 ;;;###autoload
7090 (defun org-open-link-from-string (s &optional arg)
7091 "Open a link in the string S, as if it was in Org-mode."
7092 (interactive "sLink: \nP")
7093 (with-temp-buffer
7094 (let ((org-inhibit-startup t))
7095 (org-mode)
7096 (insert s)
7097 (goto-char (point-min))
7098 (org-open-at-point arg))))
7100 (defun org-open-at-point (&optional in-emacs)
7101 "Open link at or after point.
7102 If there is no link at point, this function will search forward up to
7103 the end of the current subtree.
7104 Normally, files will be opened by an appropriate application. If the
7105 optional argument IN-EMACS is non-nil, Emacs will visit the file."
7106 (interactive "P")
7107 (org-load-modules-maybe)
7108 (move-marker org-open-link-marker (point))
7109 (setq org-window-config-before-follow-link (current-window-configuration))
7110 (org-remove-occur-highlights nil nil t)
7111 (if (org-at-timestamp-p t)
7112 (org-follow-timestamp-link)
7113 (let (type path link line search (pos (point)))
7114 (catch 'match
7115 (save-excursion
7116 (skip-chars-forward "^]\n\r")
7117 (when (org-in-regexp org-bracket-link-regexp)
7118 (setq link (org-link-unescape (org-match-string-no-properties 1)))
7119 (while (string-match " *\n *" link)
7120 (setq link (replace-match " " t t link)))
7121 (setq link (org-link-expand-abbrev link))
7122 (if (string-match org-link-re-with-space2 link)
7123 (setq type (match-string 1 link) path (match-string 2 link))
7124 (setq type "thisfile" path link))
7125 (throw 'match t)))
7127 (when (get-text-property (point) 'org-linked-text)
7128 (setq type "thisfile"
7129 pos (if (get-text-property (1+ (point)) 'org-linked-text)
7130 (1+ (point)) (point))
7131 path (buffer-substring
7132 (previous-single-property-change pos 'org-linked-text)
7133 (next-single-property-change pos 'org-linked-text)))
7134 (throw 'match t))
7136 (save-excursion
7137 (when (or (org-in-regexp org-angle-link-re)
7138 (org-in-regexp org-plain-link-re))
7139 (setq type (match-string 1) path (match-string 2))
7140 (throw 'match t)))
7141 (when (org-in-regexp "\\<\\([^><\n]+\\)\\>")
7142 (setq type "tree-match"
7143 path (match-string 1))
7144 (throw 'match t))
7145 (save-excursion
7146 (when (org-in-regexp (org-re "\\(:[[:alnum:]_@:]+\\):[ \t]*$"))
7147 (setq type "tags"
7148 path (match-string 1))
7149 (while (string-match ":" path)
7150 (setq path (replace-match "+" t t path)))
7151 (throw 'match t))))
7152 (unless path
7153 (error "No link found"))
7154 ;; Remove any trailing spaces in path
7155 (if (string-match " +\\'" path)
7156 (setq path (replace-match "" t t path)))
7158 (cond
7160 ((assoc type org-link-protocols)
7161 (funcall (nth 1 (assoc type org-link-protocols)) path))
7163 ((equal type "mailto")
7164 (let ((cmd (car org-link-mailto-program))
7165 (args (cdr org-link-mailto-program)) args1
7166 (address path) (subject "") a)
7167 (if (string-match "\\(.*\\)::\\(.*\\)" path)
7168 (setq address (match-string 1 path)
7169 subject (org-link-escape (match-string 2 path))))
7170 (while args
7171 (cond
7172 ((not (stringp (car args))) (push (pop args) args1))
7173 (t (setq a (pop args))
7174 (if (string-match "%a" a)
7175 (setq a (replace-match address t t a)))
7176 (if (string-match "%s" a)
7177 (setq a (replace-match subject t t a)))
7178 (push a args1))))
7179 (apply cmd (nreverse args1))))
7181 ((member type '("http" "https" "ftp" "news"))
7182 (browse-url (concat type ":" (org-link-escape
7183 path org-link-escape-chars-browser))))
7185 ((member type '("message"))
7186 (browse-url (concat type ":" path)))
7188 ((string= type "tags")
7189 (org-tags-view in-emacs path))
7190 ((string= type "thisfile")
7191 (if in-emacs
7192 (switch-to-buffer-other-window
7193 (org-get-buffer-for-internal-link (current-buffer)))
7194 (org-mark-ring-push))
7195 (let ((cmd `(org-link-search
7196 ,path
7197 ,(cond ((equal in-emacs '(4)) 'occur)
7198 ((equal in-emacs '(16)) 'org-occur)
7199 (t nil))
7200 ,pos)))
7201 (condition-case nil (eval cmd)
7202 (error (progn (widen) (eval cmd))))))
7204 ((string= type "tree-match")
7205 (org-occur (concat "\\[" (regexp-quote path) "\\]")))
7207 ((string= type "file")
7208 (if (string-match "::\\([0-9]+\\)\\'" path)
7209 (setq line (string-to-number (match-string 1 path))
7210 path (substring path 0 (match-beginning 0)))
7211 (if (string-match "::\\(.+\\)\\'" path)
7212 (setq search (match-string 1 path)
7213 path (substring path 0 (match-beginning 0)))))
7214 (if (string-match "[*?{]" (file-name-nondirectory path))
7215 (dired path)
7216 (org-open-file path in-emacs line search)))
7218 ((string= type "news")
7219 (require 'org-gnus)
7220 (org-gnus-follow-link path))
7222 ((string= type "shell")
7223 (let ((cmd path))
7224 (if (or (not org-confirm-shell-link-function)
7225 (funcall org-confirm-shell-link-function
7226 (format "Execute \"%s\" in shell? "
7227 (org-add-props cmd nil
7228 'face 'org-warning))))
7229 (progn
7230 (message "Executing %s" cmd)
7231 (shell-command cmd))
7232 (error "Abort"))))
7234 ((string= type "elisp")
7235 (let ((cmd path))
7236 (if (or (not org-confirm-elisp-link-function)
7237 (funcall org-confirm-elisp-link-function
7238 (format "Execute \"%s\" as elisp? "
7239 (org-add-props cmd nil
7240 'face 'org-warning))))
7241 (message "%s => %s" cmd (eval (read cmd)))
7242 (error "Abort"))))
7245 (browse-url-at-point)))))
7246 (move-marker org-open-link-marker nil)
7247 (run-hook-with-args 'org-follow-link-hook))
7249 ;;;; Time estimates
7251 (defun org-get-effort (&optional pom)
7252 "Get the effort estimate for the current entry."
7253 (org-entry-get pom org-effort-property))
7255 ;;; File search
7257 (defvar org-create-file-search-functions nil
7258 "List of functions to construct the right search string for a file link.
7259 These functions are called in turn with point at the location to
7260 which the link should point.
7262 A function in the hook should first test if it would like to
7263 handle this file type, for example by checking the major-mode or
7264 the file extension. If it decides not to handle this file, it
7265 should just return nil to give other functions a chance. If it
7266 does handle the file, it must return the search string to be used
7267 when following the link. The search string will be part of the
7268 file link, given after a double colon, and `org-open-at-point'
7269 will automatically search for it. If special measures must be
7270 taken to make the search successful, another function should be
7271 added to the companion hook `org-execute-file-search-functions',
7272 which see.
7274 A function in this hook may also use `setq' to set the variable
7275 `description' to provide a suggestion for the descriptive text to
7276 be used for this link when it gets inserted into an Org-mode
7277 buffer with \\[org-insert-link].")
7279 (defvar org-execute-file-search-functions nil
7280 "List of functions to execute a file search triggered by a link.
7282 Functions added to this hook must accept a single argument, the
7283 search string that was part of the file link, the part after the
7284 double colon. The function must first check if it would like to
7285 handle this search, for example by checking the major-mode or the
7286 file extension. If it decides not to handle this search, it
7287 should just return nil to give other functions a chance. If it
7288 does handle the search, it must return a non-nil value to keep
7289 other functions from trying.
7291 Each function can access the current prefix argument through the
7292 variable `current-prefix-argument'. Note that a single prefix is
7293 used to force opening a link in Emacs, so it may be good to only
7294 use a numeric or double prefix to guide the search function.
7296 In case this is needed, a function in this hook can also restore
7297 the window configuration before `org-open-at-point' was called using:
7299 (set-window-configuration org-window-config-before-follow-link)")
7301 (defun org-link-search (s &optional type avoid-pos)
7302 "Search for a link search option.
7303 If S is surrounded by forward slashes, it is interpreted as a
7304 regular expression. In org-mode files, this will create an `org-occur'
7305 sparse tree. In ordinary files, `occur' will be used to list matches.
7306 If the current buffer is in `dired-mode', grep will be used to search
7307 in all files. If AVOID-POS is given, ignore matches near that position."
7308 (let ((case-fold-search t)
7309 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
7310 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
7311 (append '(("") (" ") ("\t") ("\n"))
7312 org-emphasis-alist)
7313 "\\|") "\\)"))
7314 (pos (point))
7315 (pre nil) (post nil)
7316 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
7317 (cond
7318 ;; First check if there are any special
7319 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
7320 ;; Now try the builtin stuff
7321 ((save-excursion
7322 (goto-char (point-min))
7323 (and
7324 (re-search-forward
7325 (concat "<<" (regexp-quote s0) ">>") nil t)
7326 (setq type 'dedicated
7327 pos (match-beginning 0))))
7328 ;; There is an exact target for this
7329 (goto-char pos))
7330 ((string-match "^/\\(.*\\)/$" s)
7331 ;; A regular expression
7332 (cond
7333 ((org-mode-p)
7334 (org-occur (match-string 1 s)))
7335 ;;((eq major-mode 'dired-mode)
7336 ;; (grep (concat "grep -n -e '" (match-string 1 s) "' *")))
7337 (t (org-do-occur (match-string 1 s)))))
7339 ;; A normal search strings
7340 (when (equal (string-to-char s) ?*)
7341 ;; Anchor on headlines, post may include tags.
7342 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
7343 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@:+]:[ \t]*\\)?$")
7344 s (substring s 1)))
7345 (remove-text-properties
7346 0 (length s)
7347 '(face nil mouse-face nil keymap nil fontified nil) s)
7348 ;; Make a series of regular expressions to find a match
7349 (setq words (org-split-string s "[ \n\r\t]+")
7351 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
7352 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
7353 "\\)" markers)
7354 re2a_ (concat "\\(" (mapconcat 'downcase words "[ \t\r\n]+") "\\)[ \t\r\n]")
7355 re2a (concat "[ \t\r\n]" re2a_)
7356 re4_ (concat "\\(" (mapconcat 'downcase words "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
7357 re4 (concat "[^a-zA-Z_]" re4_)
7359 re1 (concat pre re2 post)
7360 re3 (concat pre (if pre re4_ re4) post)
7361 re5 (concat pre ".*" re4)
7362 re2 (concat pre re2)
7363 re2a (concat pre (if pre re2a_ re2a))
7364 re4 (concat pre (if pre re4_ re4))
7365 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
7366 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
7367 re5 "\\)"
7369 (cond
7370 ((eq type 'org-occur) (org-occur reall))
7371 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
7372 (t (goto-char (point-min))
7373 (setq type 'fuzzy)
7374 (if (or (and (org-search-not-self 1 re0 nil t) (setq type 'dedicated))
7375 (org-search-not-self 1 re1 nil t)
7376 (org-search-not-self 1 re2 nil t)
7377 (org-search-not-self 1 re2a nil t)
7378 (org-search-not-self 1 re3 nil t)
7379 (org-search-not-self 1 re4 nil t)
7380 (org-search-not-self 1 re5 nil t)
7382 (goto-char (match-beginning 1))
7383 (goto-char pos)
7384 (error "No match")))))
7386 ;; Normal string-search
7387 (goto-char (point-min))
7388 (if (search-forward s nil t)
7389 (goto-char (match-beginning 0))
7390 (error "No match"))))
7391 (and (org-mode-p) (org-show-context 'link-search))
7392 type))
7394 (defun org-search-not-self (group &rest args)
7395 "Execute `re-search-forward', but only accept matches that do not
7396 enclose the position of `org-open-link-marker'."
7397 (let ((m org-open-link-marker))
7398 (catch 'exit
7399 (while (apply 're-search-forward args)
7400 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
7401 (goto-char (match-end group))
7402 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
7403 (> (match-beginning 0) (marker-position m))
7404 (< (match-end 0) (marker-position m)))
7405 (save-match-data
7406 (or (not (org-in-regexp
7407 org-bracket-link-analytic-regexp 1))
7408 (not (match-end 4)) ; no description
7409 (and (<= (match-beginning 4) (point))
7410 (>= (match-end 4) (point))))))
7411 (throw 'exit (point))))))))
7413 (defun org-get-buffer-for-internal-link (buffer)
7414 "Return a buffer to be used for displaying the link target of internal links."
7415 (cond
7416 ((not org-display-internal-link-with-indirect-buffer)
7417 buffer)
7418 ((string-match "(Clone)$" (buffer-name buffer))
7419 (message "Buffer is already a clone, not making another one")
7420 ;; we also do not modify visibility in this case
7421 buffer)
7422 (t ; make a new indirect buffer for displaying the link
7423 (let* ((bn (buffer-name buffer))
7424 (ibn (concat bn "(Clone)"))
7425 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
7426 (with-current-buffer ib (org-overview))
7427 ib))))
7429 (defun org-do-occur (regexp &optional cleanup)
7430 "Call the Emacs command `occur'.
7431 If CLEANUP is non-nil, remove the printout of the regular expression
7432 in the *Occur* buffer. This is useful if the regex is long and not useful
7433 to read."
7434 (occur regexp)
7435 (when cleanup
7436 (let ((cwin (selected-window)) win beg end)
7437 (when (setq win (get-buffer-window "*Occur*"))
7438 (select-window win))
7439 (goto-char (point-min))
7440 (when (re-search-forward "match[a-z]+" nil t)
7441 (setq beg (match-end 0))
7442 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
7443 (setq end (1- (match-beginning 0)))))
7444 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
7445 (goto-char (point-min))
7446 (select-window cwin))))
7448 ;;; The mark ring for links jumps
7450 (defvar org-mark-ring nil
7451 "Mark ring for positions before jumps in Org-mode.")
7452 (defvar org-mark-ring-last-goto nil
7453 "Last position in the mark ring used to go back.")
7454 ;; Fill and close the ring
7455 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
7456 (loop for i from 1 to org-mark-ring-length do
7457 (push (make-marker) org-mark-ring))
7458 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
7459 org-mark-ring)
7461 (defun org-mark-ring-push (&optional pos buffer)
7462 "Put the current position or POS into the mark ring and rotate it."
7463 (interactive)
7464 (setq pos (or pos (point)))
7465 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
7466 (move-marker (car org-mark-ring)
7467 (or pos (point))
7468 (or buffer (current-buffer)))
7469 (message "%s"
7470 (substitute-command-keys
7471 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
7473 (defun org-mark-ring-goto (&optional n)
7474 "Jump to the previous position in the mark ring.
7475 With prefix arg N, jump back that many stored positions. When
7476 called several times in succession, walk through the entire ring.
7477 Org-mode commands jumping to a different position in the current file,
7478 or to another Org-mode file, automatically push the old position
7479 onto the ring."
7480 (interactive "p")
7481 (let (p m)
7482 (if (eq last-command this-command)
7483 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
7484 (setq p org-mark-ring))
7485 (setq org-mark-ring-last-goto p)
7486 (setq m (car p))
7487 (switch-to-buffer (marker-buffer m))
7488 (goto-char m)
7489 (if (or (org-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
7491 (defun org-remove-angle-brackets (s)
7492 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
7493 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
7495 (defun org-add-angle-brackets (s)
7496 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
7497 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
7499 (defun org-remove-double-quotes (s)
7500 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
7501 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
7504 ;;; Following specific links
7506 (defun org-follow-timestamp-link ()
7507 (cond
7508 ((org-at-date-range-p t)
7509 (let ((org-agenda-start-on-weekday)
7510 (t1 (match-string 1))
7511 (t2 (match-string 2)))
7512 (setq t1 (time-to-days (org-time-string-to-time t1))
7513 t2 (time-to-days (org-time-string-to-time t2)))
7514 (org-agenda-list nil t1 (1+ (- t2 t1)))))
7515 ((org-at-timestamp-p t)
7516 (org-agenda-list nil (time-to-days (org-time-string-to-time
7517 (substring (match-string 1) 0 10)))
7519 (t (error "This should not happen"))))
7522 ;;; Following file links
7523 (defvar org-wait nil)
7524 (defun org-open-file (path &optional in-emacs line search)
7525 "Open the file at PATH.
7526 First, this expands any special file name abbreviations. Then the
7527 configuration variable `org-file-apps' is checked if it contains an
7528 entry for this file type, and if yes, the corresponding command is launched.
7529 If no application is found, Emacs simply visits the file.
7530 With optional argument IN-EMACS, Emacs will visit the file.
7531 Optional LINE specifies a line to go to, optional SEARCH a string to
7532 search for. If LINE or SEARCH is given, the file will always be
7533 opened in Emacs.
7534 If the file does not exist, an error is thrown."
7535 (setq in-emacs (or in-emacs line search))
7536 (let* ((file (if (equal path "")
7537 buffer-file-name
7538 (substitute-in-file-name (expand-file-name path))))
7539 (apps (append org-file-apps (org-default-apps)))
7540 (remp (and (assq 'remote apps) (org-file-remote-p file)))
7541 (dirp (if remp nil (file-directory-p file)))
7542 (dfile (downcase file))
7543 (old-buffer (current-buffer))
7544 (old-pos (point))
7545 (old-mode major-mode)
7546 ext cmd)
7547 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
7548 (setq ext (match-string 1 dfile))
7549 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
7550 (setq ext (match-string 1 dfile))))
7551 (if in-emacs
7552 (setq cmd 'emacs)
7553 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
7554 (and dirp (cdr (assoc 'directory apps)))
7555 (cdr (assoc ext apps))
7556 (cdr (assoc t apps)))))
7557 (when (eq cmd 'mailcap)
7558 (require 'mailcap)
7559 (mailcap-parse-mailcaps)
7560 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
7561 (command (mailcap-mime-info mime-type)))
7562 (if (stringp command)
7563 (setq cmd command)
7564 (setq cmd 'emacs))))
7565 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
7566 (not (file-exists-p file))
7567 (not org-open-non-existing-files))
7568 (error "No such file: %s" file))
7569 (cond
7570 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
7571 ;; Remove quotes around the file name - we'll use shell-quote-argument.
7572 (while (string-match "['\"]%s['\"]" cmd)
7573 (setq cmd (replace-match "%s" t t cmd)))
7574 (while (string-match "%s" cmd)
7575 (setq cmd (replace-match
7576 (save-match-data
7577 (shell-quote-argument
7578 (convert-standard-filename file)))
7579 t t cmd)))
7580 (save-window-excursion
7581 (start-process-shell-command cmd nil cmd)
7582 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))
7584 ((or (stringp cmd)
7585 (eq cmd 'emacs))
7586 (funcall (cdr (assq 'file org-link-frame-setup)) file)
7587 (widen)
7588 (if line (goto-line line)
7589 (if search (org-link-search search))))
7590 ((consp cmd)
7591 (let ((file (convert-standard-filename file)))
7592 (eval cmd)))
7593 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
7594 (and (org-mode-p) (eq old-mode 'org-mode)
7595 (or (not (equal old-buffer (current-buffer)))
7596 (not (equal old-pos (point))))
7597 (org-mark-ring-push old-pos old-buffer))))
7599 (defun org-default-apps ()
7600 "Return the default applications for this operating system."
7601 (cond
7602 ((eq system-type 'darwin)
7603 org-file-apps-defaults-macosx)
7604 ((eq system-type 'windows-nt)
7605 org-file-apps-defaults-windowsnt)
7606 (t org-file-apps-defaults-gnu)))
7608 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
7609 (defun org-file-remote-p (file)
7610 "Test whether FILE specifies a location on a remote system.
7611 Return non-nil if the location is indeed remote.
7613 For example, the filename \"/user@host:/foo\" specifies a location
7614 on the system \"/user@host:\"."
7615 (cond ((fboundp 'file-remote-p)
7616 (file-remote-p file))
7617 ((fboundp 'tramp-handle-file-remote-p)
7618 (tramp-handle-file-remote-p file))
7619 ((and (boundp 'ange-ftp-name-format)
7620 (string-match (car ange-ftp-name-format) file))
7622 (t nil)))
7625 ;;;; Refiling
7627 (defun org-get-org-file ()
7628 "Read a filename, with default directory `org-directory'."
7629 (let ((default (or org-default-notes-file remember-data-file)))
7630 (read-file-name (format "File name [%s]: " default)
7631 (file-name-as-directory org-directory)
7632 default)))
7634 (defun org-notes-order-reversed-p ()
7635 "Check if the current file should receive notes in reversed order."
7636 (cond
7637 ((not org-reverse-note-order) nil)
7638 ((eq t org-reverse-note-order) t)
7639 ((not (listp org-reverse-note-order)) nil)
7640 (t (catch 'exit
7641 (let ((all org-reverse-note-order)
7642 entry)
7643 (while (setq entry (pop all))
7644 (if (string-match (car entry) buffer-file-name)
7645 (throw 'exit (cdr entry))))
7646 nil)))))
7648 (defvar org-refile-target-table nil
7649 "The list of refile targets, created by `org-refile'.")
7651 (defvar org-agenda-new-buffers nil
7652 "Buffers created to visit agenda files.")
7654 (defun org-get-refile-targets (&optional default-buffer)
7655 "Produce a table with refile targets."
7656 (let ((entries (or org-refile-targets '((nil . (:level . 1)))))
7657 targets txt re files f desc descre)
7658 (with-current-buffer (or default-buffer (current-buffer))
7659 (while (setq entry (pop entries))
7660 (setq files (car entry) desc (cdr entry))
7661 (cond
7662 ((null files) (setq files (list (current-buffer))))
7663 ((eq files 'org-agenda-files)
7664 (setq files (org-agenda-files 'unrestricted)))
7665 ((and (symbolp files) (fboundp files))
7666 (setq files (funcall files)))
7667 ((and (symbolp files) (boundp files))
7668 (setq files (symbol-value files))))
7669 (if (stringp files) (setq files (list files)))
7670 (cond
7671 ((eq (car desc) :tag)
7672 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
7673 ((eq (car desc) :todo)
7674 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
7675 ((eq (car desc) :regexp)
7676 (setq descre (cdr desc)))
7677 ((eq (car desc) :level)
7678 (setq descre (concat "^\\*\\{" (number-to-string
7679 (if org-odd-levels-only
7680 (1- (* 2 (cdr desc)))
7681 (cdr desc)))
7682 "\\}[ \t]")))
7683 ((eq (car desc) :maxlevel)
7684 (setq descre (concat "^\\*\\{1," (number-to-string
7685 (if org-odd-levels-only
7686 (1- (* 2 (cdr desc)))
7687 (cdr desc)))
7688 "\\}[ \t]")))
7689 (t (error "Bad refiling target description %s" desc)))
7690 (while (setq f (pop files))
7691 (save-excursion
7692 (set-buffer (if (bufferp f) f (org-get-agenda-file-buffer f)))
7693 (if (bufferp f) (setq f (buffer-file-name (buffer-base-buffer f))))
7694 (save-excursion
7695 (save-restriction
7696 (widen)
7697 (goto-char (point-min))
7698 (while (re-search-forward descre nil t)
7699 (goto-char (point-at-bol))
7700 (when (looking-at org-complex-heading-regexp)
7701 (setq txt (match-string 4)
7702 re (concat "^" (regexp-quote
7703 (buffer-substring (match-beginning 1)
7704 (match-end 4)))))
7705 (if (match-end 5) (setq re (concat re "[ \t]+"
7706 (regexp-quote
7707 (match-string 5)))))
7708 (setq re (concat re "[ \t]*$"))
7709 (when org-refile-use-outline-path
7710 (setq txt (mapconcat 'identity
7711 (append
7712 (if (eq org-refile-use-outline-path 'file)
7713 (list (file-name-nondirectory
7714 (buffer-file-name (buffer-base-buffer))))
7715 (if (eq org-refile-use-outline-path 'full-file-path)
7716 (list (buffer-file-name (buffer-base-buffer)))))
7717 (org-get-outline-path)
7718 (list txt))
7719 "/")))
7720 (push (list txt f re (point)) targets))
7721 (goto-char (point-at-eol))))))))
7722 (nreverse targets))))
7724 (defun org-get-outline-path ()
7725 "Return the outline path to the current entry, as a list."
7726 (let (rtn)
7727 (save-excursion
7728 (while (org-up-heading-safe)
7729 (when (looking-at org-complex-heading-regexp)
7730 (push (org-match-string-no-properties 4) rtn)))
7731 rtn)))
7733 (defvar org-refile-history nil
7734 "History for refiling operations.")
7736 (defun org-refile (&optional goto default-buffer)
7737 "Move the entry at point to another heading.
7738 The list of target headings is compiled using the information in
7739 `org-refile-targets', which see. This list is created before each use
7740 and will therefore always be up-to-date.
7742 At the target location, the entry is filed as a subitem of the target heading.
7743 Depending on `org-reverse-note-order', the new subitem will either be the
7744 first of the last subitem.
7746 With prefix arg GOTO, the command will only visit the target location,
7747 not actually move anything.
7748 With a double prefix `C-c C-c', go to the location where the last refiling
7749 operation has put the subtree."
7750 (interactive "P")
7751 (let* ((cbuf (current-buffer))
7752 (filename (buffer-file-name (buffer-base-buffer cbuf)))
7753 pos it nbuf file re level reversed)
7754 (if (equal goto '(16))
7755 (org-refile-goto-last-stored)
7756 (when (setq it (org-refile-get-location
7757 (if goto "Goto: " "Refile to: ") default-buffer))
7758 (setq file (nth 1 it)
7759 re (nth 2 it)
7760 pos (nth 3 it))
7761 (setq nbuf (or (find-buffer-visiting file)
7762 (find-file-noselect file)))
7763 (if goto
7764 (progn
7765 (switch-to-buffer nbuf)
7766 (goto-char pos)
7767 (org-show-context 'org-goto))
7768 (org-copy-subtree 1 nil t)
7769 (save-excursion
7770 (set-buffer (setq nbuf (or (find-buffer-visiting file)
7771 (find-file-noselect file))))
7772 (setq reversed (org-notes-order-reversed-p))
7773 (save-excursion
7774 (save-restriction
7775 (widen)
7776 (goto-char pos)
7777 (looking-at outline-regexp)
7778 (setq level (org-get-valid-level (funcall outline-level) 1))
7779 (goto-char
7780 (if reversed
7781 (outline-next-heading)
7782 (or (save-excursion (outline-get-next-sibling))
7783 (org-end-of-subtree t t)
7784 (point-max))))
7785 (bookmark-set "org-refile-last-stored")
7786 (org-paste-subtree level))))
7787 (org-cut-subtree)
7788 (setq org-markers-to-move nil)
7789 (message "Entry refiled to \"%s\"" (car it)))))))
7791 (defun org-refile-goto-last-stored ()
7792 "Go to the location where the last refile was stored."
7793 (interactive)
7794 (bookmark-jump "org-refile-last-stored")
7795 (message "This is the location of the last refile"))
7797 (defun org-refile-get-location (&optional prompt default-buffer)
7798 "Prompt the user for a refile location, using PROMPT."
7799 (let ((org-refile-targets org-refile-targets)
7800 (org-refile-use-outline-path org-refile-use-outline-path))
7801 (setq org-refile-target-table (org-get-refile-targets default-buffer)))
7802 (unless org-refile-target-table
7803 (error "No refile targets"))
7804 (let* ((cbuf (current-buffer))
7805 (cfunc (if org-refile-use-outline-path
7806 'org-olpath-completing-read
7807 'completing-read))
7808 (extra (if org-refile-use-outline-path "/" ""))
7809 (filename (buffer-file-name (buffer-base-buffer cbuf)))
7810 (fname (and filename (file-truename filename)))
7811 (tbl (mapcar
7812 (lambda (x)
7813 (if (not (equal fname (file-truename (nth 1 x))))
7814 (cons (concat (car x) extra " ("
7815 (file-name-nondirectory (nth 1 x)) ")")
7816 (cdr x))
7817 (cons (concat (car x) extra) (cdr x))))
7818 org-refile-target-table))
7819 (completion-ignore-case t))
7820 (assoc (funcall cfunc prompt tbl nil t nil 'org-refile-history)
7821 tbl)))
7823 (defun org-olpath-completing-read (prompt collection &rest args)
7824 "Read an outline path like a file name."
7825 (let ((thetable collection))
7826 (apply
7827 'completing-read prompt
7828 (lambda (string predicate &optional flag)
7829 (let (rtn r s f (l (length string)))
7830 (cond
7831 ((eq flag nil)
7832 ;; try completion
7833 (try-completion string thetable))
7834 ((eq flag t)
7835 ;; all-completions
7836 (setq rtn (all-completions string thetable predicate))
7837 (mapcar
7838 (lambda (x)
7839 (setq r (substring x l))
7840 (if (string-match " ([^)]*)$" x)
7841 (setq f (match-string 0 x))
7842 (setq f ""))
7843 (if (string-match "/" r)
7844 (concat string (substring r 0 (match-end 0)) f)
7846 rtn))
7847 ((eq flag 'lambda)
7848 ;; exact match?
7849 (assoc string thetable)))
7851 args)))
7853 ;;;; Dynamic blocks
7855 (defun org-find-dblock (name)
7856 "Find the first dynamic block with name NAME in the buffer.
7857 If not found, stay at current position and return nil."
7858 (let (pos)
7859 (save-excursion
7860 (goto-char (point-min))
7861 (setq pos (and (re-search-forward (concat "^#\\+BEGIN:[ \t]+" name "\\>")
7862 nil t)
7863 (match-beginning 0))))
7864 (if pos (goto-char pos))
7865 pos))
7867 (defconst org-dblock-start-re
7868 "^#\\+BEGIN:[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
7869 "Matches the startline of a dynamic block, with parameters.")
7871 (defconst org-dblock-end-re "^#\\+END\\([: \t\r\n]\\|$\\)"
7872 "Matches the end of a dyhamic block.")
7874 (defun org-create-dblock (plist)
7875 "Create a dynamic block section, with parameters taken from PLIST.
7876 PLIST must containe a :name entry which is used as name of the block."
7877 (unless (bolp) (newline))
7878 (let ((name (plist-get plist :name)))
7879 (insert "#+BEGIN: " name)
7880 (while plist
7881 (if (eq (car plist) :name)
7882 (setq plist (cddr plist))
7883 (insert " " (prin1-to-string (pop plist)))))
7884 (insert "\n\n#+END:\n")
7885 (beginning-of-line -2)))
7887 (defun org-prepare-dblock ()
7888 "Prepare dynamic block for refresh.
7889 This empties the block, puts the cursor at the insert position and returns
7890 the property list including an extra property :name with the block name."
7891 (unless (looking-at org-dblock-start-re)
7892 (error "Not at a dynamic block"))
7893 (let* ((begdel (1+ (match-end 0)))
7894 (name (org-no-properties (match-string 1)))
7895 (params (append (list :name name)
7896 (read (concat "(" (match-string 3) ")")))))
7897 (unless (re-search-forward org-dblock-end-re nil t)
7898 (error "Dynamic block not terminated"))
7899 (setq params
7900 (append params
7901 (list :content (buffer-substring
7902 begdel (match-beginning 0)))))
7903 (delete-region begdel (match-beginning 0))
7904 (goto-char begdel)
7905 (open-line 1)
7906 params))
7908 (defun org-map-dblocks (&optional command)
7909 "Apply COMMAND to all dynamic blocks in the current buffer.
7910 If COMMAND is not given, use `org-update-dblock'."
7911 (let ((cmd (or command 'org-update-dblock))
7912 pos)
7913 (save-excursion
7914 (goto-char (point-min))
7915 (while (re-search-forward org-dblock-start-re nil t)
7916 (goto-char (setq pos (match-beginning 0)))
7917 (condition-case nil
7918 (funcall cmd)
7919 (error (message "Error during update of dynamic block")))
7920 (goto-char pos)
7921 (unless (re-search-forward org-dblock-end-re nil t)
7922 (error "Dynamic block not terminated"))))))
7924 (defun org-dblock-update (&optional arg)
7925 "User command for updating dynamic blocks.
7926 Update the dynamic block at point. With prefix ARG, update all dynamic
7927 blocks in the buffer."
7928 (interactive "P")
7929 (if arg
7930 (org-update-all-dblocks)
7931 (or (looking-at org-dblock-start-re)
7932 (org-beginning-of-dblock))
7933 (org-update-dblock)))
7935 (defun org-update-dblock ()
7936 "Update the dynamic block at point
7937 This means to empty the block, parse for parameters and then call
7938 the correct writing function."
7939 (save-window-excursion
7940 (let* ((pos (point))
7941 (line (org-current-line))
7942 (params (org-prepare-dblock))
7943 (name (plist-get params :name))
7944 (cmd (intern (concat "org-dblock-write:" name))))
7945 (message "Updating dynamic block `%s' at line %d..." name line)
7946 (funcall cmd params)
7947 (message "Updating dynamic block `%s' at line %d...done" name line)
7948 (goto-char pos))))
7950 (defun org-beginning-of-dblock ()
7951 "Find the beginning of the dynamic block at point.
7952 Error if there is no scuh block at point."
7953 (let ((pos (point))
7954 beg)
7955 (end-of-line 1)
7956 (if (and (re-search-backward org-dblock-start-re nil t)
7957 (setq beg (match-beginning 0))
7958 (re-search-forward org-dblock-end-re nil t)
7959 (> (match-end 0) pos))
7960 (goto-char beg)
7961 (goto-char pos)
7962 (error "Not in a dynamic block"))))
7964 (defun org-update-all-dblocks ()
7965 "Update all dynamic blocks in the buffer.
7966 This function can be used in a hook."
7967 (when (org-mode-p)
7968 (org-map-dblocks 'org-update-dblock)))
7971 ;;;; Completion
7973 (defconst org-additional-option-like-keywords
7974 '("BEGIN_HTML" "BEGIN_LaTeX" "END_HTML" "END_LaTeX"
7975 "ORGTBL" "HTML:" "LaTeX:" "BEGIN:" "END:" "TBLFM"
7976 "BEGIN_EXAMPLE" "END_EXAMPLE"))
7978 (defcustom org-structure-template-alist
7980 ("s" "#+begin_src ?\n\n#+end_src"
7981 "<src lang=\"?\">\n\n</src>")
7982 ("e" "#+begin_example\n?\n#+end_example"
7983 "<example>\n?\n</example>")
7984 ("q" "#+begin_quote\n?\n#+end_quote"
7985 "<quote>\n?\n</quote>")
7986 ("v" "#+begin_verse\n?\n#+end_verse"
7987 "<verse>\n?\n/verse>")
7988 ("l" "#+begin_latex\n?\n#+end_latex"
7989 "<literal style=\"latex\">\n?\n</literal>")
7990 ("L" "#+latex: "
7991 "<literal style=\"latex\">?</literal>")
7992 ("h" "#+begin_html\n?\n#+end_html"
7993 "<literal style=\"html\">\n?\n</literal>")
7994 ("H" "#+html: "
7995 "<literal style=\"html\">?</literal>")
7996 ("a" "#+begin_ascii\n?\n#+end_ascii")
7997 ("A" "#+ascii: ")
7998 ("i" "#+include %file ?"
7999 "<include file=%file markup=\"?\">")
8001 "Structure completion elements.
8002 This is a list of abbreviation keys and values. The value gets inserted
8003 it you type @samp{.} followed by the key and then the completion key,
8004 usually `M-TAB'. %file will be replaced by a file name after prompting
8005 for the file uning completion.
8006 There are two templates for each key, the first uses the original Org syntax,
8007 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
8008 the default when the /org-mtags.el/ module has been loaded. See also the
8009 variable `org-mtags-prefere-muse-templates'.
8010 This is an experimental feature, it is undecided if it is going to stay in."
8011 :group 'org-completion
8012 :type '(repeat
8013 (string :tag "Key")
8014 (string :tag "Template")
8015 (string :tag "Muse Template")))
8017 (defun org-try-structure-completion ()
8018 "Try to complete a structure template before point.
8019 This looks for strings like \"<e\" on an otherwise empty line and
8020 expands them."
8021 (let ((l (buffer-substring (point-at-bol) (point)))
8023 (when (and (looking-at "[ \t]*$")
8024 (string-match "^[ \t]*<\\([a-z]+\\)$"l)
8025 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
8026 (org-complete-expand-structure-template (+ -1 (point-at-bol)
8027 (match-beginning 1)) a)
8028 t)))
8030 (defun org-complete-expand-structure-template (start cell)
8031 "Expand a structure template."
8032 (let* ((musep (org-bound-and-true-p org-mtags-prefere-muse-templates))
8033 (rpl (nth (if musep 2 1) cell)))
8034 (delete-region start (point))
8035 (when (string-match "\\`#\\+" rpl)
8036 (cond
8037 ((bolp))
8038 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
8039 (delete-region (point-at-bol) (point)))
8040 (t (newline))))
8041 (setq start (point))
8042 (if (string-match "%file" rpl)
8043 (setq rpl (replace-match
8044 (concat
8045 "\""
8046 (save-match-data
8047 (abbreviate-file-name (read-file-name "Include file: ")))
8048 "\"")
8049 t t rpl)))
8050 (insert rpl)
8051 (if (re-search-backward "\\?" start t) (delete-char 1))))
8054 (defun org-complete (&optional arg)
8055 "Perform completion on word at point.
8056 At the beginning of a headline, this completes TODO keywords as given in
8057 `org-todo-keywords'.
8058 If the current word is preceded by a backslash, completes the TeX symbols
8059 that are supported for HTML support.
8060 If the current word is preceded by \"#+\", completes special words for
8061 setting file options.
8062 In the line after \"#+STARTUP:, complete valid keywords.\"
8063 At all other locations, this simply calls the value of
8064 `org-completion-fallback-command'."
8065 (interactive "P")
8066 (org-without-partial-completion
8067 (catch 'exit
8068 (let* ((a nil)
8069 (end (point))
8070 (beg1 (save-excursion
8071 (skip-chars-backward (org-re "[:alnum:]_@"))
8072 (point)))
8073 (beg (save-excursion
8074 (skip-chars-backward "a-zA-Z0-9_:$")
8075 (point)))
8076 (confirm (lambda (x) (stringp (car x))))
8077 (searchhead (equal (char-before beg) ?*))
8078 (struct
8079 (when (and (member (char-before beg1) '(?. ?<))
8080 (setq a (assoc (buffer-substring beg1 (point))
8081 org-structure-template-alist)))
8082 (org-complete-expand-structure-template (1- beg1) a)
8083 (throw 'exit t)))
8084 (tag (and (equal (char-before beg1) ?:)
8085 (equal (char-after (point-at-bol)) ?*)))
8086 (prop (and (equal (char-before beg1) ?:)
8087 (not (equal (char-after (point-at-bol)) ?*))))
8088 (texp (equal (char-before beg) ?\\))
8089 (link (equal (char-before beg) ?\[))
8090 (opt (equal (buffer-substring (max (point-at-bol) (- beg 2))
8091 beg)
8092 "#+"))
8093 (startup (string-match "^#\\+STARTUP:.*"
8094 (buffer-substring (point-at-bol) (point))))
8095 (completion-ignore-case opt)
8096 (type nil)
8097 (tbl nil)
8098 (table (cond
8099 (opt
8100 (setq type :opt)
8101 (require 'org-exp)
8102 (append
8103 (mapcar
8104 (lambda (x)
8105 (string-match "^#\\+\\(\\([A-Z_]+:?\\).*\\)" x)
8106 (cons (match-string 2 x) (match-string 1 x)))
8107 (org-split-string (org-get-current-options) "\n"))
8108 (mapcar 'list org-additional-option-like-keywords)))
8109 (startup
8110 (setq type :startup)
8111 org-startup-options)
8112 (link (append org-link-abbrev-alist-local
8113 org-link-abbrev-alist))
8114 (texp
8115 (setq type :tex)
8116 org-html-entities)
8117 ((string-match "\\`\\*+[ \t]+\\'"
8118 (buffer-substring (point-at-bol) beg))
8119 (setq type :todo)
8120 (mapcar 'list org-todo-keywords-1))
8121 (searchhead
8122 (setq type :searchhead)
8123 (save-excursion
8124 (goto-char (point-min))
8125 (while (re-search-forward org-todo-line-regexp nil t)
8126 (push (list
8127 (org-make-org-heading-search-string
8128 (match-string 3) t))
8129 tbl)))
8130 tbl)
8131 (tag (setq type :tag beg beg1)
8132 (or org-tag-alist (org-get-buffer-tags)))
8133 (prop (setq type :prop beg beg1)
8134 (mapcar 'list (org-buffer-property-keys nil t t)))
8135 (t (progn
8136 (call-interactively org-completion-fallback-command)
8137 (throw 'exit nil)))))
8138 (pattern (buffer-substring-no-properties beg end))
8139 (completion (try-completion pattern table confirm)))
8140 (cond ((eq completion t)
8141 (if (not (assoc (upcase pattern) table))
8142 (message "Already complete")
8143 (if (and (equal type :opt)
8144 (not (member (car (assoc (upcase pattern) table))
8145 org-additional-option-like-keywords)))
8146 (insert (substring (cdr (assoc (upcase pattern) table))
8147 (length pattern)))
8148 (if (memq type '(:tag :prop)) (insert ":")))))
8149 ((null completion)
8150 (message "Can't find completion for \"%s\"" pattern)
8151 (ding))
8152 ((not (string= pattern completion))
8153 (delete-region beg end)
8154 (if (string-match " +$" completion)
8155 (setq completion (replace-match "" t t completion)))
8156 (insert completion)
8157 (if (get-buffer-window "*Completions*")
8158 (delete-window (get-buffer-window "*Completions*")))
8159 (if (assoc completion table)
8160 (if (eq type :todo) (insert " ")
8161 (if (memq type '(:tag :prop)) (insert ":"))))
8162 (if (and (equal type :opt) (assoc completion table))
8163 (message "%s" (substitute-command-keys
8164 "Press \\[org-complete] again to insert example settings"))))
8166 (message "Making completion list...")
8167 (let ((list (sort (all-completions pattern table confirm)
8168 'string<)))
8169 (with-output-to-temp-buffer "*Completions*"
8170 (condition-case nil
8171 ;; Protection needed for XEmacs and emacs 21
8172 (display-completion-list list pattern)
8173 (error (display-completion-list list)))))
8174 (message "Making completion list...%s" "done")))))))
8176 ;;;; TODO, DEADLINE, Comments
8178 (defun org-toggle-comment ()
8179 "Change the COMMENT state of an entry."
8180 (interactive)
8181 (save-excursion
8182 (org-back-to-heading)
8183 (let (case-fold-search)
8184 (if (looking-at (concat outline-regexp
8185 "\\( *\\<" org-comment-string "\\>[ \t]*\\)"))
8186 (replace-match "" t t nil 1)
8187 (if (looking-at outline-regexp)
8188 (progn
8189 (goto-char (match-end 0))
8190 (insert org-comment-string " ")))))))
8192 (defvar org-last-todo-state-is-todo nil
8193 "This is non-nil when the last TODO state change led to a TODO state.
8194 If the last change removed the TODO tag or switched to DONE, then
8195 this is nil.")
8197 (defvar org-setting-tags nil) ; dynamically skiped
8199 (defun org-parse-local-options (string var)
8200 "Parse STRING for startup setting relevant for variable VAR."
8201 (let ((rtn (symbol-value var))
8202 e opts)
8203 (save-match-data
8204 (if (or (not string) (not (string-match "\\S-" string)))
8206 (setq opts (delq nil (mapcar (lambda (x)
8207 (setq e (assoc x org-startup-options))
8208 (if (eq (nth 1 e) var) e nil))
8209 (org-split-string string "[ \t]+"))))
8210 (if (not opts)
8212 (setq rtn nil)
8213 (while (setq e (pop opts))
8214 (if (not (nth 3 e))
8215 (setq rtn (nth 2 e))
8216 (if (not (listp rtn)) (setq rtn nil))
8217 (push (nth 2 e) rtn)))
8218 rtn)))))
8220 (defvar org-blocker-hook nil
8221 "Hook for functions that are allowed to block a state change.
8223 Each function gets as its single argument a property list, see
8224 `org-trigger-hook' for more information about this list.
8226 If any of the functions in this hook returns nil, the state change
8227 is blocked.")
8229 (defvar org-trigger-hook nil
8230 "Hook for functions that are triggered by a state change.
8232 Each function gets as its single argument a property list with at least
8233 the following elements:
8235 (:type type-of-change :position pos-at-entry-start
8236 :from old-state :to new-state)
8238 Depending on the type, more properties may be present.
8240 This mechanism is currently implemented for:
8242 TODO state changes
8243 ------------------
8244 :type todo-state-change
8245 :from previous state (keyword as a string), or nil
8246 :to new state (keyword as a string), or nil")
8249 (defun org-todo (&optional arg)
8250 "Change the TODO state of an item.
8251 The state of an item is given by a keyword at the start of the heading,
8252 like
8253 *** TODO Write paper
8254 *** DONE Call mom
8256 The different keywords are specified in the variable `org-todo-keywords'.
8257 By default the available states are \"TODO\" and \"DONE\".
8258 So for this example: when the item starts with TODO, it is changed to DONE.
8259 When it starts with DONE, the DONE is removed. And when neither TODO nor
8260 DONE are present, add TODO at the beginning of the heading.
8262 With C-u prefix arg, use completion to determine the new state.
8263 With numeric prefix arg, switch to that state.
8265 For calling through lisp, arg is also interpreted in the following way:
8266 'none -> empty state
8267 \"\"(empty string) -> switch to empty state
8268 'done -> switch to DONE
8269 'nextset -> switch to the next set of keywords
8270 'previousset -> switch to the previous set of keywords
8271 \"WAITING\" -> switch to the specified keyword, but only if it
8272 really is a member of `org-todo-keywords'."
8273 (interactive "P")
8274 (save-excursion
8275 (catch 'exit
8276 (org-back-to-heading)
8277 (if (looking-at outline-regexp) (goto-char (1- (match-end 0))))
8278 (or (looking-at (concat " +" org-todo-regexp " *"))
8279 (looking-at " *"))
8280 (let* ((match-data (match-data))
8281 (startpos (point-at-bol))
8282 (logging (save-match-data (org-entry-get nil "LOGGING" t)))
8283 (org-log-done org-log-done)
8284 (org-log-repeat org-log-repeat)
8285 (org-todo-log-states org-todo-log-states)
8286 (this (match-string 1))
8287 (hl-pos (match-beginning 0))
8288 (head (org-get-todo-sequence-head this))
8289 (ass (assoc head org-todo-kwd-alist))
8290 (interpret (nth 1 ass))
8291 (done-word (nth 3 ass))
8292 (final-done-word (nth 4 ass))
8293 (last-state (or this ""))
8294 (completion-ignore-case t)
8295 (member (member this org-todo-keywords-1))
8296 (tail (cdr member))
8297 (state (cond
8298 ((and org-todo-key-trigger
8299 (or (and (equal arg '(4)) (eq org-use-fast-todo-selection 'prefix))
8300 (and (not arg) org-use-fast-todo-selection
8301 (not (eq org-use-fast-todo-selection 'prefix)))))
8302 ;; Use fast selection
8303 (org-fast-todo-selection))
8304 ((and (equal arg '(4))
8305 (or (not org-use-fast-todo-selection)
8306 (not org-todo-key-trigger)))
8307 ;; Read a state with completion
8308 (completing-read "State: " (mapcar (lambda(x) (list x))
8309 org-todo-keywords-1)
8310 nil t))
8311 ((eq arg 'right)
8312 (if this
8313 (if tail (car tail) nil)
8314 (car org-todo-keywords-1)))
8315 ((eq arg 'left)
8316 (if (equal member org-todo-keywords-1)
8318 (if this
8319 (nth (- (length org-todo-keywords-1) (length tail) 2)
8320 org-todo-keywords-1)
8321 (org-last org-todo-keywords-1))))
8322 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
8323 (setq arg nil))) ; hack to fall back to cycling
8324 (arg
8325 ;; user or caller requests a specific state
8326 (cond
8327 ((equal arg "") nil)
8328 ((eq arg 'none) nil)
8329 ((eq arg 'done) (or done-word (car org-done-keywords)))
8330 ((eq arg 'nextset)
8331 (or (car (cdr (member head org-todo-heads)))
8332 (car org-todo-heads)))
8333 ((eq arg 'previousset)
8334 (let ((org-todo-heads (reverse org-todo-heads)))
8335 (or (car (cdr (member head org-todo-heads)))
8336 (car org-todo-heads))))
8337 ((car (member arg org-todo-keywords-1)))
8338 ((nth (1- (prefix-numeric-value arg))
8339 org-todo-keywords-1))))
8340 ((null member) (or head (car org-todo-keywords-1)))
8341 ((equal this final-done-word) nil) ;; -> make empty
8342 ((null tail) nil) ;; -> first entry
8343 ((eq interpret 'sequence)
8344 (car tail))
8345 ((memq interpret '(type priority))
8346 (if (eq this-command last-command)
8347 (car tail)
8348 (if (> (length tail) 0)
8349 (or done-word (car org-done-keywords))
8350 nil)))
8351 (t nil)))
8352 (next (if state (concat " " state " ") " "))
8353 (change-plist (list :type 'todo-state-change :from this :to state
8354 :position startpos))
8355 dolog now-done-p)
8356 (when org-blocker-hook
8357 (unless (save-excursion
8358 (save-match-data
8359 (run-hook-with-args-until-failure
8360 'org-blocker-hook change-plist)))
8361 (if (interactive-p)
8362 (error "TODO state change from %s to %s blocked" this state)
8363 ;; fail silently
8364 (message "TODO state change from %s to %s blocked" this state)
8365 (throw 'exit nil))))
8366 (store-match-data match-data)
8367 (replace-match next t t)
8368 (unless (pos-visible-in-window-p hl-pos)
8369 (message "TODO state changed to %s" (org-trim next)))
8370 (unless head
8371 (setq head (org-get-todo-sequence-head state)
8372 ass (assoc head org-todo-kwd-alist)
8373 interpret (nth 1 ass)
8374 done-word (nth 3 ass)
8375 final-done-word (nth 4 ass)))
8376 (when (memq arg '(nextset previousset))
8377 (message "Keyword-Set %d/%d: %s"
8378 (- (length org-todo-sets) -1
8379 (length (memq (assoc state org-todo-sets) org-todo-sets)))
8380 (length org-todo-sets)
8381 (mapconcat 'identity (assoc state org-todo-sets) " ")))
8382 (setq org-last-todo-state-is-todo
8383 (not (member state org-done-keywords)))
8384 (setq now-done-p (and (member state org-done-keywords)
8385 (not (member this org-done-keywords))))
8386 (and logging (org-local-logging logging))
8387 (when (and (or org-todo-log-states org-log-done)
8388 (not (memq arg '(nextset previousset))))
8389 ;; we need to look at recording a time and note
8390 (setq dolog (or (nth 1 (assoc state org-todo-log-states))
8391 (nth 2 (assoc this org-todo-log-states))))
8392 (when (and state
8393 (member state org-not-done-keywords)
8394 (not (member this org-not-done-keywords)))
8395 ;; This is now a todo state and was not one before
8396 ;; If there was a CLOSED time stamp, get rid of it.
8397 (org-add-planning-info nil nil 'closed))
8398 (when (and now-done-p org-log-done)
8399 ;; It is now done, and it was not done before
8400 (org-add-planning-info 'closed (org-current-time))
8401 (if (and (not dolog) (eq 'note org-log-done))
8402 (org-add-log-setup 'done state 'findpos 'note)))
8403 (when (and state dolog)
8404 ;; This is a non-nil state, and we need to log it
8405 (org-add-log-setup 'state state 'findpos dolog)))
8406 ;; Fixup tag positioning
8407 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
8408 (when org-provide-todo-statistics
8409 (org-update-parent-todo-statistics))
8410 (run-hooks 'org-after-todo-state-change-hook)
8411 (if (and arg (not (member state org-done-keywords)))
8412 (setq head (org-get-todo-sequence-head state)))
8413 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
8414 ;; Do we need to trigger a repeat?
8415 (when now-done-p (org-auto-repeat-maybe state))
8416 ;; Fixup cursor location if close to the keyword
8417 (if (and (outline-on-heading-p)
8418 (not (bolp))
8419 (save-excursion (beginning-of-line 1)
8420 (looking-at org-todo-line-regexp))
8421 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
8422 (progn
8423 (goto-char (or (match-end 2) (match-end 1)))
8424 (just-one-space)))
8425 (when org-trigger-hook
8426 (save-excursion
8427 (run-hook-with-args 'org-trigger-hook change-plist)))))))
8429 (defun org-update-parent-todo-statistics ()
8430 "Update any statistics cookie in the parent of the current headline."
8431 (interactive)
8432 (let ((box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
8433 level (cnt-all 0) (cnt-done 0) is-percent kwd)
8434 (catch 'exit
8435 (save-excursion
8436 (setq level (org-up-heading-safe))
8437 (unless (and level
8438 (re-search-forward box-re (point-at-eol) t))
8439 (throw 'exit nil))
8440 (setq is-percent (match-end 2))
8441 (save-match-data
8442 (unless (outline-next-heading) (throw 'exit nil))
8443 (while (looking-at org-todo-line-regexp)
8444 (setq kwd (match-string 2))
8445 (and kwd (setq cnt-all (1+ cnt-all)))
8446 (and (member kwd org-done-keywords)
8447 (setq cnt-done (1+ cnt-done)))
8448 (condition-case nil
8449 (outline-forward-same-level 1)
8450 (error (end-of-line 1)))))
8451 (replace-match
8452 (if is-percent
8453 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
8454 (format "[%d/%d]" cnt-done cnt-all)))
8455 (run-hook-with-args 'org-after-todo-statistics-hook
8456 cnt-done (- cnt-all cnt-done))))))
8458 (defvar org-after-todo-statistics-hook nil
8459 "Hook that is called after a TODO statistics cookie has been updated.
8460 Each function is called with two arguments: the number of not-done entries
8461 and the number of done entries.
8463 For example, the following function, when added to this hook, will switch
8464 an entry to DONE when all children are done, and back to TODO when new
8465 entries are set to a TODO status. Note that this hook is only called
8466 when there is a statistics cookie in the headline!
8468 (defun org-summary-todo (n-done n-not-done)
8469 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
8470 (let (org-log-done org-log-states) ; turn off logging
8471 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
8474 (defun org-local-logging (value)
8475 "Get logging settings from a property VALUE."
8476 (let* (words w a)
8477 ;; directly set the variables, they are already local.
8478 (setq org-log-done nil
8479 org-log-repeat nil
8480 org-todo-log-states nil)
8481 (setq words (org-split-string value))
8482 (while (setq w (pop words))
8483 (cond
8484 ((setq a (assoc w org-startup-options))
8485 (and (member (nth 1 a) '(org-log-done org-log-repeat))
8486 (set (nth 1 a) (nth 2 a))))
8487 ((setq a (org-extract-log-state-settings w))
8488 (and (member (car a) org-todo-keywords-1)
8489 (push a org-todo-log-states)))))))
8491 (defun org-get-todo-sequence-head (kwd)
8492 "Return the head of the TODO sequence to which KWD belongs.
8493 If KWD is not set, check if there is a text property remembering the
8494 right sequence."
8495 (let (p)
8496 (cond
8497 ((not kwd)
8498 (or (get-text-property (point-at-bol) 'org-todo-head)
8499 (progn
8500 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
8501 nil (point-at-eol)))
8502 (get-text-property p 'org-todo-head))))
8503 ((not (member kwd org-todo-keywords-1))
8504 (car org-todo-keywords-1))
8505 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
8507 (defun org-fast-todo-selection ()
8508 "Fast TODO keyword selection with single keys.
8509 Returns the new TODO keyword, or nil if no state change should occur."
8510 (let* ((fulltable org-todo-key-alist)
8511 (done-keywords org-done-keywords) ;; needed for the faces.
8512 (maxlen (apply 'max (mapcar
8513 (lambda (x)
8514 (if (stringp (car x)) (string-width (car x)) 0))
8515 fulltable)))
8516 (expert nil)
8517 (fwidth (+ maxlen 3 1 3))
8518 (ncol (/ (- (window-width) 4) fwidth))
8519 tg cnt e c tbl
8520 groups ingroup)
8521 (save-window-excursion
8522 (if expert
8523 (set-buffer (get-buffer-create " *Org todo*"))
8524 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
8525 (erase-buffer)
8526 (org-set-local 'org-done-keywords done-keywords)
8527 (setq tbl fulltable cnt 0)
8528 (while (setq e (pop tbl))
8529 (cond
8530 ((equal e '(:startgroup))
8531 (push '() groups) (setq ingroup t)
8532 (when (not (= cnt 0))
8533 (setq cnt 0)
8534 (insert "\n"))
8535 (insert "{ "))
8536 ((equal e '(:endgroup))
8537 (setq ingroup nil cnt 0)
8538 (insert "}\n"))
8540 (setq tg (car e) c (cdr e))
8541 (if ingroup (push tg (car groups)))
8542 (setq tg (org-add-props tg nil 'face
8543 (org-get-todo-face tg)))
8544 (if (and (= cnt 0) (not ingroup)) (insert " "))
8545 (insert "[" c "] " tg (make-string
8546 (- fwidth 4 (length tg)) ?\ ))
8547 (when (= (setq cnt (1+ cnt)) ncol)
8548 (insert "\n")
8549 (if ingroup (insert " "))
8550 (setq cnt 0)))))
8551 (insert "\n")
8552 (goto-char (point-min))
8553 (if (and (not expert) (fboundp 'fit-window-to-buffer))
8554 (fit-window-to-buffer))
8555 (message "[a-z..]:Set [SPC]:clear")
8556 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
8557 (cond
8558 ((or (= c ?\C-g)
8559 (and (= c ?q) (not (rassoc c fulltable))))
8560 (setq quit-flag t))
8561 ((= c ?\ ) nil)
8562 ((setq e (rassoc c fulltable) tg (car e))
8564 (t (setq quit-flag t))))))
8566 (defun org-entry-is-todo-p ()
8567 (member (org-get-todo-state) org-not-done-keywords))
8569 (defun org-entry-is-done-p ()
8570 (member (org-get-todo-state) org-done-keywords))
8572 (defun org-get-todo-state ()
8573 (save-excursion
8574 (org-back-to-heading t)
8575 (and (looking-at org-todo-line-regexp)
8576 (match-end 2)
8577 (match-string 2))))
8579 (defun org-at-date-range-p (&optional inactive-ok)
8580 "Is the cursor inside a date range?"
8581 (interactive)
8582 (save-excursion
8583 (catch 'exit
8584 (let ((pos (point)))
8585 (skip-chars-backward "^[<\r\n")
8586 (skip-chars-backward "<[")
8587 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
8588 (>= (match-end 0) pos)
8589 (throw 'exit t))
8590 (skip-chars-backward "^<[\r\n")
8591 (skip-chars-backward "<[")
8592 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
8593 (>= (match-end 0) pos)
8594 (throw 'exit t)))
8595 nil)))
8597 (defun org-get-repeat ()
8598 "Check if tere is a deadline/schedule with repeater in this entry."
8599 (save-match-data
8600 (save-excursion
8601 (org-back-to-heading t)
8602 (if (re-search-forward
8603 org-repeat-re (save-excursion (outline-next-heading) (point)) t)
8604 (match-string 1)))))
8606 (defvar org-last-changed-timestamp)
8607 (defvar org-log-post-message)
8608 (defvar org-log-note-purpose)
8609 (defvar org-log-note-how)
8610 (defun org-auto-repeat-maybe (done-word)
8611 "Check if the current headline contains a repeated deadline/schedule.
8612 If yes, set TODO state back to what it was and change the base date
8613 of repeating deadline/scheduled time stamps to new date.
8614 This function is run automatically after each state change to a DONE state."
8615 ;; last-state is dynamically scoped into this function
8616 (let* ((repeat (org-get-repeat))
8617 (aa (assoc last-state org-todo-kwd-alist))
8618 (interpret (nth 1 aa))
8619 (head (nth 2 aa))
8620 (whata '(("d" . day) ("m" . month) ("y" . year)))
8621 (msg "Entry repeats: ")
8622 (org-log-done nil)
8623 (org-todo-log-states nil)
8624 (nshiftmax 10) (nshift 0)
8625 re type n what ts mb0 time)
8626 (when repeat
8627 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
8628 (org-todo (if (eq interpret 'type) last-state head))
8629 (when org-log-repeat
8630 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
8631 (memq 'org-add-log-note post-command-hook))
8632 ;; OK, we are already setup for some record
8633 (if (eq org-log-repeat 'note)
8634 ;; make sure we take a note, not only a time stamp
8635 (setq org-log-note-how 'note))
8636 ;; Set up for taking a record
8637 (org-add-log-setup 'state (or done-word (car org-done-keywords))
8638 'findpos org-log-repeat)))
8639 (org-back-to-heading t)
8640 (org-add-planning-info nil nil 'closed)
8641 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
8642 org-deadline-time-regexp "\\)\\|\\("
8643 org-ts-regexp "\\)"))
8644 (while (re-search-forward
8645 re (save-excursion (outline-next-heading) (point)) t)
8646 (setq type (if (match-end 1) org-scheduled-string
8647 (if (match-end 3) org-deadline-string "Plain:"))
8648 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0)))
8649 mb0 (match-beginning 0))
8650 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts)
8651 (setq n (string-to-number (match-string 2 ts))
8652 what (match-string 3 ts))
8653 (if (equal what "w") (setq n (* n 7) what "d"))
8654 ;; Preparation, see if we need to modify the start date for the change
8655 (when (match-end 1)
8656 (setq time (save-match-data (org-time-string-to-time ts)))
8657 (cond
8658 ((equal (match-string 1 ts) ".")
8659 ;; Shift starting date to today
8660 (org-timestamp-change
8661 (- (time-to-days (current-time)) (time-to-days time))
8662 'day))
8663 ((equal (match-string 1 ts) "+")
8664 (while (or (= nshift 0)
8665 (<= (time-to-days time) (time-to-days (current-time))))
8666 (when (= (incf nshift) nshiftmax)
8667 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
8668 (error "Abort")))
8669 (org-timestamp-change n (cdr (assoc what whata)))
8670 (org-at-timestamp-p t)
8671 (setq ts (match-string 1))
8672 (setq time (save-match-data (org-time-string-to-time ts))))
8673 (org-timestamp-change (- n) (cdr (assoc what whata)))
8674 ;; rematch, so that we have everything in place for the real shift
8675 (org-at-timestamp-p t)
8676 (setq ts (match-string 1))
8677 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([dwmy]\\)" ts))))
8678 (org-timestamp-change n (cdr (assoc what whata)))
8679 (setq msg (concat msg type org-last-changed-timestamp " "))))
8680 (setq org-log-post-message msg)
8681 (message "%s" msg))))
8683 (defun org-show-todo-tree (arg)
8684 "Make a compact tree which shows all headlines marked with TODO.
8685 The tree will show the lines where the regexp matches, and all higher
8686 headlines above the match.
8687 With a \\[universal-argument] prefix, also show the DONE entries.
8688 With a numeric prefix N, construct a sparse tree for the Nth element
8689 of `org-todo-keywords-1'."
8690 (interactive "P")
8691 (let ((case-fold-search nil)
8692 (kwd-re
8693 (cond ((null arg) org-not-done-regexp)
8694 ((equal arg '(4))
8695 (let ((kwd (completing-read "Keyword (or KWD1|KWD2|...): "
8696 (mapcar 'list org-todo-keywords-1))))
8697 (concat "\\("
8698 (mapconcat 'identity (org-split-string kwd "|") "\\|")
8699 "\\)\\>")))
8700 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
8701 (regexp-quote (nth (1- (prefix-numeric-value arg))
8702 org-todo-keywords-1)))
8703 (t (error "Invalid prefix argument: %s" arg)))))
8704 (message "%d TODO entries found"
8705 (org-occur (concat "^" outline-regexp " *" kwd-re )))))
8707 (defun org-deadline (&optional remove)
8708 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
8709 With argument REMOVE, remove any deadline from the item."
8710 (interactive "P")
8711 (if remove
8712 (progn
8713 (org-remove-timestamp-with-keyword org-deadline-string)
8714 (message "Item no longer has a deadline."))
8715 (if (org-get-repeat)
8716 (error "Cannot change deadline on task with repeater, please do that by hand")
8717 (org-add-planning-info 'deadline nil 'closed))))
8719 (defun org-schedule (&optional remove)
8720 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
8721 With argument REMOVE, remove any scheduling date from the item."
8722 (interactive "P")
8723 (if remove
8724 (progn
8725 (org-remove-timestamp-with-keyword org-scheduled-string)
8726 (message "Item is no longer scheduled."))
8727 (if (org-get-repeat)
8728 (error "Cannot reschedule task with repeater, please do that by hand")
8729 (org-add-planning-info 'scheduled nil 'closed))))
8731 (defun org-remove-timestamp-with-keyword (keyword)
8732 "Remove all time stamps with KEYWORD in the current entry."
8733 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
8734 beg)
8735 (save-excursion
8736 (org-back-to-heading t)
8737 (setq beg (point))
8738 (org-end-of-subtree t t)
8739 (while (re-search-backward re beg t)
8740 (replace-match "")
8741 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
8742 (equal (char-before) ?\ ))
8743 (backward-delete-char 1)
8744 (if (string-match "^[ \t]*$" (buffer-substring
8745 (point-at-bol) (point-at-eol)))
8746 (delete-region (point-at-bol)
8747 (min (point-max) (1+ (point-at-eol))))))))))
8749 (defun org-add-planning-info (what &optional time &rest remove)
8750 "Insert new timestamp with keyword in the line directly after the headline.
8751 WHAT indicates what kind of time stamp to add. TIME indicated the time to use.
8752 If non is given, the user is prompted for a date.
8753 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
8754 be removed."
8755 (interactive)
8756 (let (org-time-was-given org-end-time-was-given ts
8757 end default-time default-input)
8759 (when (and (not time) (memq what '(scheduled deadline)))
8760 ;; Try to get a default date/time from existing timestamp
8761 (save-excursion
8762 (org-back-to-heading t)
8763 (setq end (save-excursion (outline-next-heading) (point)))
8764 (when (re-search-forward (if (eq what 'scheduled)
8765 org-scheduled-time-regexp
8766 org-deadline-time-regexp)
8767 end t)
8768 (setq ts (match-string 1)
8769 default-time
8770 (apply 'encode-time (org-parse-time-string ts))
8771 default-input (and ts (org-get-compact-tod ts))))))
8772 (when what
8773 ;; If necessary, get the time from the user
8774 (setq time (or time (org-read-date nil 'to-time nil nil
8775 default-time default-input))))
8777 (when (and org-insert-labeled-timestamps-at-point
8778 (member what '(scheduled deadline)))
8779 (insert
8780 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
8781 (org-insert-time-stamp time org-time-was-given
8782 nil nil nil (list org-end-time-was-given))
8783 (setq what nil))
8784 (save-excursion
8785 (save-restriction
8786 (let (col list elt ts buffer-invisibility-spec)
8787 (org-back-to-heading t)
8788 (looking-at (concat outline-regexp "\\( *\\)[^\r\n]*"))
8789 (goto-char (match-end 1))
8790 (setq col (current-column))
8791 (goto-char (match-end 0))
8792 (if (eobp) (insert "\n") (forward-char 1))
8793 (if (and (not (looking-at outline-regexp))
8794 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
8795 "[^\r\n]*"))
8796 (not (equal (match-string 1) org-clock-string)))
8797 (narrow-to-region (match-beginning 0) (match-end 0))
8798 (insert-before-markers "\n")
8799 (backward-char 1)
8800 (narrow-to-region (point) (point))
8801 (and org-adapt-indentation (org-indent-to-column col)))
8802 ;; Check if we have to remove something.
8803 (setq list (cons what remove))
8804 (while list
8805 (setq elt (pop list))
8806 (goto-char (point-min))
8807 (when (or (and (eq elt 'scheduled)
8808 (re-search-forward org-scheduled-time-regexp nil t))
8809 (and (eq elt 'deadline)
8810 (re-search-forward org-deadline-time-regexp nil t))
8811 (and (eq elt 'closed)
8812 (re-search-forward org-closed-time-regexp nil t)))
8813 (replace-match "")
8814 (if (looking-at "--+<[^>]+>") (replace-match ""))
8815 (if (looking-at " +") (replace-match ""))))
8816 (goto-char (point-max))
8817 (when what
8818 (insert
8819 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
8820 (cond ((eq what 'scheduled) org-scheduled-string)
8821 ((eq what 'deadline) org-deadline-string)
8822 ((eq what 'closed) org-closed-string))
8823 " ")
8824 (setq ts (org-insert-time-stamp
8825 time
8826 (or org-time-was-given
8827 (and (eq what 'closed) org-log-done-with-time))
8828 (eq what 'closed)
8829 nil nil (list org-end-time-was-given)))
8830 (end-of-line 1))
8831 (goto-char (point-min))
8832 (widen)
8833 (if (and (looking-at "[ \t]+\n")
8834 (equal (char-before) ?\n))
8835 (delete-region (1- (point)) (point-at-eol)))
8836 ts)))))
8838 (defvar org-log-note-marker (make-marker))
8839 (defvar org-log-note-purpose nil)
8840 (defvar org-log-note-state nil)
8841 (defvar org-log-note-how nil)
8842 (defvar org-log-note-window-configuration nil)
8843 (defvar org-log-note-return-to (make-marker))
8844 (defvar org-log-post-message nil
8845 "Message to be displayed after a log note has been stored.
8846 The auto-repeater uses this.")
8848 (defun org-add-note ()
8849 "Add a note to the current entry.
8850 This is done in the same way as adding a state change note."
8851 (interactive)
8852 (org-add-log-setup 'note nil t nil))
8854 (defun org-add-log-setup (&optional purpose state findpos how)
8855 "Set up the post command hook to take a note.
8856 If this is about to TODO state change, the new state is expected in STATE.
8857 When FINDPOS is non-nil, find the correct position for the note in
8858 the current entry. If not, assume that it can be inserted at point."
8859 (save-excursion
8860 (when findpos
8861 (org-back-to-heading t)
8862 (looking-at (concat outline-regexp "\\( *\\)[^\r\n]*"
8863 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
8864 "[^\r\n]*\\)?"))
8865 (goto-char (match-end 0))
8866 (unless org-log-states-order-reversed
8867 (and (= (char-after) ?\n) (forward-char 1))
8868 (org-skip-over-state-notes)
8869 (skip-chars-backward " \t\n\r")))
8870 (move-marker org-log-note-marker (point))
8871 (setq org-log-note-purpose purpose
8872 org-log-note-state state
8873 org-log-note-how how)
8874 (add-hook 'post-command-hook 'org-add-log-note 'append)))
8876 (defun org-skip-over-state-notes ()
8877 "Skip past the list of State notes in an entry."
8878 (if (looking-at "\n[ \t]*- State") (forward-char 1))
8879 (while (looking-at "[ \t]*- State")
8880 (condition-case nil
8881 (org-next-item)
8882 (error (org-end-of-item)))))
8884 (defun org-add-log-note (&optional purpose)
8885 "Pop up a window for taking a note, and add this note later at point."
8886 (remove-hook 'post-command-hook 'org-add-log-note)
8887 (setq org-log-note-window-configuration (current-window-configuration))
8888 (delete-other-windows)
8889 (move-marker org-log-note-return-to (point))
8890 (switch-to-buffer (marker-buffer org-log-note-marker))
8891 (goto-char org-log-note-marker)
8892 (org-switch-to-buffer-other-window "*Org Note*")
8893 (erase-buffer)
8894 (if (memq org-log-note-how '(time state))
8895 (org-store-log-note)
8896 (let ((org-inhibit-startup t)) (org-mode))
8897 (insert (format "# Insert note for %s.
8898 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
8899 (cond
8900 ((eq org-log-note-purpose 'clock-out) "stopped clock")
8901 ((eq org-log-note-purpose 'done) "closed todo item")
8902 ((eq org-log-note-purpose 'state)
8903 (format "state change to \"%s\"" org-log-note-state))
8904 ((eq org-log-note-purpose 'note)
8905 "this entry")
8906 (t (error "This should not happen")))))
8907 (org-set-local 'org-finish-function 'org-store-log-note)))
8909 (defvar org-note-abort nil) ; dynamically scoped
8910 (defun org-store-log-note ()
8911 "Finish taking a log note, and insert it to where it belongs."
8912 (let ((txt (buffer-string))
8913 (note (cdr (assq org-log-note-purpose org-log-note-headings)))
8914 lines ind)
8915 (kill-buffer (current-buffer))
8916 (while (string-match "\\`#.*\n[ \t\n]*" txt)
8917 (setq txt (replace-match "" t t txt)))
8918 (if (string-match "\\s-+\\'" txt)
8919 (setq txt (replace-match "" t t txt)))
8920 (setq lines (org-split-string txt "\n"))
8921 (when (and note (string-match "\\S-" note))
8922 (setq note
8923 (org-replace-escapes
8924 note
8925 (list (cons "%u" (user-login-name))
8926 (cons "%U" user-full-name)
8927 (cons "%t" (format-time-string
8928 (org-time-stamp-format 'long 'inactive)
8929 (current-time)))
8930 (cons "%s" (if org-log-note-state
8931 (concat "\"" org-log-note-state "\"")
8932 "")))))
8933 (if lines (setq note (concat note " \\\\")))
8934 (push note lines))
8935 (when (or current-prefix-arg org-note-abort) (setq lines nil))
8936 (when lines
8937 (save-excursion
8938 (set-buffer (marker-buffer org-log-note-marker))
8939 (save-excursion
8940 (goto-char org-log-note-marker)
8941 (move-marker org-log-note-marker nil)
8942 (end-of-line 1)
8943 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
8944 (indent-relative nil)
8945 (insert "- " (pop lines))
8946 (org-indent-line-function)
8947 (beginning-of-line 1)
8948 (looking-at "[ \t]*")
8949 (setq ind (concat (match-string 0) " "))
8950 (end-of-line 1)
8951 (while lines (insert "\n" ind (pop lines)))))))
8952 (set-window-configuration org-log-note-window-configuration)
8953 (with-current-buffer (marker-buffer org-log-note-return-to)
8954 (goto-char org-log-note-return-to))
8955 (move-marker org-log-note-return-to nil)
8956 (and org-log-post-message (message "%s" org-log-post-message)))
8958 (defun org-sparse-tree (&optional arg)
8959 "Create a sparse tree, prompt for the details.
8960 This command can create sparse trees. You first need to select the type
8961 of match used to create the tree:
8963 t Show entries with a specific TODO keyword.
8964 T Show entries selected by a tags match.
8965 p Enter a property name and its value (both with completion on existing
8966 names/values) and show entries with that property.
8967 r Show entries matching a regular expression
8968 d Show deadlines due within `org-deadline-warning-days'."
8969 (interactive "P")
8970 (let (ans kwd value)
8971 (message "Sparse tree: [/]regexp [t]odo-kwd [T]ag [p]roperty [d]eadlines [b]efore-date")
8972 (setq ans (read-char-exclusive))
8973 (cond
8974 ((equal ans ?d)
8975 (call-interactively 'org-check-deadlines))
8976 ((equal ans ?b)
8977 (call-interactively 'org-check-before-date))
8978 ((equal ans ?t)
8979 (org-show-todo-tree '(4)))
8980 ((equal ans ?T)
8981 (call-interactively 'org-tags-sparse-tree))
8982 ((member ans '(?p ?P))
8983 (setq kwd (completing-read "Property: "
8984 (mapcar 'list (org-buffer-property-keys))))
8985 (setq value (completing-read "Value: "
8986 (mapcar 'list (org-property-values kwd))))
8987 (unless (string-match "\\`{.*}\\'" value)
8988 (setq value (concat "\"" value "\"")))
8989 (org-tags-sparse-tree arg (concat kwd "=" value)))
8990 ((member ans '(?r ?R ?/))
8991 (call-interactively 'org-occur))
8992 (t (error "No such sparse tree command \"%c\"" ans)))))
8994 (defvar org-occur-highlights nil
8995 "List of overlays used for occur matches.")
8996 (make-variable-buffer-local 'org-occur-highlights)
8997 (defvar org-occur-parameters nil
8998 "Parameters of the active org-occur calls.
8999 This is a list, each call to org-occur pushes as cons cell,
9000 containing the regular expression and the callback, onto the list.
9001 The list can contain several entries if `org-occur' has been called
9002 several time with the KEEP-PREVIOUS argument. Otherwise, this list
9003 will only contain one set of parameters. When the highlights are
9004 removed (for example with `C-c C-c', or with the next edit (depending
9005 on `org-remove-highlights-with-change'), this variable is emptied
9006 as well.")
9007 (make-variable-buffer-local 'org-occur-parameters)
9009 (defun org-occur (regexp &optional keep-previous callback)
9010 "Make a compact tree which shows all matches of REGEXP.
9011 The tree will show the lines where the regexp matches, and all higher
9012 headlines above the match. It will also show the heading after the match,
9013 to make sure editing the matching entry is easy.
9014 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
9015 call to `org-occur' will be kept, to allow stacking of calls to this
9016 command.
9017 If CALLBACK is non-nil, it is a function which is called to confirm
9018 that the match should indeed be shown."
9019 (interactive "sRegexp: \nP")
9020 (unless keep-previous
9021 (org-remove-occur-highlights nil nil t))
9022 (push (cons regexp callback) org-occur-parameters)
9023 (let ((cnt 0))
9024 (save-excursion
9025 (goto-char (point-min))
9026 (if (or (not keep-previous) ; do not want to keep
9027 (not org-occur-highlights)) ; no previous matches
9028 ;; hide everything
9029 (org-overview))
9030 (while (re-search-forward regexp nil t)
9031 (when (or (not callback)
9032 (save-match-data (funcall callback)))
9033 (setq cnt (1+ cnt))
9034 (when org-highlight-sparse-tree-matches
9035 (org-highlight-new-match (match-beginning 0) (match-end 0)))
9036 (org-show-context 'occur-tree))))
9037 (when org-remove-highlights-with-change
9038 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
9039 nil 'local))
9040 (unless org-sparse-tree-open-archived-trees
9041 (org-hide-archived-subtrees (point-min) (point-max)))
9042 (run-hooks 'org-occur-hook)
9043 (if (interactive-p)
9044 (message "%d match(es) for regexp %s" cnt regexp))
9045 cnt))
9047 (defun org-show-context (&optional key)
9048 "Make sure point and context and visible.
9049 How much context is shown depends upon the variables
9050 `org-show-hierarchy-above', `org-show-following-heading'. and
9051 `org-show-siblings'."
9052 (let ((heading-p (org-on-heading-p t))
9053 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
9054 (following-p (org-get-alist-option org-show-following-heading key))
9055 (entry-p (org-get-alist-option org-show-entry-below key))
9056 (siblings-p (org-get-alist-option org-show-siblings key)))
9057 (catch 'exit
9058 ;; Show heading or entry text
9059 (if (and heading-p (not entry-p))
9060 (org-flag-heading nil) ; only show the heading
9061 (and (or entry-p (org-invisible-p) (org-invisible-p2))
9062 (org-show-hidden-entry))) ; show entire entry
9063 (when following-p
9064 ;; Show next sibling, or heading below text
9065 (save-excursion
9066 (and (if heading-p (org-goto-sibling) (outline-next-heading))
9067 (org-flag-heading nil))))
9068 (when siblings-p (org-show-siblings))
9069 (when hierarchy-p
9070 ;; show all higher headings, possibly with siblings
9071 (save-excursion
9072 (while (and (condition-case nil
9073 (progn (org-up-heading-all 1) t)
9074 (error nil))
9075 (not (bobp)))
9076 (org-flag-heading nil)
9077 (when siblings-p (org-show-siblings))))))))
9079 (defun org-reveal (&optional siblings)
9080 "Show current entry, hierarchy above it, and the following headline.
9081 This can be used to show a consistent set of context around locations
9082 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
9083 not t for the search context.
9085 With optional argument SIBLINGS, on each level of the hierarchy all
9086 siblings are shown. This repairs the tree structure to what it would
9087 look like when opened with hierarchical calls to `org-cycle'."
9088 (interactive "P")
9089 (let ((org-show-hierarchy-above t)
9090 (org-show-following-heading t)
9091 (org-show-siblings (if siblings t org-show-siblings)))
9092 (org-show-context nil)))
9094 (defun org-highlight-new-match (beg end)
9095 "Highlight from BEG to END and mark the highlight is an occur headline."
9096 (let ((ov (org-make-overlay beg end)))
9097 (org-overlay-put ov 'face 'secondary-selection)
9098 (push ov org-occur-highlights)))
9100 (defun org-remove-occur-highlights (&optional beg end noremove)
9101 "Remove the occur highlights from the buffer.
9102 BEG and END are ignored. If NOREMOVE is nil, remove this function
9103 from the `before-change-functions' in the current buffer."
9104 (interactive)
9105 (unless org-inhibit-highlight-removal
9106 (mapc 'org-delete-overlay org-occur-highlights)
9107 (setq org-occur-highlights nil)
9108 (setq org-occur-parameters nil)
9109 (unless noremove
9110 (remove-hook 'before-change-functions
9111 'org-remove-occur-highlights 'local))))
9113 ;;;; Priorities
9115 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
9116 "Regular expression matching the priority indicator.")
9118 (defvar org-remove-priority-next-time nil)
9120 (defun org-priority-up ()
9121 "Increase the priority of the current item."
9122 (interactive)
9123 (org-priority 'up))
9125 (defun org-priority-down ()
9126 "Decrease the priority of the current item."
9127 (interactive)
9128 (org-priority 'down))
9130 (defun org-priority (&optional action)
9131 "Change the priority of an item by ARG.
9132 ACTION can be `set', `up', `down', or a character."
9133 (interactive)
9134 (setq action (or action 'set))
9135 (let (current new news have remove)
9136 (save-excursion
9137 (org-back-to-heading)
9138 (if (looking-at org-priority-regexp)
9139 (setq current (string-to-char (match-string 2))
9140 have t)
9141 (setq current org-default-priority))
9142 (cond
9143 ((or (eq action 'set)
9144 (if (featurep 'xemacs) (characterp action) (integerp action)))
9145 (if (not (eq action 'set))
9146 (setq new action)
9147 (message "Priority %c-%c, SPC to remove: "
9148 org-highest-priority org-lowest-priority)
9149 (setq new (read-char-exclusive)))
9150 (if (and (= (upcase org-highest-priority) org-highest-priority)
9151 (= (upcase org-lowest-priority) org-lowest-priority))
9152 (setq new (upcase new)))
9153 (cond ((equal new ?\ ) (setq remove t))
9154 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
9155 (error "Priority must be between `%c' and `%c'"
9156 org-highest-priority org-lowest-priority))))
9157 ((eq action 'up)
9158 (if (and (not have) (eq last-command this-command))
9159 (setq new org-lowest-priority)
9160 (setq new (if (and org-priority-start-cycle-with-default (not have))
9161 org-default-priority (1- current)))))
9162 ((eq action 'down)
9163 (if (and (not have) (eq last-command this-command))
9164 (setq new org-highest-priority)
9165 (setq new (if (and org-priority-start-cycle-with-default (not have))
9166 org-default-priority (1+ current)))))
9167 (t (error "Invalid action")))
9168 (if (or (< (upcase new) org-highest-priority)
9169 (> (upcase new) org-lowest-priority))
9170 (setq remove t))
9171 (setq news (format "%c" new))
9172 (if have
9173 (if remove
9174 (replace-match "" t t nil 1)
9175 (replace-match news t t nil 2))
9176 (if remove
9177 (error "No priority cookie found in line")
9178 (looking-at org-todo-line-regexp)
9179 (if (match-end 2)
9180 (progn
9181 (goto-char (match-end 2))
9182 (insert " [#" news "]"))
9183 (goto-char (match-beginning 3))
9184 (insert "[#" news "] ")))))
9185 (org-preserve-lc (org-set-tags nil 'align))
9186 (if remove
9187 (message "Priority removed")
9188 (message "Priority of current item set to %s" news))))
9191 (defun org-get-priority (s)
9192 "Find priority cookie and return priority."
9193 (save-match-data
9194 (if (not (string-match org-priority-regexp s))
9195 (* 1000 (- org-lowest-priority org-default-priority))
9196 (* 1000 (- org-lowest-priority
9197 (string-to-char (match-string 2 s)))))))
9199 ;;;; Tags
9201 (defun org-scan-tags (action matcher &optional todo-only)
9202 "Scan headline tags with inheritance and produce output ACTION.
9204 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
9205 or `agenda' to produce an entry list for an agenda view. It can also be
9206 a Lisp form or a function that should be called at each matched headline, in
9207 this case the return value is a list of all return values from these calls.
9209 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
9210 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
9211 only lines with a TODO keyword are included in the output."
9212 (let* ((re (concat "[\n\r]" outline-regexp " *\\(\\<\\("
9213 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
9214 (org-re
9215 "\\>\\)\\)? *\\(.*?\\)\\(:[[:alnum:]_@:]+:\\)?[ \t]*$")))
9216 (props (list 'face nil
9217 'done-face 'org-done
9218 'undone-face nil
9219 'mouse-face 'highlight
9220 'org-not-done-regexp org-not-done-regexp
9221 'org-todo-regexp org-todo-regexp
9222 'keymap org-agenda-keymap
9223 'help-echo
9224 (format "mouse-2 or RET jump to org file %s"
9225 (abbreviate-file-name
9226 (or (buffer-file-name (buffer-base-buffer))
9227 (buffer-name (buffer-base-buffer)))))))
9228 (case-fold-search nil)
9229 lspos tags tags-list
9230 (tags-alist (list (cons 0 (mapcar 'downcase org-file-tags))))
9231 (llast 0) rtn rtn1 level category i txt
9232 todo marker entry priority)
9233 (when (not (member action '(agenda sparse-tree)))
9234 (setq action (list 'lambda nil action)))
9235 (save-excursion
9236 (goto-char (point-min))
9237 (when (eq action 'sparse-tree)
9238 (org-overview)
9239 (org-remove-occur-highlights))
9240 (while (re-search-forward re nil t)
9241 (catch :skip
9242 (setq todo (if (match-end 1) (match-string 2))
9243 tags (if (match-end 4) (match-string 4)))
9244 (goto-char (setq lspos (1+ (match-beginning 0))))
9245 (setq level (org-reduced-level (funcall outline-level))
9246 category (org-get-category))
9247 (setq i llast llast level)
9248 ;; remove tag lists from same and sublevels
9249 (while (>= i level)
9250 (when (setq entry (assoc i tags-alist))
9251 (setq tags-alist (delete entry tags-alist)))
9252 (setq i (1- i)))
9253 ;; add the next tags
9254 (when tags
9255 (setq tags (mapcar 'downcase (org-split-string tags ":"))
9256 tags-alist
9257 (cons (cons level tags) tags-alist)))
9258 ;; compile tags for current headline
9259 (setq tags-list
9260 (if org-use-tag-inheritance
9261 (apply 'append (mapcar 'cdr tags-alist))
9262 tags))
9263 (when (and tags org-use-tag-inheritance
9264 (not (eq t org-use-tag-inheritance)))
9265 ;; selective inheritance, remove uninherited ones
9266 (setcdr (car tags-alist)
9267 (org-remove-uniherited-tags (cdar tags-alist))))
9268 (when (and (or (not todo-only) (member todo org-not-done-keywords))
9269 (eval matcher)
9270 (or (not org-agenda-skip-archived-trees)
9271 (not (member org-archive-tag tags-list))))
9272 (unless (eq action 'sparse-tree) (org-agenda-skip))
9274 ;; select this headline
9276 (cond
9277 ((eq action 'sparse-tree)
9278 (and org-highlight-sparse-tree-matches
9279 (org-get-heading) (match-end 0)
9280 (org-highlight-new-match
9281 (match-beginning 0) (match-beginning 1)))
9282 (org-show-context 'tags-tree))
9283 ((eq action 'agenda)
9284 (setq txt (org-format-agenda-item
9286 (concat
9287 (if org-tags-match-list-sublevels
9288 (make-string (1- level) ?.) "")
9289 (org-get-heading))
9290 category tags-list)
9291 priority (org-get-priority txt))
9292 (goto-char lspos)
9293 (setq marker (org-agenda-new-marker))
9294 (org-add-props txt props
9295 'org-marker marker 'org-hd-marker marker 'org-category category
9296 'priority priority 'type "tagsmatch")
9297 (push txt rtn))
9298 ((functionp action)
9299 (save-excursion
9300 (setq rtn1 (funcall action))
9301 (push rtn1 rtn))
9302 (goto-char (point-at-eol)))
9303 (t (error "Invalid action")))
9305 ;; if we are to skip sublevels, jump to end of subtree
9306 (or org-tags-match-list-sublevels (org-end-of-subtree t))))))
9307 (when (and (eq action 'sparse-tree)
9308 (not org-sparse-tree-open-archived-trees))
9309 (org-hide-archived-subtrees (point-min) (point-max)))
9310 (nreverse rtn)))
9312 (defun org-remove-uniherited-tags (tags)
9313 "Remove all tags that are not inherited from the list TAGS."
9314 (cond
9315 ((eq org-use-tag-inheritance t) tags)
9316 ((not org-use-tag-inheritance) nil)
9317 ((stringp org-use-tag-inheritance)
9318 (delq nil (mapcar
9319 (lambda (x) (if (string-match org-use-tag-inheritance x) x nil))
9320 tags)))
9321 ((listp org-use-tag-inheritance)
9322 (org-delete-all org-use-tag-inheritance tags))))
9324 (defvar todo-only) ;; dynamically scoped
9326 (defun org-tags-sparse-tree (&optional todo-only match)
9327 "Create a sparse tree according to tags string MATCH.
9328 MATCH can contain positive and negative selection of tags, like
9329 \"+WORK+URGENT-WITHBOSS\".
9330 If optional argument TODO_ONLY is non-nil, only select lines that are
9331 also TODO lines."
9332 (interactive "P")
9333 (org-prepare-agenda-buffers (list (current-buffer)))
9334 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
9336 (defvar org-cached-props nil)
9337 (defun org-cached-entry-get (pom property)
9338 (if (or (eq t org-use-property-inheritance)
9339 (and (stringp org-use-property-inheritance)
9340 (string-match org-use-property-inheritance property))
9341 (and (listp org-use-property-inheritance)
9342 (member property org-use-property-inheritance)))
9343 ;; Caching is not possible, check it directly
9344 (org-entry-get pom property 'inherit)
9345 ;; Get all properties, so that we can do complicated checks easily
9346 (cdr (assoc property (or org-cached-props
9347 (setq org-cached-props
9348 (org-entry-properties pom)))))))
9350 (defun org-global-tags-completion-table (&optional files)
9351 "Return the list of all tags in all agenda buffer/files."
9352 (save-excursion
9353 (org-uniquify
9354 (delq nil
9355 (apply 'append
9356 (mapcar
9357 (lambda (file)
9358 (set-buffer (find-file-noselect file))
9359 (append (org-get-buffer-tags)
9360 (mapcar (lambda (x) (if (stringp (car-safe x))
9361 (list (car-safe x)) nil))
9362 org-tag-alist)))
9363 (if (and files (car files))
9364 files
9365 (org-agenda-files))))))))
9367 (defun org-make-tags-matcher (match)
9368 "Create the TAGS//TODO matcher form for the selection string MATCH."
9369 ;; todo-only is scoped dynamically into this function, and the function
9370 ;; may change it it the matcher asksk for it.
9371 (unless match
9372 ;; Get a new match request, with completion
9373 (let ((org-last-tags-completion-table
9374 (org-global-tags-completion-table)))
9375 (setq match (completing-read
9376 "Match: " 'org-tags-completion-function nil nil nil
9377 'org-tags-history))))
9379 ;; Parse the string and create a lisp form
9380 (let ((match0 match)
9381 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\([[:alnum:]_]+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@]+\\)"))
9382 minus tag mm
9383 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
9384 orterms term orlist re-p str-p level-p level-op
9385 prop-p pn pv po cat-p gv)
9386 (if (string-match "/+" match)
9387 ;; match contains also a todo-matching request
9388 (progn
9389 (setq tagsmatch (substring match 0 (match-beginning 0))
9390 todomatch (substring match (match-end 0)))
9391 (if (string-match "^!" todomatch)
9392 (setq todo-only t todomatch (substring todomatch 1)))
9393 (if (string-match "^\\s-*$" todomatch)
9394 (setq todomatch nil)))
9395 ;; only matching tags
9396 (setq tagsmatch match todomatch nil))
9398 ;; Make the tags matcher
9399 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
9400 (setq tagsmatcher t)
9401 (setq orterms (org-split-string tagsmatch "|") orlist nil)
9402 (while (setq term (pop orterms))
9403 (while (and (equal (substring term -1) "\\") orterms)
9404 (setq term (concat term "|" (pop orterms)))) ; repair bad split
9405 (while (string-match re term)
9406 (setq minus (and (match-end 1)
9407 (equal (match-string 1 term) "-"))
9408 tag (match-string 2 term)
9409 re-p (equal (string-to-char tag) ?{)
9410 level-p (match-end 4)
9411 prop-p (match-end 5)
9412 mm (cond
9413 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
9414 (level-p
9415 (setq level-op (org-op-to-function (match-string 3 term)))
9416 `(,level-op level ,(string-to-number
9417 (match-string 4 term))))
9418 (prop-p
9419 (setq pn (match-string 5 term)
9420 po (match-string 6 term)
9421 pv (match-string 7 term)
9422 cat-p (equal pn "CATEGORY")
9423 re-p (equal (string-to-char pv) ?{)
9424 str-p (equal (string-to-char pv) ?\")
9425 pv (if (or re-p str-p) (substring pv 1 -1) pv))
9426 (setq po (org-op-to-function po str-p))
9427 (if (equal pn "CATEGORY")
9428 (setq gv '(get-text-property (point) 'org-category))
9429 (setq gv `(org-cached-entry-get nil ,pn)))
9430 (if re-p
9431 (if (eq po 'org<>)
9432 `(not (string-match ,pv (or ,gv "")))
9433 `(string-match ,pv (or ,gv "")))
9434 (if str-p
9435 `(,po (or ,gv "") ,pv)
9436 `(,po (string-to-number (or ,gv ""))
9437 ,(string-to-number pv) ))))
9438 (t `(member ,(downcase tag) tags-list)))
9439 mm (if minus (list 'not mm) mm)
9440 term (substring term (match-end 0)))
9441 (push mm tagsmatcher))
9442 (push (if (> (length tagsmatcher) 1)
9443 (cons 'and tagsmatcher)
9444 (car tagsmatcher))
9445 orlist)
9446 (setq tagsmatcher nil))
9447 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
9448 (setq tagsmatcher
9449 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
9450 ;; Make the todo matcher
9451 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
9452 (setq todomatcher t)
9453 (setq orterms (org-split-string todomatch "|") orlist nil)
9454 (while (setq term (pop orterms))
9455 (while (string-match re term)
9456 (setq minus (and (match-end 1)
9457 (equal (match-string 1 term) "-"))
9458 kwd (match-string 2 term)
9459 re-p (equal (string-to-char kwd) ?{)
9460 term (substring term (match-end 0))
9461 mm (if re-p
9462 `(string-match ,(substring kwd 1 -1) todo)
9463 (list 'equal 'todo kwd))
9464 mm (if minus (list 'not mm) mm))
9465 (push mm todomatcher))
9466 (push (if (> (length todomatcher) 1)
9467 (cons 'and todomatcher)
9468 (car todomatcher))
9469 orlist)
9470 (setq todomatcher nil))
9471 (setq todomatcher (if (> (length orlist) 1)
9472 (cons 'or orlist) (car orlist))))
9474 ;; Return the string and lisp forms of the matcher
9475 (setq matcher (if todomatcher
9476 (list 'and tagsmatcher todomatcher)
9477 tagsmatcher))
9478 (cons match0 matcher)))
9480 (defun org-op-to-function (op &optional stringp)
9481 (setq op
9482 (cond
9483 ((equal op "<" ) '(< string< ))
9484 ((equal op ">" ) '(> org-string> ))
9485 ((member op '("<=" "=<")) '(<= org-string<= ))
9486 ((member op '(">=" "=>")) '(>= org-string>= ))
9487 ((member op '("=" "==")) '(= string= ))
9488 ((member op '("<>" "!=")) '(org<> org-string<> ))))
9489 (nth (if stringp 1 0) op))
9491 (defun org<> (a b) (not (= a b)))
9492 (defun org-string<= (a b) (or (string= a b) (string< a b)))
9493 (defun org-string>= (a b) (not (string< a b)))
9494 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
9495 (defun org-string<> (a b) (not (string= a b)))
9497 (defun org-match-any-p (re list)
9498 "Does re match any element of list?"
9499 (setq list (mapcar (lambda (x) (string-match re x)) list))
9500 (delq nil list))
9502 (defvar org-add-colon-after-tag-completion nil) ;; dynamically skoped param
9503 (defvar org-tags-overlay (org-make-overlay 1 1))
9504 (org-detach-overlay org-tags-overlay)
9506 (defun org-get-tags-at (&optional pos)
9507 "Get a list of all headline tags applicable at POS.
9508 POS defaults to point. If tags are inherited, the list contains
9509 the targets in the same sequence as the headlines appear, i.e.
9510 the tags of the current headline come last."
9511 (interactive)
9512 (let (tags ltags lastpos parent)
9513 (save-excursion
9514 (save-restriction
9515 (widen)
9516 (goto-char (or pos (point)))
9517 (save-match-data
9518 (condition-case nil
9519 (progn
9520 (org-back-to-heading t)
9521 (while (not (equal lastpos (point)))
9522 (setq lastpos (point))
9523 (when (looking-at (org-re "[^\r\n]+?:\\([[:alnum:]_@:]+\\):[ \t]*$"))
9524 (setq ltags (org-split-string
9525 (org-match-string-no-properties 1) ":"))
9526 (setq tags (append (org-remove-uniherited-tags ltags)
9527 tags)))
9528 (or org-use-tag-inheritance (error ""))
9529 (org-up-heading-all 1)
9530 (setq parent t)))
9531 (error nil))))
9532 (append (org-remove-uniherited-tags org-file-tags) tags))))
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 (unless (org-on-heading-p t) (error "Not on headling"))
9538 (let (res current)
9539 (save-excursion
9540 (beginning-of-line)
9541 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@:]+\\):[ \t]*$")
9542 (point-at-eol) t)
9543 (progn
9544 (setq current (match-string 1))
9545 (replace-match ""))
9546 (setq current ""))
9547 (setq current (nreverse (org-split-string current ":")))
9548 (cond
9549 ((eq onoff 'on)
9550 (setq res t)
9551 (or (member tag current) (push tag current)))
9552 ((eq onoff 'off)
9553 (or (not (member tag current)) (setq current (delete tag current))))
9554 (t (if (member tag current)
9555 (setq current (delete tag current))
9556 (setq res t)
9557 (push tag current))))
9558 (end-of-line 1)
9559 (if current
9560 (progn
9561 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
9562 (org-set-tags nil t))
9563 (delete-horizontal-space))
9564 (run-hooks 'org-after-tags-change-hook))
9565 res))
9567 (defun org-align-tags-here (to-col)
9568 ;; Assumes that this is a headline
9569 (let ((pos (point)) (col (current-column)) ncol tags-l p)
9570 (beginning-of-line 1)
9571 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@:]+:\\)[ \t]*$"))
9572 (< pos (match-beginning 2)))
9573 (progn
9574 (setq tags-l (- (match-end 2) (match-beginning 2)))
9575 (goto-char (match-beginning 1))
9576 (insert " ")
9577 (delete-region (point) (1+ (match-beginning 2)))
9578 (setq ncol (max (1+ (current-column))
9579 (1+ col)
9580 (if (> to-col 0)
9581 to-col
9582 (- (abs to-col) tags-l))))
9583 (setq p (point))
9584 (insert (make-string (- ncol (current-column)) ?\ ))
9585 (setq ncol (current-column))
9586 (when indent-tabs-mode (tabify p (point-at-eol)))
9587 (org-move-to-column (min ncol col) t))
9588 (goto-char pos))))
9590 (defun org-set-tags (&optional arg just-align)
9591 "Set the tags for the current headline.
9592 With prefix ARG, realign all tags in headings in the current buffer."
9593 (interactive "P")
9594 (let* ((re (concat "^" outline-regexp))
9595 (current (org-get-tags-string))
9596 (col (current-column))
9597 (org-setting-tags t)
9598 table current-tags inherited-tags ; computed below when needed
9599 tags p0 c0 c1 rpl)
9600 (if arg
9601 (save-excursion
9602 (goto-char (point-min))
9603 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
9604 (while (re-search-forward re nil t)
9605 (org-set-tags nil t)
9606 (end-of-line 1)))
9607 (message "All tags realigned to column %d" org-tags-column))
9608 (if just-align
9609 (setq tags current)
9610 ;; Get a new set of tags from the user
9611 (save-excursion
9612 (setq table (or org-tag-alist (org-get-buffer-tags))
9613 org-last-tags-completion-table table
9614 current-tags (org-split-string current ":")
9615 inherited-tags (nreverse
9616 (nthcdr (length current-tags)
9617 (nreverse (org-get-tags-at))))
9618 tags
9619 (if (or (eq t org-use-fast-tag-selection)
9620 (and org-use-fast-tag-selection
9621 (delq nil (mapcar 'cdr table))))
9622 (org-fast-tag-selection
9623 current-tags inherited-tags table
9624 (if org-fast-tag-selection-include-todo org-todo-key-alist))
9625 (let ((org-add-colon-after-tag-completion t))
9626 (org-trim
9627 (org-without-partial-completion
9628 (completing-read "Tags: " 'org-tags-completion-function
9629 nil nil current 'org-tags-history)))))))
9630 (while (string-match "[-+&]+" tags)
9631 ;; No boolean logic, just a list
9632 (setq tags (replace-match ":" t t tags))))
9634 (if (string-match "\\`[\t ]*\\'" tags)
9635 (setq tags "")
9636 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
9637 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
9639 ;; Insert new tags at the correct column
9640 (beginning-of-line 1)
9641 (cond
9642 ((and (equal current "") (equal tags "")))
9643 ((re-search-forward
9644 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
9645 (point-at-eol) t)
9646 (if (equal tags "")
9647 (setq rpl "")
9648 (goto-char (match-beginning 0))
9649 (setq c0 (current-column) p0 (point)
9650 c1 (max (1+ c0) (if (> org-tags-column 0)
9651 org-tags-column
9652 (- (- org-tags-column) (length tags))))
9653 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
9654 (replace-match rpl t t)
9655 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
9656 tags)
9657 (t (error "Tags alignment failed")))
9658 (org-move-to-column col)
9659 (unless just-align
9660 (run-hooks 'org-after-tags-change-hook)))))
9662 (defun org-change-tag-in-region (beg end tag off)
9663 "Add or remove TAG for each entry in the region.
9664 This works in the agenda, and also in an org-mode buffer."
9665 (interactive
9666 (list (region-beginning) (region-end)
9667 (let ((org-last-tags-completion-table
9668 (if (org-mode-p)
9669 (org-get-buffer-tags)
9670 (org-global-tags-completion-table))))
9671 (completing-read
9672 "Tag: " 'org-tags-completion-function nil nil nil
9673 'org-tags-history))
9674 (progn
9675 (message "[s]et or [r]emove? ")
9676 (equal (read-char-exclusive) ?r))))
9677 (if (fboundp 'deactivate-mark) (deactivate-mark))
9678 (let ((agendap (equal major-mode 'org-agenda-mode))
9679 l1 l2 m buf pos newhead (cnt 0))
9680 (goto-char end)
9681 (setq l2 (1- (org-current-line)))
9682 (goto-char beg)
9683 (setq l1 (org-current-line))
9684 (loop for l from l1 to l2 do
9685 (goto-line l)
9686 (setq m (get-text-property (point) 'org-hd-marker))
9687 (when (or (and (org-mode-p) (org-on-heading-p))
9688 (and agendap m))
9689 (setq buf (if agendap (marker-buffer m) (current-buffer))
9690 pos (if agendap m (point)))
9691 (with-current-buffer buf
9692 (save-excursion
9693 (save-restriction
9694 (goto-char pos)
9695 (setq cnt (1+ cnt))
9696 (org-toggle-tag tag (if off 'off 'on))
9697 (setq newhead (org-get-heading)))))
9698 (and agendap (org-agenda-change-all-lines newhead m))))
9699 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
9701 (defun org-tags-completion-function (string predicate &optional flag)
9702 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
9703 (confirm (lambda (x) (stringp (car x)))))
9704 (if (string-match "^\\(.*[-+:&|]\\)\\([^-+:&|]*\\)$" string)
9705 (setq s1 (match-string 1 string)
9706 s2 (match-string 2 string))
9707 (setq s1 "" s2 string))
9708 (cond
9709 ((eq flag nil)
9710 ;; try completion
9711 (setq rtn (try-completion s2 ctable confirm))
9712 (if (stringp rtn)
9713 (setq rtn
9714 (concat s1 s2 (substring rtn (length s2))
9715 (if (and org-add-colon-after-tag-completion
9716 (assoc rtn ctable))
9717 ":" ""))))
9718 rtn)
9719 ((eq flag t)
9720 ;; all-completions
9721 (all-completions s2 ctable confirm)
9723 ((eq flag 'lambda)
9724 ;; exact match?
9725 (assoc s2 ctable)))
9728 (defun org-fast-tag-insert (kwd tags face &optional end)
9729 "Insert KDW, and the TAGS, the latter with face FACE. Also inser END."
9730 (insert (format "%-12s" (concat kwd ":"))
9731 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
9732 (or end "")))
9734 (defun org-fast-tag-show-exit (flag)
9735 (save-excursion
9736 (goto-line 3)
9737 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
9738 (replace-match ""))
9739 (when flag
9740 (end-of-line 1)
9741 (org-move-to-column (- (window-width) 19) t)
9742 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
9744 (defun org-set-current-tags-overlay (current prefix)
9745 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
9746 (if (featurep 'xemacs)
9747 (org-overlay-display org-tags-overlay (concat prefix s)
9748 'secondary-selection)
9749 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
9750 (org-overlay-display org-tags-overlay (concat prefix s)))))
9752 (defun org-fast-tag-selection (current inherited table &optional todo-table)
9753 "Fast tag selection with single keys.
9754 CURRENT is the current list of tags in the headline, INHERITED is the
9755 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
9756 possibly with grouping information. TODO-TABLE is a similar table with
9757 TODO keywords, should these have keys assigned to them.
9758 If the keys are nil, a-z are automatically assigned.
9759 Returns the new tags string, or nil to not change the current settings."
9760 (let* ((fulltable (append table todo-table))
9761 (maxlen (apply 'max (mapcar
9762 (lambda (x)
9763 (if (stringp (car x)) (string-width (car x)) 0))
9764 fulltable)))
9765 (buf (current-buffer))
9766 (expert (eq org-fast-tag-selection-single-key 'expert))
9767 (buffer-tags nil)
9768 (fwidth (+ maxlen 3 1 3))
9769 (ncol (/ (- (window-width) 4) fwidth))
9770 (i-face 'org-done)
9771 (c-face 'org-todo)
9772 tg cnt e c char c1 c2 ntable tbl rtn
9773 ov-start ov-end ov-prefix
9774 (exit-after-next org-fast-tag-selection-single-key)
9775 (done-keywords org-done-keywords)
9776 groups ingroup)
9777 (save-excursion
9778 (beginning-of-line 1)
9779 (if (looking-at
9780 (org-re ".*[ \t]\\(:[[:alnum:]_@:]+:\\)[ \t]*$"))
9781 (setq ov-start (match-beginning 1)
9782 ov-end (match-end 1)
9783 ov-prefix "")
9784 (setq ov-start (1- (point-at-eol))
9785 ov-end (1+ ov-start))
9786 (skip-chars-forward "^\n\r")
9787 (setq ov-prefix
9788 (concat
9789 (buffer-substring (1- (point)) (point))
9790 (if (> (current-column) org-tags-column)
9792 (make-string (- org-tags-column (current-column)) ?\ ))))))
9793 (org-move-overlay org-tags-overlay ov-start ov-end)
9794 (save-window-excursion
9795 (if expert
9796 (set-buffer (get-buffer-create " *Org tags*"))
9797 (delete-other-windows)
9798 (split-window-vertically)
9799 (org-switch-to-buffer-other-window (get-buffer-create " *Org tags*")))
9800 (erase-buffer)
9801 (org-set-local 'org-done-keywords done-keywords)
9802 (org-fast-tag-insert "Inherited" inherited i-face "\n")
9803 (org-fast-tag-insert "Current" current c-face "\n\n")
9804 (org-fast-tag-show-exit exit-after-next)
9805 (org-set-current-tags-overlay current ov-prefix)
9806 (setq tbl fulltable char ?a cnt 0)
9807 (while (setq e (pop tbl))
9808 (cond
9809 ((equal e '(:startgroup))
9810 (push '() groups) (setq ingroup t)
9811 (when (not (= cnt 0))
9812 (setq cnt 0)
9813 (insert "\n"))
9814 (insert "{ "))
9815 ((equal e '(:endgroup))
9816 (setq ingroup nil cnt 0)
9817 (insert "}\n"))
9819 (setq tg (car e) c2 nil)
9820 (if (cdr e)
9821 (setq c (cdr e))
9822 ;; automatically assign a character.
9823 (setq c1 (string-to-char
9824 (downcase (substring
9825 tg (if (= (string-to-char tg) ?@) 1 0)))))
9826 (if (or (rassoc c1 ntable) (rassoc c1 table))
9827 (while (or (rassoc char ntable) (rassoc char table))
9828 (setq char (1+ char)))
9829 (setq c2 c1))
9830 (setq c (or c2 char)))
9831 (if ingroup (push tg (car groups)))
9832 (setq tg (org-add-props tg nil 'face
9833 (cond
9834 ((not (assoc tg table))
9835 (org-get-todo-face tg))
9836 ((member tg current) c-face)
9837 ((member tg inherited) i-face)
9838 (t nil))))
9839 (if (and (= cnt 0) (not ingroup)) (insert " "))
9840 (insert "[" c "] " tg (make-string
9841 (- fwidth 4 (length tg)) ?\ ))
9842 (push (cons tg c) ntable)
9843 (when (= (setq cnt (1+ cnt)) ncol)
9844 (insert "\n")
9845 (if ingroup (insert " "))
9846 (setq cnt 0)))))
9847 (setq ntable (nreverse ntable))
9848 (insert "\n")
9849 (goto-char (point-min))
9850 (if (and (not expert) (fboundp 'fit-window-to-buffer))
9851 (fit-window-to-buffer))
9852 (setq rtn
9853 (catch 'exit
9854 (while t
9855 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free%s%s"
9856 (if groups " [!] no groups" " [!]groups")
9857 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
9858 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
9859 (cond
9860 ((= c ?\r) (throw 'exit t))
9861 ((= c ?!)
9862 (setq groups (not groups))
9863 (goto-char (point-min))
9864 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
9865 ((= c ?\C-c)
9866 (if (not expert)
9867 (org-fast-tag-show-exit
9868 (setq exit-after-next (not exit-after-next)))
9869 (setq expert nil)
9870 (delete-other-windows)
9871 (split-window-vertically)
9872 (org-switch-to-buffer-other-window " *Org tags*")
9873 (and (fboundp 'fit-window-to-buffer)
9874 (fit-window-to-buffer))))
9875 ((or (= c ?\C-g)
9876 (and (= c ?q) (not (rassoc c ntable))))
9877 (org-detach-overlay org-tags-overlay)
9878 (setq quit-flag t))
9879 ((= c ?\ )
9880 (setq current nil)
9881 (if exit-after-next (setq exit-after-next 'now)))
9882 ((= c ?\t)
9883 (condition-case nil
9884 (setq tg (completing-read
9885 "Tag: "
9886 (or buffer-tags
9887 (with-current-buffer buf
9888 (org-get-buffer-tags)))))
9889 (quit (setq tg "")))
9890 (when (string-match "\\S-" tg)
9891 (add-to-list 'buffer-tags (list tg))
9892 (if (member tg current)
9893 (setq current (delete tg current))
9894 (push tg current)))
9895 (if exit-after-next (setq exit-after-next 'now)))
9896 ((setq e (rassoc c todo-table) tg (car e))
9897 (with-current-buffer buf
9898 (save-excursion (org-todo tg)))
9899 (if exit-after-next (setq exit-after-next 'now)))
9900 ((setq e (rassoc c ntable) tg (car e))
9901 (if (member tg current)
9902 (setq current (delete tg current))
9903 (loop for g in groups do
9904 (if (member tg g)
9905 (mapc (lambda (x)
9906 (setq current (delete x current)))
9907 g)))
9908 (push tg current))
9909 (if exit-after-next (setq exit-after-next 'now))))
9911 ;; Create a sorted list
9912 (setq current
9913 (sort current
9914 (lambda (a b)
9915 (assoc b (cdr (memq (assoc a ntable) ntable))))))
9916 (if (eq exit-after-next 'now) (throw 'exit t))
9917 (goto-char (point-min))
9918 (beginning-of-line 2)
9919 (delete-region (point) (point-at-eol))
9920 (org-fast-tag-insert "Current" current c-face)
9921 (org-set-current-tags-overlay current ov-prefix)
9922 (while (re-search-forward
9923 (org-re "\\[.\\] \\([[:alnum:]_@]+\\)") nil t)
9924 (setq tg (match-string 1))
9925 (add-text-properties
9926 (match-beginning 1) (match-end 1)
9927 (list 'face
9928 (cond
9929 ((member tg current) c-face)
9930 ((member tg inherited) i-face)
9931 (t (get-text-property (match-beginning 1) 'face))))))
9932 (goto-char (point-min)))))
9933 (org-detach-overlay org-tags-overlay)
9934 (if rtn
9935 (mapconcat 'identity current ":")
9936 nil))))
9938 (defun org-get-tags-string ()
9939 "Get the TAGS string in the current headline."
9940 (unless (org-on-heading-p t)
9941 (error "Not on a heading"))
9942 (save-excursion
9943 (beginning-of-line 1)
9944 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@:]+:\\)[ \t]*$"))
9945 (org-match-string-no-properties 1)
9946 "")))
9948 (defun org-get-tags ()
9949 "Get the list of tags specified in the current headline."
9950 (org-split-string (org-get-tags-string) ":"))
9952 (defun org-get-buffer-tags ()
9953 "Get a table of all tags used in the buffer, for completion."
9954 (let (tags)
9955 (save-excursion
9956 (goto-char (point-min))
9957 (while (re-search-forward
9958 (org-re "[ \t]:\\([[:alnum:]_@:]+\\):[ \t\r\n]") nil t)
9959 (when (equal (char-after (point-at-bol 0)) ?*)
9960 (mapc (lambda (x) (add-to-list 'tags x))
9961 (org-split-string (org-match-string-no-properties 1) ":")))))
9962 (mapcar 'list tags)))
9964 ;;;; The mapping API
9966 ;;;###autoload
9967 (defun org-map-entries (func &optional match scope &rest skip)
9968 "Call FUNC at each headline selected by MATCH in SCOPE.
9970 FUNC is a function or a lisp form. The function will be called without
9971 arguments, with the cursor positioned at the beginning of the headline.
9972 The return values of all calls to the function will be collected and
9973 returned as a list.
9975 MATCH is a tags/property/todo match as it is used in the agenda tags view.
9976 Only headlines that are matched by this query will be considered during
9977 the iteration. When MATCH is nil or t, all headlines will be
9978 visited by the iteration.
9980 SCOPE determines the scope of this command. It can be any of:
9982 nil The current buffer, respecting the restriction if any
9983 tree The subtree started with the entry at point
9984 file The current buffer, without restriction
9985 file-with-archives
9986 The current buffer, and any archives associated with it
9987 agenda All agenda files
9988 agenda-with-archives
9989 All agenda files with any archive files associated with them
9990 \(file1 file2 ...)
9991 If this is a list, all files in the list will be scanned
9993 The remaining args are treated as settings for the skipping facilities of
9994 the scanner. The following items can be given here:
9996 archive skip trees with the archive tag.
9997 comment skip trees with the COMMENT keyword
9998 function or Emacs Lisp form:
9999 will be used as value for `org-agenda-skip-function', so whenever
10000 the the function returns t, FUNC will not be called for that
10001 entry and search will continue from the point where the
10002 function leaves it."
10003 (let* ((org-agenda-skip-archived-trees (memq 'archive skip))
10004 (org-agenda-skip-comment-trees (memq 'comment skip))
10005 (org-agenda-skip-function
10006 (car (org-delete-all '(comment archive) skip)))
10007 (org-tags-match-list-sublevels t)
10008 matcher pos)
10010 (cond
10011 ((eq match t) (setq matcher t))
10012 ((eq match nil) (setq matcher t))
10013 (t (setq matcher (if match (org-make-tags-matcher match) t))))
10015 (when (eq scope 'tree)
10016 (org-back-to-heading t)
10017 (org-narrow-to-subtree)
10018 (setq scope nil))
10020 (if (not scope)
10021 (progn
10022 (org-prepare-agenda-buffers
10023 (list (buffer-file-name (current-buffer))))
10024 (org-scan-tags func matcher))
10025 ;; Get the right scope
10026 (setq pos (point))
10027 (cond
10028 ((and scope (listp scope) (symbolp (car scope)))
10029 (setq scope (eval scope)))
10030 ((eq scope 'agenda)
10031 (setq scope (org-agenda-files t)))
10032 ((eq scope 'agenda-with-archives)
10033 (setq scope (org-agenda-files t))
10034 (setq scope (org-add-archive-files scope)))
10035 ((eq scope 'file)
10036 (setq scope (list (buffer-file-name))))
10037 ((eq scope 'file-with-archives)
10038 (setq scope (org-add-archive-files (list (buffer-file-name))))))
10039 (org-prepare-agenda-buffers scope)
10040 (while (setq file (pop scope))
10041 (with-current-buffer (org-find-base-buffer-visiting file)
10042 (save-excursion
10043 (save-restriction
10044 (widen)
10045 (goto-char (point-min))
10046 (org-scan-tags func matcher))))))))
10048 ;;;; Properties
10050 ;;; Setting and retrieving properties
10052 (defconst org-special-properties
10053 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "PRIORITY"
10054 "TIMESTAMP" "TIMESTAMP_IA")
10055 "The special properties valid in Org-mode.
10057 These are properties that are not defined in the property drawer,
10058 but in some other way.")
10060 (defconst org-default-properties
10061 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION"
10062 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
10063 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
10064 "EXPORT_FILE_NAME" "EXPORT_TITLE")
10065 "Some properties that are used by Org-mode for various purposes.
10066 Being in this list makes sure that they are offered for completion.")
10068 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
10069 "Regular expression matching the first line of a property drawer.")
10071 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
10072 "Regular expression matching the first line of a property drawer.")
10074 (defun org-property-action ()
10075 "Do an action on properties."
10076 (interactive)
10077 (let (c)
10078 (org-at-property-p)
10079 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
10080 (setq c (read-char-exclusive))
10081 (cond
10082 ((equal c ?s)
10083 (call-interactively 'org-set-property))
10084 ((equal c ?d)
10085 (call-interactively 'org-delete-property))
10086 ((equal c ?D)
10087 (call-interactively 'org-delete-property-globally))
10088 ((equal c ?c)
10089 (call-interactively 'org-compute-property-at-point))
10090 (t (error "No such property action %c" c)))))
10092 (defun org-at-property-p ()
10093 "Is the cursor in a property line?"
10094 ;; FIXME: Does not check if we are actually in the drawer.
10095 ;; FIXME: also returns true on any drawers.....
10096 ;; This is used by C-c C-c for property action.
10097 (save-excursion
10098 (beginning-of-line 1)
10099 (looking-at (org-re "^[ \t]*\\(:\\([[:alpha:]][[:alnum:]_-]*\\):\\)[ \t]*\\(.*\\)"))))
10101 (defun org-get-property-block (&optional beg end force)
10102 "Return the (beg . end) range of the body of the property drawer.
10103 BEG and END can be beginning and end of subtree, if not given
10104 they will be found.
10105 If the drawer does not exist and FORCE is non-nil, create the drawer."
10106 (catch 'exit
10107 (save-excursion
10108 (let* ((beg (or beg (progn (org-back-to-heading t) (point))))
10109 (end (or end (progn (outline-next-heading) (point)))))
10110 (goto-char beg)
10111 (if (re-search-forward org-property-start-re end t)
10112 (setq beg (1+ (match-end 0)))
10113 (if force
10114 (save-excursion
10115 (org-insert-property-drawer)
10116 (setq end (progn (outline-next-heading) (point))))
10117 (throw 'exit nil))
10118 (goto-char beg)
10119 (if (re-search-forward org-property-start-re end t)
10120 (setq beg (1+ (match-end 0)))))
10121 (if (re-search-forward org-property-end-re end t)
10122 (setq end (match-beginning 0))
10123 (or force (throw 'exit nil))
10124 (goto-char beg)
10125 (setq end beg)
10126 (org-indent-line-function)
10127 (insert ":END:\n"))
10128 (cons beg end)))))
10130 (defun org-entry-properties (&optional pom which)
10131 "Get all properties of the entry at point-or-marker POM.
10132 This includes the TODO keyword, the tags, time strings for deadline,
10133 scheduled, and clocking, and any additional properties defined in the
10134 entry. The return value is an alist, keys may occur multiple times
10135 if the property key was used several times.
10136 POM may also be nil, in which case the current entry is used.
10137 If WHICH is nil or `all', get all properties. If WHICH is
10138 `special' or `standard', only get that subclass."
10139 (setq which (or which 'all))
10140 (org-with-point-at pom
10141 (let ((clockstr (substring org-clock-string 0 -1))
10142 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY"))
10143 beg end range props sum-props key value string clocksum)
10144 (save-excursion
10145 (when (condition-case nil (org-back-to-heading t) (error nil))
10146 (setq beg (point))
10147 (setq sum-props (get-text-property (point) 'org-summaries))
10148 (setq clocksum (get-text-property (point) :org-clock-minutes))
10149 (outline-next-heading)
10150 (setq end (point))
10151 (when (memq which '(all special))
10152 ;; Get the special properties, like TODO and tags
10153 (goto-char beg)
10154 (when (and (looking-at org-todo-line-regexp) (match-end 2))
10155 (push (cons "TODO" (org-match-string-no-properties 2)) props))
10156 (when (looking-at org-priority-regexp)
10157 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
10158 (when (and (setq value (org-get-tags-string))
10159 (string-match "\\S-" value))
10160 (push (cons "TAGS" value) props))
10161 (when (setq value (org-get-tags-at))
10162 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":") ":"))
10163 props))
10164 (while (re-search-forward org-maybe-keyword-time-regexp end t)
10165 (setq key (if (match-end 1) (substring (org-match-string-no-properties 1) 0 -1))
10166 string (if (equal key clockstr)
10167 (org-no-properties
10168 (org-trim
10169 (buffer-substring
10170 (match-beginning 3) (goto-char (point-at-eol)))))
10171 (substring (org-match-string-no-properties 3) 1 -1)))
10172 (unless key
10173 (if (= (char-after (match-beginning 3)) ?\[)
10174 (setq key "TIMESTAMP_IA")
10175 (setq key "TIMESTAMP")))
10176 (when (or (equal key clockstr) (not (assoc key props)))
10177 (push (cons key string) props)))
10181 (when (memq which '(all standard))
10182 ;; Get the standard properties, like :PORP: ...
10183 (setq range (org-get-property-block beg end))
10184 (when range
10185 (goto-char (car range))
10186 (while (re-search-forward
10187 (org-re "^[ \t]*:\\([[:alpha:]][[:alnum:]_-]*\\):[ \t]*\\(\\S-.*\\)?")
10188 (cdr range) t)
10189 (setq key (org-match-string-no-properties 1)
10190 value (org-trim (or (org-match-string-no-properties 2) "")))
10191 (unless (member key excluded)
10192 (push (cons key (or value "")) props)))))
10193 (if clocksum
10194 (push (cons "CLOCKSUM"
10195 (org-columns-number-to-string (/ (float clocksum) 60.)
10196 'add_times))
10197 props))
10198 (append sum-props (nreverse props)))))))
10200 (defun org-entry-get (pom property &optional inherit)
10201 "Get value of PROPERTY for entry at point-or-marker POM.
10202 If INHERIT is non-nil and the entry does not have the property,
10203 then also check higher levels of the hierarchy.
10204 If INHERIT is the symbol `selective', use inheritance only if the setting
10205 in `org-use-property-inheritance' selects PROPERTY for inheritance.
10206 If the property is present but empty, the return value is the empty string.
10207 If the property is not present at all, nil is returned."
10208 (org-with-point-at pom
10209 (if (and inherit (if (eq inherit 'selective)
10210 (org-property-inherit-p property)
10212 (org-entry-get-with-inheritance property)
10213 (if (member property org-special-properties)
10214 ;; We need a special property. Use brute force, get all properties.
10215 (cdr (assoc property (org-entry-properties nil 'special)))
10216 (let ((range (org-get-property-block)))
10217 (if (and range
10218 (goto-char (car range))
10219 (re-search-forward
10220 (concat "^[ \t]*:" property ":[ \t]*\\(.*\\S-\\)?")
10221 (cdr range) t))
10222 ;; Found the property, return it.
10223 (if (match-end 1)
10224 (org-match-string-no-properties 1)
10225 "")))))))
10227 (defun org-property-or-variable-value (var &optional inherit)
10228 "Check if there is a property fixing the value of VAR.
10229 If yes, return this value. If not, return the current value of the variable."
10230 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
10231 (if (and prop (stringp prop) (string-match "\\S-" prop))
10232 (read prop)
10233 (symbol-value var))))
10235 (defun org-entry-delete (pom property)
10236 "Delete the property PROPERTY from entry at point-or-marker POM."
10237 (org-with-point-at pom
10238 (if (member property org-special-properties)
10239 nil ; cannot delete these properties.
10240 (let ((range (org-get-property-block)))
10241 (if (and range
10242 (goto-char (car range))
10243 (re-search-forward
10244 (concat "^[ \t]*:" property ":[ \t]*\\(.*\\S-\\)")
10245 (cdr range) t))
10246 (progn
10247 (delete-region (match-beginning 0) (1+ (point-at-eol)))
10249 nil)))))
10251 ;; Multi-values properties are properties that contain multiple values
10252 ;; These values are assumed to be single words, separated by whitespace.
10253 (defun org-entry-add-to-multivalued-property (pom property value)
10254 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
10255 (let* ((old (org-entry-get pom property))
10256 (values (and old (org-split-string old "[ \t]"))))
10257 (unless (member value values)
10258 (setq values (cons value values))
10259 (org-entry-put pom property
10260 (mapconcat 'identity values " ")))))
10262 (defun org-entry-remove-from-multivalued-property (pom property value)
10263 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
10264 (let* ((old (org-entry-get pom property))
10265 (values (and old (org-split-string old "[ \t]"))))
10266 (when (member value values)
10267 (setq values (delete value values))
10268 (org-entry-put pom property
10269 (mapconcat 'identity values " ")))))
10271 (defun org-entry-member-in-multivalued-property (pom property value)
10272 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
10273 (let* ((old (org-entry-get pom property))
10274 (values (and old (org-split-string old "[ \t]"))))
10275 (member value values)))
10277 (defvar org-entry-property-inherited-from (make-marker))
10279 (defun org-entry-get-with-inheritance (property)
10280 "Get entry property, and search higher levels if not present."
10281 (let (tmp)
10282 (save-excursion
10283 (save-restriction
10284 (widen)
10285 (catch 'ex
10286 (while t
10287 (when (setq tmp (org-entry-get nil property))
10288 (org-back-to-heading t)
10289 (move-marker org-entry-property-inherited-from (point))
10290 (throw 'ex tmp))
10291 (or (org-up-heading-safe) (throw 'ex nil)))))
10292 (or tmp
10293 (cdr (assoc property org-file-properties))
10294 (cdr (assoc property org-global-properties))
10295 (cdr (assoc property org-global-properties-fixed))))))
10297 (defun org-entry-put (pom property value)
10298 "Set PROPERTY to VALUE for entry at point-or-marker POM."
10299 (org-with-point-at pom
10300 (org-back-to-heading t)
10301 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
10302 range)
10303 (cond
10304 ((equal property "TODO")
10305 (when (and (stringp value) (string-match "\\S-" value)
10306 (not (member value org-todo-keywords-1)))
10307 (error "\"%s\" is not a valid TODO state" value))
10308 (if (or (not value)
10309 (not (string-match "\\S-" value)))
10310 (setq value 'none))
10311 (org-todo value)
10312 (org-set-tags nil 'align))
10313 ((equal property "PRIORITY")
10314 (org-priority (if (and value (stringp value) (string-match "\\S-" value))
10315 (string-to-char value) ?\ ))
10316 (org-set-tags nil 'align))
10317 ((equal property "SCHEDULED")
10318 (if (re-search-forward org-scheduled-time-regexp end t)
10319 (cond
10320 ((eq value 'earlier) (org-timestamp-change -1 'day))
10321 ((eq value 'later) (org-timestamp-change 1 'day))
10322 (t (call-interactively 'org-schedule)))
10323 (call-interactively 'org-schedule)))
10324 ((equal property "DEADLINE")
10325 (if (re-search-forward org-deadline-time-regexp end t)
10326 (cond
10327 ((eq value 'earlier) (org-timestamp-change -1 'day))
10328 ((eq value 'later) (org-timestamp-change 1 'day))
10329 (t (call-interactively 'org-deadline)))
10330 (call-interactively 'org-deadline)))
10331 ((member property org-special-properties)
10332 (error "The %s property can not yet be set with `org-entry-put'"
10333 property))
10334 (t ; a non-special property
10335 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
10336 (setq range (org-get-property-block beg end 'force))
10337 (goto-char (car range))
10338 (if (re-search-forward
10339 (concat "^[ \t]*:" property ":\\(.*\\)") (cdr range) t)
10340 (progn
10341 (delete-region (match-beginning 1) (match-end 1))
10342 (goto-char (match-beginning 1)))
10343 (goto-char (cdr range))
10344 (insert "\n")
10345 (backward-char 1)
10346 (org-indent-line-function)
10347 (insert ":" property ":"))
10348 (and value (insert " " value))
10349 (org-indent-line-function)))))))
10351 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
10352 "Get all property keys in the current buffer.
10353 With INCLUDE-SPECIALS, also list the special properties that relect things
10354 like tags and TODO state.
10355 With INCLUDE-DEFAULTS, also include properties that has special meaning
10356 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING.
10357 With INCLUDE-COLUMNS, also include property names given in COLUMN
10358 formats in the current buffer."
10359 (let (rtn range cfmt cols s p)
10360 (save-excursion
10361 (save-restriction
10362 (widen)
10363 (goto-char (point-min))
10364 (while (re-search-forward org-property-start-re nil t)
10365 (setq range (org-get-property-block))
10366 (goto-char (car range))
10367 (while (re-search-forward
10368 (org-re "^[ \t]*:\\([-[:alnum:]_]+\\):")
10369 (cdr range) t)
10370 (add-to-list 'rtn (org-match-string-no-properties 1)))
10371 (outline-next-heading))))
10373 (when include-specials
10374 (setq rtn (append org-special-properties rtn)))
10376 (when include-defaults
10377 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties))
10379 (when include-columns
10380 (save-excursion
10381 (save-restriction
10382 (widen)
10383 (goto-char (point-min))
10384 (while (re-search-forward
10385 "^\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
10386 nil t)
10387 (setq cfmt (match-string 2) s 0)
10388 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
10389 cfmt s)
10390 (setq s (match-end 0)
10391 p (match-string 1 cfmt))
10392 (unless (or (equal p "ITEM")
10393 (member p org-special-properties))
10394 (add-to-list 'rtn (match-string 1 cfmt))))))))
10396 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
10398 (defun org-property-values (key)
10399 "Return a list of all values of property KEY."
10400 (save-excursion
10401 (save-restriction
10402 (widen)
10403 (goto-char (point-min))
10404 (let ((re (concat "^[ \t]*:" key ":[ \t]*\\(\\S-.*\\)"))
10405 values)
10406 (while (re-search-forward re nil t)
10407 (add-to-list 'values (org-trim (match-string 1))))
10408 (delete "" values)))))
10410 (defun org-insert-property-drawer ()
10411 "Insert a property drawer into the current entry."
10412 (interactive)
10413 (org-back-to-heading t)
10414 (looking-at outline-regexp)
10415 (let ((indent (- (match-end 0)(match-beginning 0)))
10416 (beg (point))
10417 (re (concat "^[ \t]*" org-keyword-time-regexp))
10418 end hiddenp)
10419 (outline-next-heading)
10420 (setq end (point))
10421 (goto-char beg)
10422 (while (re-search-forward re end t))
10423 (setq hiddenp (org-invisible-p))
10424 (end-of-line 1)
10425 (and (equal (char-after) ?\n) (forward-char 1))
10426 (while (looking-at "^[ \t]*\\(:CLOCK:\\|CLOCK\\|:END:\\)")
10427 (beginning-of-line 2))
10428 (org-skip-over-state-notes)
10429 (skip-chars-backward " \t\n\r")
10430 (if (eq (char-before) ?*) (forward-char 1))
10431 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
10432 (beginning-of-line 0)
10433 (org-indent-to-column indent)
10434 (beginning-of-line 2)
10435 (org-indent-to-column indent)
10436 (beginning-of-line 0)
10437 (if hiddenp
10438 (save-excursion
10439 (org-back-to-heading t)
10440 (hide-entry))
10441 (org-flag-drawer t))))
10443 (defun org-set-property (property value)
10444 "In the current entry, set PROPERTY to VALUE.
10445 When called interactively, this will prompt for a property name, offering
10446 completion on existing and default properties. And then it will prompt
10447 for a value, offering competion either on allowed values (via an inherited
10448 xxx_ALL property) or on existing values in other instances of this property
10449 in the current file."
10450 (interactive
10451 (let* ((completion-ignore-case t)
10452 (keys (org-buffer-property-keys nil t t))
10453 (prop0 (completing-read "Property: " (mapcar 'list keys)))
10454 (prop (if (member prop0 keys)
10455 prop0
10456 (or (cdr (assoc (downcase prop0)
10457 (mapcar (lambda (x) (cons (downcase x) x))
10458 keys)))
10459 prop0)))
10460 (cur (org-entry-get nil prop))
10461 (allowed (org-property-get-allowed-values nil prop 'table))
10462 (existing (mapcar 'list (org-property-values prop)))
10463 (val (if allowed
10464 (org-completing-read "Value: " allowed nil 'req-match)
10465 (org-completing-read
10466 (concat "Value" (if (and cur (string-match "\\S-" cur))
10467 (concat "[" cur "]") "")
10468 ": ")
10469 existing nil nil "" nil cur))))
10470 (list prop (if (equal val "") cur val))))
10471 (unless (equal (org-entry-get nil property) value)
10472 (org-entry-put nil property value)))
10474 (defun org-delete-property (property)
10475 "In the current entry, delete PROPERTY."
10476 (interactive
10477 (let* ((completion-ignore-case t)
10478 (prop (completing-read
10479 "Property: " (org-entry-properties nil 'standard))))
10480 (list prop)))
10481 (message "Property %s %s" property
10482 (if (org-entry-delete nil property)
10483 "deleted"
10484 "was not present in the entry")))
10486 (defun org-delete-property-globally (property)
10487 "Remove PROPERTY globally, from all entries."
10488 (interactive
10489 (let* ((completion-ignore-case t)
10490 (prop (completing-read
10491 "Globally remove property: "
10492 (mapcar 'list (org-buffer-property-keys)))))
10493 (list prop)))
10494 (save-excursion
10495 (save-restriction
10496 (widen)
10497 (goto-char (point-min))
10498 (let ((cnt 0))
10499 (while (re-search-forward
10500 (concat "^[ \t]*:" (regexp-quote property) ":.*\n?")
10501 nil t)
10502 (setq cnt (1+ cnt))
10503 (replace-match ""))
10504 (message "Property \"%s\" removed from %d entries" property cnt)))))
10506 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
10508 (defun org-compute-property-at-point ()
10509 "Compute the property at point.
10510 This looks for an enclosing column format, extracts the operator and
10511 then applies it to the proerty in the column format's scope."
10512 (interactive)
10513 (unless (org-at-property-p)
10514 (error "Not at a property"))
10515 (let ((prop (org-match-string-no-properties 2)))
10516 (org-columns-get-format-and-top-level)
10517 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
10518 (error "No operator defined for property %s" prop))
10519 (org-columns-compute prop)))
10521 (defun org-property-get-allowed-values (pom property &optional table)
10522 "Get allowed values for the property PROPERTY.
10523 When TABLE is non-nil, return an alist that can directly be used for
10524 completion."
10525 (let (vals)
10526 (cond
10527 ((equal property "TODO")
10528 (setq vals (org-with-point-at pom
10529 (append org-todo-keywords-1 '("")))))
10530 ((equal property "PRIORITY")
10531 (let ((n org-lowest-priority))
10532 (while (>= n org-highest-priority)
10533 (push (char-to-string n) vals)
10534 (setq n (1- n)))))
10535 ((member property org-special-properties))
10537 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
10539 (when (and vals (string-match "\\S-" vals))
10540 (setq vals (car (read-from-string (concat "(" vals ")"))))
10541 (setq vals (mapcar (lambda (x)
10542 (cond ((stringp x) x)
10543 ((numberp x) (number-to-string x))
10544 ((symbolp x) (symbol-name x))
10545 (t "???")))
10546 vals)))))
10547 (if table (mapcar 'list vals) vals)))
10549 (defun org-property-previous-allowed-value (&optional previous)
10550 "Switch to the next allowed value for this property."
10551 (interactive)
10552 (org-property-next-allowed-value t))
10554 (defun org-property-next-allowed-value (&optional previous)
10555 "Switch to the next allowed value for this property."
10556 (interactive)
10557 (unless (org-at-property-p)
10558 (error "Not at a property"))
10559 (let* ((key (match-string 2))
10560 (value (match-string 3))
10561 (allowed (or (org-property-get-allowed-values (point) key)
10562 (and (member value '("[ ]" "[-]" "[X]"))
10563 '("[ ]" "[X]"))))
10564 nval)
10565 (unless allowed
10566 (error "Allowed values for this property have not been defined"))
10567 (if previous (setq allowed (reverse allowed)))
10568 (if (member value allowed)
10569 (setq nval (car (cdr (member value allowed)))))
10570 (setq nval (or nval (car allowed)))
10571 (if (equal nval value)
10572 (error "Only one allowed value for this property"))
10573 (org-at-property-p)
10574 (replace-match (concat " :" key ": " nval) t t)
10575 (org-indent-line-function)
10576 (beginning-of-line 1)
10577 (skip-chars-forward " \t")))
10579 (defun org-find-entry-with-id (ident)
10580 "Locate the entry that contains the ID property with exact value IDENT.
10581 IDENT can be a string, a symbol or a number, this function will search for
10582 the string representation of it.
10583 Return the position where this entry starts, or nil if there is no such entry."
10584 (let ((id (cond
10585 ((stringp ident) ident)
10586 ((symbol-name ident) (symbol-name ident))
10587 ((numberp ident) (number-to-string ident))
10588 (t (error "IDENT %s must be a string, symbol or number" ident))))
10589 (case-fold-search nil))
10590 (save-excursion
10591 (save-restriction
10592 (widen)
10593 (goto-char (point-min))
10594 (when (re-search-forward
10595 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
10596 nil t)
10597 (org-back-to-heading)
10598 (point))))))
10600 ;;;; Timestamps
10602 (defvar org-last-changed-timestamp nil)
10603 (defvar org-time-was-given) ; dynamically scoped parameter
10604 (defvar org-end-time-was-given) ; dynamically scoped parameter
10605 (defvar org-ts-what) ; dynamically scoped parameter
10607 (defun org-time-stamp (arg)
10608 "Prompt for a date/time and insert a time stamp.
10609 If the user specifies a time like HH:MM, or if this command is called
10610 with a prefix argument, the time stamp will contain date and time.
10611 Otherwise, only the date will be included. All parts of a date not
10612 specified by the user will be filled in from the current date/time.
10613 So if you press just return without typing anything, the time stamp
10614 will represent the current date/time. If there is already a timestamp
10615 at the cursor, it will be modified."
10616 (interactive "P")
10617 (let* ((ts nil)
10618 (default-time
10619 ;; Default time is either today, or, when entering a range,
10620 ;; the range start.
10621 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
10622 (save-excursion
10623 (re-search-backward
10624 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
10625 (- (point) 20) t)))
10626 (apply 'encode-time (org-parse-time-string (match-string 1)))
10627 (current-time)))
10628 (default-input (and ts (org-get-compact-tod ts)))
10629 org-time-was-given org-end-time-was-given time)
10630 (cond
10631 ((and (org-at-timestamp-p)
10632 (eq last-command 'org-time-stamp)
10633 (eq this-command 'org-time-stamp))
10634 (insert "--")
10635 (setq time (let ((this-command this-command))
10636 (org-read-date arg 'totime nil nil default-time default-input)))
10637 (org-insert-time-stamp time (or org-time-was-given arg)))
10638 ((org-at-timestamp-p)
10639 (setq time (let ((this-command this-command))
10640 (org-read-date arg 'totime nil nil default-time default-input)))
10641 (when (org-at-timestamp-p) ; just to get the match data
10642 (replace-match "")
10643 (setq org-last-changed-timestamp
10644 (org-insert-time-stamp
10645 time (or org-time-was-given arg)
10646 nil nil nil (list org-end-time-was-given))))
10647 (message "Timestamp updated"))
10649 (setq time (let ((this-command this-command))
10650 (org-read-date arg 'totime nil nil default-time default-input)))
10651 (org-insert-time-stamp time (or org-time-was-given arg)
10652 nil nil nil (list org-end-time-was-given))))))
10654 ;; FIXME: can we use this for something else, like computing time differences?
10655 (defun org-get-compact-tod (s)
10656 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
10657 (let* ((t1 (match-string 1 s))
10658 (h1 (string-to-number (match-string 2 s)))
10659 (m1 (string-to-number (match-string 3 s)))
10660 (t2 (and (match-end 4) (match-string 5 s)))
10661 (h2 (and t2 (string-to-number (match-string 6 s))))
10662 (m2 (and t2 (string-to-number (match-string 7 s))))
10663 dh dm)
10664 (if (not t2)
10666 (setq dh (- h2 h1) dm (- m2 m1))
10667 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
10668 (concat t1 "+" (number-to-string dh)
10669 (if (/= 0 dm) (concat ":" (number-to-string dm))))))))
10671 (defun org-time-stamp-inactive (&optional arg)
10672 "Insert an inactive time stamp.
10673 An inactive time stamp is enclosed in square brackets instead of angle
10674 brackets. It is inactive in the sense that it does not trigger agenda entries,
10675 does not link to the calendar and cannot be changed with the S-cursor keys.
10676 So these are more for recording a certain time/date."
10677 (interactive "P")
10678 (let (org-time-was-given org-end-time-was-given time)
10679 (setq time (org-read-date arg 'totime))
10680 (org-insert-time-stamp time (or org-time-was-given arg) 'inactive
10681 nil nil (list org-end-time-was-given))))
10683 (defvar org-date-ovl (org-make-overlay 1 1))
10684 (org-overlay-put org-date-ovl 'face 'org-warning)
10685 (org-detach-overlay org-date-ovl)
10687 (defvar org-ans1) ; dynamically scoped parameter
10688 (defvar org-ans2) ; dynamically scoped parameter
10690 (defvar org-plain-time-of-day-regexp) ; defined below
10692 (defvar org-read-date-overlay nil)
10693 (defvar org-dcst nil) ; dynamically scoped
10695 (defun org-read-date (&optional with-time to-time from-string prompt
10696 default-time default-input)
10697 "Read a date, possibly a time, and make things smooth for the user.
10698 The prompt will suggest to enter an ISO date, but you can also enter anything
10699 which will at least partially be understood by `parse-time-string'.
10700 Unrecognized parts of the date will default to the current day, month, year,
10701 hour and minute. If this command is called to replace a timestamp at point,
10702 of to enter the second timestamp of a range, the default time is taken from the
10703 existing stamp. For example,
10704 3-2-5 --> 2003-02-05
10705 feb 15 --> currentyear-02-15
10706 sep 12 9 --> 2009-09-12
10707 12:45 --> today 12:45
10708 22 sept 0:34 --> currentyear-09-22 0:34
10709 12 --> currentyear-currentmonth-12
10710 Fri --> nearest Friday (today or later)
10711 etc.
10713 Furthermore you can specify a relative date by giving, as the *first* thing
10714 in the input: a plus/minus sign, a number and a letter [dwmy] to indicate
10715 change in days weeks, months, years.
10716 With a single plus or minus, the date is relative to today. With a double
10717 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
10718 +4d --> four days from today
10719 +4 --> same as above
10720 +2w --> two weeks from today
10721 ++5 --> five days from default date
10723 The function understands only English month and weekday abbreviations,
10724 but this can be configured with the variables `parse-time-months' and
10725 `parse-time-weekdays'.
10727 While prompting, a calendar is popped up - you can also select the
10728 date with the mouse (button 1). The calendar shows a period of three
10729 months. To scroll it to other months, use the keys `>' and `<'.
10730 If you don't like the calendar, turn it off with
10731 \(setq org-read-date-popup-calendar nil)
10733 With optional argument TO-TIME, the date will immediately be converted
10734 to an internal time.
10735 With an optional argument WITH-TIME, the prompt will suggest to also
10736 insert a time. Note that when WITH-TIME is not set, you can still
10737 enter a time, and this function will inform the calling routine about
10738 this change. The calling routine may then choose to change the format
10739 used to insert the time stamp into the buffer to include the time.
10740 With optional argument FROM-STRING, read from this string instead from
10741 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
10742 the time/date that is used for everything that is not specified by the
10743 user."
10744 (require 'parse-time)
10745 (let* ((org-time-stamp-rounding-minutes
10746 (if (equal with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
10747 (org-dcst org-display-custom-times)
10748 (ct (org-current-time))
10749 (def (or default-time ct))
10750 (defdecode (decode-time def))
10751 (dummy (progn
10752 (when (< (nth 2 defdecode) org-extend-today-until)
10753 (setcar (nthcdr 2 defdecode) -1)
10754 (setcar (nthcdr 1 defdecode) 59)
10755 (setq def (apply 'encode-time defdecode)
10756 defdecode (decode-time def)))))
10757 (calendar-move-hook nil)
10758 (calendar-view-diary-initially-flag nil)
10759 (view-diary-entries-initially nil)
10760 (calendar-view-holidays-initially-flag nil)
10761 (view-calendar-holidays-initially nil)
10762 (timestr (format-time-string
10763 (if with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") def))
10764 (prompt (concat (if prompt (concat prompt " ") "")
10765 (format "Date+time [%s]: " timestr)))
10766 ans (org-ans0 "") org-ans1 org-ans2 final)
10768 (cond
10769 (from-string (setq ans from-string))
10770 (org-read-date-popup-calendar
10771 (save-excursion
10772 (save-window-excursion
10773 (calendar)
10774 (calendar-forward-day (- (time-to-days def)
10775 (calendar-absolute-from-gregorian
10776 (calendar-current-date))))
10777 (org-eval-in-calendar nil t)
10778 (let* ((old-map (current-local-map))
10779 (map (copy-keymap calendar-mode-map))
10780 (minibuffer-local-map (copy-keymap minibuffer-local-map)))
10781 (org-defkey map (kbd "RET") 'org-calendar-select)
10782 (org-defkey map (if (featurep 'xemacs) [button1] [mouse-1])
10783 'org-calendar-select-mouse)
10784 (org-defkey map (if (featurep 'xemacs) [button2] [mouse-2])
10785 'org-calendar-select-mouse)
10786 (org-defkey minibuffer-local-map [(meta shift left)]
10787 (lambda () (interactive)
10788 (org-eval-in-calendar '(calendar-backward-month 1))))
10789 (org-defkey minibuffer-local-map [(meta shift right)]
10790 (lambda () (interactive)
10791 (org-eval-in-calendar '(calendar-forward-month 1))))
10792 (org-defkey minibuffer-local-map [(meta shift up)]
10793 (lambda () (interactive)
10794 (org-eval-in-calendar '(calendar-backward-year 1))))
10795 (org-defkey minibuffer-local-map [(meta shift down)]
10796 (lambda () (interactive)
10797 (org-eval-in-calendar '(calendar-forward-year 1))))
10798 (org-defkey minibuffer-local-map [(shift up)]
10799 (lambda () (interactive)
10800 (org-eval-in-calendar '(calendar-backward-week 1))))
10801 (org-defkey minibuffer-local-map [(shift down)]
10802 (lambda () (interactive)
10803 (org-eval-in-calendar '(calendar-forward-week 1))))
10804 (org-defkey minibuffer-local-map [(shift left)]
10805 (lambda () (interactive)
10806 (org-eval-in-calendar '(calendar-backward-day 1))))
10807 (org-defkey minibuffer-local-map [(shift right)]
10808 (lambda () (interactive)
10809 (org-eval-in-calendar '(calendar-forward-day 1))))
10810 (org-defkey minibuffer-local-map ">"
10811 (lambda () (interactive)
10812 (org-eval-in-calendar '(scroll-calendar-left 1))))
10813 (org-defkey minibuffer-local-map "<"
10814 (lambda () (interactive)
10815 (org-eval-in-calendar '(scroll-calendar-right 1))))
10816 (unwind-protect
10817 (progn
10818 (use-local-map map)
10819 (add-hook 'post-command-hook 'org-read-date-display)
10820 (setq org-ans0 (read-string prompt default-input nil nil))
10821 ;; org-ans0: from prompt
10822 ;; org-ans1: from mouse click
10823 ;; org-ans2: from calendar motion
10824 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
10825 (remove-hook 'post-command-hook 'org-read-date-display)
10826 (use-local-map old-map)
10827 (when org-read-date-overlay
10828 (org-delete-overlay org-read-date-overlay)
10829 (setq org-read-date-overlay nil)))))))
10831 (t ; Naked prompt only
10832 (unwind-protect
10833 (setq ans (read-string prompt default-input nil timestr))
10834 (when org-read-date-overlay
10835 (org-delete-overlay org-read-date-overlay)
10836 (setq org-read-date-overlay nil)))))
10838 (setq final (org-read-date-analyze ans def defdecode))
10840 (if to-time
10841 (apply 'encode-time final)
10842 (if (and (boundp 'org-time-was-given) org-time-was-given)
10843 (format "%04d-%02d-%02d %02d:%02d"
10844 (nth 5 final) (nth 4 final) (nth 3 final)
10845 (nth 2 final) (nth 1 final))
10846 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
10847 (defvar def)
10848 (defvar defdecode)
10849 (defvar with-time)
10850 (defun org-read-date-display ()
10851 "Display the currrent date prompt interpretation in the minibuffer."
10852 (when org-read-date-display-live
10853 (when org-read-date-overlay
10854 (org-delete-overlay org-read-date-overlay))
10855 (let ((p (point)))
10856 (end-of-line 1)
10857 (while (not (equal (buffer-substring
10858 (max (point-min) (- (point) 4)) (point))
10859 " "))
10860 (insert " "))
10861 (goto-char p))
10862 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
10863 " " (or org-ans1 org-ans2)))
10864 (org-end-time-was-given nil)
10865 (f (org-read-date-analyze ans def defdecode))
10866 (fmts (if org-dcst
10867 org-time-stamp-custom-formats
10868 org-time-stamp-formats))
10869 (fmt (if (or with-time
10870 (and (boundp 'org-time-was-given) org-time-was-given))
10871 (cdr fmts)
10872 (car fmts)))
10873 (txt (concat "=> " (format-time-string fmt (apply 'encode-time f)))))
10874 (when (and org-end-time-was-given
10875 (string-match org-plain-time-of-day-regexp txt))
10876 (setq txt (concat (substring txt 0 (match-end 0)) "-"
10877 org-end-time-was-given
10878 (substring txt (match-end 0)))))
10879 (setq org-read-date-overlay
10880 (make-overlay (1- (point-at-eol)) (point-at-eol)))
10881 (org-overlay-display org-read-date-overlay txt 'secondary-selection))))
10883 (defun org-read-date-analyze (ans def defdecode)
10884 "Analyze the combined answer of the date prompt."
10885 ;; FIXME: cleanup and comment
10886 (let (delta deltan deltaw deltadef year month day
10887 hour minute second wday pm h2 m2 tl wday1
10888 iso-year iso-weekday iso-week iso-year iso-date)
10890 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
10891 (setq ans "+0"))
10893 (when (setq delta (org-read-date-get-relative ans (current-time) def))
10894 (setq ans (replace-match "" t t ans)
10895 deltan (car delta)
10896 deltaw (nth 1 delta)
10897 deltadef (nth 2 delta)))
10899 ;; Check if there is an iso week date in there
10900 ;; If yes, sore the info and ostpone interpreting it until the rest
10901 ;; of the parsing is done
10902 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
10903 (setq iso-year (if (match-end 1) (org-small-year-to-year (string-to-number (match-string 1 ans))))
10904 iso-weekday (if (match-end 3) (string-to-number (match-string 3 ans)))
10905 iso-week (string-to-number (match-string 2 ans)))
10906 (setq ans (replace-match "" t t ans)))
10908 ;; Help matching ISO dates with single digit month ot day, like 2006-8-11.
10909 (when (string-match
10910 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
10911 (setq year (if (match-end 2)
10912 (string-to-number (match-string 2 ans))
10913 (string-to-number (format-time-string "%Y")))
10914 month (string-to-number (match-string 3 ans))
10915 day (string-to-number (match-string 4 ans)))
10916 (if (< year 100) (setq year (+ 2000 year)))
10917 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
10918 t nil ans)))
10919 ;; Help matching am/pm times, because `parse-time-string' does not do that.
10920 ;; If there is a time with am/pm, and *no* time without it, we convert
10921 ;; so that matching will be successful.
10922 (loop for i from 1 to 2 do ; twice, for end time as well
10923 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
10924 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
10925 (setq hour (string-to-number (match-string 1 ans))
10926 minute (if (match-end 3)
10927 (string-to-number (match-string 3 ans))
10929 pm (equal ?p
10930 (string-to-char (downcase (match-string 4 ans)))))
10931 (if (and (= hour 12) (not pm))
10932 (setq hour 0)
10933 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
10934 (setq ans (replace-match (format "%02d:%02d" hour minute)
10935 t t ans))))
10937 ;; Check if a time range is given as a duration
10938 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
10939 (setq hour (string-to-number (match-string 1 ans))
10940 h2 (+ hour (string-to-number (match-string 3 ans)))
10941 minute (string-to-number (match-string 2 ans))
10942 m2 (+ minute (if (match-end 5) (string-to-number
10943 (match-string 5 ans))0)))
10944 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
10945 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
10946 t t ans)))
10948 ;; Check if there is a time range
10949 (when (boundp 'org-end-time-was-given)
10950 (setq org-time-was-given nil)
10951 (when (and (string-match org-plain-time-of-day-regexp ans)
10952 (match-end 8))
10953 (setq org-end-time-was-given (match-string 8 ans))
10954 (setq ans (concat (substring ans 0 (match-beginning 7))
10955 (substring ans (match-end 7))))))
10957 (setq tl (parse-time-string ans)
10958 day (or (nth 3 tl) (nth 3 defdecode))
10959 month (or (nth 4 tl)
10960 (if (and org-read-date-prefer-future
10961 (nth 3 tl) (< (nth 3 tl) (nth 3 defdecode)))
10962 (1+ (nth 4 defdecode))
10963 (nth 4 defdecode)))
10964 year (or (nth 5 tl)
10965 (if (and org-read-date-prefer-future
10966 (nth 4 tl) (< (nth 4 tl) (nth 4 defdecode)))
10967 (1+ (nth 5 defdecode))
10968 (nth 5 defdecode)))
10969 hour (or (nth 2 tl) (nth 2 defdecode))
10970 minute (or (nth 1 tl) (nth 1 defdecode))
10971 second (or (nth 0 tl) 0)
10972 wday (nth 6 tl))
10974 ;; Special date definitions below
10975 (cond
10976 (iso-week
10977 ;; There was an iso week
10978 (setq year (or iso-year year)
10979 day (or iso-weekday wday 1)
10980 wday nil ; to make sure that the trigger below does not match
10981 iso-date (calendar-gregorian-from-absolute
10982 (calendar-absolute-from-iso
10983 (list iso-week day year))))
10984 ; FIXME: Should we also push ISO weeks into the future?
10985 ; (when (and org-read-date-prefer-future
10986 ; (not iso-year)
10987 ; (< (calendar-absolute-from-gregorian iso-date)
10988 ; (time-to-days (current-time))))
10989 ; (setq year (1+ year)
10990 ; iso-date (calendar-gregorian-from-absolute
10991 ; (calendar-absolute-from-iso
10992 ; (list iso-week day year)))))
10993 (setq month (car iso-date)
10994 year (nth 2 iso-date)
10995 day (nth 1 iso-date)))
10996 (deltan
10997 (unless deltadef
10998 (let ((now (decode-time (current-time))))
10999 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
11000 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
11001 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
11002 ((equal deltaw "m") (setq month (+ month deltan)))
11003 ((equal deltaw "y") (setq year (+ year deltan)))))
11004 ((and wday (not (nth 3 tl)))
11005 ;; Weekday was given, but no day, so pick that day in the week
11006 ;; on or after the derived date.
11007 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
11008 (unless (equal wday wday1)
11009 (setq day (+ day (% (- wday wday1 -7) 7))))))
11010 (if (and (boundp 'org-time-was-given)
11011 (nth 2 tl))
11012 (setq org-time-was-given t))
11013 (if (< year 100) (setq year (+ 2000 year)))
11014 (if (< year 1970) (setq year (nth 5 defdecode))) ; not representable
11015 (list second minute hour day month year)))
11017 (defvar parse-time-weekdays)
11019 (defun org-read-date-get-relative (s today default)
11020 "Check string S for special relative date string.
11021 TODAY and DEFAULT are internal times, for today and for a default.
11022 Return shift list (N what def-flag)
11023 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
11024 N is the number of WHATs to shift.
11025 DEF-FLAG is t when a double ++ or -- indicates shift relative to
11026 the DEFAULT date rather than TODAY."
11027 (when (and
11028 (string-match
11029 (concat
11030 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
11031 "\\([0-9]+\\)?"
11032 "\\([dwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
11033 "\\([ \t]\\|$\\)") s)
11034 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
11035 (let* ((dir (if (> (match-end 1) (match-beginning 1))
11036 (string-to-char (substring (match-string 1 s) -1))
11037 ?+))
11038 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
11039 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
11040 (what (if (match-end 3) (match-string 3 s) "d"))
11041 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
11042 (date (if rel default today))
11043 (wday (nth 6 (decode-time date)))
11044 delta)
11045 (if wday1
11046 (progn
11047 (setq delta (mod (+ 7 (- wday1 wday)) 7))
11048 (if (= dir ?-) (setq delta (- delta 7)))
11049 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
11050 (list delta "d" rel))
11051 (list (* n (if (= dir ?-) -1 1)) what rel)))))
11053 (defun org-eval-in-calendar (form &optional keepdate)
11054 "Eval FORM in the calendar window and return to current window.
11055 Also, store the cursor date in variable org-ans2."
11056 (let ((sw (selected-window)))
11057 (select-window (get-buffer-window "*Calendar*"))
11058 (eval form)
11059 (when (and (not keepdate) (calendar-cursor-to-date))
11060 (let* ((date (calendar-cursor-to-date))
11061 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
11062 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
11063 (org-move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
11064 (select-window sw)))
11066 ; ;; Update the prompt to show new default date
11067 ; (save-excursion
11068 ; (goto-char (point-min))
11069 ; (when (and org-ans2
11070 ; (re-search-forward "\\[[-0-9]+\\]" nil t)
11071 ; (get-text-property (match-end 0) 'field))
11072 ; (let ((inhibit-read-only t))
11073 ; (replace-match (concat "[" org-ans2 "]") t t)
11074 ; (add-text-properties (point-min) (1+ (match-end 0))
11075 ; (text-properties-at (1+ (point-min)))))))))
11077 (defun org-calendar-select ()
11078 "Return to `org-read-date' with the date currently selected.
11079 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
11080 (interactive)
11081 (when (calendar-cursor-to-date)
11082 (let* ((date (calendar-cursor-to-date))
11083 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
11084 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
11085 (if (active-minibuffer-window) (exit-minibuffer))))
11087 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
11088 "Insert a date stamp for the date given by the internal TIME.
11089 WITH-HM means, use the stamp format that includes the time of the day.
11090 INACTIVE means use square brackets instead of angular ones, so that the
11091 stamp will not contribute to the agenda.
11092 PRE and POST are optional strings to be inserted before and after the
11093 stamp.
11094 The command returns the inserted time stamp."
11095 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
11096 stamp)
11097 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
11098 (insert-before-markers (or pre ""))
11099 (insert-before-markers (setq stamp (format-time-string fmt time)))
11100 (when (listp extra)
11101 (setq extra (car extra))
11102 (if (and (stringp extra)
11103 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
11104 (setq extra (format "-%02d:%02d"
11105 (string-to-number (match-string 1 extra))
11106 (string-to-number (match-string 2 extra))))
11107 (setq extra nil)))
11108 (when extra
11109 (backward-char 1)
11110 (insert-before-markers extra)
11111 (forward-char 1))
11112 (insert-before-markers (or post ""))
11113 stamp))
11115 (defun org-toggle-time-stamp-overlays ()
11116 "Toggle the use of custom time stamp formats."
11117 (interactive)
11118 (setq org-display-custom-times (not org-display-custom-times))
11119 (unless org-display-custom-times
11120 (let ((p (point-min)) (bmp (buffer-modified-p)))
11121 (while (setq p (next-single-property-change p 'display))
11122 (if (and (get-text-property p 'display)
11123 (eq (get-text-property p 'face) 'org-date))
11124 (remove-text-properties
11125 p (setq p (next-single-property-change p 'display))
11126 '(display t))))
11127 (set-buffer-modified-p bmp)))
11128 (if (featurep 'xemacs)
11129 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
11130 (org-restart-font-lock)
11131 (setq org-table-may-need-update t)
11132 (if org-display-custom-times
11133 (message "Time stamps are overlayed with custom format")
11134 (message "Time stamp overlays removed")))
11136 (defun org-display-custom-time (beg end)
11137 "Overlay modified time stamp format over timestamp between BEG and END."
11138 (let* ((ts (buffer-substring beg end))
11139 t1 w1 with-hm tf time str w2 (off 0))
11140 (save-match-data
11141 (setq t1 (org-parse-time-string ts t))
11142 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[dwmy]\\)?\\'" ts)
11143 (setq off (- (match-end 0) (match-beginning 0)))))
11144 (setq end (- end off))
11145 (setq w1 (- end beg)
11146 with-hm (and (nth 1 t1) (nth 2 t1))
11147 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
11148 time (org-fix-decoded-time t1)
11149 str (org-add-props
11150 (format-time-string
11151 (substring tf 1 -1) (apply 'encode-time time))
11152 nil 'mouse-face 'highlight)
11153 w2 (length str))
11154 (if (not (= w2 w1))
11155 (add-text-properties (1+ beg) (+ 2 beg)
11156 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
11157 (if (featurep 'xemacs)
11158 (progn
11159 (put-text-property beg end 'invisible t)
11160 (put-text-property beg end 'end-glyph (make-glyph str)))
11161 (put-text-property beg end 'display str))))
11163 (defun org-translate-time (string)
11164 "Translate all timestamps in STRING to custom format.
11165 But do this only if the variable `org-display-custom-times' is set."
11166 (when org-display-custom-times
11167 (save-match-data
11168 (let* ((start 0)
11169 (re org-ts-regexp-both)
11170 t1 with-hm inactive tf time str beg end)
11171 (while (setq start (string-match re string start))
11172 (setq beg (match-beginning 0)
11173 end (match-end 0)
11174 t1 (save-match-data
11175 (org-parse-time-string (substring string beg end) t))
11176 with-hm (and (nth 1 t1) (nth 2 t1))
11177 inactive (equal (substring string beg (1+ beg)) "[")
11178 tf (funcall (if with-hm 'cdr 'car)
11179 org-time-stamp-custom-formats)
11180 time (org-fix-decoded-time t1)
11181 str (format-time-string
11182 (concat
11183 (if inactive "[" "<") (substring tf 1 -1)
11184 (if inactive "]" ">"))
11185 (apply 'encode-time time))
11186 string (replace-match str t t string)
11187 start (+ start (length str)))))))
11188 string)
11190 (defun org-fix-decoded-time (time)
11191 "Set 0 instead of nil for the first 6 elements of time.
11192 Don't touch the rest."
11193 (let ((n 0))
11194 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
11196 (defun org-days-to-time (timestamp-string)
11197 "Difference between TIMESTAMP-STRING and now in days."
11198 (- (time-to-days (org-time-string-to-time timestamp-string))
11199 (time-to-days (current-time))))
11201 (defun org-deadline-close (timestamp-string &optional ndays)
11202 "Is the time in TIMESTAMP-STRING close to the current date?"
11203 (setq ndays (or ndays (org-get-wdays timestamp-string)))
11204 (and (< (org-days-to-time timestamp-string) ndays)
11205 (not (org-entry-is-done-p))))
11207 (defun org-get-wdays (ts)
11208 "Get the deadline lead time appropriate for timestring TS."
11209 (cond
11210 ((<= org-deadline-warning-days 0)
11211 ;; 0 or negative, enforce this value no matter what
11212 (- org-deadline-warning-days))
11213 ((string-match "-\\([0-9]+\\)\\([dwmy]\\)\\(\\'\\|>\\)" ts)
11214 ;; lead time is specified.
11215 (floor (* (string-to-number (match-string 1 ts))
11216 (cdr (assoc (match-string 2 ts)
11217 '(("d" . 1) ("w" . 7)
11218 ("m" . 30.4) ("y" . 365.25)))))))
11219 ;; go for the default.
11220 (t org-deadline-warning-days)))
11222 (defun org-calendar-select-mouse (ev)
11223 "Return to `org-read-date' with the date currently selected.
11224 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
11225 (interactive "e")
11226 (mouse-set-point ev)
11227 (when (calendar-cursor-to-date)
11228 (let* ((date (calendar-cursor-to-date))
11229 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
11230 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
11231 (if (active-minibuffer-window) (exit-minibuffer))))
11233 (defun org-check-deadlines (ndays)
11234 "Check if there are any deadlines due or past due.
11235 A deadline is considered due if it happens within `org-deadline-warning-days'
11236 days from today's date. If the deadline appears in an entry marked DONE,
11237 it is not shown. The prefix arg NDAYS can be used to test that many
11238 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
11239 (interactive "P")
11240 (let* ((org-warn-days
11241 (cond
11242 ((equal ndays '(4)) 100000)
11243 (ndays (prefix-numeric-value ndays))
11244 (t (abs org-deadline-warning-days))))
11245 (case-fold-search nil)
11246 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
11247 (callback
11248 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
11250 (message "%d deadlines past-due or due within %d days"
11251 (org-occur regexp nil callback)
11252 org-warn-days)))
11254 (defun org-check-before-date (date)
11255 "Check if there are deadlines or scheduled entries before DATE."
11256 (interactive (list (org-read-date)))
11257 (let ((case-fold-search nil)
11258 (regexp (concat "\\<\\(" org-deadline-string
11259 "\\|" org-scheduled-string
11260 "\\) *<\\([^>]+\\)>"))
11261 (callback
11262 (lambda () (time-less-p
11263 (org-time-string-to-time (match-string 2))
11264 (org-time-string-to-time date)))))
11265 (message "%d entries before %s"
11266 (org-occur regexp nil callback) date)))
11268 (defun org-evaluate-time-range (&optional to-buffer)
11269 "Evaluate a time range by computing the difference between start and end.
11270 Normally the result is just printed in the echo area, but with prefix arg
11271 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
11272 If the time range is actually in a table, the result is inserted into the
11273 next column.
11274 For time difference computation, a year is assumed to be exactly 365
11275 days in order to avoid rounding problems."
11276 (interactive "P")
11278 (org-clock-update-time-maybe)
11279 (save-excursion
11280 (unless (org-at-date-range-p t)
11281 (goto-char (point-at-bol))
11282 (re-search-forward org-tr-regexp-both (point-at-eol) t))
11283 (if (not (org-at-date-range-p t))
11284 (error "Not at a time-stamp range, and none found in current line")))
11285 (let* ((ts1 (match-string 1))
11286 (ts2 (match-string 2))
11287 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
11288 (match-end (match-end 0))
11289 (time1 (org-time-string-to-time ts1))
11290 (time2 (org-time-string-to-time ts2))
11291 (t1 (time-to-seconds time1))
11292 (t2 (time-to-seconds time2))
11293 (diff (abs (- t2 t1)))
11294 (negative (< (- t2 t1) 0))
11295 ;; (ys (floor (* 365 24 60 60)))
11296 (ds (* 24 60 60))
11297 (hs (* 60 60))
11298 (fy "%dy %dd %02d:%02d")
11299 (fy1 "%dy %dd")
11300 (fd "%dd %02d:%02d")
11301 (fd1 "%dd")
11302 (fh "%02d:%02d")
11303 y d h m align)
11304 (if havetime
11305 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
11307 d (floor (/ diff ds)) diff (mod diff ds)
11308 h (floor (/ diff hs)) diff (mod diff hs)
11309 m (floor (/ diff 60)))
11310 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
11312 d (floor (+ (/ diff ds) 0.5))
11313 h 0 m 0))
11314 (if (not to-buffer)
11315 (message "%s" (org-make-tdiff-string y d h m))
11316 (if (org-at-table-p)
11317 (progn
11318 (goto-char match-end)
11319 (setq align t)
11320 (and (looking-at " *|") (goto-char (match-end 0))))
11321 (goto-char match-end))
11322 (if (looking-at
11323 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
11324 (replace-match ""))
11325 (if negative (insert " -"))
11326 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
11327 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
11328 (insert " " (format fh h m))))
11329 (if align (org-table-align))
11330 (message "Time difference inserted")))))
11332 (defun org-make-tdiff-string (y d h m)
11333 (let ((fmt "")
11334 (l nil))
11335 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
11336 l (push y l)))
11337 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
11338 l (push d l)))
11339 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
11340 l (push h l)))
11341 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
11342 l (push m l)))
11343 (apply 'format fmt (nreverse l))))
11345 (defun org-time-string-to-time (s)
11346 (apply 'encode-time (org-parse-time-string s)))
11348 (defun org-time-string-to-absolute (s &optional daynr prefer show-all)
11349 "Convert a time stamp to an absolute day number.
11350 If there is a specifyer for a cyclic time stamp, get the closest date to
11351 DAYNR.
11352 PREFER and SHOW_ALL are passed through to `org-closest-date'."
11353 (cond
11354 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
11355 (if (org-diary-sexp-entry (match-string 1 s) "" date)
11356 daynr
11357 (+ daynr 1000)))
11358 ((and daynr (string-match "\\+[0-9]+[dwmy]" s))
11359 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
11360 (time-to-days (current-time))) (match-string 0 s)
11361 prefer show-all))
11362 (t (time-to-days (apply 'encode-time (org-parse-time-string s))))))
11364 (defun org-days-to-iso-week (days)
11365 "Return the iso week number."
11366 (require 'cal-iso)
11367 (car (calendar-iso-from-absolute days)))
11369 (defun org-small-year-to-year (year)
11370 "Convert 2-digit years into 4-digit years.
11371 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2007.
11372 The year 2000 cannot be abbreviated. Any year lager than 99
11373 is retrned unchanged."
11374 (if (< year 38)
11375 (setq year (+ 2000 year))
11376 (if (< year 100)
11377 (setq year (+ 1900 year))))
11378 year)
11380 (defun org-time-from-absolute (d)
11381 "Return the time corresponding to date D.
11382 D may be an absolute day number, or a calendar-type list (month day year)."
11383 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
11384 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
11386 (defun org-calendar-holiday ()
11387 "List of holidays, for Diary display in Org-mode."
11388 (require 'holidays)
11389 (let ((hl (funcall
11390 (if (fboundp 'calendar-check-holidays)
11391 'calendar-check-holidays 'check-calendar-holidays) date)))
11392 (if hl (mapconcat 'identity hl "; "))))
11394 (defun org-diary-sexp-entry (sexp entry date)
11395 "Process a SEXP diary ENTRY for DATE."
11396 (require 'diary-lib)
11397 (let ((result (if calendar-debug-sexp
11398 (let ((stack-trace-on-error t))
11399 (eval (car (read-from-string sexp))))
11400 (condition-case nil
11401 (eval (car (read-from-string sexp)))
11402 (error
11403 (beep)
11404 (message "Bad sexp at line %d in %s: %s"
11405 (org-current-line)
11406 (buffer-file-name) sexp)
11407 (sleep-for 2))))))
11408 (cond ((stringp result) result)
11409 ((and (consp result)
11410 (stringp (cdr result))) (cdr result))
11411 (result entry)
11412 (t nil))))
11414 (defun org-diary-to-ical-string (frombuf)
11415 "Get iCalendar entries from diary entries in buffer FROMBUF.
11416 This uses the icalendar.el library."
11417 (let* ((tmpdir (if (featurep 'xemacs)
11418 (temp-directory)
11419 temporary-file-directory))
11420 (tmpfile (make-temp-name
11421 (expand-file-name "orgics" tmpdir)))
11422 buf rtn b e)
11423 (save-excursion
11424 (set-buffer frombuf)
11425 (icalendar-export-region (point-min) (point-max) tmpfile)
11426 (setq buf (find-buffer-visiting tmpfile))
11427 (set-buffer buf)
11428 (goto-char (point-min))
11429 (if (re-search-forward "^BEGIN:VEVENT" nil t)
11430 (setq b (match-beginning 0)))
11431 (goto-char (point-max))
11432 (if (re-search-backward "^END:VEVENT" nil t)
11433 (setq e (match-end 0)))
11434 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
11435 (kill-buffer buf)
11436 (delete-file tmpfile)
11437 rtn))
11439 (defun org-closest-date (start current change prefer show-all)
11440 "Find the date closest to CURRENT that is consistent with START and CHANGE.
11441 When PREFER is `past' return a date that is either CURRENT or past.
11442 When PREFER is `future', return a date that is either CURRENT or future.
11443 When SHOW-ALL is nil, only return the current occurence of a time stamp."
11444 ;; Make the proper lists from the dates
11445 (catch 'exit
11446 (let ((a1 '(("d" . day) ("w" . week) ("m" . month) ("y" . year)))
11447 dn dw sday cday n1 n2
11448 d m y y1 y2 date1 date2 nmonths nm ny m2)
11450 (setq start (org-date-to-gregorian start)
11451 current (org-date-to-gregorian
11452 (if show-all
11453 current
11454 (time-to-days (current-time))))
11455 sday (calendar-absolute-from-gregorian start)
11456 cday (calendar-absolute-from-gregorian current))
11458 (if (<= cday sday) (throw 'exit sday))
11460 (if (string-match "\\(\\+[0-9]+\\)\\([dwmy]\\)" change)
11461 (setq dn (string-to-number (match-string 1 change))
11462 dw (cdr (assoc (match-string 2 change) a1)))
11463 (error "Invalid change specifyer: %s" change))
11464 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
11465 (cond
11466 ((eq dw 'day)
11467 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
11468 n2 (+ n1 dn)))
11469 ((eq dw 'year)
11470 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
11471 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
11472 (setq date1 (list m d y1)
11473 n1 (calendar-absolute-from-gregorian date1)
11474 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
11475 n2 (calendar-absolute-from-gregorian date2)))
11476 ((eq dw 'month)
11477 ;; approx number of month between the tow dates
11478 (setq nmonths (floor (/ (- cday sday) 30.436875)))
11479 ;; How often does dn fit in there?
11480 (setq d (nth 1 start) m (car start) y (nth 2 start)
11481 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
11482 m (+ m nm)
11483 ny (floor (/ m 12))
11484 y (+ y ny)
11485 m (- m (* ny 12)))
11486 (while (> m 12) (setq m (- m 12) y (1+ y)))
11487 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
11488 (setq m2 (+ m dn) y2 y)
11489 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
11490 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
11491 (while (< n2 cday)
11492 (setq n1 n2 m m2 y y2)
11493 (setq m2 (+ m dn) y2 y)
11494 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
11495 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
11497 (if show-all
11498 (cond
11499 ((eq prefer 'past) n1)
11500 ((eq prefer 'future) (if (= cday n1) n1 n2))
11501 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
11502 (cond
11503 ((eq prefer 'past) n1)
11504 ((eq prefer 'future) (if (= cday n1) n1 n2))
11505 (t (if (= cday n1) n1 n2)))))))
11507 (defun org-date-to-gregorian (date)
11508 "Turn any specification of DATE into a gregorian date for the calendar."
11509 (cond ((integerp date) (calendar-gregorian-from-absolute date))
11510 ((and (listp date) (= (length date) 3)) date)
11511 ((stringp date)
11512 (setq date (org-parse-time-string date))
11513 (list (nth 4 date) (nth 3 date) (nth 5 date)))
11514 ((listp date)
11515 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
11517 (defun org-parse-time-string (s &optional nodefault)
11518 "Parse the standard Org-mode time string.
11519 This should be a lot faster than the normal `parse-time-string'.
11520 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
11521 hour and minute fields will be nil if not given."
11522 (if (string-match org-ts-regexp0 s)
11523 (list 0
11524 (if (or (match-beginning 8) (not nodefault))
11525 (string-to-number (or (match-string 8 s) "0")))
11526 (if (or (match-beginning 7) (not nodefault))
11527 (string-to-number (or (match-string 7 s) "0")))
11528 (string-to-number (match-string 4 s))
11529 (string-to-number (match-string 3 s))
11530 (string-to-number (match-string 2 s))
11531 nil nil nil)
11532 (make-list 9 0)))
11534 (defun org-timestamp-up (&optional arg)
11535 "Increase the date item at the cursor by one.
11536 If the cursor is on the year, change the year. If it is on the month or
11537 the day, change that.
11538 With prefix ARG, change by that many units."
11539 (interactive "p")
11540 (org-timestamp-change (prefix-numeric-value arg)))
11542 (defun org-timestamp-down (&optional arg)
11543 "Decrease the date item at the cursor by one.
11544 If the cursor is on the year, change the year. If it is on the month or
11545 the day, change that.
11546 With prefix ARG, change by that many units."
11547 (interactive "p")
11548 (org-timestamp-change (- (prefix-numeric-value arg))))
11550 (defun org-timestamp-up-day (&optional arg)
11551 "Increase the date in the time stamp by one day.
11552 With prefix ARG, change that many days."
11553 (interactive "p")
11554 (if (and (not (org-at-timestamp-p t))
11555 (org-on-heading-p))
11556 (org-todo 'up)
11557 (org-timestamp-change (prefix-numeric-value arg) 'day)))
11559 (defun org-timestamp-down-day (&optional arg)
11560 "Decrease the date in the time stamp by one day.
11561 With prefix ARG, change that many days."
11562 (interactive "p")
11563 (if (and (not (org-at-timestamp-p t))
11564 (org-on-heading-p))
11565 (org-todo 'down)
11566 (org-timestamp-change (- (prefix-numeric-value arg)) 'day)))
11568 (defun org-at-timestamp-p (&optional inactive-ok)
11569 "Determine if the cursor is in or at a timestamp."
11570 (interactive)
11571 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
11572 (pos (point))
11573 (ans (or (looking-at tsr)
11574 (save-excursion
11575 (skip-chars-backward "^[<\n\r\t")
11576 (if (> (point) (point-min)) (backward-char 1))
11577 (and (looking-at tsr)
11578 (> (- (match-end 0) pos) -1))))))
11579 (and ans
11580 (boundp 'org-ts-what)
11581 (setq org-ts-what
11582 (cond
11583 ((= pos (match-beginning 0)) 'bracket)
11584 ((= pos (1- (match-end 0))) 'bracket)
11585 ((org-pos-in-match-range pos 2) 'year)
11586 ((org-pos-in-match-range pos 3) 'month)
11587 ((org-pos-in-match-range pos 7) 'hour)
11588 ((org-pos-in-match-range pos 8) 'minute)
11589 ((or (org-pos-in-match-range pos 4)
11590 (org-pos-in-match-range pos 5)) 'day)
11591 ((and (> pos (or (match-end 8) (match-end 5)))
11592 (< pos (match-end 0)))
11593 (- pos (or (match-end 8) (match-end 5))))
11594 (t 'day))))
11595 ans))
11597 (defun org-toggle-timestamp-type ()
11598 "Toggle the type (<active> or [inactive]) of a time stamp."
11599 (interactive)
11600 (when (org-at-timestamp-p t)
11601 (save-excursion
11602 (goto-char (match-beginning 0))
11603 (insert (if (equal (char-after) ?<) "[" "<")) (delete-char 1)
11604 (goto-char (1- (match-end 0)))
11605 (insert (if (equal (char-after) ?>) "]" ">")) (delete-char 1))
11606 (message "Timestamp is now %sactive"
11607 (if (equal (char-before) ?>) "in" ""))))
11609 (defun org-timestamp-change (n &optional what)
11610 "Change the date in the time stamp at point.
11611 The date will be changed by N times WHAT. WHAT can be `day', `month',
11612 `year', `minute', `second'. If WHAT is not given, the cursor position
11613 in the timestamp determines what will be changed."
11614 (let ((pos (point))
11615 with-hm inactive
11616 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
11617 org-ts-what
11618 extra rem
11619 ts time time0)
11620 (if (not (org-at-timestamp-p t))
11621 (error "Not at a timestamp"))
11622 (if (and (not what) (eq org-ts-what 'bracket))
11623 (org-toggle-timestamp-type)
11624 (if (and (not what) (not (eq org-ts-what 'day))
11625 org-display-custom-times
11626 (get-text-property (point) 'display)
11627 (not (get-text-property (1- (point)) 'display)))
11628 (setq org-ts-what 'day))
11629 (setq org-ts-what (or what org-ts-what)
11630 inactive (= (char-after (match-beginning 0)) ?\[)
11631 ts (match-string 0))
11632 (replace-match "")
11633 (if (string-match
11634 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?[-+][0-9]+[dwmy]\\)*\\)[]>]"
11636 (setq extra (match-string 1 ts)))
11637 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
11638 (setq with-hm t))
11639 (setq time0 (org-parse-time-string ts))
11640 (when (and (eq org-ts-what 'minute)
11641 (eq current-prefix-arg nil))
11642 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
11643 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
11644 (setcar (cdr time0) (+ (nth 1 time0)
11645 (if (> n 0) (- rem) (- dm rem))))))
11646 (setq time
11647 (encode-time (or (car time0) 0)
11648 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
11649 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
11650 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
11651 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
11652 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
11653 (nthcdr 6 time0)))
11654 (when (integerp org-ts-what)
11655 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
11656 (if (eq what 'calendar)
11657 (let ((cal-date (org-get-date-from-calendar)))
11658 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
11659 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
11660 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
11661 (setcar time0 (or (car time0) 0))
11662 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
11663 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
11664 (setq time (apply 'encode-time time0))))
11665 (setq org-last-changed-timestamp
11666 (org-insert-time-stamp time with-hm inactive nil nil extra))
11667 (org-clock-update-time-maybe)
11668 (goto-char pos)
11669 ;; Try to recenter the calendar window, if any
11670 (if (and org-calendar-follow-timestamp-change
11671 (get-buffer-window "*Calendar*" t)
11672 (memq org-ts-what '(day month year)))
11673 (org-recenter-calendar (time-to-days time))))))
11675 (defun org-modify-ts-extra (s pos n dm)
11676 "Change the different parts of the lead-time and repeat fields in timestamp."
11677 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
11678 ng h m new rem)
11679 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
11680 (cond
11681 ((or (org-pos-in-match-range pos 2)
11682 (org-pos-in-match-range pos 3))
11683 (setq m (string-to-number (match-string 3 s))
11684 h (string-to-number (match-string 2 s)))
11685 (if (org-pos-in-match-range pos 2)
11686 (setq h (+ h n))
11687 (setq n (* dm (org-no-warnings (signum n))))
11688 (when (not (= 0 (setq rem (% m dm))))
11689 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
11690 (setq m (+ m n)))
11691 (if (< m 0) (setq m (+ m 60) h (1- h)))
11692 (if (> m 59) (setq m (- m 60) h (1+ h)))
11693 (setq h (min 24 (max 0 h)))
11694 (setq ng 1 new (format "-%02d:%02d" h m)))
11695 ((org-pos-in-match-range pos 6)
11696 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
11697 ((org-pos-in-match-range pos 5)
11698 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
11700 ((org-pos-in-match-range pos 9)
11701 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
11702 ((org-pos-in-match-range pos 8)
11703 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
11705 (when ng
11706 (setq s (concat
11707 (substring s 0 (match-beginning ng))
11709 (substring s (match-end ng))))))
11712 (defun org-recenter-calendar (date)
11713 "If the calendar is visible, recenter it to DATE."
11714 (let* ((win (selected-window))
11715 (cwin (get-buffer-window "*Calendar*" t))
11716 (calendar-move-hook nil))
11717 (when cwin
11718 (select-window cwin)
11719 (calendar-goto-date (if (listp date) date
11720 (calendar-gregorian-from-absolute date)))
11721 (select-window win))))
11723 (defun org-goto-calendar (&optional arg)
11724 "Go to the Emacs calendar at the current date.
11725 If there is a time stamp in the current line, go to that date.
11726 A prefix ARG can be used to force the current date."
11727 (interactive "P")
11728 (let ((tsr org-ts-regexp) diff
11729 (calendar-move-hook nil)
11730 (calendar-view-holidays-initially-flag nil)
11731 (view-calendar-holidays-initially nil)
11732 (calendar-view-diary-initially-flag nil)
11733 (view-diary-entries-initially nil))
11734 (if (or (org-at-timestamp-p)
11735 (save-excursion
11736 (beginning-of-line 1)
11737 (looking-at (concat ".*" tsr))))
11738 (let ((d1 (time-to-days (current-time)))
11739 (d2 (time-to-days
11740 (org-time-string-to-time (match-string 1)))))
11741 (setq diff (- d2 d1))))
11742 (calendar)
11743 (calendar-goto-today)
11744 (if (and diff (not arg)) (calendar-forward-day diff))))
11746 (defun org-get-date-from-calendar ()
11747 "Return a list (month day year) of date at point in calendar."
11748 (with-current-buffer "*Calendar*"
11749 (save-match-data
11750 (calendar-cursor-to-date))))
11752 (defun org-date-from-calendar ()
11753 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
11754 If there is already a time stamp at the cursor position, update it."
11755 (interactive)
11756 (if (org-at-timestamp-p t)
11757 (org-timestamp-change 0 'calendar)
11758 (let ((cal-date (org-get-date-from-calendar)))
11759 (org-insert-time-stamp
11760 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
11762 (defun org-minutes-to-hh:mm-string (m)
11763 "Compute H:MM from a number of minutes."
11764 (let ((h (/ m 60)))
11765 (setq m (- m (* 60 h)))
11766 (format org-time-clocksum-format h m)))
11768 (defun org-hh:mm-string-to-minutes (s)
11769 "Convert a string H:MM to a number of minutes."
11770 (if (string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
11771 (+ (* (string-to-number (match-string 1 s)) 60)
11772 (string-to-number (match-string 2 s)))
11775 ;;;; Agenda files
11777 ;;;###autoload
11778 (defun org-iswitchb (&optional arg)
11779 "Use `iswitchb-read-buffer' to prompt for an Org buffer to switch to.
11780 With a prefix argument, restrict available to files.
11781 With two prefix arguments, restrict available buffers to agenda files.
11783 Due to some yet unresolved reason, global function
11784 `iswitchb-mode' needs to be active for this function to work."
11785 (interactive "P")
11786 (require 'iswitchb)
11787 (let ((enabled iswitchb-mode) blist)
11788 (or enabled (iswitchb-mode 1))
11789 (setq blist (cond ((equal arg '(4)) (org-buffer-list 'files))
11790 ((equal arg '(16)) (org-buffer-list 'agenda))
11791 (t (org-buffer-list))))
11792 (unwind-protect
11793 (let ((iswitchb-make-buflist-hook
11794 (lambda ()
11795 (setq iswitchb-temp-buflist
11796 (mapcar 'buffer-name blist)))))
11797 (switch-to-buffer
11798 (iswitchb-read-buffer
11799 "Switch-to: " nil t))
11800 (or enabled (iswitchb-mode -1))))))
11802 (defun org-buffer-list (&optional predicate tmp)
11803 "Return a list of Org buffers.
11804 PREDICATE can be either 'export, 'files or 'agenda.
11806 'export restrict the list to Export buffers.
11807 'files restrict the list to buffers visiting Org files.
11808 'agenda restrict the list to buffers visiting agenda files.
11810 If TMP is non-nil, don't include temporary buffers."
11811 (let (filter blist)
11812 (setq filter
11813 (cond ((eq predicate 'files) "\.org$")
11814 ((eq predicate 'export) "\*Org .*Export")
11815 (t "\*Org \\|\.org$")))
11816 (setq blist
11817 (mapcar
11818 (lambda(b)
11819 (let ((bname (buffer-name b))
11820 (bfile (buffer-file-name b)))
11821 (if (and (string-match filter bname)
11822 (if (eq predicate 'agenda)
11823 (member bfile
11824 (mapcar (lambda(f) (file-truename f))
11825 org-agenda-files)) t)
11826 (if tmp (not (string-match "tmp" bname)) t)) b)))
11827 (buffer-list)))
11828 (delete nil blist)))
11830 (defun org-agenda-files (&optional unrestricted ext)
11831 "Get the list of agenda files.
11832 Optional UNRESTRICTED means return the full list even if a restriction
11833 is currently in place.
11834 When EXT is non-nil, try to add all files that are created by adding EXT
11835 to the file nemes. Basically, this is a way to add the archive files
11836 to the list, by setting EXT to \"_archive\" If EXT is non-nil, but not
11837 a string, \"_archive\" will be used."
11838 (let ((files
11839 (cond
11840 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
11841 ((stringp org-agenda-files) (org-read-agenda-file-list))
11842 ((listp org-agenda-files) org-agenda-files)
11843 (t (error "Invalid value of `org-agenda-files'")))))
11844 (setq files (apply 'append
11845 (mapcar (lambda (f)
11846 (if (file-directory-p f)
11847 (directory-files
11848 f t org-agenda-file-regexp)
11849 (list f)))
11850 files)))
11851 (when org-agenda-skip-unavailable-files
11852 (setq files (delq nil
11853 (mapcar (function
11854 (lambda (file)
11855 (and (file-readable-p file) file)))
11856 files))))
11857 (when ext
11858 (setq ext (if (and (stringp ext) (string-match "\\S-" ext))
11859 ext "_archive"))
11860 (setq files (apply 'append
11861 (mapcar
11862 (lambda (f)
11863 (if (file-exists-p (concat f ext))
11864 (list f (concat f ext))
11865 (list f)))
11866 files))))
11867 files))
11869 (defun org-edit-agenda-file-list ()
11870 "Edit the list of agenda files.
11871 Depending on setup, this either uses customize to edit the variable
11872 `org-agenda-files', or it visits the file that is holding the list. In the
11873 latter case, the buffer is set up in a way that saving it automatically kills
11874 the buffer and restores the previous window configuration."
11875 (interactive)
11876 (if (stringp org-agenda-files)
11877 (let ((cw (current-window-configuration)))
11878 (find-file org-agenda-files)
11879 (org-set-local 'org-window-configuration cw)
11880 (org-add-hook 'after-save-hook
11881 (lambda ()
11882 (set-window-configuration
11883 (prog1 org-window-configuration
11884 (kill-buffer (current-buffer))))
11885 (org-install-agenda-files-menu)
11886 (message "New agenda file list installed"))
11887 nil 'local)
11888 (message "%s" (substitute-command-keys
11889 "Edit list and finish with \\[save-buffer]")))
11890 (customize-variable 'org-agenda-files)))
11892 (defun org-store-new-agenda-file-list (list)
11893 "Set new value for the agenda file list and save it correcly."
11894 (if (stringp org-agenda-files)
11895 (let ((f org-agenda-files) b)
11896 (while (setq b (find-buffer-visiting f)) (kill-buffer b))
11897 (with-temp-file f
11898 (insert (mapconcat 'identity list "\n") "\n")))
11899 (let ((org-mode-hook nil) (default-major-mode 'fundamental-mode))
11900 (setq org-agenda-files list)
11901 (customize-save-variable 'org-agenda-files org-agenda-files))))
11903 (defun org-read-agenda-file-list ()
11904 "Read the list of agenda files from a file."
11905 (when (file-directory-p org-agenda-files)
11906 (error "`org-agenda-files' cannot be a single directory"))
11907 (when (stringp org-agenda-files)
11908 (with-temp-buffer
11909 (insert-file-contents org-agenda-files)
11910 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*"))))
11913 ;;;###autoload
11914 (defun org-cycle-agenda-files ()
11915 "Cycle through the files in `org-agenda-files'.
11916 If the current buffer visits an agenda file, find the next one in the list.
11917 If the current buffer does not, find the first agenda file."
11918 (interactive)
11919 (let* ((fs (org-agenda-files t))
11920 (files (append fs (list (car fs))))
11921 (tcf (if buffer-file-name (file-truename buffer-file-name)))
11922 file)
11923 (unless files (error "No agenda files"))
11924 (catch 'exit
11925 (while (setq file (pop files))
11926 (if (equal (file-truename file) tcf)
11927 (when (car files)
11928 (find-file (car files))
11929 (throw 'exit t))))
11930 (find-file (car fs)))
11931 (if (buffer-base-buffer) (switch-to-buffer (buffer-base-buffer)))))
11933 (defun org-agenda-file-to-front (&optional to-end)
11934 "Move/add the current file to the top of the agenda file list.
11935 If the file is not present in the list, it is added to the front. If it is
11936 present, it is moved there. With optional argument TO-END, add/move to the
11937 end of the list."
11938 (interactive "P")
11939 (let ((org-agenda-skip-unavailable-files nil)
11940 (file-alist (mapcar (lambda (x)
11941 (cons (file-truename x) x))
11942 (org-agenda-files t)))
11943 (ctf (file-truename buffer-file-name))
11944 x had)
11945 (setq x (assoc ctf file-alist) had x)
11947 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
11948 (if to-end
11949 (setq file-alist (append (delq x file-alist) (list x)))
11950 (setq file-alist (cons x (delq x file-alist))))
11951 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
11952 (org-install-agenda-files-menu)
11953 (message "File %s to %s of agenda file list"
11954 (if had "moved" "added") (if to-end "end" "front"))))
11956 (defun org-remove-file (&optional file)
11957 "Remove current file from the list of files in variable `org-agenda-files'.
11958 These are the files which are being checked for agenda entries.
11959 Optional argument FILE means, use this file instead of the current."
11960 (interactive)
11961 (let* ((org-agenda-skip-unavailable-files nil)
11962 (file (or file buffer-file-name))
11963 (true-file (file-truename file))
11964 (afile (abbreviate-file-name file))
11965 (files (delq nil (mapcar
11966 (lambda (x)
11967 (if (equal true-file
11968 (file-truename x))
11969 nil x))
11970 (org-agenda-files t)))))
11971 (if (not (= (length files) (length (org-agenda-files t))))
11972 (progn
11973 (org-store-new-agenda-file-list files)
11974 (org-install-agenda-files-menu)
11975 (message "Removed file: %s" afile))
11976 (message "File was not in list: %s (not removed)" afile))))
11978 (defun org-file-menu-entry (file)
11979 (vector file (list 'find-file file) t))
11981 (defun org-check-agenda-file (file)
11982 "Make sure FILE exists. If not, ask user what to do."
11983 (when (not (file-exists-p file))
11984 (message "non-existent file %s. [R]emove from list or [A]bort?"
11985 (abbreviate-file-name file))
11986 (let ((r (downcase (read-char-exclusive))))
11987 (cond
11988 ((equal r ?r)
11989 (org-remove-file file)
11990 (throw 'nextfile t))
11991 (t (error "Abort"))))))
11993 (defun org-get-agenda-file-buffer (file)
11994 "Get a buffer visiting FILE. If the buffer needs to be created, add
11995 it to the list of buffers which might be released later."
11996 (let ((buf (org-find-base-buffer-visiting file)))
11997 (if buf
11998 buf ; just return it
11999 ;; Make a new buffer and remember it
12000 (setq buf (find-file-noselect file))
12001 (if buf (push buf org-agenda-new-buffers))
12002 buf)))
12004 (defun org-release-buffers (blist)
12005 "Release all buffers in list, asking the user for confirmation when needed.
12006 When a buffer is unmodified, it is just killed. When modified, it is saved
12007 \(if the user agrees) and then killed."
12008 (let (buf file)
12009 (while (setq buf (pop blist))
12010 (setq file (buffer-file-name buf))
12011 (when (and (buffer-modified-p buf)
12012 file
12013 (y-or-n-p (format "Save file %s? " file)))
12014 (with-current-buffer buf (save-buffer)))
12015 (kill-buffer buf))))
12017 (defun org-prepare-agenda-buffers (files)
12018 "Create buffers for all agenda files, protect archived trees and comments."
12019 (interactive)
12020 (let ((pa '(:org-archived t))
12021 (pc '(:org-comment t))
12022 (pall '(:org-archived t :org-comment t))
12023 (inhibit-read-only t)
12024 (rea (concat ":" org-archive-tag ":"))
12025 bmp file re)
12026 (save-excursion
12027 (save-restriction
12028 (while (setq file (pop files))
12029 (if (bufferp file)
12030 (set-buffer file)
12031 (org-check-agenda-file file)
12032 (set-buffer (org-get-agenda-file-buffer file)))
12033 (widen)
12034 (setq bmp (buffer-modified-p))
12035 (org-refresh-category-properties)
12036 (setq org-todo-keywords-for-agenda
12037 (append org-todo-keywords-for-agenda org-todo-keywords-1))
12038 (setq org-done-keywords-for-agenda
12039 (append org-done-keywords-for-agenda org-done-keywords))
12040 (save-excursion
12041 (remove-text-properties (point-min) (point-max) pall)
12042 (when org-agenda-skip-archived-trees
12043 (goto-char (point-min))
12044 (while (re-search-forward rea nil t)
12045 (if (org-on-heading-p t)
12046 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
12047 (goto-char (point-min))
12048 (setq re (concat "^\\*+ +" org-comment-string "\\>"))
12049 (while (re-search-forward re nil t)
12050 (add-text-properties
12051 (match-beginning 0) (org-end-of-subtree t) pc)))
12052 (set-buffer-modified-p bmp))))))
12054 ;;;; Embedded LaTeX
12056 (defvar org-cdlatex-mode-map (make-sparse-keymap)
12057 "Keymap for the minor `org-cdlatex-mode'.")
12059 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
12060 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
12061 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
12062 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
12063 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
12065 (defvar org-cdlatex-texmathp-advice-is-done nil
12066 "Flag remembering if we have applied the advice to texmathp already.")
12068 (define-minor-mode org-cdlatex-mode
12069 "Toggle the minor `org-cdlatex-mode'.
12070 This mode supports entering LaTeX environment and math in LaTeX fragments
12071 in Org-mode.
12072 \\{org-cdlatex-mode-map}"
12073 nil " OCDL" nil
12074 (when org-cdlatex-mode (require 'cdlatex))
12075 (unless org-cdlatex-texmathp-advice-is-done
12076 (setq org-cdlatex-texmathp-advice-is-done t)
12077 (defadvice texmathp (around org-math-always-on activate)
12078 "Always return t in org-mode buffers.
12079 This is because we want to insert math symbols without dollars even outside
12080 the LaTeX math segments. If Orgmode thinks that point is actually inside
12081 en embedded LaTeX fragement, let texmathp do its job.
12082 \\[org-cdlatex-mode-map]"
12083 (interactive)
12084 (let (p)
12085 (cond
12086 ((not (org-mode-p)) ad-do-it)
12087 ((eq this-command 'cdlatex-math-symbol)
12088 (setq ad-return-value t
12089 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
12091 (let ((p (org-inside-LaTeX-fragment-p)))
12092 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
12093 (setq ad-return-value t
12094 texmathp-why '("Org-mode embedded math" . 0))
12095 (if p ad-do-it)))))))))
12097 (defun turn-on-org-cdlatex ()
12098 "Unconditionally turn on `org-cdlatex-mode'."
12099 (org-cdlatex-mode 1))
12101 (defun org-inside-LaTeX-fragment-p ()
12102 "Test if point is inside a LaTeX fragment.
12103 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
12104 sequence appearing also before point.
12105 Even though the matchers for math are configurable, this function assumes
12106 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
12107 delimiters are skipped when they have been removed by customization.
12108 The return value is nil, or a cons cell with the delimiter and
12109 and the position of this delimiter.
12111 This function does a reasonably good job, but can locally be fooled by
12112 for example currency specifications. For example it will assume being in
12113 inline math after \"$22.34\". The LaTeX fragment formatter will only format
12114 fragments that are properly closed, but during editing, we have to live
12115 with the uncertainty caused by missing closing delimiters. This function
12116 looks only before point, not after."
12117 (catch 'exit
12118 (let ((pos (point))
12119 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
12120 (lim (progn
12121 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
12122 (point)))
12123 dd-on str (start 0) m re)
12124 (goto-char pos)
12125 (when dodollar
12126 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
12127 re (nth 1 (assoc "$" org-latex-regexps)))
12128 (while (string-match re str start)
12129 (cond
12130 ((= (match-end 0) (length str))
12131 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
12132 ((= (match-end 0) (- (length str) 5))
12133 (throw 'exit nil))
12134 (t (setq start (match-end 0))))))
12135 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
12136 (goto-char pos)
12137 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
12138 (and (match-beginning 2) (throw 'exit nil))
12139 ;; count $$
12140 (while (re-search-backward "\\$\\$" lim t)
12141 (setq dd-on (not dd-on)))
12142 (goto-char pos)
12143 (if dd-on (cons "$$" m))))))
12146 (defun org-try-cdlatex-tab ()
12147 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
12148 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
12149 - inside a LaTeX fragment, or
12150 - after the first word in a line, where an abbreviation expansion could
12151 insert a LaTeX environment."
12152 (when org-cdlatex-mode
12153 (cond
12154 ((save-excursion
12155 (skip-chars-backward "a-zA-Z0-9*")
12156 (skip-chars-backward " \t")
12157 (bolp))
12158 (cdlatex-tab) t)
12159 ((org-inside-LaTeX-fragment-p)
12160 (cdlatex-tab) t)
12161 (t nil))))
12163 (defun org-cdlatex-underscore-caret (&optional arg)
12164 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
12165 Revert to the normal definition outside of these fragments."
12166 (interactive "P")
12167 (if (org-inside-LaTeX-fragment-p)
12168 (call-interactively 'cdlatex-sub-superscript)
12169 (let (org-cdlatex-mode)
12170 (call-interactively (key-binding (vector last-input-event))))))
12172 (defun org-cdlatex-math-modify (&optional arg)
12173 "Execute `cdlatex-math-modify' in LaTeX fragments.
12174 Revert to the normal definition outside of these fragments."
12175 (interactive "P")
12176 (if (org-inside-LaTeX-fragment-p)
12177 (call-interactively 'cdlatex-math-modify)
12178 (let (org-cdlatex-mode)
12179 (call-interactively (key-binding (vector last-input-event))))))
12181 (defvar org-latex-fragment-image-overlays nil
12182 "List of overlays carrying the images of latex fragments.")
12183 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
12185 (defun org-remove-latex-fragment-image-overlays ()
12186 "Remove all overlays with LaTeX fragment images in current buffer."
12187 (mapc 'org-delete-overlay org-latex-fragment-image-overlays)
12188 (setq org-latex-fragment-image-overlays nil))
12190 (defun org-preview-latex-fragment (&optional subtree)
12191 "Preview the LaTeX fragment at point, or all locally or globally.
12192 If the cursor is in a LaTeX fragment, create the image and overlay
12193 it over the source code. If there is no fragment at point, display
12194 all fragments in the current text, from one headline to the next. With
12195 prefix SUBTREE, display all fragments in the current subtree. With a
12196 double prefix `C-u C-u', or when the cursor is before the first headline,
12197 display all fragments in the buffer.
12198 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
12199 (interactive "P")
12200 (org-remove-latex-fragment-image-overlays)
12201 (save-excursion
12202 (save-restriction
12203 (let (beg end at msg)
12204 (cond
12205 ((or (equal subtree '(16))
12206 (not (save-excursion
12207 (re-search-backward (concat "^" outline-regexp) nil t))))
12208 (setq beg (point-min) end (point-max)
12209 msg "Creating images for buffer...%s"))
12210 ((equal subtree '(4))
12211 (org-back-to-heading)
12212 (setq beg (point) end (org-end-of-subtree t)
12213 msg "Creating images for subtree...%s"))
12215 (if (setq at (org-inside-LaTeX-fragment-p))
12216 (goto-char (max (point-min) (- (cdr at) 2)))
12217 (org-back-to-heading))
12218 (setq beg (point) end (progn (outline-next-heading) (point))
12219 msg (if at "Creating image...%s"
12220 "Creating images for entry...%s"))))
12221 (message msg "")
12222 (narrow-to-region beg end)
12223 (goto-char beg)
12224 (org-format-latex
12225 (concat "ltxpng/" (file-name-sans-extension
12226 (file-name-nondirectory
12227 buffer-file-name)))
12228 default-directory 'overlays msg at 'forbuffer)
12229 (message msg "done. Use `C-c C-c' to remove images.")))))
12231 (defvar org-latex-regexps
12232 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
12233 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
12234 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
12235 ("$" "\\([^$]\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([ .,?;:'\")\000]\\|$\\)" 2 nil)
12236 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
12237 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 t)
12238 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 t))
12239 "Regular expressions for matching embedded LaTeX.")
12241 (defun org-format-latex (prefix &optional dir overlays msg at forbuffer)
12242 "Replace LaTeX fragments with links to an image, and produce images."
12243 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
12244 (let* ((prefixnodir (file-name-nondirectory prefix))
12245 (absprefix (expand-file-name prefix dir))
12246 (todir (file-name-directory absprefix))
12247 (opt org-format-latex-options)
12248 (matchers (plist-get opt :matchers))
12249 (re-list org-latex-regexps)
12250 (cnt 0) txt link beg end re e checkdir
12251 m n block linkfile movefile ov)
12252 ;; Check if there are old images files with this prefix, and remove them
12253 (when (file-directory-p todir)
12254 (mapc 'delete-file
12255 (directory-files
12256 todir 'full
12257 (concat (regexp-quote prefixnodir) "_[0-9]+\\.png$"))))
12258 ;; Check the different regular expressions
12259 (while (setq e (pop re-list))
12260 (setq m (car e) re (nth 1 e) n (nth 2 e)
12261 block (if (nth 3 e) "\n\n" ""))
12262 (when (member m matchers)
12263 (goto-char (point-min))
12264 (while (re-search-forward re nil t)
12265 (when (or (not at) (equal (cdr at) (match-beginning n)))
12266 (setq txt (match-string n)
12267 beg (match-beginning n) end (match-end n)
12268 cnt (1+ cnt)
12269 linkfile (format "%s_%04d.png" prefix cnt)
12270 movefile (format "%s_%04d.png" absprefix cnt)
12271 link (concat block "[[file:" linkfile "]]" block))
12272 (if msg (message msg cnt))
12273 (goto-char beg)
12274 (unless checkdir ; make sure the directory exists
12275 (setq checkdir t)
12276 (or (file-directory-p todir) (make-directory todir)))
12277 (org-create-formula-image
12278 txt movefile opt forbuffer)
12279 (if overlays
12280 (progn
12281 (setq ov (org-make-overlay beg end))
12282 (if (featurep 'xemacs)
12283 (progn
12284 (org-overlay-put ov 'invisible t)
12285 (org-overlay-put
12286 ov 'end-glyph
12287 (make-glyph (vector 'png :file movefile))))
12288 (org-overlay-put
12289 ov 'display
12290 (list 'image :type 'png :file movefile :ascent 'center)))
12291 (push ov org-latex-fragment-image-overlays)
12292 (goto-char end))
12293 (delete-region beg end)
12294 (insert link))))))))
12296 ;; This function borrows from Ganesh Swami's latex2png.el
12297 (defun org-create-formula-image (string tofile options buffer)
12298 (let* ((tmpdir (if (featurep 'xemacs)
12299 (temp-directory)
12300 temporary-file-directory))
12301 (texfilebase (make-temp-name
12302 (expand-file-name "orgtex" tmpdir)))
12303 (texfile (concat texfilebase ".tex"))
12304 (dvifile (concat texfilebase ".dvi"))
12305 (pngfile (concat texfilebase ".png"))
12306 (fnh (if (featurep 'xemacs)
12307 (font-height (get-face-font 'default))
12308 (face-attribute 'default :height nil)))
12309 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
12310 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
12311 (fg (or (plist-get options (if buffer :foreground :html-foreground))
12312 "Black"))
12313 (bg (or (plist-get options (if buffer :background :html-background))
12314 "Transparent")))
12315 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground)))
12316 (if (eq bg 'default) (setq bg (org-dvipng-color :background)))
12317 (with-temp-file texfile
12318 (insert org-format-latex-header
12319 "\n\\begin{document}\n" string "\n\\end{document}\n"))
12320 (let ((dir default-directory))
12321 (condition-case nil
12322 (progn
12323 (cd tmpdir)
12324 (call-process "latex" nil nil nil texfile))
12325 (error nil))
12326 (cd dir))
12327 (if (not (file-exists-p dvifile))
12328 (progn (message "Failed to create dvi file from %s" texfile) nil)
12329 (call-process "dvipng" nil nil nil
12330 "-E" "-fg" fg "-bg" bg
12331 "-D" dpi
12332 ;;"-x" scale "-y" scale
12333 "-T" "tight"
12334 "-o" pngfile
12335 dvifile)
12336 (if (not (file-exists-p pngfile))
12337 (progn (message "Failed to create png file from %s" texfile) nil)
12338 ;; Use the requested file name and clean up
12339 (copy-file pngfile tofile 'replace)
12340 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png") do
12341 (delete-file (concat texfilebase e)))
12342 pngfile))))
12344 (defun org-dvipng-color (attr)
12345 "Return an rgb color specification for dvipng."
12346 (apply 'format "rgb %s %s %s"
12347 (mapcar 'org-normalize-color
12348 (color-values (face-attribute 'default attr nil)))))
12350 (defun org-normalize-color (value)
12351 "Return string to be used as color value for an RGB component."
12352 (format "%g" (/ value 65535.0)))
12355 ;;;; Key bindings
12357 ;; Make `C-c C-x' a prefix key
12358 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
12360 ;; TAB key with modifiers
12361 (org-defkey org-mode-map "\C-i" 'org-cycle)
12362 (org-defkey org-mode-map [(tab)] 'org-cycle)
12363 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
12364 (org-defkey org-mode-map [(meta tab)] 'org-complete)
12365 (org-defkey org-mode-map "\M-\t" 'org-complete)
12366 (org-defkey org-mode-map "\M-\C-i" 'org-complete)
12367 ;; The following line is necessary under Suse GNU/Linux
12368 (unless (featurep 'xemacs)
12369 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
12370 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
12371 (define-key org-mode-map [backtab] 'org-shifttab)
12373 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
12374 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
12375 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
12377 ;; Cursor keys with modifiers
12378 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
12379 (org-defkey org-mode-map [(meta right)] 'org-metaright)
12380 (org-defkey org-mode-map [(meta up)] 'org-metaup)
12381 (org-defkey org-mode-map [(meta down)] 'org-metadown)
12383 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
12384 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
12385 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
12386 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
12388 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
12389 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
12390 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
12391 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
12393 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
12394 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
12396 ;;; Extra keys for tty access.
12397 ;; We only set them when really needed because otherwise the
12398 ;; menus don't show the simple keys
12400 (when (or (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
12401 (not window-system))
12402 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
12403 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
12404 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
12405 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
12406 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
12407 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
12408 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
12409 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
12410 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
12411 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
12412 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
12413 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
12414 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
12415 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
12416 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
12417 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
12418 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
12419 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
12420 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
12421 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
12422 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
12423 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft))
12425 ;; All the other keys
12427 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
12428 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
12429 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree)
12430 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
12431 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
12432 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-toggle-archive-tag)
12433 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
12434 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
12435 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
12436 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
12437 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
12438 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
12439 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
12440 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
12441 (org-defkey org-mode-map "\C-c\C-v" 'org-show-todo-tree)
12442 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
12443 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
12444 (org-defkey org-mode-map "\C-c\\" 'org-tags-sparse-tree) ; Minor-mode res.
12445 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
12446 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
12447 (org-defkey org-mode-map [(control return)] 'org-insert-heading-after-current)
12448 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
12449 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
12450 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
12451 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
12452 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
12453 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
12454 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
12455 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
12456 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
12457 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
12458 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
12459 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
12460 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
12461 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
12462 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
12463 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
12464 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
12465 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
12466 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
12467 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
12468 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
12469 (org-defkey org-mode-map "\C-c^" 'org-sort)
12470 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
12471 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
12472 (org-defkey org-mode-map "\C-c#" 'org-update-checkbox-count)
12473 (org-defkey org-mode-map "\C-m" 'org-return)
12474 (org-defkey org-mode-map "\C-j" 'org-return-indent)
12475 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
12476 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
12477 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
12478 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
12479 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
12480 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
12481 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
12482 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
12483 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
12484 (org-defkey org-mode-map "\C-c\C-q" 'org-table-wrap-region)
12485 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
12486 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
12487 (org-defkey org-mode-map "\C-c\C-e" 'org-export)
12488 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section)
12489 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
12491 (org-defkey org-mode-map "\C-c\C-x\C-k" 'org-cut-special)
12492 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
12493 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
12494 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
12496 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
12497 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
12498 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
12499 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
12500 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-cancel)
12501 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
12502 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
12503 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
12504 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
12505 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
12506 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
12507 (org-defkey org-mode-map "\C-c\C-xr" 'org-insert-columns-dblock)
12509 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
12511 (when (featurep 'xemacs)
12512 (org-defkey org-mode-map 'button3 'popup-mode-menu))
12514 (defvar org-table-auto-blank-field) ; defined in org-table.el
12515 (defun org-self-insert-command (N)
12516 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
12517 If the cursor is in a table looking at whitespace, the whitespace is
12518 overwritten, and the table is not marked as requiring realignment."
12519 (interactive "p")
12520 (if (and (org-table-p)
12521 (progn
12522 ;; check if we blank the field, and if that triggers align
12523 (and (featurep 'org-table) org-table-auto-blank-field
12524 (member last-command
12525 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
12526 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
12527 ;; got extra space, this field does not determine column width
12528 (let (org-table-may-need-update) (org-table-blank-field))
12529 ;; no extra space, this field may determine column width
12530 (org-table-blank-field)))
12532 (eq N 1)
12533 (looking-at "[^|\n]* |"))
12534 (let (org-table-may-need-update)
12535 (goto-char (1- (match-end 0)))
12536 (delete-backward-char 1)
12537 (goto-char (match-beginning 0))
12538 (self-insert-command N))
12539 (setq org-table-may-need-update t)
12540 (self-insert-command N)
12541 (org-fix-tags-on-the-fly)))
12543 (defun org-fix-tags-on-the-fly ()
12544 (when (and (equal (char-after (point-at-bol)) ?*)
12545 (org-on-heading-p))
12546 (org-align-tags-here org-tags-column)))
12548 (defun org-delete-backward-char (N)
12549 "Like `delete-backward-char', insert whitespace at field end in tables.
12550 When deleting backwards, in tables this function will insert whitespace in
12551 front of the next \"|\" separator, to keep the table aligned. The table will
12552 still be marked for re-alignment if the field did fill the entire column,
12553 because, in this case the deletion might narrow the column."
12554 (interactive "p")
12555 (if (and (org-table-p)
12556 (eq N 1)
12557 (string-match "|" (buffer-substring (point-at-bol) (point)))
12558 (looking-at ".*?|"))
12559 (let ((pos (point))
12560 (noalign (looking-at "[^|\n\r]* |"))
12561 (c org-table-may-need-update))
12562 (backward-delete-char N)
12563 (skip-chars-forward "^|")
12564 (insert " ")
12565 (goto-char (1- pos))
12566 ;; noalign: if there were two spaces at the end, this field
12567 ;; does not determine the width of the column.
12568 (if noalign (setq org-table-may-need-update c)))
12569 (backward-delete-char N)
12570 (org-fix-tags-on-the-fly)))
12572 (defun org-delete-char (N)
12573 "Like `delete-char', but insert whitespace at field end in tables.
12574 When deleting characters, in tables this function will insert whitespace in
12575 front of the next \"|\" separator, to keep the table aligned. The table will
12576 still be marked for re-alignment if the field did fill the entire column,
12577 because, in this case the deletion might narrow the column."
12578 (interactive "p")
12579 (if (and (org-table-p)
12580 (not (bolp))
12581 (not (= (char-after) ?|))
12582 (eq N 1))
12583 (if (looking-at ".*?|")
12584 (let ((pos (point))
12585 (noalign (looking-at "[^|\n\r]* |"))
12586 (c org-table-may-need-update))
12587 (replace-match (concat
12588 (substring (match-string 0) 1 -1)
12589 " |"))
12590 (goto-char pos)
12591 ;; noalign: if there were two spaces at the end, this field
12592 ;; does not determine the width of the column.
12593 (if noalign (setq org-table-may-need-update c)))
12594 (delete-char N))
12595 (delete-char N)
12596 (org-fix-tags-on-the-fly)))
12598 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
12599 (put 'org-self-insert-command 'delete-selection t)
12600 (put 'orgtbl-self-insert-command 'delete-selection t)
12601 (put 'org-delete-char 'delete-selection 'supersede)
12602 (put 'org-delete-backward-char 'delete-selection 'supersede)
12604 ;; Make `flyspell-mode' delay after some commands
12605 (put 'org-self-insert-command 'flyspell-delayed t)
12606 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
12607 (put 'org-delete-char 'flyspell-delayed t)
12608 (put 'org-delete-backward-char 'flyspell-delayed t)
12610 ;; Make pabbrev-mode expand after org-mode commands
12611 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
12612 (put 'orgybl-self-insert-command 'pabbrev-expand-after-command t)
12614 ;; How to do this: Measure non-white length of current string
12615 ;; If equal to column width, we should realign.
12617 (defun org-remap (map &rest commands)
12618 "In MAP, remap the functions given in COMMANDS.
12619 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
12620 (let (new old)
12621 (while commands
12622 (setq old (pop commands) new (pop commands))
12623 (if (fboundp 'command-remapping)
12624 (org-defkey map (vector 'remap old) new)
12625 (substitute-key-definition old new map global-map)))))
12627 (when (eq org-enable-table-editor 'optimized)
12628 ;; If the user wants maximum table support, we need to hijack
12629 ;; some standard editing functions
12630 (org-remap org-mode-map
12631 'self-insert-command 'org-self-insert-command
12632 'delete-char 'org-delete-char
12633 'delete-backward-char 'org-delete-backward-char)
12634 (org-defkey org-mode-map "|" 'org-force-self-insert))
12636 (defun org-shiftcursor-error ()
12637 "Throw an error because Shift-Cursor command was applied in wrong context."
12638 (error "This command is active in special context like tables, headlines or timestamps"))
12640 (defun org-shifttab (&optional arg)
12641 "Global visibility cycling or move to previous table field.
12642 Calls `org-cycle' with argument t, or `org-table-previous-field', depending
12643 on context.
12644 See the individual commands for more information."
12645 (interactive "P")
12646 (cond
12647 ((org-at-table-p) (call-interactively 'org-table-previous-field))
12648 ((integerp arg)
12649 (message "Content view to level: %d" arg)
12650 (org-content (prefix-numeric-value arg))
12651 (setq org-cycle-global-status 'overview))
12652 (t (call-interactively 'org-global-cycle))))
12654 (defun org-shiftmetaleft ()
12655 "Promote subtree or delete table column.
12656 Calls `org-promote-subtree', `org-outdent-item',
12657 or `org-table-delete-column', depending on context.
12658 See the individual commands for more information."
12659 (interactive)
12660 (cond
12661 ((org-at-table-p) (call-interactively 'org-table-delete-column))
12662 ((org-on-heading-p) (call-interactively 'org-promote-subtree))
12663 ((org-at-item-p) (call-interactively 'org-outdent-item))
12664 (t (org-shiftcursor-error))))
12666 (defun org-shiftmetaright ()
12667 "Demote subtree or insert table column.
12668 Calls `org-demote-subtree', `org-indent-item',
12669 or `org-table-insert-column', depending on context.
12670 See the individual commands for more information."
12671 (interactive)
12672 (cond
12673 ((org-at-table-p) (call-interactively 'org-table-insert-column))
12674 ((org-on-heading-p) (call-interactively 'org-demote-subtree))
12675 ((org-at-item-p) (call-interactively 'org-indent-item))
12676 (t (org-shiftcursor-error))))
12678 (defun org-shiftmetaup (&optional arg)
12679 "Move subtree up or kill table row.
12680 Calls `org-move-subtree-up' or `org-table-kill-row' or
12681 `org-move-item-up' depending on context. See the individual commands
12682 for more information."
12683 (interactive "P")
12684 (cond
12685 ((org-at-table-p) (call-interactively 'org-table-kill-row))
12686 ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
12687 ((org-at-item-p) (call-interactively 'org-move-item-up))
12688 (t (org-shiftcursor-error))))
12689 (defun org-shiftmetadown (&optional arg)
12690 "Move subtree down or insert table row.
12691 Calls `org-move-subtree-down' or `org-table-insert-row' or
12692 `org-move-item-down', depending on context. See the individual
12693 commands for more information."
12694 (interactive "P")
12695 (cond
12696 ((org-at-table-p) (call-interactively 'org-table-insert-row))
12697 ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
12698 ((org-at-item-p) (call-interactively 'org-move-item-down))
12699 (t (org-shiftcursor-error))))
12701 (defun org-metaleft (&optional arg)
12702 "Promote heading or move table column to left.
12703 Calls `org-do-promote' or `org-table-move-column', depending on context.
12704 With no specific context, calls the Emacs default `backward-word'.
12705 See the individual commands for more information."
12706 (interactive "P")
12707 (cond
12708 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
12709 ((or (org-on-heading-p) (org-region-active-p))
12710 (call-interactively 'org-do-promote))
12711 ((org-at-item-p) (call-interactively 'org-outdent-item))
12712 (t (call-interactively 'backward-word))))
12714 (defun org-metaright (&optional arg)
12715 "Demote subtree or move table column to right.
12716 Calls `org-do-demote' or `org-table-move-column', depending on context.
12717 With no specific context, calls the Emacs default `forward-word'.
12718 See the individual commands for more information."
12719 (interactive "P")
12720 (cond
12721 ((org-at-table-p) (call-interactively 'org-table-move-column))
12722 ((or (org-on-heading-p) (org-region-active-p))
12723 (call-interactively 'org-do-demote))
12724 ((org-at-item-p) (call-interactively 'org-indent-item))
12725 (t (call-interactively 'forward-word))))
12727 (defun org-metaup (&optional arg)
12728 "Move subtree up or move table row up.
12729 Calls `org-move-subtree-up' or `org-table-move-row' or
12730 `org-move-item-up', depending on context. See the individual commands
12731 for more information."
12732 (interactive "P")
12733 (cond
12734 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
12735 ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
12736 ((org-at-item-p) (call-interactively 'org-move-item-up))
12737 (t (transpose-lines 1) (beginning-of-line -1))))
12739 (defun org-metadown (&optional arg)
12740 "Move subtree down or move table row down.
12741 Calls `org-move-subtree-down' or `org-table-move-row' or
12742 `org-move-item-down', depending on context. See the individual
12743 commands for more information."
12744 (interactive "P")
12745 (cond
12746 ((org-at-table-p) (call-interactively 'org-table-move-row))
12747 ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
12748 ((org-at-item-p) (call-interactively 'org-move-item-down))
12749 (t (beginning-of-line 2) (transpose-lines 1) (beginning-of-line 0))))
12751 (defun org-shiftup (&optional arg)
12752 "Increase item in timestamp or increase priority of current headline.
12753 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
12754 depending on context. See the individual commands for more information."
12755 (interactive "P")
12756 (cond
12757 ((org-at-timestamp-p t)
12758 (call-interactively (if org-edit-timestamp-down-means-later
12759 'org-timestamp-down 'org-timestamp-up)))
12760 ((org-on-heading-p) (call-interactively 'org-priority-up))
12761 ((org-at-item-p) (call-interactively 'org-previous-item))
12762 ((org-clocktable-try-shift 'up arg))
12763 (t (call-interactively 'org-beginning-of-item) (beginning-of-line 1))))
12765 (defun org-shiftdown (&optional arg)
12766 "Decrease item in timestamp or decrease priority of current headline.
12767 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
12768 depending on context. See the individual commands for more information."
12769 (interactive "P")
12770 (cond
12771 ((org-at-timestamp-p t)
12772 (call-interactively (if org-edit-timestamp-down-means-later
12773 'org-timestamp-up 'org-timestamp-down)))
12774 ((org-on-heading-p) (call-interactively 'org-priority-down))
12775 ((org-clocktable-try-shift 'down arg))
12776 (t (call-interactively 'org-next-item))))
12778 (defun org-shiftright (&optional arg)
12779 "Next TODO keyword or timestamp one day later, depending on context."
12780 (interactive "P")
12781 (cond
12782 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
12783 ((org-on-heading-p) (org-call-with-arg 'org-todo 'right))
12784 ((org-at-item-p) (org-call-with-arg 'org-cycle-list-bullet nil))
12785 ((org-at-property-p) (call-interactively 'org-property-next-allowed-value))
12786 ((org-clocktable-try-shift 'right arg))
12787 (t (org-shiftcursor-error))))
12789 (defun org-shiftleft (&optional arg)
12790 "Previous TODO keyword or timestamp one day earlier, depending on context."
12791 (interactive "P")
12792 (cond
12793 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
12794 ((org-on-heading-p) (org-call-with-arg 'org-todo 'left))
12795 ((org-at-item-p) (org-call-with-arg 'org-cycle-list-bullet 'previous))
12796 ((org-at-property-p)
12797 (call-interactively 'org-property-previous-allowed-value))
12798 ((org-clocktable-try-shift 'left arg))
12799 (t (org-shiftcursor-error))))
12801 (defun org-shiftcontrolright ()
12802 "Switch to next TODO set."
12803 (interactive)
12804 (cond
12805 ((org-on-heading-p) (org-call-with-arg 'org-todo 'nextset))
12806 (t (org-shiftcursor-error))))
12808 (defun org-shiftcontrolleft ()
12809 "Switch to previous TODO set."
12810 (interactive)
12811 (cond
12812 ((org-on-heading-p) (org-call-with-arg 'org-todo 'previousset))
12813 (t (org-shiftcursor-error))))
12815 (defun org-ctrl-c-ret ()
12816 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
12817 (interactive)
12818 (cond
12819 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
12820 (t (call-interactively 'org-insert-heading))))
12822 (defun org-copy-special ()
12823 "Copy region in table or copy current subtree.
12824 Calls `org-table-copy' or `org-copy-subtree', depending on context.
12825 See the individual commands for more information."
12826 (interactive)
12827 (call-interactively
12828 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
12830 (defun org-cut-special ()
12831 "Cut region in table or cut current subtree.
12832 Calls `org-table-copy' or `org-cut-subtree', depending on context.
12833 See the individual commands for more information."
12834 (interactive)
12835 (call-interactively
12836 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
12838 (defun org-paste-special (arg)
12839 "Paste rectangular region into table, or past subtree relative to level.
12840 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
12841 See the individual commands for more information."
12842 (interactive "P")
12843 (if (org-at-table-p)
12844 (org-table-paste-rectangle)
12845 (org-paste-subtree arg)))
12847 (defun org-edit-special ()
12848 "Call a special editor for the stuff at point.
12849 When at a table, call the formula editor with `org-table-edit-formulas'.
12850 When at the first line of an src example, call `org-edit-src-code'.
12851 When in an #+include line, visit the include file. Otherwise call
12852 `ffap' to visit the file at point."
12853 (interactive)
12854 (cond
12855 ((org-at-table-p)
12856 (call-interactively 'org-table-edit-formulas))
12857 ((save-excursion
12858 (beginning-of-line 1)
12859 (looking-at "\\(?:#\\+\\(?:setupfile\\|include\\):?[ \t]+\"?\\|[ \t]*<include\\>.*?file=\"\\)\\([^\"\n>]+\\)"))
12860 (find-file (org-trim (match-string 1))))
12861 ((org-edit-src-code))
12862 (t (call-interactively 'ffap))))
12864 (defun org-ctrl-c-ctrl-c (&optional arg)
12865 "Set tags in headline, or update according to changed information at point.
12867 This command does many different things, depending on context:
12869 - If the cursor is in a headline, prompt for tags and insert them
12870 into the current line, aligned to `org-tags-column'. When called
12871 with prefix arg, realign all tags in the current buffer.
12873 - If the cursor is in one of the special #+KEYWORD lines, this
12874 triggers scanning the buffer for these lines and updating the
12875 information.
12877 - If the cursor is inside a table, realign the table. This command
12878 works even if the automatic table editor has been turned off.
12880 - If the cursor is on a #+TBLFM line, re-apply the formulas to
12881 the entire table.
12883 - If the cursor is a the beginning of a dynamic block, update it.
12885 - If the cursor is inside a table created by the table.el package,
12886 activate that table.
12888 - If the current buffer is a remember buffer, close note and file it.
12889 with a prefix argument, file it without further interaction to the default
12890 location.
12892 - If the cursor is on a <<<target>>>, update radio targets and corresponding
12893 links in this buffer.
12895 - If the cursor is on a numbered item in a plain list, renumber the
12896 ordered list.
12898 - If the cursor is on a checkbox, toggle it."
12899 (interactive "P")
12900 (let ((org-enable-table-editor t))
12901 (cond
12902 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
12903 org-occur-highlights
12904 org-latex-fragment-image-overlays)
12905 (and (boundp 'org-clock-overlays) (org-remove-clock-overlays))
12906 (org-remove-occur-highlights)
12907 (org-remove-latex-fragment-image-overlays)
12908 (message "Temporary highlights/overlays removed from current buffer"))
12909 ((and (local-variable-p 'org-finish-function (current-buffer))
12910 (fboundp org-finish-function))
12911 (funcall org-finish-function))
12912 ((org-at-property-p)
12913 (call-interactively 'org-property-action))
12914 ((org-on-target-p) (call-interactively 'org-update-radio-target-regexp))
12915 ((org-on-heading-p) (call-interactively 'org-set-tags))
12916 ((org-at-table.el-p)
12917 (require 'table)
12918 (beginning-of-line 1)
12919 (re-search-forward "|" (save-excursion (end-of-line 2) (point)))
12920 (call-interactively 'table-recognize-table))
12921 ((org-at-table-p)
12922 (org-table-maybe-eval-formula)
12923 (if arg
12924 (call-interactively 'org-table-recalculate)
12925 (org-table-maybe-recalculate-line))
12926 (call-interactively 'org-table-align))
12927 ((org-at-item-checkbox-p)
12928 (call-interactively 'org-toggle-checkbox))
12929 ((org-at-item-p)
12930 (call-interactively 'org-maybe-renumber-ordered-list))
12931 ((save-excursion (beginning-of-line 1) (looking-at "#\\+BEGIN:"))
12932 ;; Dynamic block
12933 (beginning-of-line 1)
12934 (org-update-dblock))
12935 ((save-excursion (beginning-of-line 1) (looking-at "#\\+\\([A-Z]+\\)"))
12936 (cond
12937 ((equal (match-string 1) "TBLFM")
12938 ;; Recalculate the table before this line
12939 (save-excursion
12940 (beginning-of-line 1)
12941 (skip-chars-backward " \r\n\t")
12942 (if (org-at-table-p)
12943 (org-call-with-arg 'org-table-recalculate t))))
12945 ; (org-set-regexps-and-options)
12946 ; (org-restart-font-lock)
12947 (let ((org-inhibit-startup t)) (org-mode-restart))
12948 (message "Local setup has been refreshed"))))
12949 (t (error "C-c C-c can do nothing useful at this location.")))))
12951 (defun org-mode-restart ()
12952 "Restart Org-mode, to scan again for special lines.
12953 Also updates the keyword regular expressions."
12954 (interactive)
12955 (org-mode)
12956 (message "Org-mode restarted"))
12958 (defun org-kill-note-or-show-branches ()
12959 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
12960 (interactive)
12961 (if (not org-finish-function)
12962 (call-interactively 'show-branches)
12963 (let ((org-note-abort t))
12964 (funcall org-finish-function))))
12966 (defun org-return (&optional indent)
12967 "Goto next table row or insert a newline.
12968 Calls `org-table-next-row' or `newline', depending on context.
12969 See the individual commands for more information."
12970 (interactive)
12971 (cond
12972 ((bobp) (if indent (newline-and-indent) (newline)))
12973 ((and (org-at-heading-p)
12974 (looking-at
12975 (org-re "\\([ \t]+\\(:[[:alnum:]_@:]+:\\)\\)[ \t]*$")))
12976 (org-show-entry)
12977 (end-of-line 1)
12978 (newline))
12979 ((org-at-table-p)
12980 (org-table-justify-field-maybe)
12981 (call-interactively 'org-table-next-row))
12982 (t (if indent (newline-and-indent) (newline)))))
12984 (defun org-return-indent ()
12985 "Goto next table row or insert a newline and indent.
12986 Calls `org-table-next-row' or `newline-and-indent', depending on
12987 context. See the individual commands for more information."
12988 (interactive)
12989 (org-return t))
12991 (defun org-ctrl-c-star ()
12992 "Compute table, or change heading status of lines.
12993 Calls `org-table-recalculate' or `org-toggle-region-headings',
12994 depending on context. This will also turn a plain list item or a normal
12995 line into a subheading."
12996 (interactive)
12997 (cond
12998 ((org-at-table-p)
12999 (call-interactively 'org-table-recalculate))
13000 ((org-region-active-p)
13001 ;; Convert all lines in region to list items
13002 (call-interactively 'org-toggle-region-headings))
13003 ((org-on-heading-p)
13004 (org-toggle-region-headings (point-at-bol)
13005 (min (1+ (point-at-eol)) (point-max))))
13006 ((org-at-item-p)
13007 ;; Convert to heading
13008 (let ((level (save-match-data
13009 (save-excursion
13010 (condition-case nil
13011 (progn
13012 (org-back-to-heading t)
13013 (funcall outline-level))
13014 (error 0))))))
13015 (replace-match
13016 (concat (make-string (org-get-valid-level level 1) ?*) " ") t t)))
13017 (t (org-toggle-region-headings (point-at-bol)
13018 (min (1+ (point-at-eol)) (point-max))))))
13020 (defun org-ctrl-c-minus ()
13021 "Insert separator line in table or modify bullet status of line.
13022 Also turns a plain line or a region of lines into list items.
13023 Calls `org-table-insert-hline', `org-toggle-region-items', or
13024 `org-cycle-list-bullet', depending on context."
13025 (interactive)
13026 (cond
13027 ((org-at-table-p)
13028 (call-interactively 'org-table-insert-hline))
13029 ((org-on-heading-p)
13030 ;; Convert to item
13031 (save-excursion
13032 (beginning-of-line 1)
13033 (if (looking-at "\\*+ ")
13034 (replace-match (concat (make-string (- (match-end 0) (point) 1) ?\ ) "- ")))))
13035 ((org-region-active-p)
13036 ;; Convert all lines in region to list items
13037 (call-interactively 'org-toggle-region-items))
13038 ((org-in-item-p)
13039 (call-interactively 'org-cycle-list-bullet))
13040 (t (org-toggle-region-items (point-at-bol)
13041 (min (1+ (point-at-eol)) (point-max))))))
13043 (defun org-toggle-region-items (beg end)
13044 "Convert all lines in region to list items.
13045 If the first line is already an item, convert all list items in the region
13046 to normal lines."
13047 (interactive "r")
13048 (let (l2 l)
13049 (save-excursion
13050 (goto-char end)
13051 (setq l2 (org-current-line))
13052 (goto-char beg)
13053 (beginning-of-line 1)
13054 (setq l (1- (org-current-line)))
13055 (if (org-at-item-p)
13056 ;; We already have items, de-itemize
13057 (while (< (setq l (1+ l)) l2)
13058 (when (org-at-item-p)
13059 (goto-char (match-beginning 2))
13060 (delete-region (match-beginning 2) (match-end 2))
13061 (and (looking-at "[ \t]+") (replace-match "")))
13062 (beginning-of-line 2))
13063 (while (< (setq l (1+ l)) l2)
13064 (unless (org-at-item-p)
13065 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
13066 (replace-match "\\1- \\2")))
13067 (beginning-of-line 2))))))
13069 (defun org-toggle-region-headings (beg end)
13070 "Convert all lines in region to list items.
13071 If the first line is already an item, convert all list items in the region
13072 to normal lines."
13073 (interactive "r")
13074 (let (l2 l)
13075 (save-excursion
13076 (goto-char end)
13077 (setq l2 (org-current-line))
13078 (goto-char beg)
13079 (beginning-of-line 1)
13080 (setq l (1- (org-current-line)))
13081 (if (org-on-heading-p)
13082 ;; We already have headlines, de-star them
13083 (while (< (setq l (1+ l)) l2)
13084 (when (org-on-heading-p t)
13085 (and (looking-at outline-regexp) (replace-match "")))
13086 (beginning-of-line 2))
13087 (let* ((stars (save-excursion
13088 (re-search-backward org-complex-heading-regexp nil t)
13089 (or (match-string 1) "*")))
13090 (add-stars (if org-odd-levels-only "**" "*"))
13091 (rpl (concat stars add-stars " \\2")))
13092 (while (< (setq l (1+ l)) l2)
13093 (unless (org-on-heading-p)
13094 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
13095 (replace-match rpl)))
13096 (beginning-of-line 2)))))))
13098 (defun org-meta-return (&optional arg)
13099 "Insert a new heading or wrap a region in a table.
13100 Calls `org-insert-heading' or `org-table-wrap-region', depending on context.
13101 See the individual commands for more information."
13102 (interactive "P")
13103 (cond
13104 ((org-at-table-p)
13105 (call-interactively 'org-table-wrap-region))
13106 (t (call-interactively 'org-insert-heading))))
13108 ;;; Menu entries
13110 ;; Define the Org-mode menus
13111 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
13112 '("Tbl"
13113 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
13114 ["Next Field" org-cycle (org-at-table-p)]
13115 ["Previous Field" org-shifttab (org-at-table-p)]
13116 ["Next Row" org-return (org-at-table-p)]
13117 "--"
13118 ["Blank Field" org-table-blank-field (org-at-table-p)]
13119 ["Edit Field" org-table-edit-field (org-at-table-p)]
13120 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
13121 "--"
13122 ("Column"
13123 ["Move Column Left" org-metaleft (org-at-table-p)]
13124 ["Move Column Right" org-metaright (org-at-table-p)]
13125 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
13126 ["Insert Column" org-shiftmetaright (org-at-table-p)])
13127 ("Row"
13128 ["Move Row Up" org-metaup (org-at-table-p)]
13129 ["Move Row Down" org-metadown (org-at-table-p)]
13130 ["Delete Row" org-shiftmetaup (org-at-table-p)]
13131 ["Insert Row" org-shiftmetadown (org-at-table-p)]
13132 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
13133 "--"
13134 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
13135 ("Rectangle"
13136 ["Copy Rectangle" org-copy-special (org-at-table-p)]
13137 ["Cut Rectangle" org-cut-special (org-at-table-p)]
13138 ["Paste Rectangle" org-paste-special (org-at-table-p)]
13139 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
13140 "--"
13141 ("Calculate"
13142 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
13143 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
13144 ["Edit Formulas" org-edit-special (org-at-table-p)]
13145 "--"
13146 ["Recalculate line" org-table-recalculate (org-at-table-p)]
13147 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
13148 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
13149 "--"
13150 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
13151 "--"
13152 ["Sum Column/Rectangle" org-table-sum
13153 (or (org-at-table-p) (org-region-active-p))]
13154 ["Which Column?" org-table-current-column (org-at-table-p)])
13155 ["Debug Formulas"
13156 org-table-toggle-formula-debugger
13157 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
13158 ["Show Col/Row Numbers"
13159 org-table-toggle-coordinate-overlays
13160 :style toggle
13161 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
13162 "--"
13163 ["Create" org-table-create (and (not (org-at-table-p))
13164 org-enable-table-editor)]
13165 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
13166 ["Import from File" org-table-import (not (org-at-table-p))]
13167 ["Export to File" org-table-export (org-at-table-p)]
13168 "--"
13169 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
13171 (easy-menu-define org-org-menu org-mode-map "Org menu"
13172 '("Org"
13173 ("Show/Hide"
13174 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
13175 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
13176 ["Sparse Tree..." org-sparse-tree t]
13177 ["Reveal Context" org-reveal t]
13178 ["Show All" show-all t]
13179 "--"
13180 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
13181 "--"
13182 ["New Heading" org-insert-heading t]
13183 ("Navigate Headings"
13184 ["Up" outline-up-heading t]
13185 ["Next" outline-next-visible-heading t]
13186 ["Previous" outline-previous-visible-heading t]
13187 ["Next Same Level" outline-forward-same-level t]
13188 ["Previous Same Level" outline-backward-same-level t]
13189 "--"
13190 ["Jump" org-goto t])
13191 ("Edit Structure"
13192 ["Move Subtree Up" org-shiftmetaup (not (org-at-table-p))]
13193 ["Move Subtree Down" org-shiftmetadown (not (org-at-table-p))]
13194 "--"
13195 ["Copy Subtree" org-copy-special (not (org-at-table-p))]
13196 ["Cut Subtree" org-cut-special (not (org-at-table-p))]
13197 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
13198 "--"
13199 ["Promote Heading" org-metaleft (not (org-at-table-p))]
13200 ["Promote Subtree" org-shiftmetaleft (not (org-at-table-p))]
13201 ["Demote Heading" org-metaright (not (org-at-table-p))]
13202 ["Demote Subtree" org-shiftmetaright (not (org-at-table-p))]
13203 "--"
13204 ["Sort Region/Children" org-sort (not (org-at-table-p))]
13205 "--"
13206 ["Convert to odd levels" org-convert-to-odd-levels t]
13207 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
13208 ("Editing"
13209 ["Emphasis..." org-emphasize t]
13210 ["Edit Source Example" org-edit-special t])
13211 ("Archive"
13212 ["Toggle ARCHIVE tag" org-toggle-archive-tag t]
13213 ; ["Check and Tag Children" (org-toggle-archive-tag (4))
13214 ; :active t :keys "C-u C-c C-x C-a"]
13215 ["Sparse trees open ARCHIVE trees"
13216 (setq org-sparse-tree-open-archived-trees
13217 (not org-sparse-tree-open-archived-trees))
13218 :style toggle :selected org-sparse-tree-open-archived-trees]
13219 ["Cycling opens ARCHIVE trees"
13220 (setq org-cycle-open-archived-trees (not org-cycle-open-archived-trees))
13221 :style toggle :selected org-cycle-open-archived-trees]
13222 ["Agenda includes ARCHIVE trees"
13223 (setq org-agenda-skip-archived-trees (not org-agenda-skip-archived-trees))
13224 :style toggle :selected (not org-agenda-skip-archived-trees)]
13225 "--"
13226 ["Move Subtree to Archive" org-advertized-archive-subtree t]
13227 ; ["Check and Move Children" (org-archive-subtree '(4))
13228 ; :active t :keys "C-u C-c C-x C-s"]
13230 "--"
13231 ("TODO Lists"
13232 ["TODO/DONE/-" org-todo t]
13233 ("Select keyword"
13234 ["Next keyword" org-shiftright (org-on-heading-p)]
13235 ["Previous keyword" org-shiftleft (org-on-heading-p)]
13236 ["Complete Keyword" org-complete (assq :todo-keyword (org-context))]
13237 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))]
13238 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))])
13239 ["Show TODO Tree" org-show-todo-tree t]
13240 ["Global TODO list" org-todo-list t]
13241 "--"
13242 ["Set Priority" org-priority t]
13243 ["Priority Up" org-shiftup t]
13244 ["Priority Down" org-shiftdown t])
13245 ("TAGS and Properties"
13246 ["Set Tags" 'org-ctrl-c-ctrl-c (org-at-heading-p)]
13247 ["Change tag in region" 'org-change-tag-in-region (org-region-active-p)]
13248 "--"
13249 ["Set property" 'org-set-property t]
13250 ["Column view of properties" org-columns t]
13251 ["Insert Column View DBlock" org-insert-columns-dblock t])
13252 ("Dates and Scheduling"
13253 ["Timestamp" org-time-stamp t]
13254 ["Timestamp (inactive)" org-time-stamp-inactive t]
13255 ("Change Date"
13256 ["1 Day Later" org-shiftright t]
13257 ["1 Day Earlier" org-shiftleft t]
13258 ["1 ... Later" org-shiftup t]
13259 ["1 ... Earlier" org-shiftdown t])
13260 ["Compute Time Range" org-evaluate-time-range t]
13261 ["Schedule Item" org-schedule t]
13262 ["Deadline" org-deadline t]
13263 "--"
13264 ["Custom time format" org-toggle-time-stamp-overlays
13265 :style radio :selected org-display-custom-times]
13266 "--"
13267 ["Goto Calendar" org-goto-calendar t]
13268 ["Date from Calendar" org-date-from-calendar t])
13269 ("Logging work"
13270 ["Clock in" org-clock-in t]
13271 ["Clock out" org-clock-out t]
13272 ["Clock cancel" org-clock-cancel t]
13273 ["Goto running clock" org-clock-goto t]
13274 ["Display times" org-clock-display t]
13275 ["Create clock table" org-clock-report t]
13276 "--"
13277 ["Record DONE time"
13278 (progn (setq org-log-done (not org-log-done))
13279 (message "Switching to %s will %s record a timestamp"
13280 (car org-done-keywords)
13281 (if org-log-done "automatically" "not")))
13282 :style toggle :selected org-log-done])
13283 "--"
13284 ["Agenda Command..." org-agenda t]
13285 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
13286 ("File List for Agenda")
13287 ("Special views current file"
13288 ["TODO Tree" org-show-todo-tree t]
13289 ["Check Deadlines" org-check-deadlines t]
13290 ["Timeline" org-timeline t]
13291 ["Tags Tree" org-tags-sparse-tree t])
13292 "--"
13293 ("Hyperlinks"
13294 ["Store Link (Global)" org-store-link t]
13295 ["Insert Link" org-insert-link t]
13296 ["Follow Link" org-open-at-point t]
13297 "--"
13298 ["Next link" org-next-link t]
13299 ["Previous link" org-previous-link t]
13300 "--"
13301 ["Descriptive Links"
13302 (progn (org-add-to-invisibility-spec '(org-link)) (org-restart-font-lock))
13303 :style radio
13304 :selected (member '(org-link) buffer-invisibility-spec)]
13305 ["Literal Links"
13306 (progn
13307 (org-remove-from-invisibility-spec '(org-link)) (org-restart-font-lock))
13308 :style radio
13309 :selected (not (member '(org-link) buffer-invisibility-spec))])
13310 "--"
13311 ["Export/Publish..." org-export t]
13312 ("LaTeX"
13313 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
13314 :selected org-cdlatex-mode]
13315 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
13316 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
13317 ["Modify math symbol" org-cdlatex-math-modify
13318 (org-inside-LaTeX-fragment-p)]
13319 ["Export LaTeX fragments as images"
13320 (if (featurep 'org-exp)
13321 (setq org-export-with-LaTeX-fragments
13322 (not org-export-with-LaTeX-fragments))
13323 (require 'org-exp))
13324 :style toggle :selected (and (boundp 'org-export-with-LaTeX-fragments)
13325 org-export-with-LaTeX-fragments)])
13326 "--"
13327 ("Documentation"
13328 ["Show Version" org-version t]
13329 ["Info Documentation" org-info t])
13330 ("Customize"
13331 ["Browse Org Group" org-customize t]
13332 "--"
13333 ["Expand This Menu" org-create-customize-menu
13334 (fboundp 'customize-menu-create)])
13335 "--"
13336 ["Refresh setup" org-mode-restart t]
13339 (defun org-info (&optional node)
13340 "Read documentation for Org-mode in the info system.
13341 With optional NODE, go directly to that node."
13342 (interactive)
13343 (info (format "(org)%s" (or node ""))))
13345 (defun org-install-agenda-files-menu ()
13346 (let ((bl (buffer-list)))
13347 (save-excursion
13348 (while bl
13349 (set-buffer (pop bl))
13350 (if (org-mode-p) (setq bl nil)))
13351 (when (org-mode-p)
13352 (easy-menu-change
13353 '("Org") "File List for Agenda"
13354 (append
13355 (list
13356 ["Edit File List" (org-edit-agenda-file-list) t]
13357 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
13358 ["Remove Current File from List" org-remove-file t]
13359 ["Cycle through agenda files" org-cycle-agenda-files t]
13360 ["Occur in all agenda files" org-occur-in-agenda-files t]
13361 "--")
13362 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
13364 ;;;; Documentation
13366 ;;;###autoload
13367 (defun org-require-autoloaded-modules ()
13368 (interactive)
13369 (mapc 'require
13370 '(org-agenda org-archive org-clock org-colview
13371 org-exp org-id org-export-latex org-publish
13372 org-remember org-table)))
13374 ;;;###autoload
13375 (defun org-customize ()
13376 "Call the customize function with org as argument."
13377 (interactive)
13378 (org-load-modules-maybe)
13379 (org-require-autoloaded-modules)
13380 (customize-browse 'org))
13382 (defun org-create-customize-menu ()
13383 "Create a full customization menu for Org-mode, insert it into the menu."
13384 (interactive)
13385 (org-load-modules-maybe)
13386 (org-require-autoloaded-modules)
13387 (if (fboundp 'customize-menu-create)
13388 (progn
13389 (easy-menu-change
13390 '("Org") "Customize"
13391 `(["Browse Org group" org-customize t]
13392 "--"
13393 ,(customize-menu-create 'org)
13394 ["Set" Custom-set t]
13395 ["Save" Custom-save t]
13396 ["Reset to Current" Custom-reset-current t]
13397 ["Reset to Saved" Custom-reset-saved t]
13398 ["Reset to Standard Settings" Custom-reset-standard t]))
13399 (message "\"Org\"-menu now contains full customization menu"))
13400 (error "Cannot expand menu (outdated version of cus-edit.el)")))
13402 ;;;; Miscellaneous stuff
13404 ;;; Generally useful functions
13406 (defun org-display-warning (message) ;; Copied from Emacs-Muse
13407 "Display the given MESSAGE as a warning."
13408 (if (fboundp 'display-warning)
13409 (display-warning 'org message
13410 (if (featurep 'xemacs)
13411 'warning
13412 :warning))
13413 (let ((buf (get-buffer-create "*Org warnings*")))
13414 (with-current-buffer buf
13415 (goto-char (point-max))
13416 (insert "Warning (Org): " message)
13417 (unless (bolp)
13418 (newline)))
13419 (display-buffer buf)
13420 (sit-for 0))))
13422 (defun org-goto-marker-or-bmk (marker &optional bookmark)
13423 "Go to MARKER, widen if necesary. When marker is not live, try BOOKMARK."
13424 (if (and marker (marker-buffer marker)
13425 (buffer-live-p (marker-buffer marker)))
13426 (progn
13427 (switch-to-buffer (marker-buffer marker))
13428 (if (or (> marker (point-max)) (< marker (point-min)))
13429 (widen))
13430 (goto-char marker))
13431 (if bookmark
13432 (bookmark-jump bookmark)
13433 (error "Cannot find location"))))
13435 (defun org-quote-csv-field (s)
13436 "Quote field for inclusion in CSV material."
13437 (if (string-match "[\",]" s)
13438 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
13441 (defun org-plist-delete (plist property)
13442 "Delete PROPERTY from PLIST.
13443 This is in contrast to merely setting it to 0."
13444 (let (p)
13445 (while plist
13446 (if (not (eq property (car plist)))
13447 (setq p (plist-put p (car plist) (nth 1 plist))))
13448 (setq plist (cddr plist)))
13451 (defun org-force-self-insert (N)
13452 "Needed to enforce self-insert under remapping."
13453 (interactive "p")
13454 (self-insert-command N))
13456 (defun org-string-width (s)
13457 "Compute width of string, ignoring invisible characters.
13458 This ignores character with invisibility property `org-link', and also
13459 characters with property `org-cwidth', because these will become invisible
13460 upon the next fontification round."
13461 (let (b l)
13462 (when (or (eq t buffer-invisibility-spec)
13463 (assq 'org-link buffer-invisibility-spec))
13464 (while (setq b (text-property-any 0 (length s)
13465 'invisible 'org-link s))
13466 (setq s (concat (substring s 0 b)
13467 (substring s (or (next-single-property-change
13468 b 'invisible s) (length s)))))))
13469 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
13470 (setq s (concat (substring s 0 b)
13471 (substring s (or (next-single-property-change
13472 b 'org-cwidth s) (length s))))))
13473 (setq l (string-width s) b -1)
13474 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
13475 (setq l (- l (get-text-property b 'org-dwidth-n s))))
13478 (defun org-base-buffer (buffer)
13479 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
13480 (if (not buffer)
13481 buffer
13482 (or (buffer-base-buffer buffer)
13483 buffer)))
13485 (defun org-trim (s)
13486 "Remove whitespace at beginning and end of string."
13487 (if (string-match "\\`[ \t\n\r]+" s) (setq s (replace-match "" t t s)))
13488 (if (string-match "[ \t\n\r]+\\'" s) (setq s (replace-match "" t t s)))
13491 (defun org-wrap (string &optional width lines)
13492 "Wrap string to either a number of lines, or a width in characters.
13493 If WIDTH is non-nil, the string is wrapped to that width, however many lines
13494 that costs. If there is a word longer than WIDTH, the text is actually
13495 wrapped to the length of that word.
13496 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
13497 many lines, whatever width that takes.
13498 The return value is a list of lines, without newlines at the end."
13499 (let* ((words (org-split-string string "[ \t\n]+"))
13500 (maxword (apply 'max (mapcar 'org-string-width words)))
13501 w ll)
13502 (cond (width
13503 (org-do-wrap words (max maxword width)))
13504 (lines
13505 (setq w maxword)
13506 (setq ll (org-do-wrap words maxword))
13507 (if (<= (length ll) lines)
13509 (setq ll words)
13510 (while (> (length ll) lines)
13511 (setq w (1+ w))
13512 (setq ll (org-do-wrap words w)))
13513 ll))
13514 (t (error "Cannot wrap this")))))
13516 (defun org-do-wrap (words width)
13517 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
13518 (let (lines line)
13519 (while words
13520 (setq line (pop words))
13521 (while (and words (< (+ (length line) (length (car words))) width))
13522 (setq line (concat line " " (pop words))))
13523 (setq lines (push line lines)))
13524 (nreverse lines)))
13526 (defun org-split-string (string &optional separators)
13527 "Splits STRING into substrings at SEPARATORS.
13528 No empty strings are returned if there are matches at the beginning
13529 and end of string."
13530 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
13531 (start 0)
13532 notfirst
13533 (list nil))
13534 (while (and (string-match rexp string
13535 (if (and notfirst
13536 (= start (match-beginning 0))
13537 (< start (length string)))
13538 (1+ start) start))
13539 (< (match-beginning 0) (length string)))
13540 (setq notfirst t)
13541 (or (eq (match-beginning 0) 0)
13542 (and (eq (match-beginning 0) (match-end 0))
13543 (eq (match-beginning 0) start))
13544 (setq list
13545 (cons (substring string start (match-beginning 0))
13546 list)))
13547 (setq start (match-end 0)))
13548 (or (eq start (length string))
13549 (setq list
13550 (cons (substring string start)
13551 list)))
13552 (nreverse list)))
13554 (defun org-context ()
13555 "Return a list of contexts of the current cursor position.
13556 If several contexts apply, all are returned.
13557 Each context entry is a list with a symbol naming the context, and
13558 two positions indicating start and end of the context. Possible
13559 contexts are:
13561 :headline anywhere in a headline
13562 :headline-stars on the leading stars in a headline
13563 :todo-keyword on a TODO keyword (including DONE) in a headline
13564 :tags on the TAGS in a headline
13565 :priority on the priority cookie in a headline
13566 :item on the first line of a plain list item
13567 :item-bullet on the bullet/number of a plain list item
13568 :checkbox on the checkbox in a plain list item
13569 :table in an org-mode table
13570 :table-special on a special filed in a table
13571 :table-table in a table.el table
13572 :link on a hyperlink
13573 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE,COMMENT, QUOTE.
13574 :target on a <<target>>
13575 :radio-target on a <<<radio-target>>>
13576 :latex-fragment on a LaTeX fragment
13577 :latex-preview on a LaTeX fragment with overlayed preview image
13579 This function expects the position to be visible because it uses font-lock
13580 faces as a help to recognize the following contexts: :table-special, :link,
13581 and :keyword."
13582 (let* ((f (get-text-property (point) 'face))
13583 (faces (if (listp f) f (list f)))
13584 (p (point)) clist o)
13585 ;; First the large context
13586 (cond
13587 ((org-on-heading-p t)
13588 (push (list :headline (point-at-bol) (point-at-eol)) clist)
13589 (when (progn
13590 (beginning-of-line 1)
13591 (looking-at org-todo-line-tags-regexp))
13592 (push (org-point-in-group p 1 :headline-stars) clist)
13593 (push (org-point-in-group p 2 :todo-keyword) clist)
13594 (push (org-point-in-group p 4 :tags) clist))
13595 (goto-char p)
13596 (skip-chars-backward "^[\n\r \t") (or (eobp) (backward-char 1))
13597 (if (looking-at "\\[#[A-Z0-9]\\]")
13598 (push (org-point-in-group p 0 :priority) clist)))
13600 ((org-at-item-p)
13601 (push (org-point-in-group p 2 :item-bullet) clist)
13602 (push (list :item (point-at-bol)
13603 (save-excursion (org-end-of-item) (point)))
13604 clist)
13605 (and (org-at-item-checkbox-p)
13606 (push (org-point-in-group p 0 :checkbox) clist)))
13608 ((org-at-table-p)
13609 (push (list :table (org-table-begin) (org-table-end)) clist)
13610 (if (memq 'org-formula faces)
13611 (push (list :table-special
13612 (previous-single-property-change p 'face)
13613 (next-single-property-change p 'face)) clist)))
13614 ((org-at-table-p 'any)
13615 (push (list :table-table) clist)))
13616 (goto-char p)
13618 ;; Now the small context
13619 (cond
13620 ((org-at-timestamp-p)
13621 (push (org-point-in-group p 0 :timestamp) clist))
13622 ((memq 'org-link faces)
13623 (push (list :link
13624 (previous-single-property-change p 'face)
13625 (next-single-property-change p 'face)) clist))
13626 ((memq 'org-special-keyword faces)
13627 (push (list :keyword
13628 (previous-single-property-change p 'face)
13629 (next-single-property-change p 'face)) clist))
13630 ((org-on-target-p)
13631 (push (org-point-in-group p 0 :target) clist)
13632 (goto-char (1- (match-beginning 0)))
13633 (if (looking-at org-radio-target-regexp)
13634 (push (org-point-in-group p 0 :radio-target) clist))
13635 (goto-char p))
13636 ((setq o (car (delq nil
13637 (mapcar
13638 (lambda (x)
13639 (if (memq x org-latex-fragment-image-overlays) x))
13640 (org-overlays-at (point))))))
13641 (push (list :latex-fragment
13642 (org-overlay-start o) (org-overlay-end o)) clist)
13643 (push (list :latex-preview
13644 (org-overlay-start o) (org-overlay-end o)) clist))
13645 ((org-inside-LaTeX-fragment-p)
13646 ;; FIXME: positions wrong.
13647 (push (list :latex-fragment (point) (point)) clist)))
13649 (setq clist (nreverse (delq nil clist)))
13650 clist))
13652 ;; FIXME: Compare with at-regexp-p Do we need both?
13653 (defun org-in-regexp (re &optional nlines visually)
13654 "Check if point is inside a match of regexp.
13655 Normally only the current line is checked, but you can include NLINES extra
13656 lines both before and after point into the search.
13657 If VISUALLY is set, require that the cursor is not after the match but
13658 really on, so that the block visually is on the match."
13659 (catch 'exit
13660 (let ((pos (point))
13661 (eol (point-at-eol (+ 1 (or nlines 0))))
13662 (inc (if visually 1 0)))
13663 (save-excursion
13664 (beginning-of-line (- 1 (or nlines 0)))
13665 (while (re-search-forward re eol t)
13666 (if (and (<= (match-beginning 0) pos)
13667 (>= (+ inc (match-end 0)) pos))
13668 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
13670 (defun org-at-regexp-p (regexp)
13671 "Is point inside a match of REGEXP in the current line?"
13672 (catch 'exit
13673 (save-excursion
13674 (let ((pos (point)) (end (point-at-eol)))
13675 (beginning-of-line 1)
13676 (while (re-search-forward regexp end t)
13677 (if (and (<= (match-beginning 0) pos)
13678 (>= (match-end 0) pos))
13679 (throw 'exit t)))
13680 nil))))
13682 (defun org-occur-in-agenda-files (regexp &optional nlines)
13683 "Call `multi-occur' with buffers for all agenda files."
13684 (interactive "sOrg-files matching: \np")
13685 (let* ((files (org-agenda-files))
13686 (tnames (mapcar 'file-truename files))
13687 (extra org-agenda-text-search-extra-files)
13689 (when (eq (car extra) 'agenda-archives)
13690 (setq extra (cdr extra))
13691 (setq files (org-add-archive-files files)))
13692 (while (setq f (pop extra))
13693 (unless (member (file-truename f) tnames)
13694 (add-to-list 'files f 'append)
13695 (add-to-list 'tnames (file-truename f) 'append)))
13696 (multi-occur
13697 (mapcar (lambda (x) (or (get-file-buffer x) (find-file-noselect x))) files)
13698 regexp)))
13700 (if (boundp 'occur-mode-find-occurrence-hook)
13701 ;; Emacs 23
13702 (add-hook 'occur-mode-find-occurrence-hook
13703 (lambda ()
13704 (when (org-mode-p)
13705 (org-reveal))))
13706 ;; Emacs 22
13707 (defadvice occur-mode-goto-occurrence
13708 (after org-occur-reveal activate)
13709 (and (org-mode-p) (org-reveal)))
13710 (defadvice occur-mode-goto-occurrence-other-window
13711 (after org-occur-reveal activate)
13712 (and (org-mode-p) (org-reveal)))
13713 (defadvice occur-mode-display-occurrence
13714 (after org-occur-reveal activate)
13715 (when (org-mode-p)
13716 (let ((pos (occur-mode-find-occurrence)))
13717 (with-current-buffer (marker-buffer pos)
13718 (save-excursion
13719 (goto-char pos)
13720 (org-reveal)))))))
13722 (defun org-uniquify (list)
13723 "Remove duplicate elements from LIST."
13724 (let (res)
13725 (mapc (lambda (x) (add-to-list 'res x 'append)) list)
13726 res))
13728 (defun org-delete-all (elts list)
13729 "Remove all elements in ELTS from LIST."
13730 (while elts
13731 (setq list (delete (pop elts) list)))
13732 list)
13734 (defun org-back-over-empty-lines ()
13735 "Move backwards over witespace, to the beginning of the first empty line.
13736 Returns the number of empty lines passed."
13737 (let ((pos (point)))
13738 (skip-chars-backward " \t\n\r")
13739 (beginning-of-line 2)
13740 (goto-char (min (point) pos))
13741 (count-lines (point) pos)))
13743 (defun org-skip-whitespace ()
13744 (skip-chars-forward " \t\n\r"))
13746 (defun org-point-in-group (point group &optional context)
13747 "Check if POINT is in match-group GROUP.
13748 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
13749 match. If the match group does ot exist or point is not inside it,
13750 return nil."
13751 (and (match-beginning group)
13752 (>= point (match-beginning group))
13753 (<= point (match-end group))
13754 (if context
13755 (list context (match-beginning group) (match-end group))
13756 t)))
13758 (defun org-switch-to-buffer-other-window (&rest args)
13759 "Switch to buffer in a second window on the current frame.
13760 In particular, do not allow pop-up frames."
13761 (let (pop-up-frames special-display-buffer-names special-display-regexps
13762 special-display-function)
13763 (apply 'switch-to-buffer-other-window args)))
13765 (defun org-combine-plists (&rest plists)
13766 "Create a single property list from all plists in PLISTS.
13767 The process starts by copying the first list, and then setting properties
13768 from the other lists. Settings in the last list are the most significant
13769 ones and overrule settings in the other lists."
13770 (let ((rtn (copy-sequence (pop plists)))
13771 p v ls)
13772 (while plists
13773 (setq ls (pop plists))
13774 (while ls
13775 (setq p (pop ls) v (pop ls))
13776 (setq rtn (plist-put rtn p v))))
13777 rtn))
13779 (defun org-move-line-down (arg)
13780 "Move the current line down. With prefix argument, move it past ARG lines."
13781 (interactive "p")
13782 (let ((col (current-column))
13783 beg end pos)
13784 (beginning-of-line 1) (setq beg (point))
13785 (beginning-of-line 2) (setq end (point))
13786 (beginning-of-line (+ 1 arg))
13787 (setq pos (move-marker (make-marker) (point)))
13788 (insert (delete-and-extract-region beg end))
13789 (goto-char pos)
13790 (org-move-to-column col)))
13792 (defun org-move-line-up (arg)
13793 "Move the current line up. With prefix argument, move it past ARG lines."
13794 (interactive "p")
13795 (let ((col (current-column))
13796 beg end pos)
13797 (beginning-of-line 1) (setq beg (point))
13798 (beginning-of-line 2) (setq end (point))
13799 (beginning-of-line (- arg))
13800 (setq pos (move-marker (make-marker) (point)))
13801 (insert (delete-and-extract-region beg end))
13802 (goto-char pos)
13803 (org-move-to-column col)))
13805 (defun org-replace-escapes (string table)
13806 "Replace %-escapes in STRING with values in TABLE.
13807 TABLE is an association list with keys like \"%a\" and string values.
13808 The sequences in STRING may contain normal field width and padding information,
13809 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
13810 so values can contain further %-escapes if they are define later in TABLE."
13811 (let ((case-fold-search nil)
13812 e re rpl)
13813 (while (setq e (pop table))
13814 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
13815 (while (string-match re string)
13816 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
13817 (cdr e)))
13818 (setq string (replace-match rpl t t string))))
13819 string))
13822 (defun org-sublist (list start end)
13823 "Return a section of LIST, from START to END.
13824 Counting starts at 1."
13825 (let (rtn (c start))
13826 (setq list (nthcdr (1- start) list))
13827 (while (and list (<= c end))
13828 (push (pop list) rtn)
13829 (setq c (1+ c)))
13830 (nreverse rtn)))
13832 (defun org-find-base-buffer-visiting (file)
13833 "Like `find-buffer-visiting' but alway return the base buffer and
13834 not an indirect buffer."
13835 (let ((buf (find-buffer-visiting file)))
13836 (if buf
13837 (or (buffer-base-buffer buf) buf)
13838 nil)))
13840 (defun org-image-file-name-regexp ()
13841 "Return regexp matching the file names of images."
13842 (if (fboundp 'image-file-name-regexp)
13843 (image-file-name-regexp)
13844 (let ((image-file-name-extensions
13845 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
13846 "xbm" "xpm" "pbm" "pgm" "ppm")))
13847 (concat "\\."
13848 (regexp-opt (nconc (mapcar 'upcase
13849 image-file-name-extensions)
13850 image-file-name-extensions)
13852 "\\'"))))
13854 (defun org-file-image-p (file)
13855 "Return non-nil if FILE is an image."
13856 (save-match-data
13857 (string-match (org-image-file-name-regexp) file)))
13859 ;;; Paragraph filling stuff.
13860 ;; We want this to be just right, so use the full arsenal.
13862 (defun org-indent-line-function ()
13863 "Indent line like previous, but further if previous was headline or item."
13864 (interactive)
13865 (let* ((pos (point))
13866 (itemp (org-at-item-p))
13867 column bpos bcol tpos tcol bullet btype bullet-type)
13868 ;; Find the previous relevant line
13869 (beginning-of-line 1)
13870 (cond
13871 ((looking-at "#") (setq column 0))
13872 ((looking-at "\\*+ ") (setq column 0))
13874 (beginning-of-line 0)
13875 (while (and (not (bobp)) (looking-at "[ \t]*[\n:#|]"))
13876 (beginning-of-line 0))
13877 (cond
13878 ((looking-at "\\*+[ \t]+")
13879 (if (not org-adapt-indentation)
13880 (setq column 0)
13881 (goto-char (match-end 0))
13882 (setq column (current-column))))
13883 ((org-in-item-p)
13884 (org-beginning-of-item)
13885 ; (looking-at "[ \t]*\\(\\S-+\\)[ \t]*")
13886 (looking-at "[ \t]*\\(\\S-+\\)[ \t]*\\(\\[[- X]\\][ \t]*\\|.*? :: \\)?")
13887 (setq bpos (match-beginning 1) tpos (match-end 0)
13888 bcol (progn (goto-char bpos) (current-column))
13889 tcol (progn (goto-char tpos) (current-column))
13890 bullet (match-string 1)
13891 bullet-type (if (string-match "[0-9]" bullet) "n" bullet))
13892 (if (> tcol (+ bcol org-description-max-indent))
13893 (setq tcol (+ bcol 5)))
13894 (if (not itemp)
13895 (setq column tcol)
13896 (goto-char pos)
13897 (beginning-of-line 1)
13898 (if (looking-at "\\S-")
13899 (progn
13900 (looking-at "[ \t]*\\(\\S-+\\)[ \t]*")
13901 (setq bullet (match-string 1)
13902 btype (if (string-match "[0-9]" bullet) "n" bullet))
13903 (setq column (if (equal btype bullet-type) bcol tcol)))
13904 (setq column (org-get-indentation)))))
13905 (t (setq column (org-get-indentation))))))
13906 (goto-char pos)
13907 (if (<= (current-column) (current-indentation))
13908 (org-indent-line-to column)
13909 (save-excursion (org-indent-line-to column)))
13910 (setq column (current-column))
13911 (beginning-of-line 1)
13912 (if (looking-at
13913 "\\([ \t]+\\)\\(:[-_0-9a-zA-Z]+:\\)[ \t]*\\(\\S-.*\\(\\S-\\|$\\)\\)")
13914 (replace-match (concat "\\1" (format org-property-format
13915 (match-string 2) (match-string 3)))
13916 t nil))
13917 (org-move-to-column column)))
13919 (defun org-set-autofill-regexps ()
13920 (interactive)
13921 ;; In the paragraph separator we include headlines, because filling
13922 ;; text in a line directly attached to a headline would otherwise
13923 ;; fill the headline as well.
13924 (org-set-local 'comment-start-skip "^#+[ \t]*")
13925 (org-set-local 'paragraph-separate "\f\\|\\*+ \\|[ ]*$\\|[ \t]*[:|]")
13926 ;; The paragraph starter includes hand-formatted lists.
13927 (org-set-local 'paragraph-start
13928 "\f\\|[ ]*$\\|\\*+ \\|\f\\|[ \t]*\\([-+*][ \t]+\\|[0-9]+[.)][ \t]+\\)\\|[ \t]*[:|]")
13929 ;; Inhibit auto-fill for headers, tables and fixed-width lines.
13930 ;; But only if the user has not turned off tables or fixed-width regions
13931 (org-set-local
13932 'auto-fill-inhibit-regexp
13933 (concat "\\*+ \\|#\\+"
13934 "\\|[ \t]*" org-keyword-time-regexp
13935 (if (or org-enable-table-editor org-enable-fixed-width-editor)
13936 (concat
13937 "\\|[ \t]*["
13938 (if org-enable-table-editor "|" "")
13939 (if org-enable-fixed-width-editor ":" "")
13940 "]"))))
13941 ;; We use our own fill-paragraph function, to make sure that tables
13942 ;; and fixed-width regions are not wrapped. That function will pass
13943 ;; through to `fill-paragraph' when appropriate.
13944 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
13945 ; Adaptive filling: To get full control, first make sure that
13946 ;; `adaptive-fill-regexp' never matches. Then install our own matcher.
13947 (org-set-local 'adaptive-fill-regexp "\000")
13948 (org-set-local 'adaptive-fill-function
13949 'org-adaptive-fill-function)
13950 (org-set-local
13951 'align-mode-rules-list
13952 '((org-in-buffer-settings
13953 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
13954 (modes . '(org-mode))))))
13956 (defun org-fill-paragraph (&optional justify)
13957 "Re-align a table, pass through to fill-paragraph if no table."
13958 (let ((table-p (org-at-table-p))
13959 (table.el-p (org-at-table.el-p)))
13960 (cond ((and (equal (char-after (point-at-bol)) ?*)
13961 (save-excursion (goto-char (point-at-bol))
13962 (looking-at outline-regexp)))
13963 t) ; skip headlines
13964 (table.el-p t) ; skip table.el tables
13965 (table-p (org-table-align) t) ; align org-mode tables
13966 (t nil)))) ; call paragraph-fill
13968 ;; For reference, this is the default value of adaptive-fill-regexp
13969 ;; "[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"
13971 (defun org-adaptive-fill-function ()
13972 "Return a fill prefix for org-mode files.
13973 In particular, this makes sure hanging paragraphs for hand-formatted lists
13974 work correctly."
13975 (cond ((looking-at "#[ \t]+")
13976 (match-string 0))
13977 ((looking-at "[ \t]*\\([-*+] .*? :: \\)")
13978 (save-excursion
13979 (if (> (match-end 1) (+ (match-beginning 1)
13980 org-description-max-indent))
13981 (goto-char (+ (match-beginning 1) 5))
13982 (goto-char (match-end 0)))
13983 (make-string (current-column) ?\ )))
13984 ((looking-at "[ \t]*\\([-*+] \\|[0-9]+[.)] \\)?")
13985 (save-excursion
13986 (goto-char (match-end 0))
13987 (make-string (current-column) ?\ )))
13988 (t nil)))
13990 ;;; Other stuff.
13992 (defun org-toggle-fixed-width-section (arg)
13993 "Toggle the fixed-width export.
13994 If there is no active region, the QUOTE keyword at the current headline is
13995 inserted or removed. When present, it causes the text between this headline
13996 and the next to be exported as fixed-width text, and unmodified.
13997 If there is an active region, this command adds or removes a colon as the
13998 first character of this line. If the first character of a line is a colon,
13999 this line is also exported in fixed-width font."
14000 (interactive "P")
14001 (let* ((cc 0)
14002 (regionp (org-region-active-p))
14003 (beg (if regionp (region-beginning) (point)))
14004 (end (if regionp (region-end)))
14005 (nlines (or arg (if (and beg end) (count-lines beg end) 1)))
14006 (case-fold-search nil)
14007 (re "[ \t]*\\(:\\)")
14008 off)
14009 (if regionp
14010 (save-excursion
14011 (goto-char beg)
14012 (setq cc (current-column))
14013 (beginning-of-line 1)
14014 (setq off (looking-at re))
14015 (while (> nlines 0)
14016 (setq nlines (1- nlines))
14017 (beginning-of-line 1)
14018 (cond
14019 (arg
14020 (org-move-to-column cc t)
14021 (insert ":\n")
14022 (forward-line -1))
14023 ((and off (looking-at re))
14024 (replace-match "" t t nil 1))
14025 ((not off) (org-move-to-column cc t) (insert ":")))
14026 (forward-line 1)))
14027 (save-excursion
14028 (org-back-to-heading)
14029 (if (looking-at (concat outline-regexp
14030 "\\( *\\<" org-quote-string "\\>[ \t]*\\)"))
14031 (replace-match "" t t nil 1)
14032 (if (looking-at outline-regexp)
14033 (progn
14034 (goto-char (match-end 0))
14035 (insert org-quote-string " "))))))))
14037 ;;;; Functions extending outline functionality
14039 (defun org-beginning-of-line (&optional arg)
14040 "Go to the beginning of the current line. If that is invisible, continue
14041 to a visible line beginning. This makes the function of C-a more intuitive.
14042 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
14043 first attempt, and only move to after the tags when the cursor is already
14044 beyond the end of the headline."
14045 (interactive "P")
14046 (let ((pos (point)) refpos)
14047 (beginning-of-line 1)
14048 (if (bobp)
14050 (backward-char 1)
14051 (if (org-invisible-p)
14052 (while (and (not (bobp)) (org-invisible-p))
14053 (backward-char 1)
14054 (beginning-of-line 1))
14055 (forward-char 1)))
14056 (when org-special-ctrl-a/e
14057 (cond
14058 ((and (looking-at org-complex-heading-regexp)
14059 (= (char-after (match-end 1)) ?\ ))
14060 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
14061 (point-at-eol)))
14062 (goto-char
14063 (if (eq org-special-ctrl-a/e t)
14064 (cond ((> pos refpos) refpos)
14065 ((= pos (point)) refpos)
14066 (t (point)))
14067 (cond ((> pos (point)) (point))
14068 ((not (eq last-command this-command)) (point))
14069 (t refpos)))))
14070 ((org-at-item-p)
14071 (goto-char
14072 (if (eq org-special-ctrl-a/e t)
14073 (cond ((> pos (match-end 4)) (match-end 4))
14074 ((= pos (point)) (match-end 4))
14075 (t (point)))
14076 (cond ((> pos (point)) (point))
14077 ((not (eq last-command this-command)) (point))
14078 (t (match-end 4))))))))
14079 (org-no-warnings
14080 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
14082 (defun org-end-of-line (&optional arg)
14083 "Go to the end of the line.
14084 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
14085 first attempt, and only move to after the tags when the cursor is already
14086 beyond the end of the headline."
14087 (interactive "P")
14088 (if (or (not org-special-ctrl-a/e)
14089 (not (org-on-heading-p)))
14090 (end-of-line arg)
14091 (let ((pos (point)))
14092 (beginning-of-line 1)
14093 (if (looking-at (org-re ".*?\\([ \t]*\\)\\(:[[:alnum:]_@:]+:\\)[ \t]*$"))
14094 (if (eq org-special-ctrl-a/e t)
14095 (if (or (< pos (match-beginning 1))
14096 (= pos (match-end 0)))
14097 (goto-char (match-beginning 1))
14098 (goto-char (match-end 0)))
14099 (if (or (< pos (match-end 0)) (not (eq this-command last-command)))
14100 (goto-char (match-end 0))
14101 (goto-char (match-beginning 1))))
14102 (end-of-line arg))))
14103 (org-no-warnings
14104 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
14107 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
14108 (define-key org-mode-map "\C-e" 'org-end-of-line)
14110 (defun org-kill-line (&optional arg)
14111 "Kill line, to tags or end of line."
14112 (interactive "P")
14113 (cond
14114 ((or (not org-special-ctrl-k)
14115 (bolp)
14116 (not (org-on-heading-p)))
14117 (call-interactively 'kill-line))
14118 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@:]+:\\)\\)[ \t]*$"))
14119 (kill-region (point) (match-beginning 1))
14120 (org-set-tags nil t))
14121 (t (kill-region (point) (point-at-eol)))))
14123 (define-key org-mode-map "\C-k" 'org-kill-line)
14125 (defun org-invisible-p ()
14126 "Check if point is at a character currently not visible."
14127 ;; Early versions of noutline don't have `outline-invisible-p'.
14128 (if (fboundp 'outline-invisible-p)
14129 (outline-invisible-p)
14130 (get-char-property (point) 'invisible)))
14132 (defun org-invisible-p2 ()
14133 "Check if point is at a character currently not visible."
14134 (save-excursion
14135 (if (and (eolp) (not (bobp))) (backward-char 1))
14136 ;; Early versions of noutline don't have `outline-invisible-p'.
14137 (if (fboundp 'outline-invisible-p)
14138 (outline-invisible-p)
14139 (get-char-property (point) 'invisible))))
14141 (defalias 'org-back-to-heading 'outline-back-to-heading)
14142 (defalias 'org-on-heading-p 'outline-on-heading-p)
14143 (defalias 'org-at-heading-p 'outline-on-heading-p)
14144 (defun org-at-heading-or-item-p ()
14145 (or (org-on-heading-p) (org-at-item-p)))
14147 (defun org-on-target-p ()
14148 (or (org-in-regexp org-radio-target-regexp)
14149 (org-in-regexp org-target-regexp)))
14151 (defun org-up-heading-all (arg)
14152 "Move to the heading line of which the present line is a subheading.
14153 This function considers both visible and invisible heading lines.
14154 With argument, move up ARG levels."
14155 (if (fboundp 'outline-up-heading-all)
14156 (outline-up-heading-all arg) ; emacs 21 version of outline.el
14157 (outline-up-heading arg t))) ; emacs 22 version of outline.el
14159 (defun org-up-heading-safe ()
14160 "Move to the heading line of which the present line is a subheading.
14161 This version will not throw an error. It will return the level of the
14162 headline found, or nil if no higher level is found."
14163 (let ((pos (point)) start-level level
14164 (re (concat "^" outline-regexp)))
14165 (catch 'exit
14166 (outline-back-to-heading t)
14167 (setq start-level (funcall outline-level))
14168 (if (equal start-level 1) (throw 'exit nil))
14169 (while (re-search-backward re nil t)
14170 (setq level (funcall outline-level))
14171 (if (< level start-level) (throw 'exit level)))
14172 nil)))
14174 (defun org-first-sibling-p ()
14175 "Is this heading the first child of its parents?"
14176 (interactive)
14177 (let ((re (concat "^" outline-regexp))
14178 level l)
14179 (unless (org-at-heading-p t)
14180 (error "Not at a heading"))
14181 (setq level (funcall outline-level))
14182 (save-excursion
14183 (if (not (re-search-backward re nil t))
14185 (setq l (funcall outline-level))
14186 (< l level)))))
14188 (defun org-goto-sibling (&optional previous)
14189 "Goto the next sibling, even if it is invisible.
14190 When PREVIOUS is set, go to the previous sibling instead. Returns t
14191 when a sibling was found. When none is found, return nil and don't
14192 move point."
14193 (let ((fun (if previous 're-search-backward 're-search-forward))
14194 (pos (point))
14195 (re (concat "^" outline-regexp))
14196 level l)
14197 (when (condition-case nil (org-back-to-heading t) (error nil))
14198 (setq level (funcall outline-level))
14199 (catch 'exit
14200 (or previous (forward-char 1))
14201 (while (funcall fun re nil t)
14202 (setq l (funcall outline-level))
14203 (when (< l level) (goto-char pos) (throw 'exit nil))
14204 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
14205 (goto-char pos)
14206 nil))))
14208 (defun org-show-siblings ()
14209 "Show all siblings of the current headline."
14210 (save-excursion
14211 (while (org-goto-sibling) (org-flag-heading nil)))
14212 (save-excursion
14213 (while (org-goto-sibling 'previous)
14214 (org-flag-heading nil))))
14216 (defun org-show-hidden-entry ()
14217 "Show an entry where even the heading is hidden."
14218 (save-excursion
14219 (org-show-entry)))
14221 (defun org-flag-heading (flag &optional entry)
14222 "Flag the current heading. FLAG non-nil means make invisible.
14223 When ENTRY is non-nil, show the entire entry."
14224 (save-excursion
14225 (org-back-to-heading t)
14226 ;; Check if we should show the entire entry
14227 (if entry
14228 (progn
14229 (org-show-entry)
14230 (save-excursion
14231 (and (outline-next-heading)
14232 (org-flag-heading nil))))
14233 (outline-flag-region (max (point-min) (1- (point)))
14234 (save-excursion (outline-end-of-heading) (point))
14235 flag))))
14237 (defun org-end-of-subtree (&optional invisible-OK to-heading)
14238 ;; This is an exact copy of the original function, but it uses
14239 ;; `org-back-to-heading', to make it work also in invisible
14240 ;; trees. And is uses an invisible-OK argument.
14241 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
14242 (org-back-to-heading invisible-OK)
14243 (let ((first t)
14244 (level (funcall outline-level)))
14245 (while (and (not (eobp))
14246 (or first (> (funcall outline-level) level)))
14247 (setq first nil)
14248 (outline-next-heading))
14249 (unless to-heading
14250 (if (memq (preceding-char) '(?\n ?\^M))
14251 (progn
14252 ;; Go to end of line before heading
14253 (forward-char -1)
14254 (if (memq (preceding-char) '(?\n ?\^M))
14255 ;; leave blank line before heading
14256 (forward-char -1))))))
14257 (point))
14259 (defun org-show-subtree ()
14260 "Show everything after this heading at deeper levels."
14261 (outline-flag-region
14262 (point)
14263 (save-excursion
14264 (outline-end-of-subtree) (outline-next-heading) (point))
14265 nil))
14267 (defun org-show-entry ()
14268 "Show the body directly following this heading.
14269 Show the heading too, if it is currently invisible."
14270 (interactive)
14271 (save-excursion
14272 (condition-case nil
14273 (progn
14274 (org-back-to-heading t)
14275 (outline-flag-region
14276 (max (point-min) (1- (point)))
14277 (save-excursion
14278 (re-search-forward
14279 (concat "[\r\n]\\(" outline-regexp "\\)") nil 'move)
14280 (or (match-beginning 1) (point-max)))
14281 nil))
14282 (error nil))))
14284 (defun org-make-options-regexp (kwds)
14285 "Make a regular expression for keyword lines."
14286 (concat
14288 "#?[ \t]*\\+\\("
14289 (mapconcat 'regexp-quote kwds "\\|")
14290 "\\):[ \t]*"
14291 "\\(.+\\)"))
14293 ;; Make isearch reveal the necessary context
14294 (defun org-isearch-end ()
14295 "Reveal context after isearch exits."
14296 (when isearch-success ; only if search was successful
14297 (if (featurep 'xemacs)
14298 ;; Under XEmacs, the hook is run in the correct place,
14299 ;; we directly show the context.
14300 (org-show-context 'isearch)
14301 ;; In Emacs the hook runs *before* restoring the overlays.
14302 ;; So we have to use a one-time post-command-hook to do this.
14303 ;; (Emacs 22 has a special variable, see function `org-mode')
14304 (unless (and (boundp 'isearch-mode-end-hook-quit)
14305 isearch-mode-end-hook-quit)
14306 ;; Only when the isearch was not quitted.
14307 (org-add-hook 'post-command-hook 'org-isearch-post-command
14308 'append 'local)))))
14310 (defun org-isearch-post-command ()
14311 "Remove self from hook, and show context."
14312 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
14313 (org-show-context 'isearch))
14316 ;;;; Integration with and fixes for other packages
14318 ;;; Imenu support
14320 (defvar org-imenu-markers nil
14321 "All markers currently used by Imenu.")
14322 (make-variable-buffer-local 'org-imenu-markers)
14324 (defun org-imenu-new-marker (&optional pos)
14325 "Return a new marker for use by Imenu, and remember the marker."
14326 (let ((m (make-marker)))
14327 (move-marker m (or pos (point)))
14328 (push m org-imenu-markers)
14331 (defun org-imenu-get-tree ()
14332 "Produce the index for Imenu."
14333 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
14334 (setq org-imenu-markers nil)
14335 (let* ((n org-imenu-depth)
14336 (re (concat "^" outline-regexp))
14337 (subs (make-vector (1+ n) nil))
14338 (last-level 0)
14339 m tree level head)
14340 (save-excursion
14341 (save-restriction
14342 (widen)
14343 (goto-char (point-max))
14344 (while (re-search-backward re nil t)
14345 (setq level (org-reduced-level (funcall outline-level)))
14346 (when (<= level n)
14347 (looking-at org-complex-heading-regexp)
14348 (setq head (org-match-string-no-properties 4)
14349 m (org-imenu-new-marker))
14350 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
14351 (if (>= level last-level)
14352 (push (cons head m) (aref subs level))
14353 (push (cons head (aref subs (1+ level))) (aref subs level))
14354 (loop for i from (1+ level) to n do (aset subs i nil)))
14355 (setq last-level level)))))
14356 (aref subs 1)))
14358 (eval-after-load "imenu"
14359 '(progn
14360 (add-hook 'imenu-after-jump-hook
14361 (lambda () (org-show-context 'org-goto)))))
14363 ;; Speedbar support
14365 (defvar org-speedbar-restriction-lock-overlay (org-make-overlay 1 1)
14366 "Overlay marking the agenda restriction line in speedbar.")
14367 (org-overlay-put org-speedbar-restriction-lock-overlay
14368 'face 'org-agenda-restriction-lock)
14369 (org-overlay-put org-speedbar-restriction-lock-overlay
14370 'help-echo "Agendas are currently limited to this item.")
14371 (org-detach-overlay org-speedbar-restriction-lock-overlay)
14373 (defun org-speedbar-set-agenda-restriction ()
14374 "Restrict future agenda commands to the location at point in speedbar.
14375 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
14376 (interactive)
14377 (require 'org-agenda)
14378 (let (p m tp np dir txt w)
14379 (cond
14380 ((setq p (text-property-any (point-at-bol) (point-at-eol)
14381 'org-imenu t))
14382 (setq m (get-text-property p 'org-imenu-marker))
14383 (save-excursion
14384 (save-restriction
14385 (set-buffer (marker-buffer m))
14386 (goto-char m)
14387 (org-agenda-set-restriction-lock 'subtree))))
14388 ((setq p (text-property-any (point-at-bol) (point-at-eol)
14389 'speedbar-function 'speedbar-find-file))
14390 (setq tp (previous-single-property-change
14391 (1+ p) 'speedbar-function)
14392 np (next-single-property-change
14393 tp 'speedbar-function)
14394 dir (speedbar-line-directory)
14395 txt (buffer-substring-no-properties (or tp (point-min))
14396 (or np (point-max))))
14397 (save-excursion
14398 (save-restriction
14399 (set-buffer (find-file-noselect
14400 (let ((default-directory dir))
14401 (expand-file-name txt))))
14402 (unless (org-mode-p)
14403 (error "Cannot restrict to non-Org-mode file"))
14404 (org-agenda-set-restriction-lock 'file))))
14405 (t (error "Don't know how to restrict Org-mode's agenda")))
14406 (org-move-overlay org-speedbar-restriction-lock-overlay
14407 (point-at-bol) (point-at-eol))
14408 (setq current-prefix-arg nil)
14409 (org-agenda-maybe-redo)))
14411 (eval-after-load "speedbar"
14412 '(progn
14413 (speedbar-add-supported-extension ".org")
14414 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
14415 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
14416 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
14417 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
14418 (add-hook 'speedbar-visiting-tag-hook
14419 (lambda () (org-show-context 'org-goto)))))
14422 ;;; Fixes and Hacks for problems with other packages
14424 ;; Make flyspell not check words in links, to not mess up our keymap
14425 (defun org-mode-flyspell-verify ()
14426 "Don't let flyspell put overlays at active buttons."
14427 (not (get-text-property (point) 'keymap)))
14429 ;; Make `bookmark-jump' show the jump location if it was hidden.
14430 (eval-after-load "bookmark"
14431 '(if (boundp 'bookmark-after-jump-hook)
14432 ;; We can use the hook
14433 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
14434 ;; Hook not available, use advice
14435 (defadvice bookmark-jump (after org-make-visible activate)
14436 "Make the position visible."
14437 (org-bookmark-jump-unhide))))
14439 (defun org-bookmark-jump-unhide ()
14440 "Unhide the current position, to show the bookmark location."
14441 (and (org-mode-p)
14442 (or (org-invisible-p)
14443 (save-excursion (goto-char (max (point-min) (1- (point))))
14444 (org-invisible-p)))
14445 (org-show-context 'bookmark-jump)))
14447 ;; Make session.el ignore our circular variable
14448 (eval-after-load "session"
14449 '(add-to-list 'session-globals-exclude 'org-mark-ring))
14451 ;;;; Experimental code
14453 (defun org-closed-in-range ()
14454 "Sparse tree of items closed in a certain time range.
14455 Still experimental, may disappear in the future."
14456 (interactive)
14457 ;; Get the time interval from the user.
14458 (let* ((time1 (time-to-seconds
14459 (org-read-date nil 'to-time nil "Starting date: ")))
14460 (time2 (time-to-seconds
14461 (org-read-date nil 'to-time nil "End date:")))
14462 ;; callback function
14463 (callback (lambda ()
14464 (let ((time
14465 (time-to-seconds
14466 (apply 'encode-time
14467 (org-parse-time-string
14468 (match-string 1))))))
14469 ;; check if time in interval
14470 (and (>= time time1) (<= time time2))))))
14471 ;; make tree, check each match with the callback
14472 (org-occur "CLOSED: +\\[\\(.*?\\)\\]" nil callback)))
14475 ;;;; Finish up
14477 (provide 'org)
14479 (run-hooks 'org-load-hook)
14481 ;; arch-tag: e77da1a7-acc7-4336-b19e-efa25af3f9fd
14483 ;;; org.el ends here