Fix commit 19af72
[org-mode.git] / lisp / org.el
blobfc0a187345c5f0dd40091e07630da610cb9ee595
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2013 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
8 ;; Keywords: outlines, hypermedia, calendar, wp
9 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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))
76 (require 'calendar)
77 (require 'find-func)
78 (require 'format-spec)
80 (load "org-loaddefs.el" t t t)
82 (require 'org-macs)
83 (require 'org-compat)
85 ;; `org-outline-regexp' ought to be a defconst but is let-binding in
86 ;; some places -- e.g. see the macro `org-with-limited-levels'.
88 ;; In Org buffers, the value of `outline-regexp' is that of
89 ;; `org-outline-regexp'. The only function still directly relying on
90 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
91 ;; job when `orgstruct-mode' is active.
92 (defvar org-outline-regexp "\\*+ "
93 "Regexp to match Org headlines.")
95 (defvar org-outline-regexp-bol "^\\*+ "
96 "Regexp to match Org headlines.
97 This is similar to `org-outline-regexp' but additionally makes
98 sure that we are at the beginning of the line.")
100 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
101 "Matches a headline, putting stars and text into groups.
102 Stars are put in group 1 and the trimmed body in group 2.")
104 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
105 (unless (boundp 'calendar-view-holidays-initially-flag)
106 (org-defvaralias 'calendar-view-holidays-initially-flag
107 'view-calendar-holidays-initially))
108 (unless (boundp 'calendar-view-diary-initially-flag)
109 (org-defvaralias 'calendar-view-diary-initially-flag
110 'view-diary-entries-initially))
111 (unless (boundp 'diary-fancy-buffer)
112 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
114 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
115 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
116 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
117 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
118 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
119 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
120 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
121 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
123 (declare-function orgtbl-mode "org-table" (&optional arg))
124 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
125 (declare-function org-beamer-mode "ox-beamer" ())
126 (declare-function org-table-edit-field "org-table" (arg))
127 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
128 (declare-function org-table-set-constants "org-table" ())
129 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
130 (declare-function org-id-get-create "org-id" (&optional force))
131 (declare-function org-id-find-id-file "org-id" (id))
132 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
133 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
134 (declare-function org-agenda-redo "org-agenda" (&optional all))
135 (declare-function org-table-align "org-table" ())
136 (declare-function org-table-paste-rectangle "org-table" ())
137 (declare-function org-table-maybe-eval-formula "org-table" ())
138 (declare-function org-table-maybe-recalculate-line "org-table" ())
140 (declare-function org-element--parse-objects "org-element"
141 (beg end acc restriction))
142 (declare-function org-element-at-point "org-element" (&optional keep-trail))
143 (declare-function org-element-contents "org-element" (element))
144 (declare-function org-element-context "org-element" (&optional element))
145 (declare-function org-element-interpret-data "org-element"
146 (data &optional parent))
147 (declare-function org-element-map "org-element"
148 (data types fun &optional info first-match no-recursion))
149 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
150 (declare-function org-element-parse-buffer "org-element"
151 (&optional granularity visible-only))
152 (declare-function org-element-property "org-element" (property element))
153 (declare-function org-element-put-property "org-element"
154 (element property value))
155 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
156 (declare-function org-element--parse-objects "org-element"
157 (beg end acc restriction))
158 (declare-function org-element-parse-buffer "org-element"
159 (&optional granularity visible-only))
160 (declare-function org-element-restriction "org-element" (element))
161 (declare-function org-element-type "org-element" (element))
163 ;; load languages based on value of `org-babel-load-languages'
164 (defvar org-babel-load-languages)
166 ;;;###autoload
167 (defun org-babel-do-load-languages (sym value)
168 "Load the languages defined in `org-babel-load-languages'."
169 (set-default sym value)
170 (mapc (lambda (pair)
171 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
172 (if active
173 (progn
174 (require (intern (concat "ob-" lang))))
175 (progn
176 (funcall 'fmakunbound
177 (intern (concat "org-babel-execute:" lang)))
178 (funcall 'fmakunbound
179 (intern (concat "org-babel-expand-body:" lang)))))))
180 org-babel-load-languages))
182 ;;;###autoload
183 (defun org-babel-load-file (file &optional compile)
184 "Load Emacs Lisp source code blocks in the Org-mode FILE.
185 This function exports the source code using `org-babel-tangle'
186 and then loads the resulting file using `load-file'. With prefix
187 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
188 file to byte-code before it is loaded."
189 (interactive "fFile to load: \nP")
190 (require 'ob-core)
191 (let* ((age (lambda (file)
192 (float-time
193 (time-subtract (current-time)
194 (nth 5 (or (file-attributes (file-truename file))
195 (file-attributes file)))))))
196 (base-name (file-name-sans-extension file))
197 (exported-file (concat base-name ".el")))
198 ;; tangle if the org-mode file is newer than the elisp file
199 (unless (and (file-exists-p exported-file)
200 (> (funcall age file) (funcall age exported-file)))
201 (org-babel-tangle-file file exported-file "emacs-lisp"))
202 (message "%s %s"
203 (if compile
204 (progn (byte-compile-file exported-file 'load)
205 "Compiled and loaded")
206 (progn (load-file exported-file) "Loaded"))
207 exported-file)))
209 (defcustom org-babel-load-languages '((emacs-lisp . t))
210 "Languages which can be evaluated in Org-mode buffers.
211 This list can be used to load support for any of the languages
212 below, note that each language will depend on a different set of
213 system executables and/or Emacs modes. When a language is
214 \"loaded\", then code blocks in that language can be evaluated
215 with `org-babel-execute-src-block' bound by default to C-c
216 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
217 be set to remove code block evaluation from the C-c C-c
218 keybinding. By default only Emacs Lisp (which has no
219 requirements) is loaded."
220 :group 'org-babel
221 :set 'org-babel-do-load-languages
222 :version "24.1"
223 :type '(alist :tag "Babel Languages"
224 :key-type
225 (choice
226 (const :tag "Awk" awk)
227 (const :tag "C" C)
228 (const :tag "R" R)
229 (const :tag "Asymptote" asymptote)
230 (const :tag "Calc" calc)
231 (const :tag "Clojure" clojure)
232 (const :tag "CSS" css)
233 (const :tag "Ditaa" ditaa)
234 (const :tag "Dot" dot)
235 (const :tag "Emacs Lisp" emacs-lisp)
236 (const :tag "Fortran" fortran)
237 (const :tag "Gnuplot" gnuplot)
238 (const :tag "Haskell" haskell)
239 (const :tag "IO" io)
240 (const :tag "Java" java)
241 (const :tag "Javascript" js)
242 (const :tag "LaTeX" latex)
243 (const :tag "Ledger" ledger)
244 (const :tag "Lilypond" lilypond)
245 (const :tag "Lisp" lisp)
246 (const :tag "Makefile" makefile)
247 (const :tag "Maxima" maxima)
248 (const :tag "Matlab" matlab)
249 (const :tag "Mscgen" mscgen)
250 (const :tag "Ocaml" ocaml)
251 (const :tag "Octave" octave)
252 (const :tag "Org" org)
253 (const :tag "Perl" perl)
254 (const :tag "Pico Lisp" picolisp)
255 (const :tag "PlantUML" plantuml)
256 (const :tag "Python" python)
257 (const :tag "Ruby" ruby)
258 (const :tag "Sass" sass)
259 (const :tag "Scala" scala)
260 (const :tag "Scheme" scheme)
261 (const :tag "Screen" screen)
262 (const :tag "Shell Script" sh)
263 (const :tag "Shen" shen)
264 (const :tag "Sql" sql)
265 (const :tag "Sqlite" sqlite))
266 :value-type (boolean :tag "Activate" :value t)))
268 ;;;; Customization variables
269 (defcustom org-clone-delete-id nil
270 "Remove ID property of clones of a subtree.
271 When non-nil, clones of a subtree don't inherit the ID property.
272 Otherwise they inherit the ID property with a new unique
273 identifier."
274 :type 'boolean
275 :version "24.1"
276 :group 'org-id)
278 ;;; Version
279 (org-check-version)
281 ;;;###autoload
282 (defun org-version (&optional here full message)
283 "Show the org-mode version in the echo area.
284 With prefix argument HERE, insert it at point.
285 When FULL is non-nil, use a verbose version string.
286 When MESSAGE is non-nil, display a message with the version."
287 (interactive "P")
288 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
289 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
290 (load-suffixes (list ".el"))
291 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
292 (org-trash (or
293 (and (fboundp 'org-release) (fboundp 'org-git-version))
294 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
295 (load-suffixes save-load-suffixes)
296 (org-version (org-release))
297 (git-version (org-git-version))
298 (version (format "Org-mode version %s (%s @ %s)"
299 org-version
300 git-version
301 (if org-install-dir
302 (if (string= org-dir org-install-dir)
303 org-install-dir
304 (concat "mixed installation! " org-install-dir " and " org-dir))
305 "org-loaddefs.el can not be found!")))
306 (_version (if full version org-version)))
307 (if (org-called-interactively-p 'interactive)
308 (if here
309 (insert version)
310 (message version))
311 (if message (message _version))
312 _version)))
314 (defconst org-version (org-version))
316 ;;; Compatibility constants
318 ;;; The custom variables
320 (defgroup org nil
321 "Outline-based notes management and organizer."
322 :tag "Org"
323 :group 'outlines
324 :group 'calendar)
326 (defcustom org-mode-hook nil
327 "Mode hook for Org-mode, run after the mode was turned on."
328 :group 'org
329 :type 'hook)
331 (defcustom org-load-hook nil
332 "Hook that is run after org.el has been loaded."
333 :group 'org
334 :type 'hook)
336 (defcustom org-log-buffer-setup-hook nil
337 "Hook that is run after an Org log buffer is created."
338 :group 'org
339 :version "24.1"
340 :type 'hook)
342 (defvar org-modules) ; defined below
343 (defvar org-modules-loaded nil
344 "Have the modules been loaded already?")
346 (defun org-load-modules-maybe (&optional force)
347 "Load all extensions listed in `org-modules'."
348 (when (or force (not org-modules-loaded))
349 (mapc (lambda (ext)
350 (condition-case nil (require ext)
351 (error (message "Problems while trying to load feature `%s'" ext))))
352 org-modules)
353 (setq org-modules-loaded t)))
355 (defun org-set-modules (var value)
356 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
357 (set var value)
358 (when (featurep 'org)
359 (org-load-modules-maybe 'force)))
361 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
362 "Modules that should always be loaded together with org.el.
364 If a description starts with <C>, the file is not part of Emacs
365 and loading it will require that you have downloaded and properly
366 installed the Org mode distribution.
368 You can also use this system to load external packages (i.e. neither Org
369 core modules, nor modules from the CONTRIB directory). Just add symbols
370 to the end of the list. If the package is called org-xyz.el, then you need
371 to add the symbol `xyz', and the package must have a call to:
373 \(provide 'org-xyz)
375 For export specific modules, see also `org-export-backends'."
376 :group 'org
377 :set 'org-set-modules
378 :version "24.4"
379 :package-version '(Org . "8.0")
380 :type
381 '(set :greedy t
382 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
383 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
384 (const :tag " crypt: Encryption of subtrees" org-crypt)
385 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
386 (const :tag " docview: Links to doc-view buffers" org-docview)
387 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
388 (const :tag " habit: Track your consistency with habits" org-habit)
389 (const :tag " id: Global IDs for identifying entries" org-id)
390 (const :tag " info: Links to Info nodes" org-info)
391 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
392 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
393 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
394 (const :tag " mouse: Additional mouse support" org-mouse)
395 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
396 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
397 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
399 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
400 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
401 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
402 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
403 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
404 (const :tag "C collector: Collect properties into tables" org-collector)
405 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
406 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
407 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
408 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
409 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
410 (const :tag "C eval: Include command output as text" org-eval)
411 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
412 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
413 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
414 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
415 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
416 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
417 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
418 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
419 (const :tag "C mac-link-grabber Grab links and URLs from various Mac applications" org-mac-link-grabber)
420 (const :tag "C mac-message: Links to messages in Apple Mail" org-mac-message)
421 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
422 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
423 (const :tag "C mew: Links to Mew folders/messages" org-mew)
424 (const :tag "C mtags: Support for muse-like tags" org-mtags)
425 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
426 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
427 (const :tag "C registry: A registry for Org-mode links" org-registry)
428 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
429 (const :tag "C secretary: Team management with org-mode" org-secretary)
430 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
431 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
432 (const :tag "C track: Keep up with Org-mode development" org-track)
433 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
434 (const :tag "C vm: Links to VM folders/messages" org-vm)
435 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
436 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
437 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
439 (defvar org-export-registered-backends) ; From ox.el
440 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
441 (defcustom org-export-backends '(ascii html icalendar latex)
442 "List of export back-ends that should be always available.
444 If a description starts with <C>, the file is not part of Emacs
445 and loading it will require that you have downloaded and properly
446 installed the Org mode distribution.
448 Unlike to `org-modules', libraries in this list will not be
449 loaded along with Org, but only once the export framework is
450 needed.
452 This variable needs to be set before org.el is loaded. If you
453 need to make a change while Emacs is running, use the customize
454 interface or run the following code, where VALUE stands for the
455 new value of the variable, after updating it:
457 \(progn
458 \(setq org-export-registered-backends
459 \(org-remove-if-not
460 \(lambda (backend)
461 \(or (memq backend val)
462 \(catch 'parentp
463 \(mapc
464 \(lambda (b)
465 \(and (org-export-derived-backend-p b (car backend))
466 \(throw 'parentp t)))
467 val)
468 nil)))
469 org-export-registered-backends))
470 \(let ((new-list (mapcar 'car org-export-registered-backends)))
471 \(dolist (backend val)
472 \(cond
473 \((not (load (format \"ox-%s\" backend) t t))
474 \(message \"Problems while trying to load export back-end `%s'\"
475 backend))
476 \((not (memq backend new-list)) (push backend new-list))))
477 \(set-default var new-list)))
479 Adding a back-end to this list will also pull the back-end it
480 depends on, if any."
481 :group 'org
482 :group 'org-export
483 :version "24.4"
484 :package-version '(Org . "8.0")
485 :initialize 'custom-initialize-set
486 :set (lambda (var val)
487 (if (not (featurep 'ox)) (set-default var val)
488 ;; Any back-end not required anymore (not present in VAL and not
489 ;; a parent of any back-end in the new value) is removed from the
490 ;; list of registered back-ends.
491 (setq org-export-registered-backends
492 (org-remove-if-not
493 (lambda (backend)
494 (or (memq backend val)
495 (catch 'parentp
496 (mapc
497 (lambda (b)
498 (and (org-export-derived-backend-p b (car backend))
499 (throw 'parentp t)))
500 val)
501 nil)))
502 org-export-registered-backends))
503 ;; Now build NEW-LIST of both new back-ends and required
504 ;; parents.
505 (let ((new-list (mapcar 'car org-export-registered-backends)))
506 (dolist (backend val)
507 (cond
508 ((not (load (format "ox-%s" backend) t t))
509 (message "Problems while trying to load export back-end `%s'"
510 backend))
511 ((not (memq backend new-list)) (push backend new-list))))
512 ;; Set VAR to that list with fixed dependencies.
513 (set-default var new-list))))
514 :type '(set :greedy t
515 (const :tag " ascii Export buffer to ASCII format" ascii)
516 (const :tag " beamer Export buffer to Beamer presentation" beamer)
517 (const :tag " html Export buffer to HTML format" html)
518 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
519 (const :tag " latex Export buffer to LaTeX format" latex)
520 (const :tag " man Export buffer to MAN format" man)
521 (const :tag " md Export buffer to Markdown format" md)
522 (const :tag " odt Export buffer to ODT format" odt)
523 (const :tag " org Export buffer to Org format" org)
524 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
525 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
526 (const :tag "C deck Export buffer to deck.js presentations" deck)
527 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
528 (const :tag "C groff Export buffer to Groff format" groff)
529 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
530 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
531 (const :tag "C s5 Export buffer to s5 presentations" s5)
532 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
534 (eval-after-load 'ox
535 '(mapc
536 (lambda (backend)
537 (condition-case nil (require (intern (format "ox-%s" backend)))
538 (error (message "Problems while trying to load export back-end `%s'"
539 backend))))
540 org-export-backends))
542 (defcustom org-support-shift-select nil
543 "Non-nil means make shift-cursor commands select text when possible.
545 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
546 start selecting a region, or enlarge regions started in this way.
547 In Org-mode, in special contexts, these same keys are used for
548 other purposes, important enough to compete with shift selection.
549 Org tries to balance these needs by supporting `shift-select-mode'
550 outside these special contexts, under control of this variable.
552 The default of this variable is nil, to avoid confusing behavior. Shifted
553 cursor keys will then execute Org commands in the following contexts:
554 - on a headline, changing TODO state (left/right) and priority (up/down)
555 - on a time stamp, changing the time
556 - in a plain list item, changing the bullet type
557 - in a property definition line, switching between allowed values
558 - in the BEGIN line of a clock table (changing the time block).
559 Outside these contexts, the commands will throw an error.
561 When this variable is t and the cursor is not in a special
562 context, Org-mode will support shift-selection for making and
563 enlarging regions. To make this more effective, the bullet
564 cycling will no longer happen anywhere in an item line, but only
565 if the cursor is exactly on the bullet.
567 If you set this variable to the symbol `always', then the keys
568 will not be special in headlines, property lines, and item lines,
569 to make shift selection work there as well. If this is what you
570 want, you can use the following alternative commands: `C-c C-t'
571 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
572 can be used to switch TODO sets, `C-c -' to cycle item bullet
573 types, and properties can be edited by hand or in column view.
575 However, when the cursor is on a timestamp, shift-cursor commands
576 will still edit the time stamp - this is just too good to give up.
578 XEmacs user should have this variable set to nil, because
579 `shift-select-mode' is in Emacs 23 or later only."
580 :group 'org
581 :type '(choice
582 (const :tag "Never" nil)
583 (const :tag "When outside special context" t)
584 (const :tag "Everywhere except timestamps" always)))
586 (defcustom org-loop-over-headlines-in-active-region nil
587 "Shall some commands act upon headlines in the active region?
589 When set to `t', some commands will be performed in all headlines
590 within the active region.
592 When set to `start-level', some commands will be performed in all
593 headlines within the active region, provided that these headlines
594 are of the same level than the first one.
596 When set to a string, those commands will be performed on the
597 matching headlines within the active region. Such string must be
598 a tags/property/todo match as it is used in the agenda tags view.
600 The list of commands is: `org-schedule', `org-deadline',
601 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
602 `org-archive-to-archive-sibling'. The archiving commands skip
603 already archived entries."
604 :type '(choice (const :tag "Don't loop" nil)
605 (const :tag "All headlines in active region" t)
606 (const :tag "In active region, headlines at the same level than the first one" 'start-level)
607 (string :tag "Tags/Property/Todo matcher"))
608 :version "24.1"
609 :group 'org-todo
610 :group 'org-archive)
612 (defgroup org-startup nil
613 "Options concerning startup of Org-mode."
614 :tag "Org Startup"
615 :group 'org)
617 (defcustom org-startup-folded t
618 "Non-nil means entering Org-mode will switch to OVERVIEW.
619 This can also be configured on a per-file basis by adding one of
620 the following lines anywhere in the buffer:
622 #+STARTUP: fold (or `overview', this is equivalent)
623 #+STARTUP: nofold (or `showall', this is equivalent)
624 #+STARTUP: content
625 #+STARTUP: showeverything
627 By default, this option is ignored when Org opens agenda files
628 for the first time. If you want the agenda to honor the startup
629 option, set `org-agenda-inhibit-startup' to nil."
630 :group 'org-startup
631 :type '(choice
632 (const :tag "nofold: show all" nil)
633 (const :tag "fold: overview" t)
634 (const :tag "content: all headlines" content)
635 (const :tag "show everything, even drawers" showeverything)))
637 (defcustom org-startup-truncated t
638 "Non-nil means entering Org-mode will set `truncate-lines'.
639 This is useful since some lines containing links can be very long and
640 uninteresting. Also tables look terrible when wrapped."
641 :group 'org-startup
642 :type 'boolean)
644 (defcustom org-startup-indented nil
645 "Non-nil means turn on `org-indent-mode' on startup.
646 This can also be configured on a per-file basis by adding one of
647 the following lines anywhere in the buffer:
649 #+STARTUP: indent
650 #+STARTUP: noindent"
651 :group 'org-structure
652 :type '(choice
653 (const :tag "Not" nil)
654 (const :tag "Globally (slow on startup in large files)" t)))
656 (defcustom org-use-sub-superscripts t
657 "Non-nil means interpret \"_\" and \"^\" for display.
658 When this option is turned on, you can use TeX-like syntax for sub- and
659 superscripts. Several characters after \"_\" or \"^\" will be
660 considered as a single item - so grouping with {} is normally not
661 needed. For example, the following things will be parsed as single
662 sub- or superscripts.
664 10^24 or 10^tau several digits will be considered 1 item.
665 10^-12 or 10^-tau a leading sign with digits or a word
666 x^2-y^3 will be read as x^2 - y^3, because items are
667 terminated by almost any nonword/nondigit char.
668 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
670 Still, ambiguity is possible - so when in doubt use {} to enclose
671 the sub/superscript. If you set this variable to the symbol
672 `{}', the braces are *required* in order to trigger
673 interpretations as sub/superscript. This can be helpful in
674 documents that need \"_\" frequently in plain text."
675 :group 'org-startup
676 :version "24.1"
677 :type '(choice
678 (const :tag "Always interpret" t)
679 (const :tag "Only with braces" {})
680 (const :tag "Never interpret" nil)))
682 (defcustom org-startup-with-beamer-mode nil
683 "Non-nil means turn on `org-beamer-mode' on startup.
684 This can also be configured on a per-file basis by adding one of
685 the following lines anywhere in the buffer:
687 #+STARTUP: beamer"
688 :group 'org-startup
689 :version "24.1"
690 :type 'boolean)
692 (defcustom org-startup-align-all-tables nil
693 "Non-nil means align all tables when visiting a file.
694 This is useful when the column width in tables is forced with <N> cookies
695 in table fields. Such tables will look correct only after the first re-align.
696 This can also be configured on a per-file basis by adding one of
697 the following lines anywhere in the buffer:
698 #+STARTUP: align
699 #+STARTUP: noalign"
700 :group 'org-startup
701 :type 'boolean)
703 (defcustom org-startup-with-inline-images nil
704 "Non-nil means show inline images when loading a new Org file.
705 This can also be configured on a per-file basis by adding one of
706 the following lines anywhere in the buffer:
707 #+STARTUP: inlineimages
708 #+STARTUP: noinlineimages"
709 :group 'org-startup
710 :version "24.1"
711 :type 'boolean)
713 (defcustom org-startup-with-latex-preview nil
714 "Non-nil means preview LaTeX fragments when loading a new Org file.
716 This can also be configured on a per-file basis by adding one of
717 the followinglines anywhere in the buffer:
718 #+STARTUP: latexpreview
719 #+STARTUP: nolatexpreview"
720 :group 'org-startup
721 :version "24.4"
722 :package-version '(Org . "8.0")
723 :type 'boolean)
725 (defcustom org-insert-mode-line-in-empty-file nil
726 "Non-nil means insert the first line setting Org-mode in empty files.
727 When the function `org-mode' is called interactively in an empty file, this
728 normally means that the file name does not automatically trigger Org-mode.
729 To ensure that the file will always be in Org-mode in the future, a
730 line enforcing Org-mode will be inserted into the buffer, if this option
731 has been set."
732 :group 'org-startup
733 :type 'boolean)
735 (defcustom org-replace-disputed-keys nil
736 "Non-nil means use alternative key bindings for some keys.
737 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
738 These keys are also used by other packages like shift-selection-mode'
739 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
740 If you want to use Org-mode together with one of these other modes,
741 or more generally if you would like to move some Org-mode commands to
742 other keys, set this variable and configure the keys with the variable
743 `org-disputed-keys'.
745 This option is only relevant at load-time of Org-mode, and must be set
746 *before* org.el is loaded. Changing it requires a restart of Emacs to
747 become effective."
748 :group 'org-startup
749 :type 'boolean)
751 (defcustom org-use-extra-keys nil
752 "Non-nil means use extra key sequence definitions for certain commands.
753 This happens automatically if you run XEmacs or if `window-system'
754 is nil. This variable lets you do the same manually. You must
755 set it before loading org.
757 Example: on Carbon Emacs 22 running graphically, with an external
758 keyboard on a Powerbook, the default way of setting M-left might
759 not work for either Alt or ESC. Setting this variable will make
760 it work for ESC."
761 :group 'org-startup
762 :type 'boolean)
764 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
766 (defcustom org-disputed-keys
767 '(([(shift up)] . [(meta p)])
768 ([(shift down)] . [(meta n)])
769 ([(shift left)] . [(meta -)])
770 ([(shift right)] . [(meta +)])
771 ([(control shift right)] . [(meta shift +)])
772 ([(control shift left)] . [(meta shift -)]))
773 "Keys for which Org-mode and other modes compete.
774 This is an alist, cars are the default keys, second element specifies
775 the alternative to use when `org-replace-disputed-keys' is t.
777 Keys can be specified in any syntax supported by `define-key'.
778 The value of this option takes effect only at Org-mode's startup,
779 therefore you'll have to restart Emacs to apply it after changing."
780 :group 'org-startup
781 :type 'alist)
783 (defun org-key (key)
784 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
785 Or return the original if not disputed.
786 Also apply the translations defined in `org-xemacs-key-equivalents'."
787 (when org-replace-disputed-keys
788 (let* ((nkey (key-description key))
789 (x (org-find-if (lambda (x)
790 (equal (key-description (car x)) nkey))
791 org-disputed-keys)))
792 (setq key (if x (cdr x) key))))
793 (when (featurep 'xemacs)
794 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
795 key)
797 (defun org-find-if (predicate seq)
798 (catch 'exit
799 (while seq
800 (if (funcall predicate (car seq))
801 (throw 'exit (car seq))
802 (pop seq)))))
804 (defun org-defkey (keymap key def)
805 "Define a key, possibly translated, as returned by `org-key'."
806 (define-key keymap (org-key key) def))
808 (defcustom org-ellipsis nil
809 "The ellipsis to use in the Org-mode outline.
810 When nil, just use the standard three dots. When a string, use that instead,
811 When a face, use the standard 3 dots, but with the specified face.
812 The change affects only Org-mode (which will then use its own display table).
813 Changing this requires executing `M-x org-mode' in a buffer to become
814 effective."
815 :group 'org-startup
816 :type '(choice (const :tag "Default" nil)
817 (face :tag "Face" :value org-warning)
818 (string :tag "String" :value "...#")))
820 (defvar org-display-table nil
821 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
823 (defgroup org-keywords nil
824 "Keywords in Org-mode."
825 :tag "Org Keywords"
826 :group 'org)
828 (defcustom org-deadline-string "DEADLINE:"
829 "String to mark deadline entries.
830 A deadline is this string, followed by a time stamp. Should be a word,
831 terminated by a colon. You can insert a schedule keyword and
832 a timestamp with \\[org-deadline].
833 Changes become only effective after restarting Emacs."
834 :group 'org-keywords
835 :type 'string)
837 (defcustom org-scheduled-string "SCHEDULED:"
838 "String to mark scheduled TODO entries.
839 A schedule is this string, followed by a time stamp. Should be a word,
840 terminated by a colon. You can insert a schedule keyword and
841 a timestamp with \\[org-schedule].
842 Changes become only effective after restarting Emacs."
843 :group 'org-keywords
844 :type 'string)
846 (defcustom org-closed-string "CLOSED:"
847 "String used as the prefix for timestamps logging closing a TODO entry."
848 :group 'org-keywords
849 :type 'string)
851 (defcustom org-clock-string "CLOCK:"
852 "String used as prefix for timestamps clocking work hours on an item."
853 :group 'org-keywords
854 :type 'string)
856 (defcustom org-closed-keep-when-no-todo nil
857 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
858 :group 'org-todo
859 :group 'org-keywords
860 :version "24.4"
861 :package-version '(Org . "8.0")
862 :type 'boolean)
864 (defconst org-planning-or-clock-line-re (concat "^[ \t]*\\("
865 org-scheduled-string "\\|"
866 org-deadline-string "\\|"
867 org-closed-string "\\|"
868 org-clock-string "\\)")
869 "Matches a line with planning or clock info.")
871 (defcustom org-comment-string "COMMENT"
872 "Entries starting with this keyword will never be exported.
873 An entry can be toggled between COMMENT and normal with
874 \\[org-toggle-comment].
875 Changes become only effective after restarting Emacs."
876 :group 'org-keywords
877 :type 'string)
879 (defcustom org-quote-string "QUOTE"
880 "Entries starting with this keyword will be exported in fixed-width font.
881 Quoting applies only to the text in the entry following the headline, and does
882 not extend beyond the next headline, even if that is lower level.
883 An entry can be toggled between QUOTE and normal with
884 \\[org-toggle-fixed-width-section]."
885 :group 'org-keywords
886 :type 'string)
888 (defconst org-repeat-re
889 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
890 "Regular expression for specifying repeated events.
891 After a match, group 1 contains the repeat expression.")
893 (defgroup org-structure nil
894 "Options concerning the general structure of Org-mode files."
895 :tag "Org Structure"
896 :group 'org)
898 (defgroup org-reveal-location nil
899 "Options about how to make context of a location visible."
900 :tag "Org Reveal Location"
901 :group 'org-structure)
903 (defconst org-context-choice
904 '(choice
905 (const :tag "Always" t)
906 (const :tag "Never" nil)
907 (repeat :greedy t :tag "Individual contexts"
908 (cons
909 (choice :tag "Context"
910 (const agenda)
911 (const org-goto)
912 (const occur-tree)
913 (const tags-tree)
914 (const link-search)
915 (const mark-goto)
916 (const bookmark-jump)
917 (const isearch)
918 (const default))
919 (boolean))))
920 "Contexts for the reveal options.")
922 (defcustom org-show-hierarchy-above '((default . t))
923 "Non-nil means show full hierarchy when revealing a location.
924 Org-mode often shows locations in an org-mode file which might have
925 been invisible before. When this is set, the hierarchy of headings
926 above the exposed location is shown.
927 Turning this off for example for sparse trees makes them very compact.
928 Instead of t, this can also be an alist specifying this option for different
929 contexts. Valid contexts are
930 agenda when exposing an entry from the agenda
931 org-goto when using the command `org-goto' on key C-c C-j
932 occur-tree when using the command `org-occur' on key C-c /
933 tags-tree when constructing a sparse tree based on tags matches
934 link-search when exposing search matches associated with a link
935 mark-goto when exposing the jump goal of a mark
936 bookmark-jump when exposing a bookmark location
937 isearch when exiting from an incremental search
938 default default for all contexts not set explicitly"
939 :group 'org-reveal-location
940 :type org-context-choice)
942 (defcustom org-show-following-heading '((default . nil))
943 "Non-nil means show following heading when revealing a location.
944 Org-mode often shows locations in an org-mode file which might have
945 been invisible before. When this is set, the heading following the
946 match is shown.
947 Turning this off for example for sparse trees makes them very compact,
948 but makes it harder to edit the location of the match. In such a case,
949 use the command \\[org-reveal] to show more context.
950 Instead of t, this can also be an alist specifying this option for different
951 contexts. See `org-show-hierarchy-above' for valid contexts."
952 :group 'org-reveal-location
953 :type org-context-choice)
955 (defcustom org-show-siblings '((default . nil) (isearch t) (bookmark-jump t))
956 "Non-nil means show all sibling heading when revealing a location.
957 Org-mode often shows locations in an org-mode file which might have
958 been invisible before. When this is set, the sibling of the current entry
959 heading are all made visible. If `org-show-hierarchy-above' is t,
960 the same happens on each level of the hierarchy above the current entry.
962 By default this is on for the isearch context, off for all other contexts.
963 Turning this off for example for sparse trees makes them very compact,
964 but makes it harder to edit the location of the match. In such a case,
965 use the command \\[org-reveal] to show more context.
966 Instead of t, this can also be an alist specifying this option for different
967 contexts. See `org-show-hierarchy-above' for valid contexts."
968 :group 'org-reveal-location
969 :type org-context-choice
970 :version "24.4"
971 :package-version '(Org . "8.0"))
973 (defcustom org-show-entry-below '((default . nil))
974 "Non-nil means show the entry below a headline when revealing a location.
975 Org-mode often shows locations in an org-mode file which might have
976 been invisible before. When this is set, the text below the headline that is
977 exposed is also shown.
979 By default this is off for all contexts.
980 Instead of t, this can also be an alist specifying this option for different
981 contexts. See `org-show-hierarchy-above' for valid contexts."
982 :group 'org-reveal-location
983 :type org-context-choice)
985 (defcustom org-indirect-buffer-display 'other-window
986 "How should indirect tree buffers be displayed?
987 This applies to indirect buffers created with the commands
988 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
989 Valid values are:
990 current-window Display in the current window
991 other-window Just display in another window.
992 dedicated-frame Create one new frame, and re-use it each time.
993 new-frame Make a new frame each time. Note that in this case
994 previously-made indirect buffers are kept, and you need to
995 kill these buffers yourself."
996 :group 'org-structure
997 :group 'org-agenda-windows
998 :type '(choice
999 (const :tag "In current window" current-window)
1000 (const :tag "In current frame, other window" other-window)
1001 (const :tag "Each time a new frame" new-frame)
1002 (const :tag "One dedicated frame" dedicated-frame)))
1004 (defcustom org-use-speed-commands nil
1005 "Non-nil means activate single letter commands at beginning of a headline.
1006 This may also be a function to test for appropriate locations where speed
1007 commands should be active."
1008 :group 'org-structure
1009 :type '(choice
1010 (const :tag "Never" nil)
1011 (const :tag "At beginning of headline stars" t)
1012 (function)))
1014 (defcustom org-speed-commands-user nil
1015 "Alist of additional speed commands.
1016 This list will be checked before `org-speed-commands-default'
1017 when the variable `org-use-speed-commands' is non-nil
1018 and when the cursor is at the beginning of a headline.
1019 The car if each entry is a string with a single letter, which must
1020 be assigned to `self-insert-command' in the global map.
1021 The cdr is either a command to be called interactively, a function
1022 to be called, or a form to be evaluated.
1023 An entry that is just a list with a single string will be interpreted
1024 as a descriptive headline that will be added when listing the speed
1025 commands in the Help buffer using the `?' speed command."
1026 :group 'org-structure
1027 :type '(repeat :value ("k" . ignore)
1028 (choice :value ("k" . ignore)
1029 (list :tag "Descriptive Headline" (string :tag "Headline"))
1030 (cons :tag "Letter and Command"
1031 (string :tag "Command letter")
1032 (choice
1033 (function)
1034 (sexp))))))
1036 (defgroup org-cycle nil
1037 "Options concerning visibility cycling in Org-mode."
1038 :tag "Org Cycle"
1039 :group 'org-structure)
1041 (defcustom org-cycle-skip-children-state-if-no-children t
1042 "Non-nil means skip CHILDREN state in entries that don't have any."
1043 :group 'org-cycle
1044 :type 'boolean)
1046 (defcustom org-cycle-max-level nil
1047 "Maximum level which should still be subject to visibility cycling.
1048 Levels higher than this will, for cycling, be treated as text, not a headline.
1049 When `org-odd-levels-only' is set, a value of N in this variable actually
1050 means 2N-1 stars as the limiting headline.
1051 When nil, cycle all levels.
1052 Note that the limiting level of cycling is also influenced by
1053 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1054 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1055 than its value."
1056 :group 'org-cycle
1057 :type '(choice
1058 (const :tag "No limit" nil)
1059 (integer :tag "Maximum level")))
1061 (defcustom org-drawers '("PROPERTIES" "CLOCK" "LOGBOOK" "RESULTS")
1062 "Names of drawers. Drawers are not opened by cycling on the headline above.
1063 Drawers only open with a TAB on the drawer line itself. A drawer looks like
1064 this:
1065 :DRAWERNAME:
1066 .....
1067 :END:
1068 The drawer \"PROPERTIES\" is special for capturing properties through
1069 the property API.
1071 Drawers can be defined on the per-file basis with a line like:
1073 #+DRAWERS: HIDDEN STATE PROPERTIES"
1074 :group 'org-structure
1075 :group 'org-cycle
1076 :type '(repeat (string :tag "Drawer Name")))
1078 (defcustom org-hide-block-startup nil
1079 "Non-nil means entering Org-mode will fold all blocks.
1080 This can also be set in on a per-file basis with
1082 #+STARTUP: hideblocks
1083 #+STARTUP: showblocks"
1084 :group 'org-startup
1085 :group 'org-cycle
1086 :type 'boolean)
1088 (defcustom org-cycle-global-at-bob nil
1089 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1090 This makes it possible to do global cycling without having to use S-TAB or
1091 \\[universal-argument] TAB. For this special case to work, the first line
1092 of the buffer must not be a headline -- it may be empty or some other text.
1093 When used in this way, `org-cycle-hook' is disabled temporarily to make
1094 sure the cursor stays at the beginning of the buffer. When this option is
1095 nil, don't do anything special at the beginning of the buffer."
1096 :group 'org-cycle
1097 :type 'boolean)
1099 (defcustom org-cycle-level-after-item/entry-creation t
1100 "Non-nil means cycle entry level or item indentation in new empty entries.
1102 When the cursor is at the end of an empty headline, i.e., with only stars
1103 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1104 and then all possible ancestor states, before returning to the original state.
1105 This makes data entry extremely fast: M-RET to create a new headline,
1106 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1108 When the cursor is at the end of an empty plain list item, one TAB will
1109 make it a subitem, two or more tabs will back up to make this an item
1110 higher up in the item hierarchy."
1111 :group 'org-cycle
1112 :type 'boolean)
1114 (defcustom org-cycle-emulate-tab t
1115 "Where should `org-cycle' emulate TAB.
1116 nil Never
1117 white Only in completely white lines
1118 whitestart Only at the beginning of lines, before the first non-white char
1119 t Everywhere except in headlines
1120 exc-hl-bol Everywhere except at the start of a headline
1121 If TAB is used in a place where it does not emulate TAB, the current subtree
1122 visibility is cycled."
1123 :group 'org-cycle
1124 :type '(choice (const :tag "Never" nil)
1125 (const :tag "Only in completely white lines" white)
1126 (const :tag "Before first char in a line" whitestart)
1127 (const :tag "Everywhere except in headlines" t)
1128 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1130 (defcustom org-cycle-separator-lines 2
1131 "Number of empty lines needed to keep an empty line between collapsed trees.
1132 If you leave an empty line between the end of a subtree and the following
1133 headline, this empty line is hidden when the subtree is folded.
1134 Org-mode will leave (exactly) one empty line visible if the number of
1135 empty lines is equal or larger to the number given in this variable.
1136 So the default 2 means at least 2 empty lines after the end of a subtree
1137 are needed to produce free space between a collapsed subtree and the
1138 following headline.
1140 If the number is negative, and the number of empty lines is at least -N,
1141 all empty lines are shown.
1143 Special case: when 0, never leave empty lines in collapsed view."
1144 :group 'org-cycle
1145 :type 'integer)
1146 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1148 (defcustom org-pre-cycle-hook nil
1149 "Hook that is run before visibility cycling is happening.
1150 The function(s) in this hook must accept a single argument which indicates
1151 the new state that will be set right after running this hook. The
1152 argument is a symbol. Before a global state change, it can have the values
1153 `overview', `content', or `all'. Before a local state change, it can have
1154 the values `folded', `children', or `subtree'."
1155 :group 'org-cycle
1156 :type 'hook)
1158 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1159 org-cycle-hide-drawers
1160 org-cycle-hide-inline-tasks
1161 org-cycle-show-empty-lines
1162 org-optimize-window-after-visibility-change)
1163 "Hook that is run after `org-cycle' has changed the buffer visibility.
1164 The function(s) in this hook must accept a single argument which indicates
1165 the new state that was set by the most recent `org-cycle' command. The
1166 argument is a symbol. After a global state change, it can have the values
1167 `overview', `contents', or `all'. After a local state change, it can have
1168 the values `folded', `children', or `subtree'."
1169 :group 'org-cycle
1170 :type 'hook)
1172 (defgroup org-edit-structure nil
1173 "Options concerning structure editing in Org-mode."
1174 :tag "Org Edit Structure"
1175 :group 'org-structure)
1177 (defcustom org-odd-levels-only nil
1178 "Non-nil means skip even levels and only use odd levels for the outline.
1179 This has the effect that two stars are being added/taken away in
1180 promotion/demotion commands. It also influences how levels are
1181 handled by the exporters.
1182 Changing it requires restart of `font-lock-mode' to become effective
1183 for fontification also in regions already fontified.
1184 You may also set this on a per-file basis by adding one of the following
1185 lines to the buffer:
1187 #+STARTUP: odd
1188 #+STARTUP: oddeven"
1189 :group 'org-edit-structure
1190 :group 'org-appearance
1191 :type 'boolean)
1193 (defcustom org-adapt-indentation t
1194 "Non-nil means adapt indentation to outline node level.
1196 When this variable is set, Org assumes that you write outlines by
1197 indenting text in each node to align with the headline (after the stars).
1198 The following issues are influenced by this variable:
1200 - When this is set and the *entire* text in an entry is indented, the
1201 indentation is increased by one space in a demotion command, and
1202 decreased by one in a promotion command. If any line in the entry
1203 body starts with text at column 0, indentation is not changed at all.
1205 - Property drawers and planning information is inserted indented when
1206 this variable s set. When nil, they will not be indented.
1208 - TAB indents a line relative to context. The lines below a headline
1209 will be indented when this variable is set.
1211 Note that this is all about true indentation, by adding and removing
1212 space characters. See also `org-indent.el' which does level-dependent
1213 indentation in a virtual way, i.e. at display time in Emacs."
1214 :group 'org-edit-structure
1215 :type 'boolean)
1217 (defcustom org-special-ctrl-a/e nil
1218 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1220 When t, `C-a' will bring back the cursor to the beginning of the
1221 headline text, i.e. after the stars and after a possible TODO
1222 keyword. In an item, this will be the position after bullet and
1223 check-box, if any. When the cursor is already at that position,
1224 another `C-a' will bring it to the beginning of the line.
1226 `C-e' will jump to the end of the headline, ignoring the presence
1227 of tags in the headline. A second `C-e' will then jump to the
1228 true end of the line, after any tags. This also means that, when
1229 this variable is non-nil, `C-e' also will never jump beyond the
1230 end of the heading of a folded section, i.e. not after the
1231 ellipses.
1233 When set to the symbol `reversed', the first `C-a' or `C-e' works
1234 normally, going to the true line boundary first. Only a directly
1235 following, identical keypress will bring the cursor to the
1236 special positions.
1238 This may also be a cons cell where the behavior for `C-a' and
1239 `C-e' is set separately."
1240 :group 'org-edit-structure
1241 :type '(choice
1242 (const :tag "off" nil)
1243 (const :tag "on: after stars/bullet and before tags first" t)
1244 (const :tag "reversed: true line boundary first" reversed)
1245 (cons :tag "Set C-a and C-e separately"
1246 (choice :tag "Special C-a"
1247 (const :tag "off" nil)
1248 (const :tag "on: after stars/bullet first" t)
1249 (const :tag "reversed: before stars/bullet first" reversed))
1250 (choice :tag "Special C-e"
1251 (const :tag "off" nil)
1252 (const :tag "on: before tags first" t)
1253 (const :tag "reversed: after tags first" reversed)))))
1254 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1256 (defcustom org-special-ctrl-k nil
1257 "Non-nil means `C-k' will behave specially in headlines.
1258 When nil, `C-k' will call the default `kill-line' command.
1259 When t, the following will happen while the cursor is in the headline:
1261 - When the cursor is at the beginning of a headline, kill the entire
1262 line and possible the folded subtree below the line.
1263 - When in the middle of the headline text, kill the headline up to the tags.
1264 - When after the headline text, kill the tags."
1265 :group 'org-edit-structure
1266 :type 'boolean)
1268 (defcustom org-ctrl-k-protect-subtree nil
1269 "Non-nil means, do not delete a hidden subtree with C-k.
1270 When set to the symbol `error', simply throw an error when C-k is
1271 used to kill (part-of) a headline that has hidden text behind it.
1272 Any other non-nil value will result in a query to the user, if it is
1273 OK to kill that hidden subtree. When nil, kill without remorse."
1274 :group 'org-edit-structure
1275 :version "24.1"
1276 :type '(choice
1277 (const :tag "Do not protect hidden subtrees" nil)
1278 (const :tag "Protect hidden subtrees with a security query" t)
1279 (const :tag "Never kill a hidden subtree with C-k" error)))
1281 (defcustom org-catch-invisible-edits nil
1282 "Check if in invisible region before inserting or deleting a character.
1283 Valid values are:
1285 nil Do not check, so just do invisible edits.
1286 error Throw an error and do nothing.
1287 show Make point visible, and do the requested edit.
1288 show-and-error Make point visible, then throw an error and abort the edit.
1289 smart Make point visible, and do insertion/deletion if it is
1290 adjacent to visible text and the change feels predictable.
1291 Never delete a previously invisible character or add in the
1292 middle or right after an invisible region. Basically, this
1293 allows insertion and backward-delete right before ellipses.
1294 FIXME: maybe in this case we should not even show?"
1295 :group 'org-edit-structure
1296 :version "24.1"
1297 :type '(choice
1298 (const :tag "Do not check" nil)
1299 (const :tag "Throw error when trying to edit" error)
1300 (const :tag "Unhide, but do not do the edit" show-and-error)
1301 (const :tag "Show invisible part and do the edit" show)
1302 (const :tag "Be smart and do the right thing" smart)))
1304 (defcustom org-yank-folded-subtrees t
1305 "Non-nil means when yanking subtrees, fold them.
1306 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1307 it starts with a heading and all other headings in it are either children
1308 or siblings, then fold all the subtrees. However, do this only if no
1309 text after the yank would be swallowed into a folded tree by this action."
1310 :group 'org-edit-structure
1311 :type 'boolean)
1313 (defcustom org-yank-adjusted-subtrees nil
1314 "Non-nil means when yanking subtrees, adjust the level.
1315 With this setting, `org-paste-subtree' is used to insert the subtree, see
1316 this function for details."
1317 :group 'org-edit-structure
1318 :type 'boolean)
1320 (defcustom org-M-RET-may-split-line '((default . t))
1321 "Non-nil means M-RET will split the line at the cursor position.
1322 When nil, it will go to the end of the line before making a
1323 new line.
1324 You may also set this option in a different way for different
1325 contexts. Valid contexts are:
1327 headline when creating a new headline
1328 item when creating a new item
1329 table in a table field
1330 default the value to be used for all contexts not explicitly
1331 customized"
1332 :group 'org-structure
1333 :group 'org-table
1334 :type '(choice
1335 (const :tag "Always" t)
1336 (const :tag "Never" nil)
1337 (repeat :greedy t :tag "Individual contexts"
1338 (cons
1339 (choice :tag "Context"
1340 (const headline)
1341 (const item)
1342 (const table)
1343 (const default))
1344 (boolean)))))
1347 (defcustom org-insert-heading-respect-content nil
1348 "Non-nil means insert new headings after the current subtree.
1349 When nil, the new heading is created directly after the current line.
1350 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1351 this variable on for the duration of the command."
1352 :group 'org-structure
1353 :type 'boolean)
1355 (defcustom org-blank-before-new-entry '((heading . auto)
1356 (plain-list-item . auto))
1357 "Should `org-insert-heading' leave a blank line before new heading/item?
1358 The value is an alist, with `heading' and `plain-list-item' as CAR,
1359 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1360 which case Org will look at the surrounding headings/items and try to
1361 make an intelligent decision whether to insert a blank line or not.
1363 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1364 the setting here is ignored and no empty line is inserted to avoid breaking
1365 the list structure."
1366 :group 'org-edit-structure
1367 :type '(list
1368 (cons (const heading)
1369 (choice (const :tag "Never" nil)
1370 (const :tag "Always" t)
1371 (const :tag "Auto" auto)))
1372 (cons (const plain-list-item)
1373 (choice (const :tag "Never" nil)
1374 (const :tag "Always" t)
1375 (const :tag "Auto" auto)))))
1377 (defcustom org-insert-heading-hook nil
1378 "Hook being run after inserting a new heading."
1379 :group 'org-edit-structure
1380 :type 'hook)
1382 (defcustom org-enable-fixed-width-editor t
1383 "Non-nil means lines starting with \":\" are treated as fixed-width.
1384 This currently only means they are never auto-wrapped.
1385 When nil, such lines will be treated like ordinary lines.
1386 See also the QUOTE keyword."
1387 :group 'org-edit-structure
1388 :type 'boolean)
1390 (defcustom org-goto-auto-isearch t
1391 "Non-nil means typing characters in `org-goto' starts incremental search.
1392 When nil, you can use these keybindings to navigate the buffer:
1394 q Quit the org-goto interface
1395 n Go to the next visible heading
1396 p Go to the previous visible heading
1397 f Go one heading forward on same level
1398 b Go one heading backward on same level
1399 u Go one heading up"
1400 :group 'org-edit-structure
1401 :type 'boolean)
1403 (defgroup org-sparse-trees nil
1404 "Options concerning sparse trees in Org-mode."
1405 :tag "Org Sparse Trees"
1406 :group 'org-structure)
1408 (defcustom org-highlight-sparse-tree-matches t
1409 "Non-nil means highlight all matches that define a sparse tree.
1410 The highlights will automatically disappear the next time the buffer is
1411 changed by an edit command."
1412 :group 'org-sparse-trees
1413 :type 'boolean)
1415 (defcustom org-remove-highlights-with-change t
1416 "Non-nil means any change to the buffer will remove temporary highlights.
1417 Such highlights are created by `org-occur' and `org-clock-display'.
1418 When nil, `C-c C-c needs to be used to get rid of the highlights.
1419 The highlights created by `org-preview-latex-fragment' always need
1420 `C-c C-c' to be removed."
1421 :group 'org-sparse-trees
1422 :group 'org-time
1423 :type 'boolean)
1426 (defcustom org-occur-hook '(org-first-headline-recenter)
1427 "Hook that is run after `org-occur' has constructed a sparse tree.
1428 This can be used to recenter the window to show as much of the structure
1429 as possible."
1430 :group 'org-sparse-trees
1431 :type 'hook)
1433 (defgroup org-imenu-and-speedbar nil
1434 "Options concerning imenu and speedbar in Org-mode."
1435 :tag "Org Imenu and Speedbar"
1436 :group 'org-structure)
1438 (defcustom org-imenu-depth 2
1439 "The maximum level for Imenu access to Org-mode headlines.
1440 This also applied for speedbar access."
1441 :group 'org-imenu-and-speedbar
1442 :type 'integer)
1444 (defgroup org-table nil
1445 "Options concerning tables in Org-mode."
1446 :tag "Org Table"
1447 :group 'org)
1449 (defcustom org-enable-table-editor 'optimized
1450 "Non-nil means lines starting with \"|\" are handled by the table editor.
1451 When nil, such lines will be treated like ordinary lines.
1453 When equal to the symbol `optimized', the table editor will be optimized to
1454 do the following:
1455 - Automatic overwrite mode in front of whitespace in table fields.
1456 This makes the structure of the table stay in tact as long as the edited
1457 field does not exceed the column width.
1458 - Minimize the number of realigns. Normally, the table is aligned each time
1459 TAB or RET are pressed to move to another field. With optimization this
1460 happens only if changes to a field might have changed the column width.
1461 Optimization requires replacing the functions `self-insert-command',
1462 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1463 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1464 very good at guessing when a re-align will be necessary, but you can always
1465 force one with \\[org-ctrl-c-ctrl-c].
1467 If you would like to use the optimized version in Org-mode, but the
1468 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1470 This variable can be used to turn on and off the table editor during a session,
1471 but in order to toggle optimization, a restart is required.
1473 See also the variable `org-table-auto-blank-field'."
1474 :group 'org-table
1475 :type '(choice
1476 (const :tag "off" nil)
1477 (const :tag "on" t)
1478 (const :tag "on, optimized" optimized)))
1480 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1481 (version<= emacs-version "24.1"))
1482 "Non-nil means cluster self-insert commands for undo when possible.
1483 If this is set, then, like in the Emacs command loop, 20 consecutive
1484 characters will be undone together.
1485 This is configurable, because there is some impact on typing performance."
1486 :group 'org-table
1487 :type 'boolean)
1489 (defcustom org-table-tab-recognizes-table.el t
1490 "Non-nil means TAB will automatically notice a table.el table.
1491 When it sees such a table, it moves point into it and - if necessary -
1492 calls `table-recognize-table'."
1493 :group 'org-table-editing
1494 :type 'boolean)
1496 (defgroup org-link nil
1497 "Options concerning links in Org-mode."
1498 :tag "Org Link"
1499 :group 'org)
1501 (defvar org-link-abbrev-alist-local nil
1502 "Buffer-local version of `org-link-abbrev-alist', which see.
1503 The value of this is taken from the #+LINK lines.")
1504 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1506 (defcustom org-link-abbrev-alist nil
1507 "Alist of link abbreviations.
1508 The car of each element is a string, to be replaced at the start of a link.
1509 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1510 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1512 [[linkkey:tag][description]]
1514 The 'linkkey' must be a word word, starting with a letter, followed
1515 by letters, numbers, '-' or '_'.
1517 If REPLACE is a string, the tag will simply be appended to create the link.
1518 If the string contains \"%s\", the tag will be inserted there. If the string
1519 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1520 at that point (see the function `url-hexify-string'). If the string contains
1521 the specifier \"%(my-function)\", then the custom function `my-function' will
1522 be invoked: this function takes the tag as its only argument and must return
1523 a string.
1525 REPLACE may also be a function that will be called with the tag as the
1526 only argument to create the link, which should be returned as a string.
1528 See the manual for examples."
1529 :group 'org-link
1530 :type '(repeat
1531 (cons
1532 (string :tag "Protocol")
1533 (choice
1534 (string :tag "Format")
1535 (function)))))
1537 (defcustom org-descriptive-links t
1538 "Non-nil means Org will display descriptive links.
1539 E.g. [[http://orgmode.org][Org website]] will be displayed as
1540 \"Org Website\", hiding the link itself and just displaying its
1541 description. When set to `nil', Org will display the full links
1542 literally.
1544 You can interactively set the value of this variable by calling
1545 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1546 :group 'org-link
1547 :type 'boolean)
1549 (defcustom org-link-file-path-type 'adaptive
1550 "How the path name in file links should be stored.
1551 Valid values are:
1553 relative Relative to the current directory, i.e. the directory of the file
1554 into which the link is being inserted.
1555 absolute Absolute path, if possible with ~ for home directory.
1556 noabbrev Absolute path, no abbreviation of home directory.
1557 adaptive Use relative path for files in the current directory and sub-
1558 directories of it. For other files, use an absolute path."
1559 :group 'org-link
1560 :type '(choice
1561 (const relative)
1562 (const absolute)
1563 (const noabbrev)
1564 (const adaptive)))
1566 (defcustom org-activate-links '(bracket angle plain radio tag date footnote)
1567 "Types of links that should be activated in Org-mode files.
1568 This is a list of symbols, each leading to the activation of a certain link
1569 type. In principle, it does not hurt to turn on most link types - there may
1570 be a small gain when turning off unused link types. The types are:
1572 bracket The recommended [[link][description]] or [[link]] links with hiding.
1573 angle Links in angular brackets that may contain whitespace like
1574 <bbdb:Carsten Dominik>.
1575 plain Plain links in normal text, no whitespace, like http://google.com.
1576 radio Text that is matched by a radio target, see manual for details.
1577 tag Tag settings in a headline (link to tag search).
1578 date Time stamps (link to calendar).
1579 footnote Footnote labels.
1581 Changing this variable requires a restart of Emacs to become effective."
1582 :group 'org-link
1583 :type '(set :greedy t
1584 (const :tag "Double bracket links" bracket)
1585 (const :tag "Angular bracket links" angle)
1586 (const :tag "Plain text links" plain)
1587 (const :tag "Radio target matches" radio)
1588 (const :tag "Tags" tag)
1589 (const :tag "Timestamps" date)
1590 (const :tag "Footnotes" footnote)))
1592 (defcustom org-make-link-description-function nil
1593 "Function to use for generating link descriptions from links.
1594 When nil, the link location will be used. This function must take
1595 two parameters: the first one is the link, the second one is the
1596 description generated by `org-insert-link'. The function should
1597 return the description to use."
1598 :group 'org-link
1599 :type 'function)
1601 (defgroup org-link-store nil
1602 "Options concerning storing links in Org-mode."
1603 :tag "Org Store Link"
1604 :group 'org-link)
1606 (defcustom org-url-hexify-p t
1607 "When non-nil, hexify URL when creating a link."
1608 :type 'boolean
1609 :version "24.3"
1610 :group 'org-link-store)
1612 (defcustom org-email-link-description-format "Email %c: %.30s"
1613 "Format of the description part of a link to an email or usenet message.
1614 The following %-escapes will be replaced by corresponding information:
1616 %F full \"From\" field
1617 %f name, taken from \"From\" field, address if no name
1618 %T full \"To\" field
1619 %t first name in \"To\" field, address if no name
1620 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1621 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1622 %s subject
1623 %d date
1624 %m message-id.
1626 You may use normal field width specification between the % and the letter.
1627 This is for example useful to limit the length of the subject.
1629 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1630 :group 'org-link-store
1631 :type 'string)
1633 (defcustom org-from-is-user-regexp
1634 (let (r1 r2)
1635 (when (and user-mail-address (not (string= user-mail-address "")))
1636 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1637 (when (and user-full-name (not (string= user-full-name "")))
1638 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1639 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1640 "Regexp matched against the \"From:\" header of an email or usenet message.
1641 It should match if the message is from the user him/herself."
1642 :group 'org-link-store
1643 :type 'regexp)
1645 (defcustom org-context-in-file-links t
1646 "Non-nil means file links from `org-store-link' contain context.
1647 A search string will be added to the file name with :: as separator and
1648 used to find the context when the link is activated by the command
1649 `org-open-at-point'. When this option is t, the entire active region
1650 will be placed in the search string of the file link. If set to a
1651 positive integer, only the first n lines of context will be stored.
1653 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1654 negates this setting for the duration of the command."
1655 :group 'org-link-store
1656 :type '(choice boolean integer))
1658 (defcustom org-keep-stored-link-after-insertion nil
1659 "Non-nil means keep link in list for entire session.
1661 The command `org-store-link' adds a link pointing to the current
1662 location to an internal list. These links accumulate during a session.
1663 The command `org-insert-link' can be used to insert links into any
1664 Org-mode file (offering completion for all stored links). When this
1665 option is nil, every link which has been inserted once using \\[org-insert-link]
1666 will be removed from the list, to make completing the unused links
1667 more efficient."
1668 :group 'org-link-store
1669 :type 'boolean)
1671 (defgroup org-link-follow nil
1672 "Options concerning following links in Org-mode."
1673 :tag "Org Follow Link"
1674 :group 'org-link)
1676 (defcustom org-link-translation-function nil
1677 "Function to translate links with different syntax to Org syntax.
1678 This can be used to translate links created for example by the Planner
1679 or emacs-wiki packages to Org syntax.
1680 The function must accept two parameters, a TYPE containing the link
1681 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1682 which is everything after the link protocol. It should return a cons
1683 with possibly modified values of type and path.
1684 Org contains a function for this, so if you set this variable to
1685 `org-translate-link-from-planner', you should be able follow many
1686 links created by planner."
1687 :group 'org-link-follow
1688 :type 'function)
1690 (defcustom org-follow-link-hook nil
1691 "Hook that is run after a link has been followed."
1692 :group 'org-link-follow
1693 :type 'hook)
1695 (defcustom org-tab-follows-link nil
1696 "Non-nil means on links TAB will follow the link.
1697 Needs to be set before org.el is loaded.
1698 This really should not be used, it does not make sense, and the
1699 implementation is bad."
1700 :group 'org-link-follow
1701 :type 'boolean)
1703 (defcustom org-return-follows-link nil
1704 "Non-nil means on links RET will follow the link.
1705 In tables, the special behavior of RET has precedence."
1706 :group 'org-link-follow
1707 :type 'boolean)
1709 (defcustom org-mouse-1-follows-link
1710 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1711 "Non-nil means mouse-1 on a link will follow the link.
1712 A longer mouse click will still set point. Does not work on XEmacs.
1713 Needs to be set before org.el is loaded."
1714 :group 'org-link-follow
1715 :type 'boolean)
1717 (defcustom org-mark-ring-length 4
1718 "Number of different positions to be recorded in the ring.
1719 Changing this requires a restart of Emacs to work correctly."
1720 :group 'org-link-follow
1721 :type 'integer)
1723 (defcustom org-link-search-must-match-exact-headline 'query-to-create
1724 "Non-nil means internal links in Org files must exactly match a headline.
1725 When nil, the link search tries to match a phrase with all words
1726 in the search text."
1727 :group 'org-link-follow
1728 :version "24.1"
1729 :type '(choice
1730 (const :tag "Use fuzzy text search" nil)
1731 (const :tag "Match only exact headline" t)
1732 (const :tag "Match exact headline or query to create it"
1733 query-to-create)))
1735 (defcustom org-link-frame-setup
1736 '((vm . vm-visit-folder-other-frame)
1737 (vm-imap . vm-visit-imap-folder-other-frame)
1738 (gnus . org-gnus-no-new-news)
1739 (file . find-file-other-window)
1740 (wl . wl-other-frame))
1741 "Setup the frame configuration for following links.
1742 When following a link with Emacs, it may often be useful to display
1743 this link in another window or frame. This variable can be used to
1744 set this up for the different types of links.
1745 For VM, use any of
1746 `vm-visit-folder'
1747 `vm-visit-folder-other-window'
1748 `vm-visit-folder-other-frame'
1749 For Gnus, use any of
1750 `gnus'
1751 `gnus-other-frame'
1752 `org-gnus-no-new-news'
1753 For FILE, use any of
1754 `find-file'
1755 `find-file-other-window'
1756 `find-file-other-frame'
1757 For Wanderlust use any of
1758 `wl'
1759 `wl-other-frame'
1760 For the calendar, use the variable `calendar-setup'.
1761 For BBDB, it is currently only possible to display the matches in
1762 another window."
1763 :group 'org-link-follow
1764 :type '(list
1765 (cons (const vm)
1766 (choice
1767 (const vm-visit-folder)
1768 (const vm-visit-folder-other-window)
1769 (const vm-visit-folder-other-frame)))
1770 (cons (const gnus)
1771 (choice
1772 (const gnus)
1773 (const gnus-other-frame)
1774 (const org-gnus-no-new-news)))
1775 (cons (const file)
1776 (choice
1777 (const find-file)
1778 (const find-file-other-window)
1779 (const find-file-other-frame)))
1780 (cons (const wl)
1781 (choice
1782 (const wl)
1783 (const wl-other-frame)))))
1785 (defcustom org-display-internal-link-with-indirect-buffer nil
1786 "Non-nil means use indirect buffer to display infile links.
1787 Activating internal links (from one location in a file to another location
1788 in the same file) normally just jumps to the location. When the link is
1789 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
1790 is displayed in
1791 another window. When this option is set, the other window actually displays
1792 an indirect buffer clone of the current buffer, to avoid any visibility
1793 changes to the current buffer."
1794 :group 'org-link-follow
1795 :type 'boolean)
1797 (defcustom org-open-non-existing-files nil
1798 "Non-nil means `org-open-file' will open non-existing files.
1799 When nil, an error will be generated.
1800 This variable applies only to external applications because they
1801 might choke on non-existing files. If the link is to a file that
1802 will be opened in Emacs, the variable is ignored."
1803 :group 'org-link-follow
1804 :type 'boolean)
1806 (defcustom org-open-directory-means-index-dot-org nil
1807 "Non-nil means a link to a directory really means to index.org.
1808 When nil, following a directory link will run dired or open a finder/explorer
1809 window on that directory."
1810 :group 'org-link-follow
1811 :type 'boolean)
1813 (defcustom org-link-mailto-program '(browse-url "mailto:%a?subject=%s")
1814 "Function and arguments to call for following mailto links.
1815 This is a list with the first element being a Lisp function, and the
1816 remaining elements being arguments to the function. In string arguments,
1817 %a will be replaced by the address, and %s will be replaced by the subject
1818 if one was given like in <mailto:arthur@galaxy.org::this subject>."
1819 :group 'org-link-follow
1820 :type '(choice
1821 (const :tag "browse-url" (browse-url-mail "mailto:%a?subject=%s"))
1822 (const :tag "compose-mail" (compose-mail "%a" "%s"))
1823 (const :tag "message-mail" (message-mail "%a" "%s"))
1824 (cons :tag "other" (function) (repeat :tag "argument" sexp))))
1826 (defcustom org-confirm-shell-link-function 'yes-or-no-p
1827 "Non-nil means ask for confirmation before executing shell links.
1828 Shell links can be dangerous: just think about a link
1830 [[shell:rm -rf ~/*][Google Search]]
1832 This link would show up in your Org-mode document as \"Google Search\",
1833 but really it would remove your entire home directory.
1834 Therefore we advise against setting this variable to nil.
1835 Just change it to `y-or-n-p' if you want to confirm with a
1836 single keystroke rather than having to type \"yes\"."
1837 :group 'org-link-follow
1838 :type '(choice
1839 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1840 (const :tag "with y-or-n (faster)" y-or-n-p)
1841 (const :tag "no confirmation (dangerous)" nil)))
1842 (put 'org-confirm-shell-link-function
1843 'safe-local-variable
1844 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
1846 (defcustom org-confirm-shell-link-not-regexp ""
1847 "A regexp to skip confirmation for shell links."
1848 :group 'org-link-follow
1849 :version "24.1"
1850 :type 'regexp)
1852 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
1853 "Non-nil means ask for confirmation before executing Emacs Lisp links.
1854 Elisp links can be dangerous: just think about a link
1856 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
1858 This link would show up in your Org-mode document as \"Google Search\",
1859 but really it would remove your entire home directory.
1860 Therefore we advise against setting this variable to nil.
1861 Just change it to `y-or-n-p' if you want to confirm with a
1862 single keystroke rather than having to type \"yes\"."
1863 :group 'org-link-follow
1864 :type '(choice
1865 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1866 (const :tag "with y-or-n (faster)" y-or-n-p)
1867 (const :tag "no confirmation (dangerous)" nil)))
1868 (put 'org-confirm-shell-link-function
1869 'safe-local-variable
1870 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
1872 (defcustom org-confirm-elisp-link-not-regexp ""
1873 "A regexp to skip confirmation for Elisp links."
1874 :group 'org-link-follow
1875 :version "24.1"
1876 :type 'regexp)
1878 (defconst org-file-apps-defaults-gnu
1879 '((remote . emacs)
1880 (system . mailcap)
1881 (t . mailcap))
1882 "Default file applications on a UNIX or GNU/Linux system.
1883 See `org-file-apps'.")
1885 (defconst org-file-apps-defaults-macosx
1886 '((remote . emacs)
1887 (t . "open %s")
1888 (system . "open %s")
1889 ("ps.gz" . "gv %s")
1890 ("eps.gz" . "gv %s")
1891 ("dvi" . "xdvi %s")
1892 ("fig" . "xfig %s"))
1893 "Default file applications on a MacOS X system.
1894 The system \"open\" is known as a default, but we use X11 applications
1895 for some files for which the OS does not have a good default.
1896 See `org-file-apps'.")
1898 (defconst org-file-apps-defaults-windowsnt
1899 (list
1900 '(remote . emacs)
1901 (cons t
1902 (list (if (featurep 'xemacs)
1903 'mswindows-shell-execute
1904 'w32-shell-execute)
1905 "open" 'file))
1906 (cons 'system
1907 (list (if (featurep 'xemacs)
1908 'mswindows-shell-execute
1909 'w32-shell-execute)
1910 "open" 'file)))
1911 "Default file applications on a Windows NT system.
1912 The system \"open\" is used for most files.
1913 See `org-file-apps'.")
1915 (defcustom org-file-apps
1916 '((auto-mode . emacs)
1917 ("\\.mm\\'" . default)
1918 ("\\.x?html?\\'" . default)
1919 ("\\.pdf\\'" . default))
1920 "External applications for opening `file:path' items in a document.
1921 Org-mode uses system defaults for different file types, but
1922 you can use this variable to set the application for a given file
1923 extension. The entries in this list are cons cells where the car identifies
1924 files and the cdr the corresponding command. Possible values for the
1925 file identifier are
1926 \"string\" A string as a file identifier can be interpreted in different
1927 ways, depending on its contents:
1929 - Alphanumeric characters only:
1930 Match links with this file extension.
1931 Example: (\"pdf\" . \"evince %s\")
1932 to open PDFs with evince.
1934 - Regular expression: Match links where the
1935 filename matches the regexp. If you want to
1936 use groups here, use shy groups.
1938 Example: (\"\\.x?html\\'\" . \"firefox %s\")
1939 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
1940 to open *.html and *.xhtml with firefox.
1942 - Regular expression which contains (non-shy) groups:
1943 Match links where the whole link, including \"::\", and
1944 anything after that, matches the regexp.
1945 In a custom command string, %1, %2, etc. are replaced with
1946 the parts of the link that were matched by the groups.
1947 For backwards compatibility, if a command string is given
1948 that does not use any of the group matches, this case is
1949 handled identically to the second one (i.e. match against
1950 file name only).
1951 In a custom lisp form, you can access the group matches with
1952 (match-string n link).
1954 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
1955 to open [[file:document.pdf::5]] with evince at page 5.
1957 `directory' Matches a directory
1958 `remote' Matches a remote file, accessible through tramp or efs.
1959 Remote files most likely should be visited through Emacs
1960 because external applications cannot handle such paths.
1961 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
1962 so all files Emacs knows how to handle. Using this with
1963 command `emacs' will open most files in Emacs. Beware that this
1964 will also open html files inside Emacs, unless you add
1965 (\"html\" . default) to the list as well.
1966 t Default for files not matched by any of the other options.
1967 `system' The system command to open files, like `open' on Windows
1968 and Mac OS X, and mailcap under GNU/Linux. This is the command
1969 that will be selected if you call `C-c C-o' with a double
1970 \\[universal-argument] \\[universal-argument] prefix.
1972 Possible values for the command are:
1973 `emacs' The file will be visited by the current Emacs process.
1974 `default' Use the default application for this file type, which is the
1975 association for t in the list, most likely in the system-specific
1976 part.
1977 This can be used to overrule an unwanted setting in the
1978 system-specific variable.
1979 `system' Use the system command for opening files, like \"open\".
1980 This command is specified by the entry whose car is `system'.
1981 Most likely, the system-specific version of this variable
1982 does define this command, but you can overrule/replace it
1983 here.
1984 string A command to be executed by a shell; %s will be replaced
1985 by the path to the file.
1986 sexp A Lisp form which will be evaluated. The file path will
1987 be available in the Lisp variable `file'.
1988 For more examples, see the system specific constants
1989 `org-file-apps-defaults-macosx'
1990 `org-file-apps-defaults-windowsnt'
1991 `org-file-apps-defaults-gnu'."
1992 :group 'org-link-follow
1993 :type '(repeat
1994 (cons (choice :value ""
1995 (string :tag "Extension")
1996 (const :tag "System command to open files" system)
1997 (const :tag "Default for unrecognized files" t)
1998 (const :tag "Remote file" remote)
1999 (const :tag "Links to a directory" directory)
2000 (const :tag "Any files that have Emacs modes"
2001 auto-mode))
2002 (choice :value ""
2003 (const :tag "Visit with Emacs" emacs)
2004 (const :tag "Use default" default)
2005 (const :tag "Use the system command" system)
2006 (string :tag "Command")
2007 (sexp :tag "Lisp form")))))
2009 (defcustom org-doi-server-url "http://dx.doi.org/"
2010 "The URL of the DOI server."
2011 :type 'string
2012 :version "24.3"
2013 :group 'org-link-follow)
2015 (defgroup org-refile nil
2016 "Options concerning refiling entries in Org-mode."
2017 :tag "Org Refile"
2018 :group 'org)
2020 (defcustom org-directory "~/org"
2021 "Directory with org files.
2022 This is just a default location to look for Org files. There is no need
2023 at all to put your files into this directory. It is only used in the
2024 following situations:
2026 1. When a capture template specifies a target file that is not an
2027 absolute path. The path will then be interpreted relative to
2028 `org-directory'
2029 2. When a capture note is filed away in an interactive way (when exiting the
2030 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2031 with `org-directory' as the default path."
2032 :group 'org-refile
2033 :group 'org-remember
2034 :group 'org-capture
2035 :type 'directory)
2037 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2038 "Default target for storing notes.
2039 Used as a fall back file for org-remember.el and org-capture.el, for
2040 templates that do not specify a target file."
2041 :group 'org-refile
2042 :group 'org-remember
2043 :group 'org-capture
2044 :type '(choice
2045 (const :tag "Default from remember-data-file" nil)
2046 file))
2048 (defcustom org-goto-interface 'outline
2049 "The default interface to be used for `org-goto'.
2050 Allowed values are:
2051 outline The interface shows an outline of the relevant file
2052 and the correct heading is found by moving through
2053 the outline or by searching with incremental search.
2054 outline-path-completion Headlines in the current buffer are offered via
2055 completion. This is the interface also used by
2056 the refile command."
2057 :group 'org-refile
2058 :type '(choice
2059 (const :tag "Outline" outline)
2060 (const :tag "Outline-path-completion" outline-path-completion)))
2062 (defcustom org-goto-max-level 5
2063 "Maximum target level when running `org-goto' with refile interface."
2064 :group 'org-refile
2065 :type 'integer)
2067 (defcustom org-reverse-note-order nil
2068 "Non-nil means store new notes at the beginning of a file or entry.
2069 When nil, new notes will be filed to the end of a file or entry.
2070 This can also be a list with cons cells of regular expressions that
2071 are matched against file names, and values."
2072 :group 'org-remember
2073 :group 'org-capture
2074 :group 'org-refile
2075 :type '(choice
2076 (const :tag "Reverse always" t)
2077 (const :tag "Reverse never" nil)
2078 (repeat :tag "By file name regexp"
2079 (cons regexp boolean))))
2081 (defcustom org-log-refile nil
2082 "Information to record when a task is refiled.
2084 Possible values are:
2086 nil Don't add anything
2087 time Add a time stamp to the task
2088 note Prompt for a note and add it with template `org-log-note-headings'
2090 This option can also be set with on a per-file-basis with
2092 #+STARTUP: nologrefile
2093 #+STARTUP: logrefile
2094 #+STARTUP: lognoterefile
2096 You can have local logging settings for a subtree by setting the LOGGING
2097 property to one or more of these keywords.
2099 When bulk-refiling from the agenda, the value `note' is forbidden and
2100 will temporarily be changed to `time'."
2101 :group 'org-refile
2102 :group 'org-progress
2103 :version "24.1"
2104 :type '(choice
2105 (const :tag "No logging" nil)
2106 (const :tag "Record timestamp" time)
2107 (const :tag "Record timestamp with note." note)))
2109 (defcustom org-refile-targets nil
2110 "Targets for refiling entries with \\[org-refile].
2111 This is a list of cons cells. Each cell contains:
2112 - a specification of the files to be considered, either a list of files,
2113 or a symbol whose function or variable value will be used to retrieve
2114 a file name or a list of file names. If you use `org-agenda-files' for
2115 that, all agenda files will be scanned for targets. Nil means consider
2116 headings in the current buffer.
2117 - A specification of how to find candidate refile targets. This may be
2118 any of:
2119 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2120 This tag has to be present in all target headlines, inheritance will
2121 not be considered.
2122 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2123 todo keyword.
2124 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2125 headlines that are refiling targets.
2126 - a cons cell (:level . N). Any headline of level N is considered a target.
2127 Note that, when `org-odd-levels-only' is set, level corresponds to
2128 order in hierarchy, not to the number of stars.
2129 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2130 Note that, when `org-odd-levels-only' is set, level corresponds to
2131 order in hierarchy, not to the number of stars.
2133 Each element of this list generates a set of possible targets.
2134 The union of these sets is presented (with completion) to
2135 the user by `org-refile'.
2137 You can set the variable `org-refile-target-verify-function' to a function
2138 to verify each headline found by the simple criteria above.
2140 When this variable is nil, all top-level headlines in the current buffer
2141 are used, equivalent to the value `((nil . (:level . 1))'."
2142 :group 'org-refile
2143 :type '(repeat
2144 (cons
2145 (choice :value org-agenda-files
2146 (const :tag "All agenda files" org-agenda-files)
2147 (const :tag "Current buffer" nil)
2148 (function) (variable) (file))
2149 (choice :tag "Identify target headline by"
2150 (cons :tag "Specific tag" (const :value :tag) (string))
2151 (cons :tag "TODO keyword" (const :value :todo) (string))
2152 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2153 (cons :tag "Level number" (const :value :level) (integer))
2154 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2156 (defcustom org-refile-target-verify-function nil
2157 "Function to verify if the headline at point should be a refile target.
2158 The function will be called without arguments, with point at the
2159 beginning of the headline. It should return t and leave point
2160 where it is if the headline is a valid target for refiling.
2162 If the target should not be selected, the function must return nil.
2163 In addition to this, it may move point to a place from where the search
2164 should be continued. For example, the function may decide that the entire
2165 subtree of the current entry should be excluded and move point to the end
2166 of the subtree."
2167 :group 'org-refile
2168 :type 'function)
2170 (defcustom org-refile-use-cache nil
2171 "Non-nil means cache refile targets to speed up the process.
2172 The cache for a particular file will be updated automatically when
2173 the buffer has been killed, or when any of the marker used for flagging
2174 refile targets no longer points at a live buffer.
2175 If you have added new entries to a buffer that might themselves be targets,
2176 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2177 find that easier, `C-u C-u C-u C-c C-w'."
2178 :group 'org-refile
2179 :version "24.1"
2180 :type 'boolean)
2182 (defcustom org-refile-use-outline-path nil
2183 "Non-nil means provide refile targets as paths.
2184 So a level 3 headline will be available as level1/level2/level3.
2186 When the value is `file', also include the file name (without directory)
2187 into the path. In this case, you can also stop the completion after
2188 the file name, to get entries inserted as top level in the file.
2190 When `full-file-path', include the full file path."
2191 :group 'org-refile
2192 :type '(choice
2193 (const :tag "Not" nil)
2194 (const :tag "Yes" t)
2195 (const :tag "Start with file name" file)
2196 (const :tag "Start with full file path" full-file-path)))
2198 (defcustom org-outline-path-complete-in-steps t
2199 "Non-nil means complete the outline path in hierarchical steps.
2200 When Org-mode uses the refile interface to select an outline path
2201 \(see variable `org-refile-use-outline-path'), the completion of
2202 the path can be done is a single go, or if can be done in steps down
2203 the headline hierarchy. Going in steps is probably the best if you
2204 do not use a special completion package like `ido' or `icicles'.
2205 However, when using these packages, going in one step can be very
2206 fast, while still showing the whole path to the entry."
2207 :group 'org-refile
2208 :type 'boolean)
2210 (defcustom org-refile-allow-creating-parent-nodes nil
2211 "Non-nil means allow to create new nodes as refile targets.
2212 New nodes are then created by adding \"/new node name\" to the completion
2213 of an existing node. When the value of this variable is `confirm',
2214 new node creation must be confirmed by the user (recommended)
2215 When nil, the completion must match an existing entry.
2217 Note that, if the new heading is not seen by the criteria
2218 listed in `org-refile-targets', multiple instances of the same
2219 heading would be created by trying again to file under the new
2220 heading."
2221 :group 'org-refile
2222 :type '(choice
2223 (const :tag "Never" nil)
2224 (const :tag "Always" t)
2225 (const :tag "Prompt for confirmation" confirm)))
2227 (defcustom org-refile-active-region-within-subtree nil
2228 "Non-nil means also refile active region within a subtree.
2230 By default `org-refile' doesn't allow refiling regions if they
2231 don't contain a set of subtrees, but it might be convenient to
2232 do so sometimes: in that case, the first line of the region is
2233 converted to a headline before refiling."
2234 :group 'org-refile
2235 :version "24.1"
2236 :type 'boolean)
2238 (defgroup org-todo nil
2239 "Options concerning TODO items in Org-mode."
2240 :tag "Org TODO"
2241 :group 'org)
2243 (defgroup org-progress nil
2244 "Options concerning Progress logging in Org-mode."
2245 :tag "Org Progress"
2246 :group 'org-time)
2248 (defvar org-todo-interpretation-widgets
2249 '((:tag "Sequence (cycling hits every state)" sequence)
2250 (:tag "Type (cycling directly to DONE)" type))
2251 "The available interpretation symbols for customizing `org-todo-keywords'.
2252 Interested libraries should add to this list.")
2254 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2255 "List of TODO entry keyword sequences and their interpretation.
2256 \\<org-mode-map>This is a list of sequences.
2258 Each sequence starts with a symbol, either `sequence' or `type',
2259 indicating if the keywords should be interpreted as a sequence of
2260 action steps, or as different types of TODO items. The first
2261 keywords are states requiring action - these states will select a headline
2262 for inclusion into the global TODO list Org-mode produces. If one of
2263 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2264 signify that no further action is necessary. If \"|\" is not found,
2265 the last keyword is treated as the only DONE state of the sequence.
2267 The command \\[org-todo] cycles an entry through these states, and one
2268 additional state where no keyword is present. For details about this
2269 cycling, see the manual.
2271 TODO keywords and interpretation can also be set on a per-file basis with
2272 the special #+SEQ_TODO and #+TYP_TODO lines.
2274 Each keyword can optionally specify a character for fast state selection
2275 \(in combination with the variable `org-use-fast-todo-selection')
2276 and specifiers for state change logging, using the same syntax that
2277 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2278 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2279 indicates to record a time stamp each time this state is selected.
2281 Each keyword may also specify if a timestamp or a note should be
2282 recorded when entering or leaving the state, by adding additional
2283 characters in the parenthesis after the keyword. This looks like this:
2284 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2285 record only the time of the state change. With X and Y being either
2286 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2287 Y when leaving the state if and only if the *target* state does not
2288 define X. You may omit any of the fast-selection key or X or /Y,
2289 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2291 For backward compatibility, this variable may also be just a list
2292 of keywords. In this case the interpretation (sequence or type) will be
2293 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2294 :group 'org-todo
2295 :group 'org-keywords
2296 :type '(choice
2297 (repeat :tag "Old syntax, just keywords"
2298 (string :tag "Keyword"))
2299 (repeat :tag "New syntax"
2300 (cons
2301 (choice
2302 :tag "Interpretation"
2303 ;;Quick and dirty way to see
2304 ;;`org-todo-interpretations'. This takes the
2305 ;;place of item arguments
2306 :convert-widget
2307 (lambda (widget)
2308 (widget-put widget
2309 :args (mapcar
2310 #'(lambda (x)
2311 (widget-convert
2312 (cons 'const x)))
2313 org-todo-interpretation-widgets))
2314 widget))
2315 (repeat
2316 (string :tag "Keyword"))))))
2318 (defvar org-todo-keywords-1 nil
2319 "All TODO and DONE keywords active in a buffer.")
2320 (make-variable-buffer-local 'org-todo-keywords-1)
2321 (defvar org-todo-keywords-for-agenda nil)
2322 (defvar org-done-keywords-for-agenda nil)
2323 (defvar org-drawers-for-agenda nil)
2324 (defvar org-todo-keyword-alist-for-agenda nil)
2325 (defvar org-tag-alist-for-agenda nil
2326 "Alist of all tags from all agenda files.")
2327 (defvar org-tag-groups-alist-for-agenda nil
2328 "Alist of all groups tags from all current agenda files.")
2329 (defvar org-tag-groups-alist nil)
2330 (make-variable-buffer-local 'org-tag-groups-alist)
2331 (defvar org-agenda-contributing-files nil)
2332 (defvar org-not-done-keywords nil)
2333 (make-variable-buffer-local 'org-not-done-keywords)
2334 (defvar org-done-keywords nil)
2335 (make-variable-buffer-local 'org-done-keywords)
2336 (defvar org-todo-heads nil)
2337 (make-variable-buffer-local 'org-todo-heads)
2338 (defvar org-todo-sets nil)
2339 (make-variable-buffer-local 'org-todo-sets)
2340 (defvar org-todo-log-states nil)
2341 (make-variable-buffer-local 'org-todo-log-states)
2342 (defvar org-todo-kwd-alist nil)
2343 (make-variable-buffer-local 'org-todo-kwd-alist)
2344 (defvar org-todo-key-alist nil)
2345 (make-variable-buffer-local 'org-todo-key-alist)
2346 (defvar org-todo-key-trigger nil)
2347 (make-variable-buffer-local 'org-todo-key-trigger)
2349 (defcustom org-todo-interpretation 'sequence
2350 "Controls how TODO keywords are interpreted.
2351 This variable is in principle obsolete and is only used for
2352 backward compatibility, if the interpretation of todo keywords is
2353 not given already in `org-todo-keywords'. See that variable for
2354 more information."
2355 :group 'org-todo
2356 :group 'org-keywords
2357 :type '(choice (const sequence)
2358 (const type)))
2360 (defcustom org-use-fast-todo-selection t
2361 "Non-nil means use the fast todo selection scheme with C-c C-t.
2362 This variable describes if and under what circumstances the cycling
2363 mechanism for TODO keywords will be replaced by a single-key, direct
2364 selection scheme.
2366 When nil, fast selection is never used.
2368 When the symbol `prefix', it will be used when `org-todo' is called
2369 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2370 `C-u t' in an agenda buffer.
2372 When t, fast selection is used by default. In this case, the prefix
2373 argument forces cycling instead.
2375 In all cases, the special interface is only used if access keys have
2376 actually been assigned by the user, i.e. if keywords in the configuration
2377 are followed by a letter in parenthesis, like TODO(t)."
2378 :group 'org-todo
2379 :type '(choice
2380 (const :tag "Never" nil)
2381 (const :tag "By default" t)
2382 (const :tag "Only with C-u C-c C-t" prefix)))
2384 (defcustom org-provide-todo-statistics t
2385 "Non-nil means update todo statistics after insert and toggle.
2386 ALL-HEADLINES means update todo statistics by including headlines
2387 with no TODO keyword as well, counting them as not done.
2388 A list of TODO keywords means the same, but skip keywords that are
2389 not in this list.
2391 When this is set, todo statistics is updated in the parent of the
2392 current entry each time a todo state is changed."
2393 :group 'org-todo
2394 :type '(choice
2395 (const :tag "Yes, only for TODO entries" t)
2396 (const :tag "Yes, including all entries" 'all-headlines)
2397 (repeat :tag "Yes, for TODOs in this list"
2398 (string :tag "TODO keyword"))
2399 (other :tag "No TODO statistics" nil)))
2401 (defcustom org-hierarchical-todo-statistics t
2402 "Non-nil means TODO statistics covers just direct children.
2403 When nil, all entries in the subtree are considered.
2404 This has only an effect if `org-provide-todo-statistics' is set.
2405 To set this to nil for only a single subtree, use a COOKIE_DATA
2406 property and include the word \"recursive\" into the value."
2407 :group 'org-todo
2408 :type 'boolean)
2410 (defcustom org-after-todo-state-change-hook nil
2411 "Hook which is run after the state of a TODO item was changed.
2412 The new state (a string with a TODO keyword, or nil) is available in the
2413 Lisp variable `org-state'."
2414 :group 'org-todo
2415 :type 'hook)
2417 (defvar org-blocker-hook nil
2418 "Hook for functions that are allowed to block a state change.
2420 Functions in this hook should not modify the buffer.
2421 Each function gets as its single argument a property list,
2422 see `org-trigger-hook' for more information about this list.
2424 If any of the functions in this hook returns nil, the state change
2425 is blocked.")
2427 (defvar org-trigger-hook nil
2428 "Hook for functions that are triggered by a state change.
2430 Each function gets as its single argument a property list with at
2431 least the following elements:
2433 (:type type-of-change :position pos-at-entry-start
2434 :from old-state :to new-state)
2436 Depending on the type, more properties may be present.
2438 This mechanism is currently implemented for:
2440 TODO state changes
2441 ------------------
2442 :type todo-state-change
2443 :from previous state (keyword as a string), or nil, or a symbol
2444 'todo' or 'done', to indicate the general type of state.
2445 :to new state, like in :from")
2447 (defcustom org-enforce-todo-dependencies nil
2448 "Non-nil means undone TODO entries will block switching the parent to DONE.
2449 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2450 be blocked if any prior sibling is not yet done.
2451 Finally, if the parent is blocked because of ordered siblings of its own,
2452 the child will also be blocked."
2453 :set (lambda (var val)
2454 (set var val)
2455 (if val
2456 (add-hook 'org-blocker-hook
2457 'org-block-todo-from-children-or-siblings-or-parent)
2458 (remove-hook 'org-blocker-hook
2459 'org-block-todo-from-children-or-siblings-or-parent)))
2460 :group 'org-todo
2461 :type 'boolean)
2463 (defcustom org-enforce-todo-checkbox-dependencies nil
2464 "Non-nil means unchecked boxes will block switching the parent to DONE.
2465 When this is nil, checkboxes have no influence on switching TODO states.
2466 When non-nil, you first need to check off all check boxes before the TODO
2467 entry can be switched to DONE.
2468 This variable needs to be set before org.el is loaded, and you need to
2469 restart Emacs after a change to make the change effective. The only way
2470 to change is while Emacs is running is through the customize interface."
2471 :set (lambda (var val)
2472 (set var val)
2473 (if val
2474 (add-hook 'org-blocker-hook
2475 'org-block-todo-from-checkboxes)
2476 (remove-hook 'org-blocker-hook
2477 'org-block-todo-from-checkboxes)))
2478 :group 'org-todo
2479 :type 'boolean)
2481 (defcustom org-treat-insert-todo-heading-as-state-change nil
2482 "Non-nil means inserting a TODO heading is treated as state change.
2483 So when the command \\[org-insert-todo-heading] is used, state change
2484 logging will apply if appropriate. When nil, the new TODO item will
2485 be inserted directly, and no logging will take place."
2486 :group 'org-todo
2487 :type 'boolean)
2489 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2490 "Non-nil means switching TODO states with S-cursor counts as state change.
2491 This is the default behavior. However, setting this to nil allows a
2492 convenient way to select a TODO state and bypass any logging associated
2493 with that."
2494 :group 'org-todo
2495 :type 'boolean)
2497 (defcustom org-todo-state-tags-triggers nil
2498 "Tag changes that should be triggered by TODO state changes.
2499 This is a list. Each entry is
2501 (state-change (tag . flag) .......)
2503 State-change can be a string with a state, and empty string to indicate the
2504 state that has no TODO keyword, or it can be one of the symbols `todo'
2505 or `done', meaning any not-done or done state, respectively."
2506 :group 'org-todo
2507 :group 'org-tags
2508 :type '(repeat
2509 (cons (choice :tag "When changing to"
2510 (const :tag "Not-done state" todo)
2511 (const :tag "Done state" done)
2512 (string :tag "State"))
2513 (repeat
2514 (cons :tag "Tag action"
2515 (string :tag "Tag")
2516 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2518 (defcustom org-log-done nil
2519 "Information to record when a task moves to the DONE state.
2521 Possible values are:
2523 nil Don't add anything, just change the keyword
2524 time Add a time stamp to the task
2525 note Prompt for a note and add it with template `org-log-note-headings'
2527 This option can also be set with on a per-file-basis with
2529 #+STARTUP: nologdone
2530 #+STARTUP: logdone
2531 #+STARTUP: lognotedone
2533 You can have local logging settings for a subtree by setting the LOGGING
2534 property to one or more of these keywords."
2535 :group 'org-todo
2536 :group 'org-progress
2537 :type '(choice
2538 (const :tag "No logging" nil)
2539 (const :tag "Record CLOSED timestamp" time)
2540 (const :tag "Record CLOSED timestamp with note." note)))
2542 ;; Normalize old uses of org-log-done.
2543 (cond
2544 ((eq org-log-done t) (setq org-log-done 'time))
2545 ((and (listp org-log-done) (memq 'done org-log-done))
2546 (setq org-log-done 'note)))
2548 (defcustom org-log-reschedule nil
2549 "Information to record when the scheduling date of a tasks is modified.
2551 Possible values are:
2553 nil Don't add anything, just change the date
2554 time Add a time stamp to the task
2555 note Prompt for a note and add it with template `org-log-note-headings'
2557 This option can also be set with on a per-file-basis with
2559 #+STARTUP: nologreschedule
2560 #+STARTUP: logreschedule
2561 #+STARTUP: lognotereschedule"
2562 :group 'org-todo
2563 :group 'org-progress
2564 :type '(choice
2565 (const :tag "No logging" nil)
2566 (const :tag "Record timestamp" time)
2567 (const :tag "Record timestamp with note." note)))
2569 (defcustom org-log-redeadline nil
2570 "Information to record when the deadline date of a tasks is modified.
2572 Possible values are:
2574 nil Don't add anything, just change the date
2575 time Add a time stamp to the task
2576 note Prompt for a note and add it with template `org-log-note-headings'
2578 This option can also be set with on a per-file-basis with
2580 #+STARTUP: nologredeadline
2581 #+STARTUP: logredeadline
2582 #+STARTUP: lognoteredeadline
2584 You can have local logging settings for a subtree by setting the LOGGING
2585 property to one or more of these keywords."
2586 :group 'org-todo
2587 :group 'org-progress
2588 :type '(choice
2589 (const :tag "No logging" nil)
2590 (const :tag "Record timestamp" time)
2591 (const :tag "Record timestamp with note." note)))
2593 (defcustom org-log-note-clock-out nil
2594 "Non-nil means record a note when clocking out of an item.
2595 This can also be configured on a per-file basis by adding one of
2596 the following lines anywhere in the buffer:
2598 #+STARTUP: lognoteclock-out
2599 #+STARTUP: nolognoteclock-out"
2600 :group 'org-todo
2601 :group 'org-progress
2602 :type 'boolean)
2604 (defcustom org-log-done-with-time t
2605 "Non-nil means the CLOSED time stamp will contain date and time.
2606 When nil, only the date will be recorded."
2607 :group 'org-progress
2608 :type 'boolean)
2610 (defcustom org-log-note-headings
2611 '((done . "CLOSING NOTE %t")
2612 (state . "State %-12s from %-12S %t")
2613 (note . "Note taken on %t")
2614 (reschedule . "Rescheduled from %S on %t")
2615 (delschedule . "Not scheduled, was %S on %t")
2616 (redeadline . "New deadline from %S on %t")
2617 (deldeadline . "Removed deadline, was %S on %t")
2618 (refile . "Refiled on %t")
2619 (clock-out . ""))
2620 "Headings for notes added to entries.
2621 The value is an alist, with the car being a symbol indicating the note
2622 context, and the cdr is the heading to be used. The heading may also be the
2623 empty string.
2624 %t in the heading will be replaced by a time stamp.
2625 %T will be an active time stamp instead the default inactive one
2626 %d will be replaced by a short-format time stamp.
2627 %D will be replaced by an active short-format time stamp.
2628 %s will be replaced by the new TODO state, in double quotes.
2629 %S will be replaced by the old TODO state, in double quotes.
2630 %u will be replaced by the user name.
2631 %U will be replaced by the full user name.
2633 In fact, it is not a good idea to change the `state' entry, because
2634 agenda log mode depends on the format of these entries."
2635 :group 'org-todo
2636 :group 'org-progress
2637 :type '(list :greedy t
2638 (cons (const :tag "Heading when closing an item" done) string)
2639 (cons (const :tag
2640 "Heading when changing todo state (todo sequence only)"
2641 state) string)
2642 (cons (const :tag "Heading when just taking a note" note) string)
2643 (cons (const :tag "Heading when clocking out" clock-out) string)
2644 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2645 (cons (const :tag "Heading when rescheduling" reschedule) string)
2646 (cons (const :tag "Heading when changing deadline" redeadline) string)
2647 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2648 (cons (const :tag "Heading when refiling" refile) string)))
2650 (unless (assq 'note org-log-note-headings)
2651 (push '(note . "%t") org-log-note-headings))
2653 (defcustom org-log-into-drawer nil
2654 "Non-nil means insert state change notes and time stamps into a drawer.
2655 When nil, state changes notes will be inserted after the headline and
2656 any scheduling and clock lines, but not inside a drawer.
2658 The value of this variable should be the name of the drawer to use.
2659 LOGBOOK is proposed as the default drawer for this purpose, you can
2660 also set this to a string to define the drawer of your choice.
2662 A value of t is also allowed, representing \"LOGBOOK\".
2664 A value of t or nil can also be set with on a per-file-basis with
2666 #+STARTUP: logdrawer
2667 #+STARTUP: nologdrawer
2669 If this variable is set, `org-log-state-notes-insert-after-drawers'
2670 will be ignored.
2672 You can set the property LOG_INTO_DRAWER to overrule this setting for
2673 a subtree."
2674 :group 'org-todo
2675 :group 'org-progress
2676 :type '(choice
2677 (const :tag "Not into a drawer" nil)
2678 (const :tag "LOGBOOK" t)
2679 (string :tag "Other")))
2681 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2683 (defun org-log-into-drawer ()
2684 "Return the value of `org-log-into-drawer', but let properties overrule.
2685 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2686 used instead of the default value."
2687 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2688 (cond
2689 ((not p) org-log-into-drawer)
2690 ((equal p "nil") nil)
2691 ((equal p "t") "LOGBOOK")
2692 (t p))))
2694 (defcustom org-log-state-notes-insert-after-drawers nil
2695 "Non-nil means insert state change notes after any drawers in entry.
2696 Only the drawers that *immediately* follow the headline and the
2697 deadline/scheduled line are skipped.
2698 When nil, insert notes right after the heading and perhaps the line
2699 with deadline/scheduling if present.
2701 This variable will have no effect if `org-log-into-drawer' is
2702 set."
2703 :group 'org-todo
2704 :group 'org-progress
2705 :type 'boolean)
2707 (defcustom org-log-states-order-reversed t
2708 "Non-nil means the latest state note will be directly after heading.
2709 When nil, the state change notes will be ordered according to time.
2711 This option can also be set with on a per-file-basis with
2713 #+STARTUP: logstatesreversed
2714 #+STARTUP: nologstatesreversed"
2715 :group 'org-todo
2716 :group 'org-progress
2717 :type 'boolean)
2719 (defcustom org-todo-repeat-to-state nil
2720 "The TODO state to which a repeater should return the repeating task.
2721 By default this is the first task in a TODO sequence, or the previous state
2722 in a TODO_TYP set. But you can specify another task here.
2723 alternatively, set the :REPEAT_TO_STATE: property of the entry."
2724 :group 'org-todo
2725 :version "24.1"
2726 :type '(choice (const :tag "Head of sequence" nil)
2727 (string :tag "Specific state")))
2729 (defcustom org-log-repeat 'time
2730 "Non-nil means record moving through the DONE state when triggering repeat.
2731 An auto-repeating task is immediately switched back to TODO when
2732 marked DONE. If you are not logging state changes (by adding \"@\"
2733 or \"!\" to the TODO keyword definition), or set `org-log-done' to
2734 record a closing note, there will be no record of the task moving
2735 through DONE. This variable forces taking a note anyway.
2737 nil Don't force a record
2738 time Record a time stamp
2739 note Prompt for a note and add it with template `org-log-note-headings'
2741 This option can also be set with on a per-file-basis with
2743 #+STARTUP: nologrepeat
2744 #+STARTUP: logrepeat
2745 #+STARTUP: lognoterepeat
2747 You can have local logging settings for a subtree by setting the LOGGING
2748 property to one or more of these keywords."
2749 :group 'org-todo
2750 :group 'org-progress
2751 :type '(choice
2752 (const :tag "Don't force a record" nil)
2753 (const :tag "Force recording the DONE state" time)
2754 (const :tag "Force recording a note with the DONE state" note)))
2757 (defgroup org-priorities nil
2758 "Priorities in Org-mode."
2759 :tag "Org Priorities"
2760 :group 'org-todo)
2762 (defcustom org-enable-priority-commands t
2763 "Non-nil means priority commands are active.
2764 When nil, these commands will be disabled, so that you never accidentally
2765 set a priority."
2766 :group 'org-priorities
2767 :type 'boolean)
2769 (defcustom org-highest-priority ?A
2770 "The highest priority of TODO items. A character like ?A, ?B etc.
2771 Must have a smaller ASCII number than `org-lowest-priority'."
2772 :group 'org-priorities
2773 :type 'character)
2775 (defcustom org-lowest-priority ?C
2776 "The lowest priority of TODO items. A character like ?A, ?B etc.
2777 Must have a larger ASCII number than `org-highest-priority'."
2778 :group 'org-priorities
2779 :type 'character)
2781 (defcustom org-default-priority ?B
2782 "The default priority of TODO items.
2783 This is the priority an item gets if no explicit priority is given.
2784 When starting to cycle on an empty priority the first step in the cycle
2785 depends on `org-priority-start-cycle-with-default'. The resulting first
2786 step priority must not exceed the range from `org-highest-priority' to
2787 `org-lowest-priority' which means that `org-default-priority' has to be
2788 in this range exclusive or inclusive the range boundaries. Else the
2789 first step refuses to set the default and the second will fall back
2790 to (depending on the command used) the highest or lowest priority."
2791 :group 'org-priorities
2792 :type 'character)
2794 (defcustom org-priority-start-cycle-with-default t
2795 "Non-nil means start with default priority when starting to cycle.
2796 When this is nil, the first step in the cycle will be (depending on the
2797 command used) one higher or lower than the default priority.
2798 See also `org-default-priority'."
2799 :group 'org-priorities
2800 :type 'boolean)
2802 (defcustom org-get-priority-function nil
2803 "Function to extract the priority from a string.
2804 The string is normally the headline. If this is nil Org computes the
2805 priority from the priority cookie like [#A] in the headline. It returns
2806 an integer, increasing by 1000 for each priority level.
2807 The user can set a different function here, which should take a string
2808 as an argument and return the numeric priority."
2809 :group 'org-priorities
2810 :version "24.1"
2811 :type 'function)
2813 (defgroup org-time nil
2814 "Options concerning time stamps and deadlines in Org-mode."
2815 :tag "Org Time"
2816 :group 'org)
2818 (defcustom org-insert-labeled-timestamps-at-point nil
2819 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
2820 When nil, these labeled time stamps are forces into the second line of an
2821 entry, just after the headline. When scheduling from the global TODO list,
2822 the time stamp will always be forced into the second line."
2823 :group 'org-time
2824 :type 'boolean)
2826 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
2827 "Formats for `format-time-string' which are used for time stamps.
2828 It is not recommended to change this constant.")
2830 (defcustom org-time-stamp-rounding-minutes '(0 5)
2831 "Number of minutes to round time stamps to.
2832 These are two values, the first applies when first creating a time stamp.
2833 The second applies when changing it with the commands `S-up' and `S-down'.
2834 When changing the time stamp, this means that it will change in steps
2835 of N minutes, as given by the second value.
2837 When a setting is 0 or 1, insert the time unmodified. Useful rounding
2838 numbers should be factors of 60, so for example 5, 10, 15.
2840 When this is larger than 1, you can still force an exact time stamp by using
2841 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
2842 and by using a prefix arg to `S-up/down' to specify the exact number
2843 of minutes to shift."
2844 :group 'org-time
2845 :get #'(lambda (var) ; Make sure both elements are there
2846 (if (integerp (default-value var))
2847 (list (default-value var) 5)
2848 (default-value var)))
2849 :type '(list
2850 (integer :tag "when inserting times")
2851 (integer :tag "when modifying times")))
2853 ;; Normalize old customizations of this variable.
2854 (when (integerp org-time-stamp-rounding-minutes)
2855 (setq org-time-stamp-rounding-minutes
2856 (list org-time-stamp-rounding-minutes
2857 org-time-stamp-rounding-minutes)))
2859 (defcustom org-display-custom-times nil
2860 "Non-nil means overlay custom formats over all time stamps.
2861 The formats are defined through the variable `org-time-stamp-custom-formats'.
2862 To turn this on on a per-file basis, insert anywhere in the file:
2863 #+STARTUP: customtime"
2864 :group 'org-time
2865 :set 'set-default
2866 :type 'sexp)
2867 (make-variable-buffer-local 'org-display-custom-times)
2869 (defcustom org-time-stamp-custom-formats
2870 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
2871 "Custom formats for time stamps. See `format-time-string' for the syntax.
2872 These are overlaid over the default ISO format if the variable
2873 `org-display-custom-times' is set. Time like %H:%M should be at the
2874 end of the second format. The custom formats are also honored by export
2875 commands, if custom time display is turned on at the time of export."
2876 :group 'org-time
2877 :type 'sexp)
2879 (defun org-time-stamp-format (&optional long inactive)
2880 "Get the right format for a time string."
2881 (let ((f (if long (cdr org-time-stamp-formats)
2882 (car org-time-stamp-formats))))
2883 (if inactive
2884 (concat "[" (substring f 1 -1) "]")
2885 f)))
2887 (defcustom org-time-clocksum-format
2888 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
2889 "The format string used when creating CLOCKSUM lines.
2890 This is also used when Org mode generates a time duration.
2892 The value can be a single format string containing two
2893 %-sequences, which will be filled with the number of hours and
2894 minutes in that order.
2896 Alternatively, the value can be a plist associating any of the
2897 keys :years, :months, :weeks, :days, :hours or :minutes with
2898 format strings. The time duration is formatted using only the
2899 time components that are needed and concatenating the results.
2900 If a time unit in absent, it falls back to the next smallest
2901 unit.
2903 The keys :require-years, :require-months, :require-days,
2904 :require-weeks, :require-hours, :require-minutes are also
2905 meaningful. A non-nil value for these keys indicates that the
2906 corresponding time component should always be included, even if
2907 its value is 0.
2910 For example,
2912 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
2913 :require-minutes t)
2915 means durations longer than a day will be expressed in days,
2916 hours and minutes, and durations less than a day will always be
2917 expressed in hours and minutes (even for durations less than an
2918 hour).
2920 The value
2922 \(:days \"%dd\" :minutes \"%dm\")
2924 means durations longer than a day will be expressed in days and
2925 minutes, and durations less than a day will be expressed entirely
2926 in minutes (even for durations longer than an hour)."
2927 :group 'org-time
2928 :group 'org-clock
2929 :version "24.4"
2930 :package-version '(Org . "8.0")
2931 :type '(choice (string :tag "Format string")
2932 (set :tag "Plist"
2933 (group :inline t (const :tag "Years" :years)
2934 (string :tag "Format string"))
2935 (group :inline t
2936 (const :tag "Always show years" :require-years)
2937 (const t))
2938 (group :inline t (const :tag "Months" :months)
2939 (string :tag "Format string"))
2940 (group :inline t
2941 (const :tag "Always show months" :require-months)
2942 (const t))
2943 (group :inline t (const :tag "Weeks" :weeks)
2944 (string :tag "Format string"))
2945 (group :inline t
2946 (const :tag "Always show weeks" :require-weeks)
2947 (const t))
2948 (group :inline t (const :tag "Days" :days)
2949 (string :tag "Format string"))
2950 (group :inline t
2951 (const :tag "Always show days" :require-days)
2952 (const t))
2953 (group :inline t (const :tag "Hours" :hours)
2954 (string :tag "Format string"))
2955 (group :inline t
2956 (const :tag "Always show hours" :require-hours)
2957 (const t))
2958 (group :inline t (const :tag "Minutes" :minutes)
2959 (string :tag "Format string"))
2960 (group :inline t
2961 (const :tag "Always show minutes" :require-minutes)
2962 (const t)))))
2964 (defcustom org-time-clocksum-use-fractional nil
2965 "When non-nil, \\[org-clock-display] uses fractional times.
2966 See `org-time-clocksum-format' for more on time clock formats."
2967 :group 'org-time
2968 :group 'org-clock
2969 :version "24.3"
2970 :type 'boolean)
2972 (defcustom org-time-clocksum-use-effort-durations nil
2973 "When non-nil, \\[org-clock-display] uses effort durations.
2974 E.g. by default, one day is considered to be a 8 hours effort,
2975 so a task that has been clocked for 16 hours will be displayed
2976 as during 2 days in the clock display or in the clocktable.
2978 See `org-effort-durations' on how to set effort durations
2979 and `org-time-clocksum-format' for more on time clock formats."
2980 :group 'org-time
2981 :group 'org-clock
2982 :version "24.4"
2983 :package-version '(Org . "8.0")
2984 :type 'boolean)
2986 (defcustom org-time-clocksum-fractional-format "%.2f"
2987 "The format string used when creating CLOCKSUM lines,
2988 or when Org mode generates a time duration, if
2989 `org-time-clocksum-use-fractional' is enabled.
2991 The value can be a single format string containing one
2992 %-sequence, which will be filled with the number of hours as
2993 a float.
2995 Alternatively, the value can be a plist associating any of the
2996 keys :years, :months, :weeks, :days, :hours or :minutes with
2997 a format string. The time duration is formatted using the
2998 largest time unit which gives a non-zero integer part. If all
2999 specified formats have zero integer part, the smallest time unit
3000 is used."
3001 :group 'org-time
3002 :type '(choice (string :tag "Format string")
3003 (set (group :inline t (const :tag "Years" :years)
3004 (string :tag "Format string"))
3005 (group :inline t (const :tag "Months" :months)
3006 (string :tag "Format string"))
3007 (group :inline t (const :tag "Weeks" :weeks)
3008 (string :tag "Format string"))
3009 (group :inline t (const :tag "Days" :days)
3010 (string :tag "Format string"))
3011 (group :inline t (const :tag "Hours" :hours)
3012 (string :tag "Format string"))
3013 (group :inline t (const :tag "Minutes" :minutes)
3014 (string :tag "Format string")))))
3016 (defcustom org-deadline-warning-days 14
3017 "Number of days before expiration during which a deadline becomes active.
3018 This variable governs the display in sparse trees and in the agenda.
3019 When 0 or negative, it means use this number (the absolute value of it)
3020 even if a deadline has a different individual lead time specified.
3022 Custom commands can set this variable in the options section."
3023 :group 'org-time
3024 :group 'org-agenda-daily/weekly
3025 :type 'integer)
3027 (defcustom org-scheduled-delay-days 0
3028 "Number of days before a scheduled item becomes active.
3029 This variable governs the display in sparse trees and in the agenda.
3030 The default value (i.e. 0) means: don't delay scheduled item.
3031 When negative, it means use this number (the absolute value of it)
3032 even if a scheduled item has a different individual delay time
3033 specified.
3035 Custom commands can set this variable in the options section."
3036 :group 'org-time
3037 :group 'org-agenda-daily/weekly
3038 :version "24.4"
3039 :package-version '(Org . "8.0")
3040 :type 'integer)
3042 (defcustom org-read-date-prefer-future t
3043 "Non-nil means assume future for incomplete date input from user.
3044 This affects the following situations:
3045 1. The user gives a month but not a year.
3046 For example, if it is April and you enter \"feb 2\", this will be read
3047 as Feb 2, *next* year. \"May 5\", however, will be this year.
3048 2. The user gives a day, but no month.
3049 For example, if today is the 15th, and you enter \"3\", Org-mode will
3050 read this as the third of *next* month. However, if you enter \"17\",
3051 it will be considered as *this* month.
3053 If you set this variable to the symbol `time', then also the following
3054 will work:
3056 3. If the user gives a time.
3057 If the time is before now, it will be interpreted as tomorrow.
3059 Currently none of this works for ISO week specifications.
3061 When this option is nil, the current day, month and year will always be
3062 used as defaults.
3064 See also `org-agenda-jump-prefer-future'."
3065 :group 'org-time
3066 :type '(choice
3067 (const :tag "Never" nil)
3068 (const :tag "Check month and day" t)
3069 (const :tag "Check month, day, and time" time)))
3071 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3072 "Should the agenda jump command prefer the future for incomplete dates?
3073 The default is to do the same as configured in `org-read-date-prefer-future'.
3074 But you can also set a deviating value here.
3075 This may t or nil, or the symbol `org-read-date-prefer-future'."
3076 :group 'org-agenda
3077 :group 'org-time
3078 :version "24.1"
3079 :type '(choice
3080 (const :tag "Use org-read-date-prefer-future"
3081 org-read-date-prefer-future)
3082 (const :tag "Never" nil)
3083 (const :tag "Always" t)))
3085 (defcustom org-read-date-force-compatible-dates t
3086 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3088 Depending on the system Emacs is running on, certain dates cannot
3089 be represented with the type used internally to represent time.
3090 Dates between 1970-1-1 and 2038-1-1 can always be represented
3091 correctly. Some systems allow for earlier dates, some for later,
3092 some for both. One way to find out it to insert any date into an
3093 Org buffer, putting the cursor on the year and hitting S-up and
3094 S-down to test the range.
3096 When this variable is set to t, the date/time prompt will not let
3097 you specify dates outside the 1970-2037 range, so it is certain that
3098 these dates will work in whatever version of Emacs you are
3099 running, and also that you can move a file from one Emacs implementation
3100 to another. WHenever Org is forcing the year for you, it will display
3101 a message and beep.
3103 When this variable is nil, Org will check if the date is
3104 representable in the specific Emacs implementation you are using.
3105 If not, it will force a year, usually the current year, and beep
3106 to remind you. Currently this setting is not recommended because
3107 the likelihood that you will open your Org files in an Emacs that
3108 has limited date range is not negligible.
3110 A workaround for this problem is to use diary sexp dates for time
3111 stamps outside of this range."
3112 :group 'org-time
3113 :version "24.1"
3114 :type 'boolean)
3116 (defcustom org-read-date-display-live t
3117 "Non-nil means display current interpretation of date prompt live.
3118 This display will be in an overlay, in the minibuffer."
3119 :group 'org-time
3120 :type 'boolean)
3122 (defcustom org-read-date-popup-calendar t
3123 "Non-nil means pop up a calendar when prompting for a date.
3124 In the calendar, the date can be selected with mouse-1. However, the
3125 minibuffer will also be active, and you can simply enter the date as well.
3126 When nil, only the minibuffer will be available."
3127 :group 'org-time
3128 :type 'boolean)
3129 (org-defvaralias 'org-popup-calendar-for-date-prompt
3130 'org-read-date-popup-calendar)
3132 (make-obsolete-variable
3133 'org-read-date-minibuffer-setup-hook
3134 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3135 (defcustom org-read-date-minibuffer-setup-hook nil
3136 "Hook to be used to set up keys for the date/time interface.
3137 Add key definitions to `minibuffer-local-map', which will be a
3138 temporary copy.
3140 WARNING: This option is obsolete, you should use
3141 `org-read-date-minibuffer-local-map' to set up keys."
3142 :group 'org-time
3143 :type 'hook)
3145 (defcustom org-extend-today-until 0
3146 "The hour when your day really ends. Must be an integer.
3147 This has influence for the following applications:
3148 - When switching the agenda to \"today\". It it is still earlier than
3149 the time given here, the day recognized as TODAY is actually yesterday.
3150 - When a date is read from the user and it is still before the time given
3151 here, the current date and time will be assumed to be yesterday, 23:59.
3152 Also, timestamps inserted in capture templates follow this rule.
3154 IMPORTANT: This is a feature whose implementation is and likely will
3155 remain incomplete. Really, it is only here because past midnight seems to
3156 be the favorite working time of John Wiegley :-)"
3157 :group 'org-time
3158 :type 'integer)
3160 (defcustom org-use-effective-time nil
3161 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3162 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3163 \"effective time\" of any timestamps between midnight and 8am will be
3164 23:59 of the previous day."
3165 :group 'org-time
3166 :version "24.1"
3167 :type 'boolean)
3169 (defcustom org-use-last-clock-out-time-as-effective-time nil
3170 "When non-nil, use the last clock out time for `org-todo'.
3171 Note that this option has precedence over the combined use of
3172 `org-use-effective-time' and `org-extend-today-until'."
3173 :group 'org-time
3174 :version "24.4"
3175 :package-version '(Org . "8.0")
3176 :type 'boolean)
3178 (defcustom org-edit-timestamp-down-means-later nil
3179 "Non-nil means S-down will increase the time in a time stamp.
3180 When nil, S-up will increase."
3181 :group 'org-time
3182 :type 'boolean)
3184 (defcustom org-calendar-follow-timestamp-change t
3185 "Non-nil means make the calendar window follow timestamp changes.
3186 When a timestamp is modified and the calendar window is visible, it will be
3187 moved to the new date."
3188 :group 'org-time
3189 :type 'boolean)
3191 (defgroup org-tags nil
3192 "Options concerning tags in Org-mode."
3193 :tag "Org Tags"
3194 :group 'org)
3196 (defcustom org-tag-alist nil
3197 "List of tags allowed in Org-mode files.
3198 When this list is nil, Org-mode will base TAG input on what is already in the
3199 buffer.
3200 The value of this variable is an alist, the car of each entry must be a
3201 keyword as a string, the cdr may be a character that is used to select
3202 that tag through the fast-tag-selection interface.
3203 See the manual for details."
3204 :group 'org-tags
3205 :type '(repeat
3206 (choice
3207 (cons (string :tag "Tag name")
3208 (character :tag "Access char"))
3209 (list :tag "Start radio group"
3210 (const :startgroup)
3211 (option (string :tag "Group description")))
3212 (list :tag "Group tags delimiter"
3213 (const :grouptags))
3214 (list :tag "End radio group"
3215 (const :endgroup)
3216 (option (string :tag "Group description")))
3217 (const :tag "New line" (:newline)))))
3219 (defcustom org-tag-persistent-alist nil
3220 "List of tags that will always appear in all Org-mode files.
3221 This is in addition to any in buffer settings or customizations
3222 of `org-tag-alist'.
3223 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3224 The value of this variable is an alist, the car of each entry must be a
3225 keyword as a string, the cdr may be a character that is used to select
3226 that tag through the fast-tag-selection interface.
3227 See the manual for details.
3228 To disable these tags on a per-file basis, insert anywhere in the file:
3229 #+STARTUP: noptag"
3230 :group 'org-tags
3231 :type '(repeat
3232 (choice
3233 (cons (string :tag "Tag name")
3234 (character :tag "Access char"))
3235 (const :tag "Start radio group" (:startgroup))
3236 (const :tag "Group tags delimiter" (:grouptags))
3237 (const :tag "End radio group" (:endgroup))
3238 (const :tag "New line" (:newline)))))
3240 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3241 "If non-nil, always offer completion for all tags of all agenda files.
3242 Instead of customizing this variable directly, you might want to
3243 set it locally for capture buffers, because there no list of
3244 tags in that file can be created dynamically (there are none).
3246 (add-hook 'org-capture-mode-hook
3247 (lambda ()
3248 (set (make-local-variable
3249 'org-complete-tags-always-offer-all-agenda-tags)
3250 t)))"
3251 :group 'org-tags
3252 :version "24.1"
3253 :type 'boolean)
3255 (defvar org-file-tags nil
3256 "List of tags that can be inherited by all entries in the file.
3257 The tags will be inherited if the variable `org-use-tag-inheritance'
3258 says they should be.
3259 This variable is populated from #+FILETAGS lines.")
3261 (defcustom org-use-fast-tag-selection 'auto
3262 "Non-nil means use fast tag selection scheme.
3263 This is a special interface to select and deselect tags with single keys.
3264 When nil, fast selection is never used.
3265 When the symbol `auto', fast selection is used if and only if selection
3266 characters for tags have been configured, either through the variable
3267 `org-tag-alist' or through a #+TAGS line in the buffer.
3268 When t, fast selection is always used and selection keys are assigned
3269 automatically if necessary."
3270 :group 'org-tags
3271 :type '(choice
3272 (const :tag "Always" t)
3273 (const :tag "Never" nil)
3274 (const :tag "When selection characters are configured" 'auto)))
3276 (defcustom org-fast-tag-selection-single-key nil
3277 "Non-nil means fast tag selection exits after first change.
3278 When nil, you have to press RET to exit it.
3279 During fast tag selection, you can toggle this flag with `C-c'.
3280 This variable can also have the value `expert'. In this case, the window
3281 displaying the tags menu is not even shown, until you press C-c again."
3282 :group 'org-tags
3283 :type '(choice
3284 (const :tag "No" nil)
3285 (const :tag "Yes" t)
3286 (const :tag "Expert" expert)))
3288 (defvar org-fast-tag-selection-include-todo nil
3289 "Non-nil means fast tags selection interface will also offer TODO states.
3290 This is an undocumented feature, you should not rely on it.")
3292 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3293 "The column to which tags should be indented in a headline.
3294 If this number is positive, it specifies the column. If it is negative,
3295 it means that the tags should be flushright to that column. For example,
3296 -80 works well for a normal 80 character screen.
3297 When 0, place tags directly after headline text, with only one space in
3298 between."
3299 :group 'org-tags
3300 :type 'integer)
3302 (defcustom org-auto-align-tags t
3303 "Non-nil keeps tags aligned when modifying headlines.
3304 Some operations (i.e. demoting) change the length of a headline and
3305 therefore shift the tags around. With this option turned on, after
3306 each such operation the tags are again aligned to `org-tags-column'."
3307 :group 'org-tags
3308 :type 'boolean)
3310 (defcustom org-use-tag-inheritance t
3311 "Non-nil means tags in levels apply also for sublevels.
3312 When nil, only the tags directly given in a specific line apply there.
3313 This may also be a list of tags that should be inherited, or a regexp that
3314 matches tags that should be inherited. Additional control is possible
3315 with the variable `org-tags-exclude-from-inheritance' which gives an
3316 explicit list of tags to be excluded from inheritance, even if the value of
3317 `org-use-tag-inheritance' would select it for inheritance.
3319 If this option is t, a match early-on in a tree can lead to a large
3320 number of matches in the subtree when constructing the agenda or creating
3321 a sparse tree. If you only want to see the first match in a tree during
3322 a search, check out the variable `org-tags-match-list-sublevels'."
3323 :group 'org-tags
3324 :type '(choice
3325 (const :tag "Not" nil)
3326 (const :tag "Always" t)
3327 (repeat :tag "Specific tags" (string :tag "Tag"))
3328 (regexp :tag "Tags matched by regexp")))
3330 (defcustom org-tags-exclude-from-inheritance nil
3331 "List of tags that should never be inherited.
3332 This is a way to exclude a few tags from inheritance. For way to do
3333 the opposite, to actively allow inheritance for selected tags,
3334 see the variable `org-use-tag-inheritance'."
3335 :group 'org-tags
3336 :type '(repeat (string :tag "Tag")))
3338 (defun org-tag-inherit-p (tag)
3339 "Check if TAG is one that should be inherited."
3340 (cond
3341 ((member tag org-tags-exclude-from-inheritance) nil)
3342 ((eq org-use-tag-inheritance t) t)
3343 ((not org-use-tag-inheritance) nil)
3344 ((stringp org-use-tag-inheritance)
3345 (string-match org-use-tag-inheritance tag))
3346 ((listp org-use-tag-inheritance)
3347 (member tag org-use-tag-inheritance))
3348 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3350 (defcustom org-tags-match-list-sublevels t
3351 "Non-nil means list also sublevels of headlines matching a search.
3352 This variable applies to tags/property searches, and also to stuck
3353 projects because this search is based on a tags match as well.
3355 When set to the symbol `indented', sublevels are indented with
3356 leading dots.
3358 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3359 the sublevels of a headline matching a tag search often also match
3360 the same search. Listing all of them can create very long lists.
3361 Setting this variable to nil causes subtrees of a match to be skipped.
3363 This variable is semi-obsolete and probably should always be true. It
3364 is better to limit inheritance to certain tags using the variables
3365 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3366 :group 'org-tags
3367 :type '(choice
3368 (const :tag "No, don't list them" nil)
3369 (const :tag "Yes, do list them" t)
3370 (const :tag "List them, indented with leading dots" indented)))
3372 (defcustom org-tags-sort-function nil
3373 "When set, tags are sorted using this function as a comparator."
3374 :group 'org-tags
3375 :type '(choice
3376 (const :tag "No sorting" nil)
3377 (const :tag "Alphabetical" string<)
3378 (const :tag "Reverse alphabetical" string>)
3379 (function :tag "Custom function" nil)))
3381 (defvar org-tags-history nil
3382 "History of minibuffer reads for tags.")
3383 (defvar org-last-tags-completion-table nil
3384 "The last used completion table for tags.")
3385 (defvar org-after-tags-change-hook nil
3386 "Hook that is run after the tags in a line have changed.")
3388 (defgroup org-properties nil
3389 "Options concerning properties in Org-mode."
3390 :tag "Org Properties"
3391 :group 'org)
3393 (defcustom org-property-format "%-10s %s"
3394 "How property key/value pairs should be formatted by `indent-line'.
3395 When `indent-line' hits a property definition, it will format the line
3396 according to this format, mainly to make sure that the values are
3397 lined-up with respect to each other."
3398 :group 'org-properties
3399 :type 'string)
3401 (defcustom org-properties-postprocess-alist nil
3402 "Alist of properties and functions to adjust inserted values.
3403 Elements of this alist must be of the form
3405 ([string] [function])
3407 where [string] must be a property name and [function] must be a
3408 lambda expression: this lambda expression must take one argument,
3409 the value to adjust, and return the new value as a string.
3411 For example, this element will allow the property \"Remaining\"
3412 to be updated wrt the relation between the \"Effort\" property
3413 and the clock summary:
3415 ((\"Remaining\" (lambda(value)
3416 (let ((clocksum (org-clock-sum-current-item))
3417 (effort (org-duration-string-to-minutes
3418 (org-entry-get (point) \"Effort\"))))
3419 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3420 :group 'org-properties
3421 :version "24.1"
3422 :type '(alist :key-type (string :tag "Property")
3423 :value-type (function :tag "Function")))
3425 (defcustom org-use-property-inheritance nil
3426 "Non-nil means properties apply also for sublevels.
3428 This setting is chiefly used during property searches. Turning it on can
3429 cause significant overhead when doing a search, which is why it is not
3430 on by default.
3432 When nil, only the properties directly given in the current entry count.
3433 When t, every property is inherited. The value may also be a list of
3434 properties that should have inheritance, or a regular expression matching
3435 properties that should be inherited.
3437 However, note that some special properties use inheritance under special
3438 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3439 and the properties ending in \"_ALL\" when they are used as descriptor
3440 for valid values of a property.
3442 Note for programmers:
3443 When querying an entry with `org-entry-get', you can control if inheritance
3444 should be used. By default, `org-entry-get' looks only at the local
3445 properties. You can request inheritance by setting the inherit argument
3446 to t (to force inheritance) or to `selective' (to respect the setting
3447 in this variable)."
3448 :group 'org-properties
3449 :type '(choice
3450 (const :tag "Not" nil)
3451 (const :tag "Always" t)
3452 (repeat :tag "Specific properties" (string :tag "Property"))
3453 (regexp :tag "Properties matched by regexp")))
3455 (defun org-property-inherit-p (property)
3456 "Check if PROPERTY is one that should be inherited."
3457 (cond
3458 ((eq org-use-property-inheritance t) t)
3459 ((not org-use-property-inheritance) nil)
3460 ((stringp org-use-property-inheritance)
3461 (string-match org-use-property-inheritance property))
3462 ((listp org-use-property-inheritance)
3463 (member property org-use-property-inheritance))
3464 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3466 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3467 "The default column format, if no other format has been defined.
3468 This variable can be set on the per-file basis by inserting a line
3470 #+COLUMNS: %25ITEM ....."
3471 :group 'org-properties
3472 :type 'string)
3474 (defcustom org-columns-ellipses ".."
3475 "The ellipses to be used when a field in column view is truncated.
3476 When this is the empty string, as many characters as possible are shown,
3477 but then there will be no visual indication that the field has been truncated.
3478 When this is a string of length N, the last N characters of a truncated
3479 field are replaced by this string. If the column is narrower than the
3480 ellipses string, only part of the ellipses string will be shown."
3481 :group 'org-properties
3482 :type 'string)
3484 (defcustom org-columns-modify-value-for-display-function nil
3485 "Function that modifies values for display in column view.
3486 For example, it can be used to cut out a certain part from a time stamp.
3487 The function must take 2 arguments:
3489 column-title The title of the column (*not* the property name)
3490 value The value that should be modified.
3492 The function should return the value that should be displayed,
3493 or nil if the normal value should be used."
3494 :group 'org-properties
3495 :type 'function)
3497 (defcustom org-effort-property "Effort"
3498 "The property that is being used to keep track of effort estimates.
3499 Effort estimates given in this property need to have the format H:MM."
3500 :group 'org-properties
3501 :group 'org-progress
3502 :type '(string :tag "Property"))
3504 (defconst org-global-properties-fixed
3505 '(("VISIBILITY_ALL" . "folded children content all")
3506 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3507 "List of property/value pairs that can be inherited by any entry.
3509 These are fixed values, for the preset properties. The user variable
3510 that can be used to add to this list is `org-global-properties'.
3512 The entries in this list are cons cells where the car is a property
3513 name and cdr is a string with the value. If the value represents
3514 multiple items like an \"_ALL\" property, separate the items by
3515 spaces.")
3517 (defcustom org-global-properties nil
3518 "List of property/value pairs that can be inherited by any entry.
3520 This list will be combined with the constant `org-global-properties-fixed'.
3522 The entries in this list are cons cells where the car is a property
3523 name and cdr is a string with the value.
3525 You can set buffer-local values for the same purpose in the variable
3526 `org-file-properties' this by adding lines like
3528 #+PROPERTY: NAME VALUE"
3529 :group 'org-properties
3530 :type '(repeat
3531 (cons (string :tag "Property")
3532 (string :tag "Value"))))
3534 (defvar org-file-properties nil
3535 "List of property/value pairs that can be inherited by any entry.
3536 Valid for the current buffer.
3537 This variable is populated from #+PROPERTY lines.")
3538 (make-variable-buffer-local 'org-file-properties)
3540 (defgroup org-agenda nil
3541 "Options concerning agenda views in Org-mode."
3542 :tag "Org Agenda"
3543 :group 'org)
3545 (defvar org-category nil
3546 "Variable used by org files to set a category for agenda display.
3547 Such files should use a file variable to set it, for example
3549 # -*- mode: org; org-category: \"ELisp\"
3551 or contain a special line
3553 #+CATEGORY: ELisp
3555 If the file does not specify a category, then file's base name
3556 is used instead.")
3557 (make-variable-buffer-local 'org-category)
3558 (put 'org-category 'safe-local-variable #'(lambda (x) (or (symbolp x) (stringp x))))
3560 (defcustom org-agenda-files nil
3561 "The files to be used for agenda display.
3562 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3563 \\[org-remove-file]. You can also use customize to edit the list.
3565 If an entry is a directory, all files in that directory that are matched by
3566 `org-agenda-file-regexp' will be part of the file list.
3568 If the value of the variable is not a list but a single file name, then
3569 the list of agenda files is actually stored and maintained in that file, one
3570 agenda file per line. In this file paths can be given relative to
3571 `org-directory'. Tilde expansion and environment variable substitution
3572 are also made."
3573 :group 'org-agenda
3574 :type '(choice
3575 (repeat :tag "List of files and directories" file)
3576 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3578 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3579 "Regular expression to match files for `org-agenda-files'.
3580 If any element in the list in that variable contains a directory instead
3581 of a normal file, all files in that directory that are matched by this
3582 regular expression will be included."
3583 :group 'org-agenda
3584 :type 'regexp)
3586 (defcustom org-agenda-text-search-extra-files nil
3587 "List of extra files to be searched by text search commands.
3588 These files will be searched in addition to the agenda files by the
3589 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3590 Note that these files will only be searched for text search commands,
3591 not for the other agenda views like todo lists, tag searches or the weekly
3592 agenda. This variable is intended to list notes and possibly archive files
3593 that should also be searched by these two commands.
3594 In fact, if the first element in the list is the symbol `agenda-archives',
3595 then all archive files of all agenda files will be added to the search
3596 scope."
3597 :group 'org-agenda
3598 :type '(set :greedy t
3599 (const :tag "Agenda Archives" agenda-archives)
3600 (repeat :inline t (file))))
3602 (org-defvaralias 'org-agenda-multi-occur-extra-files
3603 'org-agenda-text-search-extra-files)
3605 (defcustom org-agenda-skip-unavailable-files nil
3606 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3607 A nil value means to remove them, after a query, from the list."
3608 :group 'org-agenda
3609 :type 'boolean)
3611 (defcustom org-calendar-to-agenda-key [?c]
3612 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3613 The command `org-calendar-goto-agenda' will be bound to this key. The
3614 default is the character `c' because then `c' can be used to switch back and
3615 forth between agenda and calendar."
3616 :group 'org-agenda
3617 :type 'sexp)
3619 (defcustom org-calendar-insert-diary-entry-key [?i]
3620 "The key to be installed in `calendar-mode-map' for adding diary entries.
3621 This option is irrelevant until `org-agenda-diary-file' has been configured
3622 to point to an Org-mode file. When that is the case, the command
3623 `org-agenda-diary-entry' will be bound to the key given here, by default
3624 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3625 if you want to continue doing this, you need to change this to a different
3626 key."
3627 :group 'org-agenda
3628 :type 'sexp)
3630 (defcustom org-agenda-diary-file 'diary-file
3631 "File to which to add new entries with the `i' key in agenda and calendar.
3632 When this is the symbol `diary-file', the functionality in the Emacs
3633 calendar will be used to add entries to the `diary-file'. But when this
3634 points to a file, `org-agenda-diary-entry' will be used instead."
3635 :group 'org-agenda
3636 :type '(choice
3637 (const :tag "The standard Emacs diary file" diary-file)
3638 (file :tag "Special Org file diary entries")))
3640 (eval-after-load "calendar"
3641 '(progn
3642 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3643 'org-calendar-goto-agenda)
3644 (add-hook 'calendar-mode-hook
3645 (lambda ()
3646 (unless (eq org-agenda-diary-file 'diary-file)
3647 (define-key calendar-mode-map
3648 org-calendar-insert-diary-entry-key
3649 'org-agenda-diary-entry))))))
3651 (defgroup org-latex nil
3652 "Options for embedding LaTeX code into Org-mode."
3653 :tag "Org LaTeX"
3654 :group 'org)
3656 (defcustom org-format-latex-options
3657 '(:foreground default :background default :scale 1.0
3658 :html-foreground "Black" :html-background "Transparent"
3659 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3660 "Options for creating images from LaTeX fragments.
3661 This is a property list with the following properties:
3662 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3663 `default' means use the foreground of the default face.
3664 `auto' means use the foreground from the text face.
3665 :background the background color, or \"Transparent\".
3666 `default' means use the background of the default face.
3667 `auto' means use the background from the text face.
3668 :scale a scaling factor for the size of the images, to get more pixels
3669 :html-foreground, :html-background, :html-scale
3670 the same numbers for HTML export.
3671 :matchers a list indicating which matchers should be used to
3672 find LaTeX fragments. Valid members of this list are:
3673 \"begin\" find environments
3674 \"$1\" find single characters surrounded by $.$
3675 \"$\" find math expressions surrounded by $...$
3676 \"$$\" find math expressions surrounded by $$....$$
3677 \"\\(\" find math expressions surrounded by \\(...\\)
3678 \"\\ [\" find math expressions surrounded by \\ [...\\]"
3679 :group 'org-latex
3680 :type 'plist)
3682 (defcustom org-format-latex-signal-error t
3683 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3684 When nil, just push out a message."
3685 :group 'org-latex
3686 :version "24.1"
3687 :type 'boolean)
3689 (defcustom org-latex-to-mathml-jar-file nil
3690 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3691 Use this to specify additional executable file say a jar file.
3693 When using MathToWeb as the converter, specify the full-path to
3694 your mathtoweb.jar file."
3695 :group 'org-latex
3696 :version "24.1"
3697 :type '(choice
3698 (const :tag "None" nil)
3699 (file :tag "JAR file" :must-match t)))
3701 (defcustom org-latex-to-mathml-convert-command nil
3702 "Command to convert LaTeX fragments to MathML.
3703 Replace format-specifiers in the command as noted below and use
3704 `shell-command' to convert LaTeX to MathML.
3705 %j: Executable file in fully expanded form as specified by
3706 `org-latex-to-mathml-jar-file'.
3707 %I: Input LaTeX file in fully expanded form
3708 %o: Output MathML file
3709 This command is used by `org-create-math-formula'.
3711 When using MathToWeb as the converter, set this to
3712 \"java -jar %j -unicode -force -df %o %I\"."
3713 :group 'org-latex
3714 :version "24.1"
3715 :type '(choice
3716 (const :tag "None" nil)
3717 (string :tag "\nShell command")))
3719 (defcustom org-latex-create-formula-image-program 'dvipng
3720 "Program to convert LaTeX fragments with.
3722 dvipng Process the LaTeX fragments to dvi file, then convert
3723 dvi files to png files using dvipng.
3724 This will also include processing of non-math environments.
3725 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
3726 to convert pdf files to png files"
3727 :group 'org-latex
3728 :version "24.1"
3729 :type '(choice
3730 (const :tag "dvipng" dvipng)
3731 (const :tag "imagemagick" imagemagick)))
3733 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
3734 "Path to store latex preview images.
3735 A relative path here creates many directories relative to the
3736 processed org files paths. An absolute path puts all preview
3737 images at the same place."
3738 :group 'org-latex
3739 :version "24.3"
3740 :type 'string)
3742 (defun org-format-latex-mathml-available-p ()
3743 "Return t if `org-latex-to-mathml-convert-command' is usable."
3744 (save-match-data
3745 (when (and (boundp 'org-latex-to-mathml-convert-command)
3746 org-latex-to-mathml-convert-command)
3747 (let ((executable (car (split-string
3748 org-latex-to-mathml-convert-command))))
3749 (when (executable-find executable)
3750 (if (string-match
3751 "%j" org-latex-to-mathml-convert-command)
3752 (file-readable-p org-latex-to-mathml-jar-file)
3753 t))))))
3755 (defcustom org-format-latex-header "\\documentclass{article}
3756 \\usepackage[usenames]{color}
3757 \\usepackage{amsmath}
3758 \\usepackage[mathscr]{eucal}
3759 \\pagestyle{empty} % do not remove
3760 \[PACKAGES]
3761 \[DEFAULT-PACKAGES]
3762 % The settings below are copied from fullpage.sty
3763 \\setlength{\\textwidth}{\\paperwidth}
3764 \\addtolength{\\textwidth}{-3cm}
3765 \\setlength{\\oddsidemargin}{1.5cm}
3766 \\addtolength{\\oddsidemargin}{-2.54cm}
3767 \\setlength{\\evensidemargin}{\\oddsidemargin}
3768 \\setlength{\\textheight}{\\paperheight}
3769 \\addtolength{\\textheight}{-\\headheight}
3770 \\addtolength{\\textheight}{-\\headsep}
3771 \\addtolength{\\textheight}{-\\footskip}
3772 \\addtolength{\\textheight}{-3cm}
3773 \\setlength{\\topmargin}{1.5cm}
3774 \\addtolength{\\topmargin}{-2.54cm}"
3775 "The document header used for processing LaTeX fragments.
3776 It is imperative that this header make sure that no page number
3777 appears on the page. The package defined in the variables
3778 `org-latex-default-packages-alist' and `org-latex-packages-alist'
3779 will either replace the placeholder \"[PACKAGES]\" in this
3780 header, or they will be appended."
3781 :group 'org-latex
3782 :type 'string)
3784 (defun org-set-packages-alist (var val)
3785 "Set the packages alist and make sure it has 3 elements per entry."
3786 (set var (mapcar (lambda (x)
3787 (if (and (consp x) (= (length x) 2))
3788 (list (car x) (nth 1 x) t)
3790 val)))
3792 (defun org-get-packages-alist (var)
3793 "Get the packages alist and make sure it has 3 elements per entry."
3794 (mapcar (lambda (x)
3795 (if (and (consp x) (= (length x) 2))
3796 (list (car x) (nth 1 x) t)
3798 (default-value var)))
3800 (defcustom org-latex-default-packages-alist
3801 '(("AUTO" "inputenc" t)
3802 ("T1" "fontenc" t)
3803 ("" "fixltx2e" nil)
3804 ("" "graphicx" t)
3805 ("" "longtable" nil)
3806 ("" "float" nil)
3807 ("" "wrapfig" nil)
3808 ("normalem" "ulem" t)
3809 ("" "textcomp" t)
3810 ("" "marvosym" t)
3811 ("" "wasysym" t)
3812 ("" "latexsym" t)
3813 ("" "amssymb" t)
3814 ("" "amstext" nil)
3815 ("" "hyperref" nil)
3816 "\\tolerance=1000")
3817 "Alist of default packages to be inserted in the header.
3819 Change this only if one of the packages here causes an
3820 incompatibility with another package you are using.
3822 The packages in this list are needed by one part or another of
3823 Org mode to function properly:
3825 - inputenc, fontenc: for basic font and character selection
3826 - amstext: for subscript and superscript
3827 - textcomp, marvosymb, wasysym, latexsym, amssym: for various
3828 symbols used for interpreting the entities in `org-entities'.
3829 You can skip some of these packages if you don't use any of the
3830 symbols in it.
3831 - ulem: for underline and strike-through
3832 - graphicx: for including images
3833 - float, wrapfig: for figure placement
3834 - longtable: for long tables
3835 - hyperref: for cross references
3837 Therefore you should not modify this variable unless you know
3838 what you are doing. The one reason to change it anyway is that
3839 you might be loading some other package that conflicts with one
3840 of the default packages. Each cell is of the format
3841 \( \"options\" \"package\" snippet-flag). If SNIPPET-FLAG is t,
3842 the package also needs to be included when compiling LaTeX
3843 snippets into images for inclusion into non-LaTeX output."
3844 :group 'org-latex
3845 :group 'org-export-latex
3846 :set 'org-set-packages-alist
3847 :get 'org-get-packages-alist
3848 :version "24.1"
3849 :type '(repeat
3850 (choice
3851 (list :tag "options/package pair"
3852 (string :tag "options")
3853 (string :tag "package")
3854 (boolean :tag "Snippet"))
3855 (string :tag "A line of LaTeX"))))
3857 (defcustom org-latex-packages-alist nil
3858 "Alist of packages to be inserted in every LaTeX header.
3860 These will be inserted after `org-latex-default-packages-alist'.
3861 Each cell is of the format:
3863 \(\"options\" \"package\" snippet-flag)
3865 SNIPPET-FLAG, when t, indicates that this package is also needed
3866 when turning LaTeX snippets into images for inclusion into
3867 non-LaTeX output.
3869 Make sure that you only list packages here which:
3871 - you want in every file
3872 - do not conflict with the setup in `org-format-latex-header'.
3873 - do not conflict with the default packages in
3874 `org-latex-default-packages-alist'."
3875 :group 'org-latex
3876 :group 'org-export-latex
3877 :set 'org-set-packages-alist
3878 :get 'org-get-packages-alist
3879 :type '(repeat
3880 (choice
3881 (list :tag "options/package pair"
3882 (string :tag "options")
3883 (string :tag "package")
3884 (boolean :tag "Snippet"))
3885 (string :tag "A line of LaTeX"))))
3887 (defgroup org-appearance nil
3888 "Settings for Org-mode appearance."
3889 :tag "Org Appearance"
3890 :group 'org)
3892 (defcustom org-level-color-stars-only nil
3893 "Non-nil means fontify only the stars in each headline.
3894 When nil, the entire headline is fontified.
3895 Changing it requires restart of `font-lock-mode' to become effective
3896 also in regions already fontified."
3897 :group 'org-appearance
3898 :type 'boolean)
3900 (defcustom org-hide-leading-stars nil
3901 "Non-nil means hide the first N-1 stars in a headline.
3902 This works by using the face `org-hide' for these stars. This
3903 face is white for a light background, and black for a dark
3904 background. You may have to customize the face `org-hide' to
3905 make this work.
3906 Changing it requires restart of `font-lock-mode' to become effective
3907 also in regions already fontified.
3908 You may also set this on a per-file basis by adding one of the following
3909 lines to the buffer:
3911 #+STARTUP: hidestars
3912 #+STARTUP: showstars"
3913 :group 'org-appearance
3914 :type 'boolean)
3916 (defcustom org-hidden-keywords nil
3917 "List of symbols corresponding to keywords to be hidden the org buffer.
3918 For example, a value '(title) for this list will make the document's title
3919 appear in the buffer without the initial #+TITLE: keyword."
3920 :group 'org-appearance
3921 :version "24.1"
3922 :type '(set (const :tag "#+AUTHOR" author)
3923 (const :tag "#+DATE" date)
3924 (const :tag "#+EMAIL" email)
3925 (const :tag "#+TITLE" title)))
3927 (defcustom org-custom-properties nil
3928 "List of properties (as strings) with a special meaning.
3929 The default use of these custom properties is to let the user
3930 hide them with `org-toggle-custom-properties-visibility'."
3931 :group 'org-properties
3932 :group 'org-appearance
3933 :version "24.3"
3934 :type '(repeat (string :tag "Property Name")))
3936 (defcustom org-fontify-done-headline nil
3937 "Non-nil means change the face of a headline if it is marked DONE.
3938 Normally, only the TODO/DONE keyword indicates the state of a headline.
3939 When this is non-nil, the headline after the keyword is set to the
3940 `org-headline-done' as an additional indication."
3941 :group 'org-appearance
3942 :type 'boolean)
3944 (defcustom org-fontify-emphasized-text t
3945 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
3946 Changing this variable requires a restart of Emacs to take effect."
3947 :group 'org-appearance
3948 :type 'boolean)
3950 (defcustom org-fontify-whole-heading-line nil
3951 "Non-nil means fontify the whole line for headings.
3952 This is useful when setting a background color for the
3953 org-level-* faces."
3954 :group 'org-appearance
3955 :type 'boolean)
3957 (defcustom org-highlight-latex-and-related nil
3958 "Non-nil means highlight LaTeX related syntax in the buffer.
3959 When non nil, the value should be a list containing any of the
3960 following symbols:
3961 `latex' Highlight LaTeX snippets and environments.
3962 `script' Highlight subscript and superscript.
3963 `entities' Highlight entities."
3964 :group 'org-appearance
3965 :version "24.4"
3966 :package-version '(Org . "8.0")
3967 :type '(choice
3968 (const :tag "No highlighting" nil)
3969 (set :greedy t :tag "Highlight"
3970 (const :tag "LaTeX snippets and environments" latex)
3971 (const :tag "Subscript and superscript" script)
3972 (const :tag "Entities" entities))))
3974 (defcustom org-hide-emphasis-markers nil
3975 "Non-nil mean font-lock should hide the emphasis marker characters."
3976 :group 'org-appearance
3977 :type 'boolean)
3979 (defcustom org-pretty-entities nil
3980 "Non-nil means show entities as UTF8 characters.
3981 When nil, the \\name form remains in the buffer."
3982 :group 'org-appearance
3983 :version "24.1"
3984 :type 'boolean)
3986 (defcustom org-pretty-entities-include-sub-superscripts t
3987 "Non-nil means, pretty entity display includes formatting sub/superscripts."
3988 :group 'org-appearance
3989 :version "24.1"
3990 :type 'boolean)
3992 (defvar org-emph-re nil
3993 "Regular expression for matching emphasis.
3994 After a match, the match groups contain these elements:
3995 0 The match of the full regular expression, including the characters
3996 before and after the proper match
3997 1 The character before the proper match, or empty at beginning of line
3998 2 The proper match, including the leading and trailing markers
3999 3 The leading marker like * or /, indicating the type of highlighting
4000 4 The text between the emphasis markers, not including the markers
4001 5 The character after the match, empty at the end of a line")
4002 (defvar org-verbatim-re nil
4003 "Regular expression for matching verbatim text.")
4004 (defvar org-emphasis-regexp-components) ; defined just below
4005 (defvar org-emphasis-alist) ; defined just below
4006 (defun org-set-emph-re (var val)
4007 "Set variable and compute the emphasis regular expression."
4008 (set var val)
4009 (when (and (boundp 'org-emphasis-alist)
4010 (boundp 'org-emphasis-regexp-components)
4011 org-emphasis-alist org-emphasis-regexp-components)
4012 (let* ((e org-emphasis-regexp-components)
4013 (pre (car e))
4014 (post (nth 1 e))
4015 (border (nth 2 e))
4016 (body (nth 3 e))
4017 (nl (nth 4 e))
4018 (body1 (concat body "*?"))
4019 (markers (mapconcat 'car org-emphasis-alist ""))
4020 (vmarkers (mapconcat
4021 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4022 org-emphasis-alist "")))
4023 ;; make sure special characters appear at the right position in the class
4024 (if (string-match "\\^" markers)
4025 (setq markers (concat (replace-match "" t t markers) "^")))
4026 (if (string-match "-" markers)
4027 (setq markers (concat (replace-match "" t t markers) "-")))
4028 (if (string-match "\\^" vmarkers)
4029 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4030 (if (string-match "-" vmarkers)
4031 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4032 (if (> nl 0)
4033 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4034 (int-to-string nl) "\\}")))
4035 ;; Make the regexp
4036 (setq org-emph-re
4037 (concat "\\([" pre "]\\|^\\)"
4038 "\\("
4039 "\\([" markers "]\\)"
4040 "\\("
4041 "[^" border "]\\|"
4042 "[^" border "]"
4043 body1
4044 "[^" border "]"
4045 "\\)"
4046 "\\3\\)"
4047 "\\([" post "]\\|$\\)"))
4048 (setq org-verbatim-re
4049 (concat "\\([" pre "]\\|^\\)"
4050 "\\("
4051 "\\([" vmarkers "]\\)"
4052 "\\("
4053 "[^" border "]\\|"
4054 "[^" border "]"
4055 body1
4056 "[^" border "]"
4057 "\\)"
4058 "\\3\\)"
4059 "\\([" post "]\\|$\\)")))))
4061 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4062 ;; set this option proved cumbersome. See this message/thread:
4063 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4064 (defvar org-emphasis-regexp-components
4065 '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r\n,\"'" "." 1)
4066 "Components used to build the regular expression for emphasis.
4067 This is a list with five entries. Terminology: In an emphasis string
4068 like \" *strong word* \", we call the initial space PREMATCH, the final
4069 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4070 and \"trong wor\" is the body. The different components in this variable
4071 specify what is allowed/forbidden in each part:
4073 pre Chars allowed as prematch. Beginning of line will be allowed too.
4074 post Chars allowed as postmatch. End of line will be allowed too.
4075 border The chars *forbidden* as border characters.
4076 body-regexp A regexp like \".\" to match a body character. Don't use
4077 non-shy groups here, and don't allow newline here.
4078 newline The maximum number of newlines allowed in an emphasis exp.
4080 You need to reload Org or to restart Emacs after customizing this.")
4082 (defcustom org-emphasis-alist
4083 `(("*" bold)
4084 ("/" italic)
4085 ("_" underline)
4086 ("=" org-code verbatim)
4087 ("~" org-verbatim verbatim)
4088 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4089 "Alist of characters and faces to emphasize text.
4090 Text starting and ending with a special character will be emphasized,
4091 for example *bold*, _underlined_ and /italic/. This variable sets the
4092 marker characters and the face to be used by font-lock for highlighting
4093 in Org-mode Emacs buffers.
4095 You need to reload Org or to restart Emacs after customizing this."
4096 :group 'org-appearance
4097 :set 'org-set-emph-re
4098 :version "24.4"
4099 :package-version '(Org . "8.0")
4100 :type '(repeat
4101 (list
4102 (string :tag "Marker character")
4103 (choice
4104 (face :tag "Font-lock-face")
4105 (plist :tag "Face property list"))
4106 (option (const verbatim)))))
4108 (defvar org-protecting-blocks
4109 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4110 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4111 This is needed for font-lock setup.")
4113 ;;; Miscellaneous options
4115 (defgroup org-completion nil
4116 "Completion in Org-mode."
4117 :tag "Org Completion"
4118 :group 'org)
4120 (defcustom org-completion-use-ido nil
4121 "Non-nil means use ido completion wherever possible.
4122 Note that `ido-mode' must be active for this variable to be relevant.
4123 If you decide to turn this variable on, you might well want to turn off
4124 `org-outline-path-complete-in-steps'.
4125 See also `org-completion-use-iswitchb'."
4126 :group 'org-completion
4127 :type 'boolean)
4129 (defcustom org-completion-use-iswitchb nil
4130 "Non-nil means use iswitchb completion wherever possible.
4131 Note that `iswitchb-mode' must be active for this variable to be relevant.
4132 If you decide to turn this variable on, you might well want to turn off
4133 `org-outline-path-complete-in-steps'.
4134 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4135 :group 'org-completion
4136 :type 'boolean)
4138 (defcustom org-completion-fallback-command 'hippie-expand
4139 "The expansion command called by \\[pcomplete] in normal context.
4140 Normal means, no org-mode-specific context."
4141 :group 'org-completion
4142 :type 'function)
4144 ;;; Functions and variables from their packages
4145 ;; Declared here to avoid compiler warnings
4147 ;; XEmacs only
4148 (defvar outline-mode-menu-heading)
4149 (defvar outline-mode-menu-show)
4150 (defvar outline-mode-menu-hide)
4151 (defvar zmacs-regions) ; XEmacs regions
4153 ;; Emacs only
4154 (defvar mark-active)
4156 ;; Various packages
4157 (declare-function calendar-absolute-from-iso "cal-iso" (date))
4158 (declare-function calendar-forward-day "cal-move" (arg))
4159 (declare-function calendar-goto-date "cal-move" (date))
4160 (declare-function calendar-goto-today "cal-move" ())
4161 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4162 (defvar calc-embedded-close-formula)
4163 (defvar calc-embedded-open-formula)
4164 (declare-function cdlatex-tab "ext:cdlatex" ())
4165 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4166 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4167 (defvar font-lock-unfontify-region-function)
4168 (declare-function iswitchb-read-buffer "iswitchb"
4169 (prompt &optional default require-match start matches-set))
4170 (defvar iswitchb-temp-buflist)
4171 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4172 (defvar org-agenda-tags-todo-honor-ignore-options)
4173 (declare-function org-agenda-skip "org-agenda" ())
4174 (declare-function
4175 org-agenda-format-item "org-agenda"
4176 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4177 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4178 (declare-function org-agenda-change-all-lines "org-agenda"
4179 (newhead hdmarker &optional fixface just-this))
4180 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4181 (declare-function org-agenda-maybe-redo "org-agenda" ())
4182 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4183 (beg end))
4184 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4185 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4186 "org-agenda" (&optional end))
4187 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4188 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4189 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4190 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4191 (declare-function org-indent-mode "org-indent" (&optional arg))
4192 (declare-function parse-time-string "parse-time" (string))
4193 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4194 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4195 (defvar remember-data-file)
4196 (defvar texmathp-why)
4197 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4198 (declare-function table--at-cell-p "table" (position &optional object at-column))
4200 (defvar org-latex-regexps)
4202 ;;; Autoload and prepare some org modules
4204 ;; Some table stuff that needs to be defined here, because it is used
4205 ;; by the functions setting up org-mode or checking for table context.
4207 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
4208 "Detect an org-type or table-type table.")
4209 (defconst org-table-line-regexp "^[ \t]*|"
4210 "Detect an org-type table line.")
4211 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
4212 "Detect an org-type table line.")
4213 (defconst org-table-hline-regexp "^[ \t]*|-"
4214 "Detect an org-type table hline.")
4215 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
4216 "Detect a table-type table hline.")
4217 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
4218 "Detect the first line outside a table when searching from within it.
4219 This works for both table types.")
4221 ;; Autoload the functions in org-table.el that are needed by functions here.
4223 (eval-and-compile
4224 (org-autoload "org-table"
4225 '(org-table-begin org-table-blank-field org-table-end)))
4227 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
4228 "Detect a #+TBLFM line.")
4230 ;;;###autoload
4231 (defun turn-on-orgtbl ()
4232 "Unconditionally turn on `orgtbl-mode'."
4233 (require 'org-table)
4234 (orgtbl-mode 1))
4236 (defun org-at-table-p (&optional table-type)
4237 "Return t if the cursor is inside an org-type table.
4238 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4239 (if org-enable-table-editor
4240 (save-excursion
4241 (beginning-of-line 1)
4242 (looking-at (if table-type org-table-any-line-regexp
4243 org-table-line-regexp)))
4244 nil))
4245 (defsubst org-table-p () (org-at-table-p))
4247 (defun org-at-table.el-p ()
4248 "Return t if and only if we are at a table.el table."
4249 (and (org-at-table-p 'any)
4250 (save-excursion
4251 (goto-char (org-table-begin 'any))
4252 (looking-at org-table1-hline-regexp))))
4254 (defun org-table-recognize-table.el ()
4255 "If there is a table.el table nearby, recognize it and move into it."
4256 (if org-table-tab-recognizes-table.el
4257 (if (org-at-table.el-p)
4258 (progn
4259 (beginning-of-line 1)
4260 (if (looking-at org-table-dataline-regexp)
4262 (if (looking-at org-table1-hline-regexp)
4263 (progn
4264 (beginning-of-line 2)
4265 (if (looking-at org-table-any-border-regexp)
4266 (beginning-of-line -1)))))
4267 (if (re-search-forward "|" (org-table-end t) t)
4268 (progn
4269 (require 'table)
4270 (if (table--at-cell-p (point))
4272 (message "recognizing table.el table...")
4273 (table-recognize-table)
4274 (message "recognizing table.el table...done")))
4275 (error "This should not happen"))
4277 nil)
4278 nil))
4280 (defun org-at-table-hline-p ()
4281 "Return t if the cursor is inside a hline in a table."
4282 (if org-enable-table-editor
4283 (save-excursion
4284 (beginning-of-line 1)
4285 (looking-at org-table-hline-regexp))
4286 nil))
4288 (defvar org-table-clean-did-remove-column nil)
4289 (defun org-table-map-tables (function &optional quietly)
4290 "Apply FUNCTION to the start of all tables in the buffer."
4291 (save-excursion
4292 (save-restriction
4293 (widen)
4294 (goto-char (point-min))
4295 (while (re-search-forward org-table-any-line-regexp nil t)
4296 (unless quietly
4297 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4298 (beginning-of-line 1)
4299 (when (and (looking-at org-table-line-regexp)
4300 ;; Exclude tables in src/example/verbatim/clocktable blocks
4301 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4302 (save-excursion (funcall function))
4303 (or (looking-at org-table-line-regexp)
4304 (forward-char 1)))
4305 (re-search-forward org-table-any-border-regexp nil 1))))
4306 (unless quietly (message "Mapping tables: done")))
4308 ;; Declare and autoload functions from ox.el and al.
4310 (declare-function org-export-get-environment "ox"
4311 (&optional backend subtreep ext-plist))
4312 (declare-function org-latex-guess-inputenc "ox-latex" (header))
4314 ;; Declare and autoload functions from org-agenda.el
4316 (eval-and-compile
4317 (org-autoload "org-agenda"
4318 '(org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item)))
4320 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4321 (declare-function org-clock-update-mode-line "org-clock" ())
4322 (declare-function org-resolve-clocks "org-clock"
4323 (&optional also-non-dangling-p prompt last-valid))
4325 (defun org-at-TBLFM-p (&optional pos)
4326 "Return t when point (or POS) is in #+TBLFM line."
4327 (save-excursion
4328 (let ((pos pos)))
4329 (goto-char (or pos (point)))
4330 (beginning-of-line 1)
4331 (looking-at org-TBLFM-regexp)))
4333 (defvar org-clock-start-time)
4334 (defvar org-clock-marker (make-marker)
4335 "Marker recording the last clock-in.")
4336 (defvar org-clock-hd-marker (make-marker)
4337 "Marker recording the last clock-in, but the headline position.")
4338 (defvar org-clock-heading ""
4339 "The heading of the current clock entry.")
4340 (defun org-clock-is-active ()
4341 "Return the buffer where the clock is currently running.
4342 Return nil if no clock is running."
4343 (marker-buffer org-clock-marker))
4345 (eval-and-compile
4346 (org-autoload "org-clock" '(org-clock-remove-overlays
4347 org-clock-update-time-maybe
4348 org-clocktable-shift)))
4350 (defun org-check-running-clock ()
4351 "Check if the current buffer contains the running clock.
4352 If yes, offer to stop it and to save the buffer with the changes."
4353 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4354 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4355 (buffer-name))))
4356 (org-clock-out)
4357 (when (y-or-n-p "Save changed buffer?")
4358 (save-buffer))))
4360 (defun org-clocktable-try-shift (dir n)
4361 "Check if this line starts a clock table, if yes, shift the time block."
4362 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4363 (org-clocktable-shift dir n)))
4365 ;;;###autoload
4366 (defun org-clock-persistence-insinuate ()
4367 "Set up hooks for clock persistence."
4368 (require 'org-clock)
4369 (add-hook 'org-mode-hook 'org-clock-load)
4370 (add-hook 'kill-emacs-hook 'org-clock-save))
4372 ;; Define the variable already here, to make sure we have it.
4373 (defvar org-indent-mode nil
4374 "Non-nil if Org-Indent mode is enabled.
4375 Use the command `org-indent-mode' to change this variable.")
4377 ;; Autoload archiving code
4378 ;; The stuff that is needed for cycling and tags has to be defined here.
4380 (defgroup org-archive nil
4381 "Options concerning archiving in Org-mode."
4382 :tag "Org Archive"
4383 :group 'org-structure)
4385 (defcustom org-archive-location "%s_archive::"
4386 "The location where subtrees should be archived.
4388 The value of this variable is a string, consisting of two parts,
4389 separated by a double-colon. The first part is a filename and
4390 the second part is a headline.
4392 When the filename is omitted, archiving happens in the same file.
4393 %s in the filename will be replaced by the current file
4394 name (without the directory part). Archiving to a different file
4395 is useful to keep archived entries from contributing to the
4396 Org-mode Agenda.
4398 The archived entries will be filed as subtrees of the specified
4399 headline. When the headline is omitted, the subtrees are simply
4400 filed away at the end of the file, as top-level entries. Also in
4401 the heading you can use %s to represent the file name, this can be
4402 useful when using the same archive for a number of different files.
4404 Here are a few examples:
4405 \"%s_archive::\"
4406 If the current file is Projects.org, archive in file
4407 Projects.org_archive, as top-level trees. This is the default.
4409 \"::* Archived Tasks\"
4410 Archive in the current file, under the top-level headline
4411 \"* Archived Tasks\".
4413 \"~/org/archive.org::\"
4414 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4416 \"~/org/archive.org::* From %s\"
4417 Archive in file ~/org/archive.org (absolute path), under headlines
4418 \"From FILENAME\" where file name is the current file name.
4420 \"~/org/datetree.org::datetree/* Finished Tasks\"
4421 The \"datetree/\" string is special, signifying to archive
4422 items to the datetree. Items are placed in either the CLOSED
4423 date of the item, or the current date if there is no CLOSED date.
4424 The heading will be a subentry to the current date. There doesn't
4425 need to be a heading, but there always needs to be a slash after
4426 datetree. For example, to store archived items directly in the
4427 datetree, use \"~/org/datetree.org::datetree/\".
4429 \"basement::** Finished Tasks\"
4430 Archive in file ./basement (relative path), as level 3 trees
4431 below the level 2 heading \"** Finished Tasks\".
4433 You may set this option on a per-file basis by adding to the buffer a
4434 line like
4436 #+ARCHIVE: basement::** Finished Tasks
4438 You may also define it locally for a subtree by setting an ARCHIVE property
4439 in the entry. If such a property is found in an entry, or anywhere up
4440 the hierarchy, it will be used."
4441 :group 'org-archive
4442 :type 'string)
4444 (defcustom org-archive-tag "ARCHIVE"
4445 "The tag that marks a subtree as archived.
4446 An archived subtree does not open during visibility cycling, and does
4447 not contribute to the agenda listings.
4448 After changing this, font-lock must be restarted in the relevant buffers to
4449 get the proper fontification."
4450 :group 'org-archive
4451 :group 'org-keywords
4452 :type 'string)
4454 (defcustom org-agenda-skip-archived-trees t
4455 "Non-nil means the agenda will skip any items located in archived trees.
4456 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4457 variable is no longer recommended, you should leave it at the value t.
4458 Instead, use the key `v' to cycle the archives-mode in the agenda."
4459 :group 'org-archive
4460 :group 'org-agenda-skip
4461 :type 'boolean)
4463 (defcustom org-columns-skip-archived-trees t
4464 "Non-nil means ignore archived trees when creating column view."
4465 :group 'org-archive
4466 :group 'org-properties
4467 :type 'boolean)
4469 (defcustom org-cycle-open-archived-trees nil
4470 "Non-nil means `org-cycle' will open archived trees.
4471 An archived tree is a tree marked with the tag ARCHIVE.
4472 When nil, archived trees will stay folded. You can still open them with
4473 normal outline commands like `show-all', but not with the cycling commands."
4474 :group 'org-archive
4475 :group 'org-cycle
4476 :type 'boolean)
4478 (defcustom org-sparse-tree-open-archived-trees nil
4479 "Non-nil means sparse tree construction shows matches in archived trees.
4480 When nil, matches in these trees are highlighted, but the trees are kept in
4481 collapsed state."
4482 :group 'org-archive
4483 :group 'org-sparse-trees
4484 :type 'boolean)
4486 (defcustom org-sparse-tree-default-date-type 'scheduled-or-deadline
4487 "The default date type when building a sparse tree.
4488 When this is nil, a date is a scheduled or a deadline timestamp.
4489 Otherwise, these types are allowed:
4491 all: all timestamps
4492 active: only active timestamps (<...>)
4493 inactive: only inactive timestamps (<...)
4494 scheduled: only scheduled timestamps
4495 deadline: only deadline timestamps"
4496 :type '(choice (const :tag "Scheduled or deadline" 'scheduled-or-deadline)
4497 (const :tag "All timestamps" all)
4498 (const :tag "Only active timestamps" active)
4499 (const :tag "Only inactive timestamps" inactive)
4500 (const :tag "Only scheduled timestamps" scheduled)
4501 (const :tag "Only deadline timestamps" deadline)
4502 (const :tag "Only closed timestamps" closed))
4503 :version "24.3"
4504 :group 'org-sparse-trees)
4506 (defun org-cycle-hide-archived-subtrees (state)
4507 "Re-hide all archived subtrees after a visibility state change."
4508 (when (and (not org-cycle-open-archived-trees)
4509 (not (memq state '(overview folded))))
4510 (save-excursion
4511 (let* ((globalp (memq state '(contents all)))
4512 (beg (if globalp (point-min) (point)))
4513 (end (if globalp (point-max) (org-end-of-subtree t))))
4514 (org-hide-archived-subtrees beg end)
4515 (goto-char beg)
4516 (if (looking-at (concat ".*:" org-archive-tag ":"))
4517 (message "%s" (substitute-command-keys
4518 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4520 (defun org-force-cycle-archived ()
4521 "Cycle subtree even if it is archived."
4522 (interactive)
4523 (setq this-command 'org-cycle)
4524 (let ((org-cycle-open-archived-trees t))
4525 (call-interactively 'org-cycle)))
4527 (defun org-hide-archived-subtrees (beg end)
4528 "Re-hide all archived subtrees after a visibility state change."
4529 (save-excursion
4530 (let* ((re (concat ":" org-archive-tag ":")))
4531 (goto-char beg)
4532 (while (re-search-forward re end t)
4533 (when (org-at-heading-p)
4534 (org-flag-subtree t)
4535 (org-end-of-subtree t))))))
4537 (declare-function outline-end-of-heading "outline" ())
4538 (declare-function outline-flag-region "outline" (from to flag))
4539 (defun org-flag-subtree (flag)
4540 (save-excursion
4541 (org-back-to-heading t)
4542 (outline-end-of-heading)
4543 (outline-flag-region (point)
4544 (progn (org-end-of-subtree t) (point))
4545 flag)))
4547 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4549 (eval-and-compile
4550 (org-autoload "org-archive"
4551 '(org-add-archive-files)))
4553 ;; Autoload Column View Code
4555 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4556 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4557 (declare-function org-columns-compute "org-colview" (property))
4559 (org-autoload (if (featurep 'xemacs) "org-colview-xemacs" "org-colview")
4560 '(org-columns-number-to-string
4561 org-columns-get-format-and-top-level
4562 org-columns-compute
4563 org-columns-remove-overlays))
4565 ;; Autoload ID code
4567 (declare-function org-id-store-link "org-id")
4568 (declare-function org-id-locations-load "org-id")
4569 (declare-function org-id-locations-save "org-id")
4570 (defvar org-id-track-globally)
4571 (org-autoload "org-id"
4572 '(org-id-new
4573 org-id-copy
4574 org-id-get-with-outline-path-completion
4575 org-id-get-with-outline-drilling))
4577 ;;; Variables for pre-computed regular expressions, all buffer local
4579 (defvar org-drawer-regexp "^[ \t]*:PROPERTIES:[ \t]*$"
4580 "Matches first line of a hidden block.")
4581 (make-variable-buffer-local 'org-drawer-regexp)
4582 (defvar org-todo-regexp nil
4583 "Matches any of the TODO state keywords.")
4584 (make-variable-buffer-local 'org-todo-regexp)
4585 (defvar org-not-done-regexp nil
4586 "Matches any of the TODO state keywords except the last one.")
4587 (make-variable-buffer-local 'org-not-done-regexp)
4588 (defvar org-not-done-heading-regexp nil
4589 "Matches a TODO headline that is not done.")
4590 (make-variable-buffer-local 'org-not-done-regexp)
4591 (defvar org-todo-line-regexp nil
4592 "Matches a headline and puts TODO state into group 2 if present.")
4593 (make-variable-buffer-local 'org-todo-line-regexp)
4594 (defvar org-complex-heading-regexp nil
4595 "Matches a headline and puts everything into groups:
4596 group 1: the stars
4597 group 2: The todo keyword, maybe
4598 group 3: Priority cookie
4599 group 4: True headline
4600 group 5: Tags")
4601 (make-variable-buffer-local 'org-complex-heading-regexp)
4602 (defvar org-complex-heading-regexp-format nil
4603 "Printf format to make regexp to match an exact headline.
4604 This regexp will match the headline of any node which has the
4605 exact headline text that is put into the format, but may have any
4606 TODO state, priority and tags.")
4607 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4608 (defvar org-todo-line-tags-regexp nil
4609 "Matches a headline and puts TODO state into group 2 if present.
4610 Also put tags into group 4 if tags are present.")
4611 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4612 (defvar org-ds-keyword-length 12
4613 "Maximum length of the DEADLINE and SCHEDULED keywords.")
4614 (make-variable-buffer-local 'org-ds-keyword-length)
4615 (defvar org-deadline-regexp nil
4616 "Matches the DEADLINE keyword.")
4617 (make-variable-buffer-local 'org-deadline-regexp)
4618 (defvar org-deadline-time-regexp nil
4619 "Matches the DEADLINE keyword together with a time stamp.")
4620 (make-variable-buffer-local 'org-deadline-time-regexp)
4621 (defvar org-deadline-time-hour-regexp nil
4622 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
4623 (make-variable-buffer-local 'org-deadline-time-hour-regexp)
4624 (defvar org-deadline-line-regexp nil
4625 "Matches the DEADLINE keyword and the rest of the line.")
4626 (make-variable-buffer-local 'org-deadline-line-regexp)
4627 (defvar org-scheduled-regexp nil
4628 "Matches the SCHEDULED keyword.")
4629 (make-variable-buffer-local 'org-scheduled-regexp)
4630 (defvar org-scheduled-time-regexp nil
4631 "Matches the SCHEDULED keyword together with a time stamp.")
4632 (make-variable-buffer-local 'org-scheduled-time-regexp)
4633 (defvar org-scheduled-time-hour-regexp nil
4634 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
4635 (make-variable-buffer-local 'org-scheduled-time-hour-regexp)
4636 (defvar org-closed-time-regexp nil
4637 "Matches the CLOSED keyword together with a time stamp.")
4638 (make-variable-buffer-local 'org-closed-time-regexp)
4640 (defvar org-keyword-time-regexp nil
4641 "Matches any of the 4 keywords, together with the time stamp.")
4642 (make-variable-buffer-local 'org-keyword-time-regexp)
4643 (defvar org-keyword-time-not-clock-regexp nil
4644 "Matches any of the 3 keywords, together with the time stamp.")
4645 (make-variable-buffer-local 'org-keyword-time-not-clock-regexp)
4646 (defvar org-maybe-keyword-time-regexp nil
4647 "Matches a timestamp, possibly preceded by a keyword.")
4648 (make-variable-buffer-local 'org-maybe-keyword-time-regexp)
4649 (defvar org-all-time-keywords nil
4650 "List of time keywords.")
4651 (make-variable-buffer-local 'org-all-time-keywords)
4653 (defconst org-plain-time-of-day-regexp
4654 (concat
4655 "\\(\\<[012]?[0-9]"
4656 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4657 "\\(--?"
4658 "\\(\\<[012]?[0-9]"
4659 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4660 "\\)?")
4661 "Regular expression to match a plain time or time range.
4662 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4663 groups carry important information:
4664 0 the full match
4665 1 the first time, range or not
4666 8 the second time, if it is a range.")
4668 (defconst org-plain-time-extension-regexp
4669 (concat
4670 "\\(\\<[012]?[0-9]"
4671 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4672 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4673 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4674 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4675 groups carry important information:
4676 0 the full match
4677 7 hours of duration
4678 9 minutes of duration")
4680 (defconst org-stamp-time-of-day-regexp
4681 (concat
4682 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4683 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4684 "\\(--?"
4685 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4686 "Regular expression to match a timestamp time or time range.
4687 After a match, the following groups carry important information:
4688 0 the full match
4689 1 date plus weekday, for back referencing to make sure both times are on the same day
4690 2 the first time, range or not
4691 4 the second time, if it is a range.")
4693 (defconst org-startup-options
4694 '(("fold" org-startup-folded t)
4695 ("overview" org-startup-folded t)
4696 ("nofold" org-startup-folded nil)
4697 ("showall" org-startup-folded nil)
4698 ("showeverything" org-startup-folded showeverything)
4699 ("content" org-startup-folded content)
4700 ("indent" org-startup-indented t)
4701 ("noindent" org-startup-indented nil)
4702 ("hidestars" org-hide-leading-stars t)
4703 ("showstars" org-hide-leading-stars nil)
4704 ("odd" org-odd-levels-only t)
4705 ("oddeven" org-odd-levels-only nil)
4706 ("align" org-startup-align-all-tables t)
4707 ("noalign" org-startup-align-all-tables nil)
4708 ("inlineimages" org-startup-with-inline-images t)
4709 ("noinlineimages" org-startup-with-inline-images nil)
4710 ("latexpreview" org-startup-with-latex-preview t)
4711 ("nolatexpreview" org-startup-with-latex-preview nil)
4712 ("customtime" org-display-custom-times t)
4713 ("logdone" org-log-done time)
4714 ("lognotedone" org-log-done note)
4715 ("nologdone" org-log-done nil)
4716 ("lognoteclock-out" org-log-note-clock-out t)
4717 ("nolognoteclock-out" org-log-note-clock-out nil)
4718 ("logrepeat" org-log-repeat state)
4719 ("lognoterepeat" org-log-repeat note)
4720 ("logdrawer" org-log-into-drawer t)
4721 ("nologdrawer" org-log-into-drawer nil)
4722 ("logstatesreversed" org-log-states-order-reversed t)
4723 ("nologstatesreversed" org-log-states-order-reversed nil)
4724 ("nologrepeat" org-log-repeat nil)
4725 ("logreschedule" org-log-reschedule time)
4726 ("lognotereschedule" org-log-reschedule note)
4727 ("nologreschedule" org-log-reschedule nil)
4728 ("logredeadline" org-log-redeadline time)
4729 ("lognoteredeadline" org-log-redeadline note)
4730 ("nologredeadline" org-log-redeadline nil)
4731 ("logrefile" org-log-refile time)
4732 ("lognoterefile" org-log-refile note)
4733 ("nologrefile" org-log-refile nil)
4734 ("fninline" org-footnote-define-inline t)
4735 ("nofninline" org-footnote-define-inline nil)
4736 ("fnlocal" org-footnote-section nil)
4737 ("fnauto" org-footnote-auto-label t)
4738 ("fnprompt" org-footnote-auto-label nil)
4739 ("fnconfirm" org-footnote-auto-label confirm)
4740 ("fnplain" org-footnote-auto-label plain)
4741 ("fnadjust" org-footnote-auto-adjust t)
4742 ("nofnadjust" org-footnote-auto-adjust nil)
4743 ("constcgs" constants-unit-system cgs)
4744 ("constSI" constants-unit-system SI)
4745 ("noptag" org-tag-persistent-alist nil)
4746 ("hideblocks" org-hide-block-startup t)
4747 ("nohideblocks" org-hide-block-startup nil)
4748 ("beamer" org-startup-with-beamer-mode t)
4749 ("entitiespretty" org-pretty-entities t)
4750 ("entitiesplain" org-pretty-entities nil))
4751 "Variable associated with STARTUP options for org-mode.
4752 Each element is a list of three items: the startup options (as written
4753 in the #+STARTUP line), the corresponding variable, and the value to set
4754 this variable to if the option is found. An optional forth element PUSH
4755 means to push this value onto the list in the variable.")
4757 (defun org-update-property-plist (key val props)
4758 "Update PROPS with KEY and VAL."
4759 (let* ((appending (string= "+" (substring key (- (length key) 1))))
4760 (key (if appending (substring key 0 (- (length key) 1)) key))
4761 (remainder (org-remove-if (lambda (p) (string= (car p) key)) props))
4762 (previous (cdr (assoc key props))))
4763 (if appending
4764 (cons (cons key (if previous (concat previous " " val) val)) remainder)
4765 (cons (cons key val) remainder))))
4767 (defconst org-block-regexp
4768 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
4769 "Regular expression for hiding blocks.")
4770 (defconst org-heading-keyword-regexp-format
4771 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
4772 "Printf format for a regexp matching a headline with some keyword.
4773 This regexp will match the headline of any node which has the
4774 exact keyword that is put into the format. The keyword isn't in
4775 any group by default, but the stars and the body are.")
4776 (defconst org-heading-keyword-maybe-regexp-format
4777 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
4778 "Printf format for a regexp matching a headline, possibly with some keyword.
4779 This regexp can match any headline with the specified keyword, or
4780 without a keyword. The keyword isn't in any group by default,
4781 but the stars and the body are.")
4783 (defcustom org-group-tags t
4784 "When non-nil (the default), use group tags.
4785 This can be turned on/off through `org-toggle-tags-groups'."
4786 :group 'org-tags
4787 :group 'org-startup
4788 :type 'boolean)
4790 (defun org-toggle-tags-groups ()
4791 "Toggle support for group tags.
4792 Support for group tags is controlled by the option
4793 `org-group-tags', which is non-nil by default."
4794 (interactive)
4795 (setq org-group-tags (not org-group-tags))
4796 (cond ((and (derived-mode-p 'org-agenda-mode)
4797 org-group-tags)
4798 (org-agenda-redo))
4799 ((derived-mode-p 'org-mode)
4800 (let ((org-inhibit-startup t)) (org-mode))))
4801 (message "Groups tags support has been turned %s"
4802 (if org-group-tags "on" "off")))
4804 (defun org-set-regexps-and-options-for-tags ()
4805 "Precompute variables used for tags."
4806 (when (derived-mode-p 'org-mode)
4807 (org-set-local 'org-file-tags nil)
4808 (let ((re (org-make-options-regexp '("FILETAGS" "TAGS")))
4809 (splitre "[ \t]+")
4810 (start 0)
4811 tags ftags key value)
4812 (save-excursion
4813 (save-restriction
4814 (widen)
4815 (goto-char (point-min))
4816 (while (re-search-forward re nil t)
4817 (setq key (upcase (org-match-string-no-properties 1))
4818 value (org-match-string-no-properties 2))
4819 (if (stringp value) (setq value (org-trim value)))
4820 (cond
4821 ((equal key "TAGS")
4822 (setq tags (append tags (if tags '("\\n") nil)
4823 (org-split-string value splitre))))
4824 ((equal key "FILETAGS")
4825 (when (string-match "\\S-" value)
4826 (setq ftags
4827 (append
4828 ftags
4829 (apply 'append
4830 (mapcar (lambda (x) (org-split-string x ":"))
4831 (org-split-string value)))))))))))
4832 ;; Process the file tags.
4833 (and ftags (org-set-local 'org-file-tags
4834 (mapcar 'org-add-prop-inherited ftags)))
4835 (org-set-local 'org-tag-groups-alist nil)
4836 ;; Process the tags.
4837 ;; FIXME
4838 (when tags
4839 (let (e tgs g)
4840 (while (setq e (pop tags))
4841 (cond
4842 ((equal e "{")
4843 (progn (push '(:startgroup) tgs)
4844 (when (equal (nth 1 tags) ":")
4845 (push (list (replace-regexp-in-string
4846 "(.+)$" "" (nth 0 tags)))
4847 org-tag-groups-alist)
4848 (setq g 0))))
4849 ((equal e ":") (push '(:grouptags) tgs))
4850 ((equal e "}") (push '(:endgroup) tgs) (if g (setq g nil)))
4851 ((equal e "\\n") (push '(:newline) tgs))
4852 ((string-match (org-re "^\\([[:alnum:]_@#%]+\\)(\\(.\\))$") e)
4853 (push (cons (match-string 1 e)
4854 (string-to-char (match-string 2 e))) tgs)
4855 (if (and g (> g 0))
4856 (setcar org-tag-groups-alist
4857 (append (car org-tag-groups-alist)
4858 (list (match-string 1 e)))))
4859 (if g (setq g (1+ g))))
4860 (t (push (list e) tgs)
4861 (if (and g (> g 0))
4862 (setcar org-tag-groups-alist
4863 (append (car org-tag-groups-alist) (list e))))
4864 (if g (setq g (1+ g))))))
4865 (org-set-local 'org-tag-alist nil)
4866 (while (setq e (pop tgs))
4867 (or (and (stringp (car e))
4868 (assoc (car e) org-tag-alist))
4869 (push e org-tag-alist)))
4870 ;; Return a list with tag variables
4871 (list org-file-tags org-tag-alist org-tag-groups-alist))))))
4873 (defvar org-ota nil)
4874 (defun org-set-regexps-and-options ()
4875 "Precompute regular expressions used in the current buffer."
4876 (when (derived-mode-p 'org-mode)
4877 (org-set-local 'org-todo-kwd-alist nil)
4878 (org-set-local 'org-todo-key-alist nil)
4879 (org-set-local 'org-todo-key-trigger nil)
4880 (org-set-local 'org-todo-keywords-1 nil)
4881 (org-set-local 'org-done-keywords nil)
4882 (org-set-local 'org-todo-heads nil)
4883 (org-set-local 'org-todo-sets nil)
4884 (org-set-local 'org-todo-log-states nil)
4885 (org-set-local 'org-file-properties nil)
4886 (let ((re (org-make-options-regexp
4887 '("CATEGORY" "TODO" "COLUMNS" "STARTUP" "ARCHIVE"
4888 "LINK" "PRIORITIES" "CONSTANTS" "PROPERTY" "DRAWERS"
4889 "SETUPFILE" "OPTIONS")
4890 "\\(?:[a-zA-Z][0-9a-zA-Z_]*_TODO\\)"))
4891 (splitre "[ \t]+")
4892 (scripts org-use-sub-superscripts)
4893 kwds kws0 kwsa key log value cat arch const links hw dws
4894 tail sep kws1 prio props drawers ext-setup-or-nil setup-contents
4895 (start 0))
4896 (save-excursion
4897 (save-restriction
4898 (widen)
4899 (goto-char (point-min))
4900 (while
4901 (or (and
4902 ext-setup-or-nil
4903 (not org-ota)
4904 (let (ret)
4905 (with-temp-buffer
4906 (insert ext-setup-or-nil)
4907 (let ((major-mode 'org-mode) org-ota)
4908 (setq ret (save-match-data
4909 (org-set-regexps-and-options-for-tags)))))
4910 ;; Append setupfile tags to existing tags
4911 (setq org-ota t)
4912 (setq org-file-tags
4913 (delq nil (append org-file-tags (nth 0 ret)))
4914 org-tag-alist
4915 (delq nil (append org-tag-alist (nth 1 ret)))
4916 org-tag-groups-alist
4917 (delq nil (append org-tag-groups-alist (nth 2 ret))))))
4918 (and ext-setup-or-nil
4919 (string-match re ext-setup-or-nil start)
4920 (setq start (match-end 0)))
4921 (and (setq ext-setup-or-nil nil start 0)
4922 (re-search-forward re nil t)))
4923 (setq key (upcase (match-string 1 ext-setup-or-nil))
4924 value (org-match-string-no-properties 2 ext-setup-or-nil))
4925 (if (stringp value) (setq value (org-trim value)))
4926 (cond
4927 ((equal key "CATEGORY")
4928 (setq cat value))
4929 ((member key '("SEQ_TODO" "TODO"))
4930 (push (cons 'sequence (org-split-string value splitre)) kwds))
4931 ((equal key "TYP_TODO")
4932 (push (cons 'type (org-split-string value splitre)) kwds))
4933 ((string-match "\\`\\([a-zA-Z][0-9a-zA-Z_]*\\)_TODO\\'" key)
4934 ;; general TODO-like setup
4935 (push (cons (intern (downcase (match-string 1 key)))
4936 (org-split-string value splitre)) kwds))
4937 ((equal key "COLUMNS")
4938 (org-set-local 'org-columns-default-format value))
4939 ((equal key "LINK")
4940 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value)
4941 (push (cons (match-string 1 value)
4942 (org-trim (match-string 2 value)))
4943 links)))
4944 ((equal key "PRIORITIES")
4945 (setq prio (org-split-string value " +")))
4946 ((equal key "PROPERTY")
4947 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
4948 (setq props (org-update-property-plist (match-string 1 value)
4949 (match-string 2 value)
4950 props))))
4951 ((equal key "DRAWERS")
4952 (setq drawers (delete-dups (append org-drawers (org-split-string value splitre)))))
4953 ((equal key "CONSTANTS")
4954 (org-table-set-constants))
4955 ((equal key "STARTUP")
4956 (let ((opts (org-split-string value splitre))
4957 l var val)
4958 (while (setq l (pop opts))
4959 (when (setq l (assoc l org-startup-options))
4960 (setq var (nth 1 l) val (nth 2 l))
4961 (if (not (nth 3 l))
4962 (set (make-local-variable var) val)
4963 (if (not (listp (symbol-value var)))
4964 (set (make-local-variable var) nil))
4965 (set (make-local-variable var) (symbol-value var))
4966 (add-to-list var val))))))
4967 ((equal key "ARCHIVE")
4968 (setq arch value)
4969 (remove-text-properties 0 (length arch)
4970 '(face t fontified t) arch))
4971 ((equal key "OPTIONS")
4972 (if (string-match "\\([ \t]\\|\\`\\)\\^:\\(t\\|nil\\|{}\\)" value)
4973 (setq scripts (read (match-string 2 value)))))
4974 ((and (equal key "SETUPFILE")
4975 ;; Prevent checking in Gnus messages
4976 (not buffer-read-only))
4977 (setq setup-contents (org-file-contents
4978 (expand-file-name
4979 (org-remove-double-quotes value))
4980 'noerror))
4981 (if (not ext-setup-or-nil)
4982 (setq ext-setup-or-nil setup-contents start 0)
4983 (setq ext-setup-or-nil
4984 (concat (substring ext-setup-or-nil 0 start)
4985 "\n" setup-contents "\n"
4986 (substring ext-setup-or-nil start)))))))
4987 ;; search for property blocks
4988 (goto-char (point-min))
4989 (while (re-search-forward org-block-regexp nil t)
4990 (when (equal "PROPERTY" (upcase (match-string 1)))
4991 (setq value (replace-regexp-in-string
4992 "[\n\r]" " " (match-string 4)))
4993 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
4994 (setq props (org-update-property-plist (match-string 1 value)
4995 (match-string 2 value)
4996 props)))))))
4997 (org-set-local 'org-use-sub-superscripts scripts)
4998 (when cat
4999 (org-set-local 'org-category (intern cat))
5000 (push (cons "CATEGORY" cat) props))
5001 (when prio
5002 (if (< (length prio) 3) (setq prio '("A" "C" "B")))
5003 (setq prio (mapcar 'string-to-char prio))
5004 (org-set-local 'org-highest-priority (nth 0 prio))
5005 (org-set-local 'org-lowest-priority (nth 1 prio))
5006 (org-set-local 'org-default-priority (nth 2 prio)))
5007 (and props (org-set-local 'org-file-properties (nreverse props)))
5008 (and drawers (org-set-local 'org-drawers drawers))
5009 (and arch (org-set-local 'org-archive-location arch))
5010 (and links (setq org-link-abbrev-alist-local (nreverse links)))
5011 ;; Process the TODO keywords
5012 (unless kwds
5013 ;; Use the global values as if they had been given locally.
5014 (setq kwds (default-value 'org-todo-keywords))
5015 (if (stringp (car kwds))
5016 (setq kwds (list (cons org-todo-interpretation
5017 (default-value 'org-todo-keywords)))))
5018 (setq kwds (reverse kwds)))
5019 (setq kwds (nreverse kwds))
5020 (let (inter kws kw)
5021 (while (setq kws (pop kwds))
5022 (let ((kws (or
5023 (run-hook-with-args-until-success
5024 'org-todo-setup-filter-hook kws)
5025 kws)))
5026 (setq inter (pop kws) sep (member "|" kws)
5027 kws0 (delete "|" (copy-sequence kws))
5028 kwsa nil
5029 kws1 (mapcar
5030 (lambda (x)
5031 ;; 1 2
5032 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x)
5033 (progn
5034 (setq kw (match-string 1 x)
5035 key (and (match-end 2) (match-string 2 x))
5036 log (org-extract-log-state-settings x))
5037 (push (cons kw (and key (string-to-char key))) kwsa)
5038 (and log (push log org-todo-log-states))
5040 (error "Invalid TODO keyword %s" x)))
5041 kws0)
5042 kwsa (if kwsa (append '((:startgroup))
5043 (nreverse kwsa)
5044 '((:endgroup))))
5045 hw (car kws1)
5046 dws (if sep (org-remove-keyword-keys (cdr sep)) (last kws1))
5047 tail (list inter hw (car dws) (org-last dws))))
5048 (add-to-list 'org-todo-heads hw 'append)
5049 (push kws1 org-todo-sets)
5050 (setq org-done-keywords (append org-done-keywords dws nil))
5051 (setq org-todo-key-alist (append org-todo-key-alist kwsa))
5052 (mapc (lambda (x) (push (cons x tail) org-todo-kwd-alist)) kws1)
5053 (setq org-todo-keywords-1 (append org-todo-keywords-1 kws1 nil)))
5054 (setq org-todo-sets (nreverse org-todo-sets)
5055 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5056 org-todo-key-trigger (delq nil (mapcar 'cdr org-todo-key-alist))
5057 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist)))
5058 ;; Compute the regular expressions and other local variables.
5059 ;; Using `org-outline-regexp-bol' would complicate them much,
5060 ;; because of the fixed white space at the end of that string.
5061 (if (not org-done-keywords)
5062 (setq org-done-keywords (and org-todo-keywords-1
5063 (list (org-last org-todo-keywords-1)))))
5064 (setq org-ds-keyword-length (+ 2 (max (length org-deadline-string)
5065 (length org-scheduled-string)
5066 (length org-clock-string)
5067 (length org-closed-string)))
5068 org-drawer-regexp
5069 (concat "^[ \t]*:\\("
5070 (mapconcat 'regexp-quote org-drawers "\\|")
5071 "\\):[ \t]*$")
5072 org-not-done-keywords
5073 (org-delete-all org-done-keywords (copy-sequence org-todo-keywords-1))
5074 org-todo-regexp
5075 (concat "\\("
5076 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
5077 "\\)")
5078 org-not-done-regexp
5079 (concat "\\("
5080 (mapconcat 'regexp-quote org-not-done-keywords "\\|")
5081 "\\)")
5082 org-not-done-heading-regexp
5083 (format org-heading-keyword-regexp-format org-not-done-regexp)
5084 org-todo-line-regexp
5085 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5086 org-complex-heading-regexp
5087 (concat "^\\(\\*+\\)"
5088 "\\(?: +" org-todo-regexp "\\)?"
5089 "\\(?: +\\(\\[#.\\]\\)\\)?"
5090 "\\(?: +\\(.*?\\)\\)??"
5091 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5092 "[ \t]*$")
5093 org-complex-heading-regexp-format
5094 (concat "^\\(\\*+\\)"
5095 "\\(?: +" org-todo-regexp "\\)?"
5096 "\\(?: +\\(\\[#.\\]\\)\\)?"
5097 "\\(?: +"
5098 ;; Stats cookies can be stuck to body.
5099 "\\(?:\\[[0-9%%/]+\\] *\\)?"
5100 "\\(%s\\)"
5101 "\\(?: *\\[[0-9%%/]+\\]\\)?"
5102 "\\)"
5103 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5104 "[ \t]*$")
5105 org-todo-line-tags-regexp
5106 (concat "^\\(\\*+\\)"
5107 "\\(?: +" org-todo-regexp "\\)?"
5108 "\\(?: +\\(.*?\\)\\)??"
5109 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5110 "[ \t]*$")
5111 org-deadline-regexp (concat "\\<" org-deadline-string)
5112 org-deadline-time-regexp
5113 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
5114 org-deadline-time-hour-regexp
5115 (concat "\\<" org-deadline-string
5116 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
5117 org-deadline-line-regexp
5118 (concat "\\<\\(" org-deadline-string "\\).*")
5119 org-scheduled-regexp
5120 (concat "\\<" org-scheduled-string)
5121 org-scheduled-time-regexp
5122 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
5123 org-scheduled-time-hour-regexp
5124 (concat "\\<" org-scheduled-string
5125 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
5126 org-closed-time-regexp
5127 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
5128 org-keyword-time-regexp
5129 (concat "\\<\\(" org-scheduled-string
5130 "\\|" org-deadline-string
5131 "\\|" org-closed-string
5132 "\\|" org-clock-string "\\)"
5133 " *[[<]\\([^]>]+\\)[]>]")
5134 org-keyword-time-not-clock-regexp
5135 (concat "\\<\\(" org-scheduled-string
5136 "\\|" org-deadline-string
5137 "\\|" org-closed-string
5138 "\\)"
5139 " *[[<]\\([^]>]+\\)[]>]")
5140 org-maybe-keyword-time-regexp
5141 (concat "\\(\\<\\(" org-scheduled-string
5142 "\\|" org-deadline-string
5143 "\\|" org-closed-string
5144 "\\|" org-clock-string "\\)\\)?"
5145 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]\\|<%%([^\r\n>]*>\\)")
5146 org-all-time-keywords
5147 (mapcar (lambda (w) (substring w 0 -1))
5148 (list org-scheduled-string org-deadline-string
5149 org-clock-string org-closed-string)))
5150 (setq org-ota nil)
5151 (org-compute-latex-and-related-regexp))))
5153 (defun org-file-contents (file &optional noerror)
5154 "Return the contents of FILE, as a string."
5155 (if (or (not file)
5156 (not (file-readable-p file)))
5157 (if noerror
5158 (message "Cannot read file \"%s\"" file)
5159 (error "Cannot read file \"%s\"" file))
5160 (with-temp-buffer
5161 (insert-file-contents file)
5162 (buffer-string))))
5164 (defun org-extract-log-state-settings (x)
5165 "Extract the log state setting from a TODO keyword string.
5166 This will extract info from a string like \"WAIT(w@/!)\"."
5167 (let (kw key log1 log2)
5168 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5169 (setq kw (match-string 1 x)
5170 key (and (match-end 2) (match-string 2 x))
5171 log1 (and (match-end 3) (match-string 3 x))
5172 log2 (and (match-end 4) (match-string 4 x)))
5173 (and (or log1 log2)
5174 (list kw
5175 (and log1 (if (equal log1 "!") 'time 'note))
5176 (and log2 (if (equal log2 "!") 'time 'note)))))))
5178 (defun org-remove-keyword-keys (list)
5179 "Remove a pair of parenthesis at the end of each string in LIST."
5180 (mapcar (lambda (x)
5181 (if (string-match "(.*)$" x)
5182 (substring x 0 (match-beginning 0))
5184 list))
5186 (defun org-assign-fast-keys (alist)
5187 "Assign fast keys to a keyword-key alist.
5188 Respect keys that are already there."
5189 (let (new e (alt ?0))
5190 (while (setq e (pop alist))
5191 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5192 (cdr e)) ;; Key already assigned.
5193 (push e new)
5194 (let ((clist (string-to-list (downcase (car e))))
5195 (used (append new alist)))
5196 (when (= (car clist) ?@)
5197 (pop clist))
5198 (while (and clist (rassoc (car clist) used))
5199 (pop clist))
5200 (unless clist
5201 (while (rassoc alt used)
5202 (incf alt)))
5203 (push (cons (car e) (or (car clist) alt)) new))))
5204 (nreverse new)))
5206 ;;; Some variables used in various places
5208 (defvar org-window-configuration nil
5209 "Used in various places to store a window configuration.")
5210 (defvar org-selected-window nil
5211 "Used in various places to store a window configuration.")
5212 (defvar org-finish-function nil
5213 "Function to be called when `C-c C-c' is used.
5214 This is for getting out of special buffers like capture.")
5217 ;; FIXME: Occasionally check by commenting these, to make sure
5218 ;; no other functions uses these, forgetting to let-bind them.
5219 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5220 (defvar org-last-state)
5221 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5223 ;; Defined somewhere in this file, but used before definition.
5224 (defvar org-entities) ;; defined in org-entities.el
5225 (defvar org-struct-menu)
5226 (defvar org-org-menu)
5227 (defvar org-tbl-menu)
5229 ;;;; Define the Org-mode
5231 ;; We use a before-change function to check if a table might need
5232 ;; an update.
5233 (defvar org-table-may-need-update t
5234 "Indicates that a table might need an update.
5235 This variable is set by `org-before-change-function'.
5236 `org-table-align' sets it back to nil.")
5237 (defun org-before-change-function (beg end)
5238 "Every change indicates that a table might need an update."
5239 (setq org-table-may-need-update t))
5240 (defvar org-mode-map)
5241 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
5242 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5243 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5244 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5245 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5246 (defvar org-table-buffer-is-an nil)
5248 (defvar bidi-paragraph-direction)
5249 (defvar buffer-face-mode-face)
5251 (require 'outline)
5252 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5253 (error "Conflict with outdated version of allout.el. Load org.el before allout.el, or upgrade to newer allout, for example by switching to Emacs 22"))
5254 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5256 ;; Other stuff we need.
5257 (require 'time-date)
5258 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5259 (require 'easymenu)
5260 (require 'overlay)
5262 ;; (require 'org-macs) moved higher up in the file before it is first used
5263 (require 'org-entities)
5264 ;; (require 'org-compat) moved higher up in the file before it is first used
5265 (require 'org-faces)
5266 (require 'org-list)
5267 (require 'org-pcomplete)
5268 (require 'org-src)
5269 (require 'org-footnote)
5270 (require 'org-macro)
5272 ;; babel
5273 (require 'ob)
5275 ;;;###autoload
5276 (define-derived-mode org-mode outline-mode "Org"
5277 "Outline-based notes management and organizer, alias
5278 \"Carsten's outline-mode for keeping track of everything.\"
5280 Org-mode develops organizational tasks around a NOTES file which
5281 contains information about projects as plain text. Org-mode is
5282 implemented on top of outline-mode, which is ideal to keep the content
5283 of large files well structured. It supports ToDo items, deadlines and
5284 time stamps, which magically appear in the diary listing of the Emacs
5285 calendar. Tables are easily created with a built-in table editor.
5286 Plain text URL-like links connect to websites, emails (VM), Usenet
5287 messages (Gnus), BBDB entries, and any files related to the project.
5288 For printing and sharing of notes, an Org-mode file (or a part of it)
5289 can be exported as a structured ASCII or HTML file.
5291 The following commands are available:
5293 \\{org-mode-map}"
5295 ;; Get rid of Outline menus, they are not needed
5296 ;; Need to do this here because define-derived-mode sets up
5297 ;; the keymap so late. Still, it is a waste to call this each time
5298 ;; we switch another buffer into org-mode.
5299 (if (featurep 'xemacs)
5300 (when (boundp 'outline-mode-menu-heading)
5301 ;; Assume this is Greg's port, it uses easymenu
5302 (easy-menu-remove outline-mode-menu-heading)
5303 (easy-menu-remove outline-mode-menu-show)
5304 (easy-menu-remove outline-mode-menu-hide))
5305 (define-key org-mode-map [menu-bar headings] 'undefined)
5306 (define-key org-mode-map [menu-bar hide] 'undefined)
5307 (define-key org-mode-map [menu-bar show] 'undefined))
5309 (org-load-modules-maybe)
5310 (easy-menu-add org-org-menu)
5311 (easy-menu-add org-tbl-menu)
5312 (org-install-agenda-files-menu)
5313 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5314 (add-to-invisibility-spec '(org-cwidth))
5315 (add-to-invisibility-spec '(org-hide-block . t))
5316 (when (featurep 'xemacs)
5317 (org-set-local 'line-move-ignore-invisible t))
5318 (org-set-local 'outline-regexp org-outline-regexp)
5319 (org-set-local 'outline-level 'org-outline-level)
5320 (setq bidi-paragraph-direction 'left-to-right)
5321 ;; FIXME Circumvent a bug in outline.el (Emacs <24.4)
5322 (set (make-local-variable 'paragraph-start) "\f\\|[ \t]*$\\|\\*+ ")
5323 (when (and org-ellipsis
5324 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5325 (fboundp 'make-glyph-code))
5326 (unless org-display-table
5327 (setq org-display-table (make-display-table)))
5328 (set-display-table-slot
5329 org-display-table 4
5330 (vconcat (mapcar
5331 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5332 org-ellipsis)))
5333 (if (stringp org-ellipsis) org-ellipsis "..."))))
5334 (setq buffer-display-table org-display-table))
5335 (org-set-regexps-and-options-for-tags)
5336 (org-set-regexps-and-options)
5337 (org-set-font-lock-defaults)
5338 (when (and org-tag-faces (not org-tags-special-faces-re))
5339 ;; tag faces set outside customize.... force initialization.
5340 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5341 ;; Calc embedded
5342 (org-set-local 'calc-embedded-open-mode "# ")
5343 ;; Modify a few syntax entries
5344 (modify-syntax-entry ?@ "w")
5345 (modify-syntax-entry ?\" "\"")
5346 (if org-startup-truncated (setq truncate-lines t))
5347 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5348 (org-set-local 'font-lock-unfontify-region-function
5349 'org-unfontify-region)
5350 ;; Activate before-change-function
5351 (org-set-local 'org-table-may-need-update t)
5352 (org-add-hook 'before-change-functions 'org-before-change-function nil
5353 'local)
5354 ;; Check for running clock before killing a buffer
5355 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5356 ;; Initialize macros templates.
5357 (org-macro-initialize-templates)
5358 ;; Initialize radio targets.
5359 (org-update-radio-target-regexp)
5360 ;; Indentation.
5361 (org-set-local 'indent-line-function 'org-indent-line)
5362 (org-set-local 'indent-region-function 'org-indent-region)
5363 ;; Filling and auto-filling.
5364 (org-setup-filling)
5365 ;; Comments.
5366 (org-setup-comments-handling)
5367 ;; Beginning/end of defun
5368 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5369 (org-set-local 'end-of-defun-function 'org-forward-element)
5370 ;; Next error for sparse trees
5371 (org-set-local 'next-error-function 'org-occur-next-match)
5372 ;; Make sure dependence stuff works reliably, even for users who set it
5373 ;; too late :-(
5374 (if org-enforce-todo-dependencies
5375 (add-hook 'org-blocker-hook
5376 'org-block-todo-from-children-or-siblings-or-parent)
5377 (remove-hook 'org-blocker-hook
5378 'org-block-todo-from-children-or-siblings-or-parent))
5379 (if org-enforce-todo-checkbox-dependencies
5380 (add-hook 'org-blocker-hook
5381 'org-block-todo-from-checkboxes)
5382 (remove-hook 'org-blocker-hook
5383 'org-block-todo-from-checkboxes))
5385 ;; Align options lines
5386 (org-set-local
5387 'align-mode-rules-list
5388 '((org-in-buffer-settings
5389 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5390 (modes . '(org-mode)))))
5392 ;; Imenu
5393 (org-set-local 'imenu-create-index-function
5394 'org-imenu-get-tree)
5396 ;; Make isearch reveal context
5397 (if (or (featurep 'xemacs)
5398 (not (boundp 'outline-isearch-open-invisible-function)))
5399 ;; Emacs 21 and XEmacs make use of the hook
5400 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5401 ;; Emacs 22 deals with this through a special variable
5402 (org-set-local 'outline-isearch-open-invisible-function
5403 (lambda (&rest ignore) (org-show-context 'isearch)))
5404 (org-add-hook 'isearch-mode-end-hook 'org-fix-ellipsis-at-bol 'append 'local))
5406 ;; Setup the pcomplete hooks
5407 (set (make-local-variable 'pcomplete-command-completion-function)
5408 'org-pcomplete-initial)
5409 (set (make-local-variable 'pcomplete-command-name-function)
5410 'org-command-at-point)
5411 (set (make-local-variable 'pcomplete-default-completion-function)
5412 'ignore)
5413 (set (make-local-variable 'pcomplete-parse-arguments-function)
5414 'org-parse-arguments)
5415 (set (make-local-variable 'pcomplete-termination-string) "")
5416 (when (>= emacs-major-version 23)
5417 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5419 ;; If empty file that did not turn on org-mode automatically, make it to.
5420 (if (and org-insert-mode-line-in-empty-file
5421 (org-called-interactively-p 'any)
5422 (= (point-min) (point-max)))
5423 (insert "# -*- mode: org -*-\n\n"))
5424 (unless org-inhibit-startup
5425 (org-unmodified
5426 (and org-startup-with-beamer-mode (org-beamer-mode))
5427 (when org-startup-align-all-tables
5428 (org-table-map-tables 'org-table-align 'quietly))
5429 (when org-startup-with-inline-images
5430 (org-display-inline-images))
5431 (when org-startup-with-latex-preview
5432 (org-preview-latex-fragment))
5433 (unless org-inhibit-startup-visibility-stuff
5434 (org-set-startup-visibility))))
5435 ;; Try to set org-hide correctly
5436 (set-face-foreground 'org-hide (org-find-invisible-foreground)))
5438 ;; Update `customize-package-emacs-version-alist'
5439 (add-to-list 'customize-package-emacs-version-alist
5440 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5441 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5442 ("8.0" . "24.4")))
5444 (defvar org-mode-transpose-word-syntax-table
5445 (let ((st (make-syntax-table)))
5446 (mapc (lambda(c) (modify-syntax-entry
5447 (string-to-char (car c)) "w p" st))
5448 org-emphasis-alist)
5449 st))
5451 (when (fboundp 'abbrev-table-put)
5452 (abbrev-table-put org-mode-abbrev-table
5453 :parents (list text-mode-abbrev-table)))
5455 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
5457 (defsubst org-fix-ellipsis-at-bol ()
5458 (save-excursion (goto-char (window-start)) (recenter 0)))
5460 (defun org-find-invisible-foreground ()
5461 (let ((candidates (remove
5462 "unspecified-bg"
5463 (nconc
5464 (list (face-background 'default)
5465 (face-background 'org-default))
5466 (mapcar
5467 (lambda (alist)
5468 (when (boundp alist)
5469 (cdr (assoc 'background-color (symbol-value alist)))))
5470 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5471 (list (face-foreground 'org-hide))))))
5472 (car (remove nil candidates))))
5474 (defun org-current-time (&optional rounding-minutes past)
5475 "Current time, possibly rounded to ROUNDING-MINUTES.
5476 When ROUNDING-MINUTES is not an integer, fall back on the car of
5477 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5478 the rounding returns a past time."
5479 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5480 (car org-time-stamp-rounding-minutes)))
5481 (time (decode-time)) res)
5482 (if (< r 1)
5483 (current-time)
5484 (setq res
5485 (apply 'encode-time
5486 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5487 (nthcdr 2 time))))
5488 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5489 (seconds-to-time (- (org-float-time res) (* r 60)))
5490 res))))
5492 (defun org-today ()
5493 "Return today date, considering `org-extend-today-until'."
5494 (time-to-days
5495 (time-subtract (current-time)
5496 (list 0 (* 3600 org-extend-today-until) 0))))
5498 ;;;; Font-Lock stuff, including the activators
5500 (defvar org-mouse-map (make-sparse-keymap))
5501 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5502 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5503 (when org-mouse-1-follows-link
5504 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5505 (when org-tab-follows-link
5506 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5507 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5509 (require 'font-lock)
5511 (defconst org-non-link-chars "]\t\n\r<>")
5512 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "news"
5513 "shell" "elisp" "doi" "message"))
5514 (defvar org-link-types-re nil
5515 "Matches a link that has a url-like prefix like \"http:\"")
5516 (defvar org-link-re-with-space nil
5517 "Matches a link with spaces, optional angular brackets around it.")
5518 (defvar org-link-re-with-space2 nil
5519 "Matches a link with spaces, optional angular brackets around it.")
5520 (defvar org-link-re-with-space3 nil
5521 "Matches a link with spaces, only for internal part in bracket links.")
5522 (defvar org-angle-link-re nil
5523 "Matches link with angular brackets, spaces are allowed.")
5524 (defvar org-plain-link-re nil
5525 "Matches plain link, without spaces.")
5526 (defvar org-bracket-link-regexp nil
5527 "Matches a link in double brackets.")
5528 (defvar org-bracket-link-analytic-regexp nil
5529 "Regular expression used to analyze links.
5530 Here is what the match groups contain after a match:
5531 1: http:
5532 2: http
5533 3: path
5534 4: [desc]
5535 5: desc")
5536 (defvar org-bracket-link-analytic-regexp++ nil
5537 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5538 (defvar org-any-link-re nil
5539 "Regular expression matching any link.")
5541 (defconst org-match-sexp-depth 3
5542 "Number of stacked braces for sub/superscript matching.")
5544 (defun org-create-multibrace-regexp (left right n)
5545 "Create a regular expression which will match a balanced sexp.
5546 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5547 as single character strings.
5548 The regexp returned will match the entire expression including the
5549 delimiters. It will also define a single group which contains the
5550 match except for the outermost delimiters. The maximum depth of
5551 stacked delimiters is N. Escaping delimiters is not possible."
5552 (let* ((nothing (concat "[^" left right "]*?"))
5553 (or "\\|")
5554 (re nothing)
5555 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5556 (while (> n 1)
5557 (setq n (1- n)
5558 re (concat re or next)
5559 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5560 (concat left "\\(" re "\\)" right)))
5562 (defvar org-match-substring-regexp
5563 (concat
5564 "\\(\\S-\\)\\([_^]\\)\\("
5565 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5566 "\\|"
5567 "\\(" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5568 "\\|"
5569 "\\(\\(?:\\*\\|[-+]?[^-+*!@#$%^_ \t\r\n,:\"?<>~;./{}=()]+\\)\\)\\)")
5570 "The regular expression matching a sub- or superscript.")
5572 (defvar org-match-substring-with-braces-regexp
5573 (concat
5574 "\\(\\S-\\)\\([_^]\\)\\("
5575 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5576 "\\)")
5577 "The regular expression matching a sub- or superscript, forcing braces.")
5579 (defun org-make-link-regexps ()
5580 "Update the link regular expressions.
5581 This should be called after the variable `org-link-types' has changed."
5582 (setq org-link-types-re
5583 (concat
5584 "\\`\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):")
5585 org-link-re-with-space
5586 (concat
5587 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5588 "\\([^" org-non-link-chars " ]"
5589 "[^" org-non-link-chars "]*"
5590 "[^" org-non-link-chars " ]\\)>?")
5591 org-link-re-with-space2
5592 (concat
5593 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5594 "\\([^" org-non-link-chars " ]"
5595 "[^\t\n\r]*"
5596 "[^" org-non-link-chars " ]\\)>?")
5597 org-link-re-with-space3
5598 (concat
5599 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5600 "\\([^" org-non-link-chars " ]"
5601 "[^\t\n\r]*\\)")
5602 org-angle-link-re
5603 (concat
5604 "<\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5605 "\\([^" org-non-link-chars " ]"
5606 "[^" org-non-link-chars "]*"
5607 "\\)>")
5608 org-plain-link-re
5609 (concat
5610 "\\<\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5611 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5612 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5613 org-bracket-link-regexp
5614 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5615 org-bracket-link-analytic-regexp
5616 (concat
5617 "\\[\\["
5618 "\\(\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):\\)?"
5619 "\\([^]]+\\)"
5620 "\\]"
5621 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5622 "\\]")
5623 org-bracket-link-analytic-regexp++
5624 (concat
5625 "\\[\\["
5626 "\\(\\(" (mapconcat 'regexp-quote (cons "coderef" org-link-types) "\\|") "\\):\\)?"
5627 "\\([^]]+\\)"
5628 "\\]"
5629 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5630 "\\]")
5631 org-any-link-re
5632 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5633 org-angle-link-re "\\)\\|\\("
5634 org-plain-link-re "\\)")))
5636 (org-make-link-regexps)
5638 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
5639 "Regular expression for fast time stamp matching.")
5640 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
5641 "Regular expression for fast time stamp matching.")
5642 (defconst org-ts-regexp0
5643 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
5644 "Regular expression matching time strings for analysis.
5645 This one does not require the space after the date, so it can be used
5646 on a string that terminates immediately after the date.")
5647 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
5648 "Regular expression matching time strings for analysis.")
5649 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
5650 "Regular expression matching time stamps, with groups.")
5651 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
5652 "Regular expression matching time stamps (also [..]), with groups.")
5653 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
5654 "Regular expression matching a time stamp range.")
5655 (defconst org-tr-regexp-both
5656 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
5657 "Regular expression matching a time stamp range.")
5658 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
5659 org-ts-regexp "\\)?")
5660 "Regular expression matching a time stamp or time stamp range.")
5661 (defconst org-tsr-regexp-both
5662 (concat org-ts-regexp-both "\\(--?-?"
5663 org-ts-regexp-both "\\)?")
5664 "Regular expression matching a time stamp or time stamp range.
5665 The time stamps may be either active or inactive.")
5667 (defvar org-emph-face nil)
5669 (defun org-do-emphasis-faces (limit)
5670 "Run through the buffer and add overlays to emphasized strings."
5671 (let (rtn a)
5672 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5673 (if (not (= (char-after (match-beginning 3))
5674 (char-after (match-beginning 4))))
5675 (progn
5676 (setq rtn t)
5677 (setq a (assoc (match-string 3) org-emphasis-alist))
5678 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5679 'face
5680 (nth 1 a))
5681 (and (nth 4 a)
5682 (org-remove-flyspell-overlays-in
5683 (match-beginning 0) (match-end 0)))
5684 (add-text-properties (match-beginning 2) (match-end 2)
5685 '(font-lock-multiline t org-emphasis t))
5686 (when org-hide-emphasis-markers
5687 (add-text-properties (match-end 4) (match-beginning 5)
5688 '(invisible org-link))
5689 (add-text-properties (match-beginning 3) (match-end 3)
5690 '(invisible org-link)))))
5691 (backward-char 1))
5692 rtn))
5694 (defun org-emphasize (&optional char)
5695 "Insert or change an emphasis, i.e. a font like bold or italic.
5696 If there is an active region, change that region to a new emphasis.
5697 If there is no region, just insert the marker characters and position
5698 the cursor between them.
5699 CHAR should be the marker character. If it is a space, it means to
5700 remove the emphasis of the selected region.
5701 If CHAR is not given (for example in an interactive call) it will be
5702 prompted for."
5703 (interactive)
5704 (let ((erc org-emphasis-regexp-components)
5705 (prompt "")
5706 (string "") beg end move c s)
5707 (if (org-region-active-p)
5708 (setq beg (region-beginning) end (region-end)
5709 string (buffer-substring beg end))
5710 (setq move t))
5712 (unless char
5713 (message "Emphasis marker or tag: [%s]"
5714 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5715 (setq char (read-char-exclusive)))
5716 (if (equal char ?\ )
5717 (setq s "" move nil)
5718 (unless (assoc (char-to-string char) org-emphasis-alist)
5719 (user-error "No such emphasis marker: \"%c\"" char))
5720 (setq s (char-to-string char)))
5721 (while (and (> (length string) 1)
5722 (equal (substring string 0 1) (substring string -1))
5723 (assoc (substring string 0 1) org-emphasis-alist))
5724 (setq string (substring string 1 -1)))
5725 (setq string (concat s string s))
5726 (if beg (delete-region beg end))
5727 (unless (or (bolp)
5728 (string-match (concat "[" (nth 0 erc) "\n]")
5729 (char-to-string (char-before (point)))))
5730 (insert " "))
5731 (unless (or (eobp)
5732 (string-match (concat "[" (nth 1 erc) "\n]")
5733 (char-to-string (char-after (point)))))
5734 (insert " ") (backward-char 1))
5735 (insert string)
5736 (and move (backward-char 1))))
5738 (defconst org-nonsticky-props
5739 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5741 (defsubst org-rear-nonsticky-at (pos)
5742 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5744 (defun org-activate-plain-links (limit)
5745 "Run through the buffer and add overlays to links."
5746 (let (f hl)
5747 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5748 (not (org-in-src-block-p)))
5749 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5750 (setq f (get-text-property (match-beginning 0) 'face))
5751 (setq hl (org-match-string-no-properties 0))
5752 (if (or (eq f 'org-tag)
5753 (and (listp f) (memq 'org-tag f)))
5755 (add-text-properties (match-beginning 0) (match-end 0)
5756 (list 'mouse-face 'highlight
5757 'face 'org-link
5758 'htmlize-link `(:uri ,hl)
5759 'keymap org-mouse-map))
5760 (org-rear-nonsticky-at (match-end 0)))
5761 t)))
5763 (defun org-activate-code (limit)
5764 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5765 (progn
5766 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5767 (remove-text-properties (match-beginning 0) (match-end 0)
5768 '(display t invisible t intangible t))
5769 t)))
5771 (defcustom org-src-fontify-natively nil
5772 "When non-nil, fontify code in code blocks."
5773 :type 'boolean
5774 :version "24.1"
5775 :group 'org-appearance
5776 :group 'org-babel)
5778 (defcustom org-allow-promoting-top-level-subtree nil
5779 "When non-nil, allow promoting a top level subtree.
5780 The leading star of the top level headline will be replaced
5781 by a #."
5782 :type 'boolean
5783 :version "24.1"
5784 :group 'org-appearance)
5786 (defun org-fontify-meta-lines-and-blocks (limit)
5787 (condition-case nil
5788 (org-fontify-meta-lines-and-blocks-1 limit)
5789 (error (message "org-mode fontification error"))))
5791 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5792 "Fontify #+ lines and blocks."
5793 (let ((case-fold-search t))
5794 (if (re-search-forward
5795 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5796 limit t)
5797 (let ((beg (match-beginning 0))
5798 (block-start (match-end 0))
5799 (block-end nil)
5800 (lang (match-string 7))
5801 (beg1 (line-beginning-position 2))
5802 (dc1 (downcase (match-string 2)))
5803 (dc3 (downcase (match-string 3)))
5804 end end1 quoting block-type ovl)
5805 (cond
5806 ((member dc1 '("+html:" "+ascii:" "+latex:"))
5807 ;; a single line of backend-specific content
5808 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5809 (remove-text-properties (match-beginning 0) (match-end 0)
5810 '(display t invisible t intangible t))
5811 (add-text-properties (match-beginning 1) (match-end 3)
5812 '(font-lock-fontified t face org-meta-line))
5813 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5814 '(font-lock-fontified t face org-block))
5815 ; for backend-specific code
5817 ((and (match-end 4) (equal dc3 "+begin"))
5818 ;; Truly a block
5819 (setq block-type (downcase (match-string 5))
5820 quoting (member block-type org-protecting-blocks))
5821 (when (re-search-forward
5822 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5823 nil t) ;; on purpose, we look further than LIMIT
5824 (setq end (min (point-max) (match-end 0))
5825 end1 (min (point-max) (1- (match-beginning 0))))
5826 (setq block-end (match-beginning 0))
5827 (when quoting
5828 (remove-text-properties beg end
5829 '(display t invisible t intangible t)))
5830 (add-text-properties
5831 beg end
5832 '(font-lock-fontified t font-lock-multiline t))
5833 (add-text-properties beg beg1 '(face org-meta-line))
5834 (add-text-properties end1 (min (point-max) (1+ end))
5835 '(face org-meta-line)) ; for end_src
5836 (cond
5837 ((and lang (not (string= lang "")) org-src-fontify-natively)
5838 (org-src-font-lock-fontify-block lang block-start block-end)
5839 ;; remove old background overlays
5840 (mapc (lambda (ov)
5841 (if (eq (overlay-get ov 'face) 'org-block-background)
5842 (delete-overlay ov)))
5843 (overlays-at (/ (+ beg1 block-end) 2)))
5844 ;; add a background overlay
5845 (setq ovl (make-overlay beg1 block-end))
5846 (overlay-put ovl 'face 'org-block-background)
5847 (overlay-put ovl 'evaporate t)) ;; make it go away when empty
5848 (quoting
5849 (add-text-properties beg1 (min (point-max) (1+ end1))
5850 '(face org-block))) ; end of source block
5851 ((not org-fontify-quote-and-verse-blocks))
5852 ((string= block-type "quote")
5853 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5854 ((string= block-type "verse")
5855 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5856 (add-text-properties beg beg1 '(face org-block-begin-line))
5857 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5858 '(face org-block-end-line))
5860 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5861 (add-text-properties
5862 beg (match-end 3)
5863 (if (member (intern (substring dc1 0 -1)) org-hidden-keywords)
5864 '(font-lock-fontified t invisible t)
5865 '(font-lock-fontified t face org-document-info-keyword)))
5866 (add-text-properties
5867 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5868 (if (string-equal dc1 "+title:")
5869 '(font-lock-fontified t face org-document-title)
5870 '(font-lock-fontified t face org-document-info))))
5871 ((or (equal dc1 "+results")
5872 (member dc1 '("+begin:" "+end:" "+caption:" "+label:"
5873 "+orgtbl:" "+tblfm:" "+tblname:" "+results:"
5874 "+call:" "+header:" "+headers:" "+name:"))
5875 (and (match-end 4) (equal dc3 "+attr")))
5876 (add-text-properties
5877 beg (match-end 0)
5878 '(font-lock-fontified t face org-meta-line))
5880 ((member dc3 '(" " ""))
5881 (add-text-properties
5882 beg (match-end 0)
5883 '(font-lock-fontified t face font-lock-comment-face)))
5884 ((not (member (char-after beg) '(?\ ?\t)))
5885 ;; just any other in-buffer setting, but not indented
5886 (add-text-properties
5887 beg (match-end 0)
5888 '(font-lock-fontified t face org-meta-line))
5890 (t nil))))))
5892 (defun org-activate-angle-links (limit)
5893 "Run through the buffer and add overlays to links."
5894 (if (and (re-search-forward org-angle-link-re limit t)
5895 (not (org-in-src-block-p)))
5896 (progn
5897 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5898 (add-text-properties (match-beginning 0) (match-end 0)
5899 (list 'mouse-face 'highlight
5900 'keymap org-mouse-map))
5901 (org-rear-nonsticky-at (match-end 0))
5902 t)))
5904 (defun org-activate-footnote-links (limit)
5905 "Run through the buffer and add overlays to footnotes."
5906 (let ((fn (org-footnote-next-reference-or-definition limit)))
5907 (when fn
5908 (let ((beg (nth 1 fn)) (end (nth 2 fn)))
5909 (org-remove-flyspell-overlays-in beg end)
5910 (add-text-properties beg end
5911 (list 'mouse-face 'highlight
5912 'keymap org-mouse-map
5913 'help-echo
5914 (if (= (point-at-bol) beg)
5915 "Footnote definition"
5916 "Footnote reference")
5917 'font-lock-fontified t
5918 'font-lock-multiline t
5919 'face 'org-footnote))))))
5921 (defun org-activate-bracket-links (limit)
5922 "Run through the buffer and add overlays to bracketed links."
5923 (if (and (re-search-forward org-bracket-link-regexp limit t)
5924 (not (org-in-src-block-p)))
5925 (let* ((hl (org-match-string-no-properties 1))
5926 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
5927 (ip (org-maybe-intangible
5928 (list 'invisible 'org-link
5929 'keymap org-mouse-map 'mouse-face 'highlight
5930 'font-lock-multiline t 'help-echo help
5931 'htmlize-link `(:uri ,hl))))
5932 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
5933 'font-lock-multiline t 'help-echo help
5934 'htmlize-link `(:uri ,hl))))
5935 ;; We need to remove the invisible property here. Table narrowing
5936 ;; may have made some of this invisible.
5937 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5938 (remove-text-properties (match-beginning 0) (match-end 0)
5939 '(invisible nil))
5940 (if (match-end 3)
5941 (progn
5942 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
5943 (org-rear-nonsticky-at (match-beginning 3))
5944 (add-text-properties (match-beginning 3) (match-end 3) vp)
5945 (org-rear-nonsticky-at (match-end 3))
5946 (add-text-properties (match-end 3) (match-end 0) ip)
5947 (org-rear-nonsticky-at (match-end 0)))
5948 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
5949 (org-rear-nonsticky-at (match-beginning 1))
5950 (add-text-properties (match-beginning 1) (match-end 1) vp)
5951 (org-rear-nonsticky-at (match-end 1))
5952 (add-text-properties (match-end 1) (match-end 0) ip)
5953 (org-rear-nonsticky-at (match-end 0)))
5954 t)))
5956 (defun org-activate-dates (limit)
5957 "Run through the buffer and add overlays to dates."
5958 (if (and (re-search-forward org-tsr-regexp-both limit t)
5959 (not (equal (char-before (match-beginning 0)) 91)))
5960 (progn
5961 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5962 (add-text-properties (match-beginning 0) (match-end 0)
5963 (list 'mouse-face 'highlight
5964 'keymap org-mouse-map))
5965 (org-rear-nonsticky-at (match-end 0))
5966 (when org-display-custom-times
5967 (if (match-end 3)
5968 (org-display-custom-time (match-beginning 3) (match-end 3)))
5969 (org-display-custom-time (match-beginning 1) (match-end 1)))
5970 t)))
5972 (defvar org-target-link-regexp nil
5973 "Regular expression matching radio targets in plain text.")
5974 (make-variable-buffer-local 'org-target-link-regexp)
5975 (defvar org-target-regexp "<<\\([^<>\n\r]+\\)>>"
5976 "Regular expression matching a link target.")
5977 (defvar org-radio-target-regexp "<<<\\([^<>\n\r]+\\)>>>"
5978 "Regular expression matching a radio target.")
5979 (defvar org-any-target-regexp "<<<?\\([^<>\n\r]+\\)>>>?" ; FIXME, not exact, would match <<<aaa>> as a radio target.
5980 "Regular expression matching any target.")
5982 (defun org-activate-target-links (limit)
5983 "Run through the buffer and add overlays to target matches."
5984 (when org-target-link-regexp
5985 (let ((case-fold-search t))
5986 (if (re-search-forward org-target-link-regexp limit t)
5987 (progn
5988 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5989 (add-text-properties (match-beginning 0) (match-end 0)
5990 (list 'mouse-face 'highlight
5991 'keymap org-mouse-map
5992 'help-echo "Radio target link"
5993 'org-linked-text t))
5994 (org-rear-nonsticky-at (match-end 0))
5995 t)))))
5997 (defun org-update-radio-target-regexp ()
5998 "Find all radio targets in this file and update the regular expression."
5999 (interactive)
6000 (when (memq 'radio org-activate-links)
6001 (setq org-target-link-regexp
6002 (org-make-target-link-regexp (org-all-targets 'radio)))
6003 (org-restart-font-lock)))
6005 (defun org-hide-wide-columns (limit)
6006 (let (s e)
6007 (setq s (text-property-any (point) (or limit (point-max))
6008 'org-cwidth t))
6009 (when s
6010 (setq e (next-single-property-change s 'org-cwidth))
6011 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6012 (goto-char e)
6013 t)))
6015 (defvar org-latex-and-related-regexp nil
6016 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6017 (defvar org-match-substring-regexp)
6018 (defvar org-match-substring-with-braces-regexp)
6020 (defun org-compute-latex-and-related-regexp ()
6021 "Compute regular expression for LaTeX, entities and sub/superscript.
6022 Result depends on variable `org-highlight-latex-and-related'."
6023 (org-set-local
6024 'org-latex-and-related-regexp
6025 (let* ((re-sub
6026 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6027 ((eq org-use-sub-superscripts '{})
6028 (list org-match-substring-with-braces-regexp))
6029 (org-use-sub-superscripts (list org-match-substring-regexp))))
6030 (re-latex
6031 (when (memq 'latex org-highlight-latex-and-related)
6032 (let ((matchers (plist-get org-format-latex-options :matchers)))
6033 (delq nil
6034 (mapcar (lambda (x)
6035 (and (member (car x) matchers) (nth 1 x)))
6036 org-latex-regexps)))))
6037 (re-entities
6038 (when (memq 'entities org-highlight-latex-and-related)
6039 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6040 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6042 (defun org-do-latex-and-related (limit)
6043 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6044 LIMIT bounds the search for syntax to highlight. Stop at first
6045 highlighted object, if any. Return t if some highlighting was
6046 done, nil otherwise."
6047 (when (org-string-nw-p org-latex-and-related-regexp)
6048 (catch 'found
6049 (while (re-search-forward org-latex-and-related-regexp limit t)
6050 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6051 'face))
6052 '(org-code org-verbatim underline))
6053 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6054 '(?_ ?^))
6056 0)))
6057 (font-lock-prepend-text-property
6058 (+ offset (match-beginning 0)) (match-end 0)
6059 'face 'org-latex-and-related)
6060 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6061 '(font-lock-multiline t)))
6062 (throw 'found t)))
6063 nil)))
6065 (defun org-restart-font-lock ()
6066 "Restart `font-lock-mode', to force refontification."
6067 (when (and (boundp 'font-lock-mode) font-lock-mode)
6068 (font-lock-mode -1)
6069 (font-lock-mode 1)))
6071 (defun org-all-targets (&optional radio)
6072 "Return a list of all targets in this file.
6073 When optional argument RADIO is non-nil, only find radio
6074 targets."
6075 (let ((re (if radio org-radio-target-regexp org-target-regexp)) rtn)
6076 (save-excursion
6077 (goto-char (point-min))
6078 (while (re-search-forward re nil t)
6079 ;; Make sure point is really within the object.
6080 (backward-char)
6081 (let ((obj (org-element-context)))
6082 (when (memq (org-element-type obj) '(radio-target target))
6083 (add-to-list 'rtn (downcase (org-element-property :value obj))))))
6084 rtn)))
6086 (defun org-make-target-link-regexp (targets)
6087 "Make regular expression matching all strings in TARGETS.
6088 The regular expression finds the targets also if there is a line break
6089 between words."
6090 (and targets
6091 (concat
6092 "\\<\\("
6093 (mapconcat
6094 (lambda (x)
6095 (setq x (regexp-quote x))
6096 (while (string-match " +" x)
6097 (setq x (replace-match "\\s-+" t t x)))
6099 targets
6100 "\\|")
6101 "\\)\\>")))
6103 (defun org-activate-tags (limit)
6104 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6105 (progn
6106 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6107 (add-text-properties (match-beginning 1) (match-end 1)
6108 (list 'mouse-face 'highlight
6109 'keymap org-mouse-map))
6110 (org-rear-nonsticky-at (match-end 1))
6111 t)))
6113 (defun org-outline-level ()
6114 "Compute the outline level of the heading at point.
6115 If this is called at a normal headline, the level is the number of stars.
6116 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
6117 (save-excursion
6118 (if (not (condition-case nil
6119 (org-back-to-heading t)
6120 (error nil)))
6122 (looking-at org-outline-regexp)
6123 (1- (- (match-end 0) (match-beginning 0))))))
6125 (defvar org-font-lock-keywords nil)
6127 (defconst org-property-re (org-re "^[ \t]*\\(:\\([-[:alnum:]_]+\\+?\\):\\)[ \t]*\\([^ \t\r\n].*\\)")
6128 "Regular expression matching a property line.")
6130 (defvar org-font-lock-hook nil
6131 "Functions to be called for special font lock stuff.")
6133 (defvar org-font-lock-set-keywords-hook nil
6134 "Functions that can manipulate `org-font-lock-extra-keywords'.
6135 This is called after `org-font-lock-extra-keywords' is defined, but before
6136 it is installed to be used by font lock. This can be useful if something
6137 needs to be inserted at a specific position in the font-lock sequence.")
6139 (defun org-font-lock-hook (limit)
6140 "Run `org-font-lock-hook' within LIMIT."
6141 (run-hook-with-args 'org-font-lock-hook limit))
6143 (defun org-set-font-lock-defaults ()
6144 "Set font lock defaults for the current buffer."
6145 (let* ((em org-fontify-emphasized-text)
6146 (lk org-activate-links)
6147 (org-font-lock-extra-keywords
6148 (list
6149 ;; Call the hook
6150 '(org-font-lock-hook)
6151 ;; Headlines
6152 `(,(if org-fontify-whole-heading-line
6153 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6154 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6155 (1 (org-get-level-face 1))
6156 (2 (org-get-level-face 2))
6157 (3 (org-get-level-face 3)))
6158 ;; Table lines
6159 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6160 (1 'org-table t))
6161 ;; Table internals
6162 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6163 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6164 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6165 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6166 ;; Drawers
6167 (list org-drawer-regexp '(0 'org-special-keyword t))
6168 (list "^[ \t]*:END:" '(0 'org-special-keyword t))
6169 ;; Properties
6170 (list org-property-re
6171 '(1 'org-special-keyword t)
6172 '(3 'org-property-value t))
6173 ;; Links
6174 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6175 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6176 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6177 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6178 (if (memq 'radio lk) '(org-activate-target-links (0 'org-link t)))
6179 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6180 (if (memq 'footnote lk) '(org-activate-footnote-links))
6181 ;; Targets.
6182 (list org-any-target-regexp '(0 'org-target t))
6183 ;; Diary sexps.
6184 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6185 ;; Macro
6186 '("{{{.+}}}" (0 'org-macro t))
6187 '(org-hide-wide-columns (0 nil append))
6188 ;; TODO keyword
6189 (list (format org-heading-keyword-regexp-format
6190 org-todo-regexp)
6191 '(2 (org-get-todo-face 2) t))
6192 ;; DONE
6193 (if org-fontify-done-headline
6194 (list (format org-heading-keyword-regexp-format
6195 (concat
6196 "\\(?:"
6197 (mapconcat 'regexp-quote org-done-keywords "\\|")
6198 "\\)"))
6199 '(2 'org-headline-done t))
6200 nil)
6201 ;; Priorities
6202 '(org-font-lock-add-priority-faces)
6203 ;; Tags
6204 '(org-font-lock-add-tag-faces)
6205 ;; Tags groups
6206 (if (and org-group-tags org-tag-groups-alist)
6207 (list (concat org-outline-regexp-bol ".+\\(:"
6208 (regexp-opt (mapcar 'car org-tag-groups-alist))
6209 ":\\).*$")
6210 '(1 'org-tag-group prepend)))
6211 ;; Special keywords
6212 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6213 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6214 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6215 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6216 ;; Emphasis
6217 (if em
6218 (if (featurep 'xemacs)
6219 '(org-do-emphasis-faces (0 nil append))
6220 '(org-do-emphasis-faces)))
6221 ;; Checkboxes
6222 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6223 1 'org-checkbox prepend)
6224 (if (cdr (assq 'checkbox org-list-automatic-rules))
6225 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6226 (0 (org-get-checkbox-statistics-face) t)))
6227 ;; Description list items
6228 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6229 1 'org-list-dt prepend)
6230 ;; ARCHIVEd headings
6231 (list (concat
6232 org-outline-regexp-bol
6233 "\\(.*:" org-archive-tag ":.*\\)")
6234 '(1 'org-archived prepend))
6235 ;; Specials
6236 '(org-do-latex-and-related)
6237 '(org-fontify-entities)
6238 '(org-raise-scripts)
6239 ;; Code
6240 '(org-activate-code (1 'org-code t))
6241 ;; COMMENT
6242 (list (format org-heading-keyword-regexp-format
6243 (concat "\\("
6244 org-comment-string "\\|" org-quote-string
6245 "\\)"))
6246 '(2 'org-special-keyword t))
6247 ;; Blocks and meta lines
6248 '(org-fontify-meta-lines-and-blocks))))
6249 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6250 (run-hooks 'org-font-lock-set-keywords-hook)
6251 ;; Now set the full font-lock-keywords
6252 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6253 (org-set-local 'font-lock-defaults
6254 '(org-font-lock-keywords t nil nil backward-paragraph))
6255 (kill-local-variable 'font-lock-keywords) nil))
6257 (defun org-toggle-pretty-entities ()
6258 "Toggle the composition display of entities as UTF8 characters."
6259 (interactive)
6260 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6261 (org-restart-font-lock)
6262 (if org-pretty-entities
6263 (message "Entities are now displayed as UTF8 characters")
6264 (save-restriction
6265 (widen)
6266 (org-decompose-region (point-min) (point-max))
6267 (message "Entities are now displayed as plain text"))))
6269 (defvar org-custom-properties-overlays nil
6270 "List of overlays used for custom properties.")
6271 (make-variable-buffer-local 'org-custom-properties-overlays)
6273 (defun org-toggle-custom-properties-visibility ()
6274 "Display or hide properties in `org-custom-properties'."
6275 (interactive)
6276 (if org-custom-properties-overlays
6277 (progn (mapc 'delete-overlay org-custom-properties-overlays)
6278 (setq org-custom-properties-overlays nil))
6279 (unless (not org-custom-properties)
6280 (save-excursion
6281 (save-restriction
6282 (widen)
6283 (goto-char (point-min))
6284 (while (re-search-forward org-property-re nil t)
6285 (mapc (lambda(p)
6286 (when (equal p (substring (match-string 1) 1 -1))
6287 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6288 (overlay-put o 'invisible t)
6289 (overlay-put o 'org-custom-property t)
6290 (push o org-custom-properties-overlays))))
6291 org-custom-properties)))))))
6293 (defun org-fontify-entities (limit)
6294 "Find an entity to fontify."
6295 (let (ee)
6296 (when org-pretty-entities
6297 (catch 'match
6298 (while (re-search-forward
6299 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6300 limit t)
6301 (if (and (not (org-in-indented-comment-line))
6302 (setq ee (org-entity-get (match-string 1)))
6303 (= (length (nth 6 ee)) 1))
6304 (let*
6305 ((end (if (equal (match-string 2) "{}")
6306 (match-end 2)
6307 (match-end 1))))
6308 (add-text-properties
6309 (match-beginning 0) end
6310 (list 'font-lock-fontified t))
6311 (compose-region (match-beginning 0) end
6312 (nth 6 ee) nil)
6313 (backward-char 1)
6314 (throw 'match t))))
6315 nil))))
6317 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6318 "Fontify string S like in Org-mode."
6319 (with-temp-buffer
6320 (insert s)
6321 (let ((org-odd-levels-only odd-levels))
6322 (org-mode)
6323 (font-lock-fontify-buffer)
6324 (buffer-string))))
6326 (defvar org-m nil)
6327 (defvar org-l nil)
6328 (defvar org-f nil)
6329 (defun org-get-level-face (n)
6330 "Get the right face for match N in font-lock matching of headlines."
6331 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6332 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6333 (if org-cycle-level-faces
6334 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6335 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6336 (cond
6337 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6338 ((eq n 2) org-f)
6339 (t (if org-level-color-stars-only nil org-f))))
6342 (defun org-get-todo-face (kwd)
6343 "Get the right face for a TODO keyword KWD.
6344 If KWD is a number, get the corresponding match group."
6345 (if (numberp kwd) (setq kwd (match-string kwd)))
6346 (or (org-face-from-face-or-color
6347 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6348 (and (member kwd org-done-keywords) 'org-done)
6349 'org-todo))
6351 (defun org-face-from-face-or-color (context inherit face-or-color)
6352 "Create a face list that inherits INHERIT, but sets the foreground color.
6353 When FACE-OR-COLOR is not a string, just return it."
6354 (if (stringp face-or-color)
6355 (list :inherit inherit
6356 (cdr (assoc context org-faces-easy-properties))
6357 face-or-color)
6358 face-or-color))
6360 (defun org-font-lock-add-tag-faces (limit)
6361 "Add the special tag faces."
6362 (when (and org-tag-faces org-tags-special-faces-re)
6363 (while (re-search-forward org-tags-special-faces-re limit t)
6364 (add-text-properties (match-beginning 1) (match-end 1)
6365 (list 'face (org-get-tag-face 1)
6366 'font-lock-fontified t))
6367 (backward-char 1))))
6369 (defun org-font-lock-add-priority-faces (limit)
6370 "Add the special priority faces."
6371 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6372 (when (save-match-data (org-at-heading-p))
6373 (add-text-properties
6374 (match-beginning 0) (match-end 0)
6375 (list 'face (or (org-face-from-face-or-color
6376 'priority 'org-priority
6377 (cdr (assoc (char-after (match-beginning 1))
6378 org-priority-faces)))
6379 'org-priority)
6380 'font-lock-fontified t)))))
6382 (defun org-get-tag-face (kwd)
6383 "Get the right face for a TODO keyword KWD.
6384 If KWD is a number, get the corresponding match group."
6385 (if (numberp kwd) (setq kwd (match-string kwd)))
6386 (or (org-face-from-face-or-color
6387 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6388 'org-tag))
6390 (defun org-unfontify-region (beg end &optional maybe_loudly)
6391 "Remove fontification and activation overlays from links."
6392 (font-lock-default-unfontify-region beg end)
6393 (let* ((buffer-undo-list t)
6394 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6395 (inhibit-modification-hooks t)
6396 deactivate-mark buffer-file-name buffer-file-truename)
6397 (org-decompose-region beg end)
6398 (remove-text-properties beg end
6399 '(mouse-face t keymap t org-linked-text t
6400 invisible t intangible t
6401 org-no-flyspell t org-emphasis t))
6402 (org-remove-font-lock-display-properties beg end)))
6404 (defconst org-script-display '(((raise -0.3) (height 0.7))
6405 ((raise 0.3) (height 0.7))
6406 ((raise -0.5))
6407 ((raise 0.5)))
6408 "Display properties for showing superscripts and subscripts.")
6410 (defun org-remove-font-lock-display-properties (beg end)
6411 "Remove specific display properties that have been added by font lock.
6412 The will remove the raise properties that are used to show superscripts
6413 and subscripts."
6414 (let (next prop)
6415 (while (< beg end)
6416 (setq next (next-single-property-change beg 'display nil end)
6417 prop (get-text-property beg 'display))
6418 (if (member prop org-script-display)
6419 (put-text-property beg next 'display nil))
6420 (setq beg next))))
6422 (defun org-raise-scripts (limit)
6423 "Add raise properties to sub/superscripts."
6424 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6425 (if (re-search-forward
6426 (if (eq org-use-sub-superscripts t)
6427 org-match-substring-regexp
6428 org-match-substring-with-braces-regexp)
6429 limit t)
6430 (let* ((pos (point)) table-p comment-p
6431 (mpos (match-beginning 3))
6432 (emph-p (get-text-property mpos 'org-emphasis))
6433 (link-p (get-text-property mpos 'mouse-face))
6434 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6435 (goto-char (point-at-bol))
6436 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6437 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6438 (goto-char pos)
6439 ;; Handle a_b^c
6440 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6441 (if (or comment-p emph-p link-p keyw-p)
6443 (put-text-property (match-beginning 3) (match-end 0)
6444 'display
6445 (if (equal (char-after (match-beginning 2)) ?^)
6446 (nth (if table-p 3 1) org-script-display)
6447 (nth (if table-p 2 0) org-script-display)))
6448 (add-text-properties (match-beginning 2) (match-end 2)
6449 (list 'invisible t
6450 'org-dwidth t 'org-dwidth-n 1))
6451 (if (and (eq (char-after (match-beginning 3)) ?{)
6452 (eq (char-before (match-end 3)) ?}))
6453 (progn
6454 (add-text-properties
6455 (match-beginning 3) (1+ (match-beginning 3))
6456 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6457 (add-text-properties
6458 (1- (match-end 3)) (match-end 3)
6459 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6460 t)))))
6462 ;;;; Visibility cycling, including org-goto and indirect buffer
6464 ;;; Cycling
6466 (defvar org-cycle-global-status nil)
6467 (make-variable-buffer-local 'org-cycle-global-status)
6468 (put 'org-cycle-global-status 'org-state t)
6469 (defvar org-cycle-subtree-status nil)
6470 (make-variable-buffer-local 'org-cycle-subtree-status)
6471 (put 'org-cycle-subtree-status 'org-state t)
6473 (defvar org-inlinetask-min-level)
6475 ;;;###autoload
6476 (defun org-cycle (&optional arg)
6477 "TAB-action and visibility cycling for Org-mode.
6479 This is the command invoked in Org-mode by the TAB key. Its main purpose
6480 is outline visibility cycling, but it also invokes other actions
6481 in special contexts.
6483 - When this function is called with a prefix argument, rotate the entire
6484 buffer through 3 states (global cycling)
6485 1. OVERVIEW: Show only top-level headlines.
6486 2. CONTENTS: Show all headlines of all levels, but no body text.
6487 3. SHOW ALL: Show everything.
6488 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6489 determined by the variable `org-startup-folded', and by any VISIBILITY
6490 properties in the buffer.
6491 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6492 including any drawers.
6494 - When inside a table, re-align the table and move to the next field.
6496 - When point is at the beginning of a headline, rotate the subtree started
6497 by this line through 3 different states (local cycling)
6498 1. FOLDED: Only the main headline is shown.
6499 2. CHILDREN: The main headline and the direct children are shown.
6500 From this state, you can move to one of the children
6501 and zoom in further.
6502 3. SUBTREE: Show the entire subtree, including body text.
6503 If there is no subtree, switch directly from CHILDREN to FOLDED.
6505 - When point is at the beginning of an empty headline and the variable
6506 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6507 of the headline by demoting and promoting it to likely levels. This
6508 speeds up creation document structure by pressing TAB once or several
6509 times right after creating a new headline.
6511 - When there is a numeric prefix, go up to a heading with level ARG, do
6512 a `show-subtree' and return to the previous cursor position. If ARG
6513 is negative, go up that many levels.
6515 - When point is not at the beginning of a headline, execute the global
6516 binding for TAB, which is re-indenting the line. See the option
6517 `org-cycle-emulate-tab' for details.
6519 - Special case: if point is at the beginning of the buffer and there is
6520 no headline in line 1, this function will act as if called with prefix arg
6521 (C-u TAB, same as S-TAB) also when called without prefix arg.
6522 But only if also the variable `org-cycle-global-at-bob' is t."
6523 (interactive "P")
6524 (org-load-modules-maybe)
6525 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6526 (and org-cycle-level-after-item/entry-creation
6527 (or (org-cycle-level)
6528 (org-cycle-item-indentation))))
6529 (let* (message-log-max ; Don't populate the *Messages* buffer
6530 (limit-level
6531 (or org-cycle-max-level
6532 (and (boundp 'org-inlinetask-min-level)
6533 org-inlinetask-min-level
6534 (1- org-inlinetask-min-level))))
6535 (nstars (and limit-level
6536 (if org-odd-levels-only
6537 (and limit-level (1- (* limit-level 2)))
6538 limit-level)))
6539 (org-outline-regexp
6540 (if (not (derived-mode-p 'org-mode))
6541 outline-regexp
6542 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6543 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6544 (not (looking-at org-outline-regexp))))
6545 (org-cycle-hook
6546 (if bob-special
6547 (delq 'org-optimize-window-after-visibility-change
6548 (copy-sequence org-cycle-hook))
6549 org-cycle-hook))
6550 (pos (point)))
6552 (if (or bob-special (equal arg '(4)))
6553 ;; special case: use global cycling
6554 (setq arg t))
6556 (cond
6558 ((equal arg '(16))
6559 (setq last-command 'dummy)
6560 (org-set-startup-visibility)
6561 (message "Startup visibility, plus VISIBILITY properties"))
6563 ((equal arg '(64))
6564 (show-all)
6565 (message "Entire buffer visible, including drawers"))
6567 ;; Table: enter it or move to the next field.
6568 ((org-at-table-p 'any)
6569 (if (org-at-table.el-p)
6570 (message "Use C-c ' to edit table.el tables")
6571 (if arg (org-table-edit-field t)
6572 (org-table-justify-field-maybe)
6573 (call-interactively 'org-table-next-field))))
6575 ((run-hook-with-args-until-success
6576 'org-tab-after-check-for-table-hook))
6578 ;; Global cycling: delegate to `org-cycle-internal-global'.
6579 ((eq arg t) (org-cycle-internal-global))
6581 ;; Drawers: delegate to `org-flag-drawer'.
6582 ((and org-drawers org-drawer-regexp
6583 (save-excursion
6584 (beginning-of-line 1)
6585 (looking-at org-drawer-regexp)))
6586 (org-flag-drawer ; toggle block visibility
6587 (not (get-char-property (match-end 0) 'invisible))))
6589 ;; Show-subtree, ARG levels up from here.
6590 ((integerp arg)
6591 (save-excursion
6592 (org-back-to-heading)
6593 (outline-up-heading (if (< arg 0) (- arg)
6594 (- (funcall outline-level) arg)))
6595 (org-show-subtree)))
6597 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6598 ((and (featurep 'org-inlinetask)
6599 (org-inlinetask-at-task-p)
6600 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6601 (org-inlinetask-toggle-visibility))
6603 ((org-try-cdlatex-tab))
6605 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6606 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6607 (save-excursion (beginning-of-line 1)
6608 (looking-at org-outline-regexp)))
6609 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6610 (org-cycle-internal-local))
6612 ;; From there: TAB emulation and template completion.
6613 (buffer-read-only (org-back-to-heading))
6615 ((run-hook-with-args-until-success
6616 'org-tab-after-check-for-cycling-hook))
6618 ((org-try-structure-completion))
6620 ((run-hook-with-args-until-success
6621 'org-tab-before-tab-emulation-hook))
6623 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6624 (or (not (bolp))
6625 (not (looking-at org-outline-regexp))))
6626 (call-interactively (global-key-binding "\t")))
6628 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6629 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6630 (or (and (eq org-cycle-emulate-tab 'white)
6631 (= (match-end 0) (point-at-eol)))
6632 (and (eq org-cycle-emulate-tab 'whitestart)
6633 (>= (match-end 0) pos))))
6635 (eq org-cycle-emulate-tab t))
6636 (call-interactively (global-key-binding "\t")))
6638 (t (save-excursion
6639 (org-back-to-heading)
6640 (org-cycle)))))))
6642 (defun org-cycle-internal-global ()
6643 "Do the global cycling action."
6644 ;; Hack to avoid display of messages for .org attachments in Gnus
6645 (let (message-log-max ; Don't populate the *Messages* buffer
6646 (ga (string-match "\\*fontification" (buffer-name))))
6647 (cond
6648 ((and (eq last-command this-command)
6649 (eq org-cycle-global-status 'overview))
6650 ;; We just created the overview - now do table of contents
6651 ;; This can be slow in very large buffers, so indicate action
6652 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6653 (unless ga (message "CONTENTS..."))
6654 (org-content)
6655 (unless ga (message "CONTENTS...done"))
6656 (setq org-cycle-global-status 'contents)
6657 (run-hook-with-args 'org-cycle-hook 'contents))
6659 ((and (eq last-command this-command)
6660 (eq org-cycle-global-status 'contents))
6661 ;; We just showed the table of contents - now show everything
6662 (run-hook-with-args 'org-pre-cycle-hook 'all)
6663 (show-all)
6664 (unless ga (message "SHOW ALL"))
6665 (setq org-cycle-global-status 'all)
6666 (run-hook-with-args 'org-cycle-hook 'all))
6669 ;; Default action: go to overview
6670 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6671 (org-overview)
6672 (unless ga (message "OVERVIEW"))
6673 (setq org-cycle-global-status 'overview)
6674 (run-hook-with-args 'org-cycle-hook 'overview)))))
6676 (defun org-cycle-internal-local ()
6677 "Do the local cycling action."
6678 (let (message-log-max ; Don't populate the *Messages* buffer
6679 (goal-column 0) eoh eol eos has-children children-skipped struct)
6680 ;; First, determine end of headline (EOH), end of subtree or item
6681 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6682 (save-excursion
6683 (if (org-at-item-p)
6684 (progn
6685 (beginning-of-line)
6686 (setq struct (org-list-struct))
6687 (setq eoh (point-at-eol))
6688 (setq eos (org-list-get-item-end-before-blank (point) struct))
6689 (setq has-children (org-list-has-child-p (point) struct)))
6690 (org-back-to-heading)
6691 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6692 (setq eos (save-excursion (1- (org-end-of-subtree t t))))
6693 (setq has-children
6694 (or (save-excursion
6695 (let ((level (funcall outline-level)))
6696 (outline-next-heading)
6697 (and (org-at-heading-p t)
6698 (> (funcall outline-level) level))))
6699 (save-excursion
6700 (org-list-search-forward (org-item-beginning-re) eos t)))))
6701 ;; Determine end invisible part of buffer (EOL)
6702 (beginning-of-line 2)
6703 ;; XEmacs doesn't have `next-single-char-property-change'
6704 (if (featurep 'xemacs)
6705 (while (and (not (eobp)) ;; this is like `next-line'
6706 (get-char-property (1- (point)) 'invisible))
6707 (beginning-of-line 2))
6708 (while (and (not (eobp)) ;; this is like `next-line'
6709 (get-char-property (1- (point)) 'invisible))
6710 (goto-char (next-single-char-property-change (point) 'invisible))
6711 (and (eolp) (beginning-of-line 2))))
6712 (setq eol (point)))
6713 ;; Find out what to do next and set `this-command'
6714 (cond
6715 ((= eos eoh)
6716 ;; Nothing is hidden behind this heading
6717 (unless (org-before-first-heading-p)
6718 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6719 (message "EMPTY ENTRY")
6720 (setq org-cycle-subtree-status nil)
6721 (save-excursion
6722 (goto-char eos)
6723 (outline-next-heading)
6724 (if (outline-invisible-p) (org-flag-heading nil))))
6725 ((and (or (>= eol eos)
6726 (not (string-match "\\S-" (buffer-substring eol eos))))
6727 (or has-children
6728 (not (setq children-skipped
6729 org-cycle-skip-children-state-if-no-children))))
6730 ;; Entire subtree is hidden in one line: children view
6731 (unless (org-before-first-heading-p)
6732 (run-hook-with-args 'org-pre-cycle-hook 'children))
6733 (if (org-at-item-p)
6734 (org-list-set-item-visibility (point-at-bol) struct 'children)
6735 (org-show-entry)
6736 (org-with-limited-levels (show-children))
6737 ;; FIXME: This slows down the func way too much.
6738 ;; How keep drawers hidden in subtree anyway?
6739 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6740 ;; (org-cycle-hide-drawers 'subtree))
6742 ;; Fold every list in subtree to top-level items.
6743 (when (eq org-cycle-include-plain-lists 'integrate)
6744 (save-excursion
6745 (org-back-to-heading)
6746 (while (org-list-search-forward (org-item-beginning-re) eos t)
6747 (beginning-of-line 1)
6748 (let* ((struct (org-list-struct))
6749 (prevs (org-list-prevs-alist struct))
6750 (end (org-list-get-bottom-point struct)))
6751 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6752 (org-list-get-all-items (point) struct prevs))
6753 (goto-char (if (< end eos) end eos)))))))
6754 (message "CHILDREN")
6755 (save-excursion
6756 (goto-char eos)
6757 (outline-next-heading)
6758 (if (outline-invisible-p) (org-flag-heading nil)))
6759 (setq org-cycle-subtree-status 'children)
6760 (unless (org-before-first-heading-p)
6761 (run-hook-with-args 'org-cycle-hook 'children)))
6762 ((or children-skipped
6763 (and (eq last-command this-command)
6764 (eq org-cycle-subtree-status 'children)))
6765 ;; We just showed the children, or no children are there,
6766 ;; now show everything.
6767 (unless (org-before-first-heading-p)
6768 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6769 (outline-flag-region eoh eos nil)
6770 (message (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6771 (setq org-cycle-subtree-status 'subtree)
6772 (unless (org-before-first-heading-p)
6773 (run-hook-with-args 'org-cycle-hook 'subtree)))
6775 ;; Default action: hide the subtree.
6776 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6777 (outline-flag-region eoh eos t)
6778 (message "FOLDED")
6779 (setq org-cycle-subtree-status 'folded)
6780 (unless (org-before-first-heading-p)
6781 (run-hook-with-args 'org-cycle-hook 'folded))))))
6783 ;;;###autoload
6784 (defun org-global-cycle (&optional arg)
6785 "Cycle the global visibility. For details see `org-cycle'.
6786 With \\[universal-argument] prefix arg, switch to startup visibility.
6787 With a numeric prefix, show all headlines up to that level."
6788 (interactive "P")
6789 (let ((org-cycle-include-plain-lists
6790 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6791 (cond
6792 ((integerp arg)
6793 (show-all)
6794 (hide-sublevels arg)
6795 (setq org-cycle-global-status 'contents))
6796 ((equal arg '(4))
6797 (org-set-startup-visibility)
6798 (message "Startup visibility, plus VISIBILITY properties."))
6800 (org-cycle '(4))))))
6802 (defun org-set-startup-visibility ()
6803 "Set the visibility required by startup options and properties."
6804 (cond
6805 ((eq org-startup-folded t)
6806 (org-cycle '(4)))
6807 ((eq org-startup-folded 'content)
6808 (let ((this-command 'org-cycle) (last-command 'org-cycle))
6809 (org-cycle '(4)) (org-cycle '(4)))))
6810 (unless (eq org-startup-folded 'showeverything)
6811 (if org-hide-block-startup (org-hide-block-all))
6812 (org-set-visibility-according-to-property 'no-cleanup)
6813 (org-cycle-hide-archived-subtrees 'all)
6814 (org-cycle-hide-drawers 'all)
6815 (org-cycle-show-empty-lines t)))
6817 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6818 "Switch subtree visibilities according to :VISIBILITY: property."
6819 (interactive)
6820 (let (org-show-entry-below state)
6821 (save-excursion
6822 (goto-char (point-min))
6823 (while (re-search-forward
6824 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6825 nil t)
6826 (setq state (match-string 1))
6827 (save-excursion
6828 (org-back-to-heading t)
6829 (hide-subtree)
6830 (org-reveal)
6831 (cond
6832 ((equal state '("fold" "folded"))
6833 (hide-subtree))
6834 ((equal state "children")
6835 (org-show-hidden-entry)
6836 (show-children))
6837 ((equal state "content")
6838 (save-excursion
6839 (save-restriction
6840 (org-narrow-to-subtree)
6841 (org-content))))
6842 ((member state '("all" "showall"))
6843 (show-subtree)))))
6844 (unless no-cleanup
6845 (org-cycle-hide-archived-subtrees 'all)
6846 (org-cycle-hide-drawers 'all)
6847 (org-cycle-show-empty-lines 'all)))))
6849 ;; This function uses outline-regexp instead of the more fundamental
6850 ;; org-outline-regexp so that org-cycle-global works outside of Org
6851 ;; buffers, where outline-regexp is needed.
6852 (defun org-overview ()
6853 "Switch to overview mode, showing only top-level headlines.
6854 Really, this shows all headlines with level equal or greater than the level
6855 of the first headline in the buffer. This is important, because if the
6856 first headline is not level one, then (hide-sublevels 1) gives confusing
6857 results."
6858 (interactive)
6859 (let ((l (org-current-line))
6860 (level (save-excursion
6861 (goto-char (point-min))
6862 (if (re-search-forward (concat "^" outline-regexp) nil t)
6863 (progn
6864 (goto-char (match-beginning 0))
6865 (funcall outline-level))))))
6866 (and level (hide-sublevels level))
6867 (recenter '(4))
6868 (org-goto-line l)))
6870 (defun org-content (&optional arg)
6871 "Show all headlines in the buffer, like a table of contents.
6872 With numerical argument N, show content up to level N."
6873 (interactive "P")
6874 (save-excursion
6875 ;; Visit all headings and show their offspring
6876 (and (integerp arg) (org-overview))
6877 (goto-char (point-max))
6878 (catch 'exit
6879 (while (and (progn (condition-case nil
6880 (outline-previous-visible-heading 1)
6881 (error (goto-char (point-min))))
6883 (looking-at org-outline-regexp))
6884 (if (integerp arg)
6885 (show-children (1- arg))
6886 (show-branches))
6887 (if (bobp) (throw 'exit nil))))))
6890 (defun org-optimize-window-after-visibility-change (state)
6891 "Adjust the window after a change in outline visibility.
6892 This function is the default value of the hook `org-cycle-hook'."
6893 (when (get-buffer-window (current-buffer))
6894 (cond
6895 ((eq state 'content) nil)
6896 ((eq state 'all) nil)
6897 ((eq state 'folded) nil)
6898 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
6899 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
6901 (defun org-remove-empty-overlays-at (pos)
6902 "Remove outline overlays that do not contain non-white stuff."
6903 (mapc
6904 (lambda (o)
6905 (and (eq 'outline (overlay-get o 'invisible))
6906 (not (string-match "\\S-" (buffer-substring (overlay-start o)
6907 (overlay-end o))))
6908 (delete-overlay o)))
6909 (overlays-at pos)))
6911 (defun org-clean-visibility-after-subtree-move ()
6912 "Fix visibility issues after moving a subtree."
6913 ;; First, find a reasonable region to look at:
6914 ;; Start two siblings above, end three below
6915 (let* ((beg (save-excursion
6916 (and (org-get-last-sibling)
6917 (org-get-last-sibling))
6918 (point)))
6919 (end (save-excursion
6920 (and (org-get-next-sibling)
6921 (org-get-next-sibling)
6922 (org-get-next-sibling))
6923 (if (org-at-heading-p)
6924 (point-at-eol)
6925 (point))))
6926 (level (looking-at "\\*+"))
6927 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
6928 (save-excursion
6929 (save-restriction
6930 (narrow-to-region beg end)
6931 (when re
6932 ;; Properly fold already folded siblings
6933 (goto-char (point-min))
6934 (while (re-search-forward re nil t)
6935 (if (and (not (outline-invisible-p))
6936 (save-excursion
6937 (goto-char (point-at-eol)) (outline-invisible-p)))
6938 (hide-entry))))
6939 (org-cycle-show-empty-lines 'overview)
6940 (org-cycle-hide-drawers 'overview)))))
6942 (defun org-cycle-show-empty-lines (state)
6943 "Show empty lines above all visible headlines.
6944 The region to be covered depends on STATE when called through
6945 `org-cycle-hook'. Lisp program can use t for STATE to get the
6946 entire buffer covered. Note that an empty line is only shown if there
6947 are at least `org-cycle-separator-lines' empty lines before the headline."
6948 (when (not (= org-cycle-separator-lines 0))
6949 (save-excursion
6950 (let* ((n (abs org-cycle-separator-lines))
6951 (re (cond
6952 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
6953 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
6954 (t (let ((ns (number-to-string (- n 2))))
6955 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
6956 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
6957 beg end b e)
6958 (cond
6959 ((memq state '(overview contents t))
6960 (setq beg (point-min) end (point-max)))
6961 ((memq state '(children folded))
6962 (setq beg (point) end (progn (org-end-of-subtree t t)
6963 (beginning-of-line 2)
6964 (point)))))
6965 (when beg
6966 (goto-char beg)
6967 (while (re-search-forward re end t)
6968 (unless (get-char-property (match-end 1) 'invisible)
6969 (setq e (match-end 1))
6970 (if (< org-cycle-separator-lines 0)
6971 (setq b (save-excursion
6972 (goto-char (match-beginning 0))
6973 (org-back-over-empty-lines)
6974 (if (save-excursion
6975 (goto-char (max (point-min) (1- (point))))
6976 (org-at-heading-p))
6977 (1- (point))
6978 (point))))
6979 (setq b (match-beginning 1)))
6980 (outline-flag-region b e nil)))))))
6981 ;; Never hide empty lines at the end of the file.
6982 (save-excursion
6983 (goto-char (point-max))
6984 (outline-previous-heading)
6985 (outline-end-of-heading)
6986 (if (and (looking-at "[ \t\n]+")
6987 (= (match-end 0) (point-max)))
6988 (outline-flag-region (point) (match-end 0) nil))))
6990 (defun org-show-empty-lines-in-parent ()
6991 "Move to the parent and re-show empty lines before visible headlines."
6992 (save-excursion
6993 (let ((context (if (org-up-heading-safe) 'children 'overview)))
6994 (org-cycle-show-empty-lines context))))
6996 (defun org-files-list ()
6997 "Return `org-agenda-files' list, plus all open org-mode files.
6998 This is useful for operations that need to scan all of a user's
6999 open and agenda-wise Org files."
7000 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7001 (dolist (buf (buffer-list))
7002 (with-current-buffer buf
7003 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7004 (let ((file (expand-file-name (buffer-file-name))))
7005 (unless (member file files)
7006 (push file files))))))
7007 files))
7009 (defsubst org-entry-beginning-position ()
7010 "Return the beginning position of the current entry."
7011 (save-excursion (outline-back-to-heading t) (point)))
7013 (defsubst org-entry-end-position ()
7014 "Return the end position of the current entry."
7015 (save-excursion (outline-next-heading) (point)))
7017 (defun org-cycle-hide-drawers (state)
7018 "Re-hide all drawers after a visibility state change."
7019 (when (and (derived-mode-p 'org-mode)
7020 (not (memq state '(overview folded contents))))
7021 (save-excursion
7022 (let* ((globalp (memq state '(contents all)))
7023 (beg (if globalp (point-min) (point)))
7024 (end (if globalp (point-max)
7025 (if (eq state 'children)
7026 (save-excursion (outline-next-heading) (point))
7027 (org-end-of-subtree t)))))
7028 (goto-char beg)
7029 (while (re-search-forward org-drawer-regexp end t)
7030 (org-flag-drawer t))))))
7032 (defun org-cycle-hide-inline-tasks (state)
7033 "Re-hide inline task when switching to 'contents visibility state."
7034 (when (and (eq state 'contents)
7035 (boundp 'org-inlinetask-min-level)
7036 org-inlinetask-min-level)
7037 (hide-sublevels (1- org-inlinetask-min-level))))
7039 (defun org-flag-drawer (flag)
7040 "When FLAG is non-nil, hide the drawer we are within.
7041 Otherwise make it visible."
7042 (save-excursion
7043 (beginning-of-line 1)
7044 (when (looking-at "^[ \t]*:[a-zA-Z][a-zA-Z0-9]*:")
7045 (let ((b (match-end 0)))
7046 (if (re-search-forward
7047 "^[ \t]*:END:"
7048 (save-excursion (outline-next-heading) (point)) t)
7049 (outline-flag-region b (point-at-eol) flag)
7050 (user-error ":END: line missing at position %s" b))))))
7052 (defun org-subtree-end-visible-p ()
7053 "Is the end of the current subtree visible?"
7054 (pos-visible-in-window-p
7055 (save-excursion (org-end-of-subtree t) (point))))
7057 (defun org-first-headline-recenter (&optional N)
7058 "Move cursor to the first headline and recenter the headline.
7059 Optional argument N means put the headline into the Nth line of the window."
7060 (goto-char (point-min))
7061 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7062 (beginning-of-line)
7063 (recenter (prefix-numeric-value N))))
7065 ;;; Saving and restoring visibility
7067 (defun org-outline-overlay-data (&optional use-markers)
7068 "Return a list of the locations of all outline overlays.
7069 These are overlays with the `invisible' property value `outline'.
7070 The return value is a list of cons cells, with start and stop
7071 positions for each overlay.
7072 If USE-MARKERS is set, return the positions as markers."
7073 (let (beg end)
7074 (save-excursion
7075 (save-restriction
7076 (widen)
7077 (delq nil
7078 (mapcar (lambda (o)
7079 (when (eq (overlay-get o 'invisible) 'outline)
7080 (setq beg (overlay-start o)
7081 end (overlay-end o))
7082 (and beg end (> end beg)
7083 (if use-markers
7084 (cons (move-marker (make-marker) beg)
7085 (move-marker (make-marker) end))
7086 (cons beg end)))))
7087 (overlays-in (point-min) (point-max))))))))
7089 (defun org-set-outline-overlay-data (data)
7090 "Create visibility overlays for all positions in DATA.
7091 DATA should have been made by `org-outline-overlay-data'."
7092 (let (o)
7093 (save-excursion
7094 (save-restriction
7095 (widen)
7096 (show-all)
7097 (mapc (lambda (c)
7098 (outline-flag-region (car c) (cdr c) t))
7099 data)))))
7101 ;;; Folding of blocks
7103 (defvar org-hide-block-overlays nil
7104 "Overlays hiding blocks.")
7105 (make-variable-buffer-local 'org-hide-block-overlays)
7107 (defun org-block-map (function &optional start end)
7108 "Call FUNCTION at the head of all source blocks in the current buffer.
7109 Optional arguments START and END can be used to limit the range."
7110 (let ((start (or start (point-min)))
7111 (end (or end (point-max))))
7112 (save-excursion
7113 (goto-char start)
7114 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7115 (save-excursion
7116 (save-match-data
7117 (goto-char (match-beginning 0))
7118 (funcall function)))))))
7120 (defun org-hide-block-toggle-all ()
7121 "Toggle the visibility of all blocks in the current buffer."
7122 (org-block-map #'org-hide-block-toggle))
7124 (defun org-hide-block-all ()
7125 "Fold all blocks in the current buffer."
7126 (interactive)
7127 (org-show-block-all)
7128 (org-block-map #'org-hide-block-toggle-maybe))
7130 (defun org-show-block-all ()
7131 "Unfold all blocks in the current buffer."
7132 (interactive)
7133 (mapc 'delete-overlay org-hide-block-overlays)
7134 (setq org-hide-block-overlays nil))
7136 (defun org-hide-block-toggle-maybe ()
7137 "Toggle visibility of block at point."
7138 (interactive)
7139 (let ((case-fold-search t))
7140 (if (save-excursion
7141 (beginning-of-line 1)
7142 (looking-at org-block-regexp))
7143 (progn (org-hide-block-toggle)
7144 t) ;; to signal that we took action
7145 nil))) ;; to signal that we did not
7147 (defun org-hide-block-toggle (&optional force)
7148 "Toggle the visibility of the current block."
7149 (interactive)
7150 (save-excursion
7151 (beginning-of-line)
7152 (if (re-search-forward org-block-regexp nil t)
7153 (let ((start (- (match-beginning 4) 1)) ;; beginning of body
7154 (end (match-end 0)) ;; end of entire body
7156 (if (memq t (mapcar (lambda (overlay)
7157 (eq (overlay-get overlay 'invisible)
7158 'org-hide-block))
7159 (overlays-at start)))
7160 (if (or (not force) (eq force 'off))
7161 (mapc (lambda (ov)
7162 (when (member ov org-hide-block-overlays)
7163 (setq org-hide-block-overlays
7164 (delq ov org-hide-block-overlays)))
7165 (when (eq (overlay-get ov 'invisible)
7166 'org-hide-block)
7167 (delete-overlay ov)))
7168 (overlays-at start)))
7169 (setq ov (make-overlay start end))
7170 (overlay-put ov 'invisible 'org-hide-block)
7171 ;; make the block accessible to isearch
7172 (overlay-put
7173 ov 'isearch-open-invisible
7174 (lambda (ov)
7175 (when (member ov org-hide-block-overlays)
7176 (setq org-hide-block-overlays
7177 (delq ov org-hide-block-overlays)))
7178 (when (eq (overlay-get ov 'invisible)
7179 'org-hide-block)
7180 (delete-overlay ov))))
7181 (push ov org-hide-block-overlays)))
7182 (user-error "Not looking at a source block"))))
7184 ;; org-tab-after-check-for-cycling-hook
7185 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7186 ;; Remove overlays when changing major mode
7187 (add-hook 'org-mode-hook
7188 (lambda () (org-add-hook 'change-major-mode-hook
7189 'org-show-block-all 'append 'local)))
7191 ;;; Org-goto
7193 (defvar org-goto-window-configuration nil)
7194 (defvar org-goto-marker nil)
7195 (defvar org-goto-map)
7196 (defun org-goto-map ()
7197 "Set the keymap `org-goto'."
7198 (setq org-goto-map
7199 (let ((map (make-sparse-keymap)))
7200 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7201 mouse-drag-region universal-argument org-occur))
7202 cmd)
7203 (while (setq cmd (pop cmds))
7204 (substitute-key-definition cmd cmd map global-map)))
7205 (suppress-keymap map)
7206 (org-defkey map "\C-m" 'org-goto-ret)
7207 (org-defkey map [(return)] 'org-goto-ret)
7208 (org-defkey map [(left)] 'org-goto-left)
7209 (org-defkey map [(right)] 'org-goto-right)
7210 (org-defkey map [(control ?g)] 'org-goto-quit)
7211 (org-defkey map "\C-i" 'org-cycle)
7212 (org-defkey map [(tab)] 'org-cycle)
7213 (org-defkey map [(down)] 'outline-next-visible-heading)
7214 (org-defkey map [(up)] 'outline-previous-visible-heading)
7215 (if org-goto-auto-isearch
7216 (if (fboundp 'define-key-after)
7217 (define-key-after map [t] 'org-goto-local-auto-isearch)
7218 nil)
7219 (org-defkey map "q" 'org-goto-quit)
7220 (org-defkey map "n" 'outline-next-visible-heading)
7221 (org-defkey map "p" 'outline-previous-visible-heading)
7222 (org-defkey map "f" 'outline-forward-same-level)
7223 (org-defkey map "b" 'outline-backward-same-level)
7224 (org-defkey map "u" 'outline-up-heading))
7225 (org-defkey map "/" 'org-occur)
7226 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7227 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7228 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7229 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7230 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7231 map)))
7233 (defconst org-goto-help
7234 "Browse buffer copy, to find location or copy text.%s
7235 RET=jump to location C-g=quit and return to previous location
7236 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7238 (defvar org-goto-start-pos) ; dynamically scoped parameter
7240 (defun org-goto (&optional alternative-interface)
7241 "Look up a different location in the current file, keeping current visibility.
7243 When you want look-up or go to a different location in a
7244 document, the fastest way is often to fold the entire buffer and
7245 then dive into the tree. This method has the disadvantage, that
7246 the previous location will be folded, which may not be what you
7247 want.
7249 This command works around this by showing a copy of the current
7250 buffer in an indirect buffer, in overview mode. You can dive
7251 into the tree in that copy, use org-occur and incremental search
7252 to find a location. When pressing RET or `Q', the command
7253 returns to the original buffer in which the visibility is still
7254 unchanged. After RET it will also jump to the location selected
7255 in the indirect buffer and expose the headline hierarchy above.
7257 With a prefix argument, use the alternative interface: e.g. if
7258 `org-goto-interface' is 'outline use 'outline-path-completion."
7259 (interactive "P")
7260 (org-goto-map)
7261 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7262 (org-refile-use-outline-path t)
7263 (org-refile-target-verify-function nil)
7264 (interface
7265 (if (not alternative-interface)
7266 org-goto-interface
7267 (if (eq org-goto-interface 'outline)
7268 'outline-path-completion
7269 'outline)))
7270 (org-goto-start-pos (point))
7271 (selected-point
7272 (if (eq interface 'outline)
7273 (car (org-get-location (current-buffer) org-goto-help))
7274 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7275 (org-refile-check-position pa)
7276 (nth 3 pa)))))
7277 (if selected-point
7278 (progn
7279 (org-mark-ring-push org-goto-start-pos)
7280 (goto-char selected-point)
7281 (if (or (outline-invisible-p) (org-invisible-p2))
7282 (org-show-context 'org-goto)))
7283 (message "Quit"))))
7285 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7286 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7287 (defvar org-goto-local-auto-isearch-map) ; defined below
7289 (defun org-get-location (buf help)
7290 "Let the user select a location in the Org-mode buffer BUF.
7291 This function uses a recursive edit. It returns the selected position
7292 or nil."
7293 (org-no-popups
7294 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7295 (isearch-hide-immediately nil)
7296 (isearch-search-fun-function
7297 (lambda () 'org-goto-local-search-headings))
7298 (org-goto-selected-point org-goto-exit-command))
7299 (save-excursion
7300 (save-window-excursion
7301 (delete-other-windows)
7302 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7303 (org-pop-to-buffer-same-window
7304 (condition-case nil
7305 (make-indirect-buffer (current-buffer) "*org-goto*")
7306 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7307 (with-output-to-temp-buffer "*Org Help*"
7308 (princ (format help (if org-goto-auto-isearch
7309 " Just type for auto-isearch."
7310 " n/p/f/b/u to navigate, q to quit."))))
7311 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7312 (setq buffer-read-only nil)
7313 (let ((org-startup-truncated t)
7314 (org-startup-folded nil)
7315 (org-startup-align-all-tables nil))
7316 (org-mode)
7317 (org-overview))
7318 (setq buffer-read-only t)
7319 (if (and (boundp 'org-goto-start-pos)
7320 (integer-or-marker-p org-goto-start-pos))
7321 (let ((org-show-hierarchy-above t)
7322 (org-show-siblings t)
7323 (org-show-following-heading t))
7324 (goto-char org-goto-start-pos)
7325 (and (outline-invisible-p) (org-show-context)))
7326 (goto-char (point-min)))
7327 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7328 (message "Select location and press RET")
7329 (use-local-map org-goto-map)
7330 (recursive-edit)))
7331 (kill-buffer "*org-goto*")
7332 (cons org-goto-selected-point org-goto-exit-command))))
7334 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7335 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7336 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7337 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char)
7339 (defun org-goto-local-search-headings (string bound noerror)
7340 "Search and make sure that any matches are in headlines."
7341 (catch 'return
7342 (while (if isearch-forward
7343 (search-forward string bound noerror)
7344 (search-backward string bound noerror))
7345 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7346 (and (member :headline context)
7347 (not (member :tags context))))
7348 (throw 'return (point))))))
7350 (defun org-goto-local-auto-isearch ()
7351 "Start isearch."
7352 (interactive)
7353 (goto-char (point-min))
7354 (let ((keys (this-command-keys)))
7355 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7356 (isearch-mode t)
7357 (isearch-process-search-char (string-to-char keys)))))
7359 (defun org-goto-ret (&optional arg)
7360 "Finish `org-goto' by going to the new location."
7361 (interactive "P")
7362 (setq org-goto-selected-point (point)
7363 org-goto-exit-command 'return)
7364 (throw 'exit nil))
7366 (defun org-goto-left ()
7367 "Finish `org-goto' by going to the new location."
7368 (interactive)
7369 (if (org-at-heading-p)
7370 (progn
7371 (beginning-of-line 1)
7372 (setq org-goto-selected-point (point)
7373 org-goto-exit-command 'left)
7374 (throw 'exit nil))
7375 (user-error "Not on a heading")))
7377 (defun org-goto-right ()
7378 "Finish `org-goto' by going to the new location."
7379 (interactive)
7380 (if (org-at-heading-p)
7381 (progn
7382 (setq org-goto-selected-point (point)
7383 org-goto-exit-command 'right)
7384 (throw 'exit nil))
7385 (user-error "Not on a heading")))
7387 (defun org-goto-quit ()
7388 "Finish `org-goto' without cursor motion."
7389 (interactive)
7390 (setq org-goto-selected-point nil)
7391 (setq org-goto-exit-command 'quit)
7392 (throw 'exit nil))
7394 ;;; Indirect buffer display of subtrees
7396 (defvar org-indirect-dedicated-frame nil
7397 "This is the frame being used for indirect tree display.")
7398 (defvar org-last-indirect-buffer nil)
7400 (defun org-tree-to-indirect-buffer (&optional arg)
7401 "Create indirect buffer and narrow it to current subtree.
7402 With a numerical prefix ARG, go up to this level and then take that tree.
7403 If ARG is negative, go up that many levels.
7405 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7406 indirect buffer previously made with this command, to avoid proliferation of
7407 indirect buffers. However, when you call the command with a \
7408 \\[universal-argument] prefix, or
7409 when `org-indirect-buffer-display' is `new-frame', the last buffer
7410 is kept so that you can work with several indirect buffers at the same time.
7411 If `org-indirect-buffer-display' is `dedicated-frame', the \
7412 \\[universal-argument] prefix also
7413 requests that a new frame be made for the new buffer, so that the dedicated
7414 frame is not changed."
7415 (interactive "P")
7416 (let ((cbuf (current-buffer))
7417 (cwin (selected-window))
7418 (pos (point))
7419 beg end level heading ibuf)
7420 (save-excursion
7421 (org-back-to-heading t)
7422 (when (numberp arg)
7423 (setq level (org-outline-level))
7424 (if (< arg 0) (setq arg (+ level arg)))
7425 (while (> (setq level (org-outline-level)) arg)
7426 (org-up-heading-safe)))
7427 (setq beg (point)
7428 heading (org-get-heading))
7429 (org-end-of-subtree t t)
7430 (if (org-at-heading-p) (backward-char 1))
7431 (setq end (point)))
7432 (if (and (buffer-live-p org-last-indirect-buffer)
7433 (not (eq org-indirect-buffer-display 'new-frame))
7434 (not arg))
7435 (kill-buffer org-last-indirect-buffer))
7436 (setq ibuf (org-get-indirect-buffer cbuf)
7437 org-last-indirect-buffer ibuf)
7438 (cond
7439 ((or (eq org-indirect-buffer-display 'new-frame)
7440 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7441 (select-frame (make-frame))
7442 (delete-other-windows)
7443 (org-pop-to-buffer-same-window ibuf)
7444 (org-set-frame-title heading))
7445 ((eq org-indirect-buffer-display 'dedicated-frame)
7446 (raise-frame
7447 (select-frame (or (and org-indirect-dedicated-frame
7448 (frame-live-p org-indirect-dedicated-frame)
7449 org-indirect-dedicated-frame)
7450 (setq org-indirect-dedicated-frame (make-frame)))))
7451 (delete-other-windows)
7452 (org-pop-to-buffer-same-window ibuf)
7453 (org-set-frame-title (concat "Indirect: " heading)))
7454 ((eq org-indirect-buffer-display 'current-window)
7455 (org-pop-to-buffer-same-window ibuf))
7456 ((eq org-indirect-buffer-display 'other-window)
7457 (pop-to-buffer ibuf))
7458 (t (error "Invalid value")))
7459 (if (featurep 'xemacs)
7460 (save-excursion (org-mode) (turn-on-font-lock)))
7461 (narrow-to-region beg end)
7462 (show-all)
7463 (goto-char pos)
7464 (run-hook-with-args 'org-cycle-hook 'all)
7465 (and (window-live-p cwin) (select-window cwin))))
7467 (defun org-get-indirect-buffer (&optional buffer)
7468 (setq buffer (or buffer (current-buffer)))
7469 (let ((n 1) (base (buffer-name buffer)) bname)
7470 (while (buffer-live-p
7471 (get-buffer (setq bname (concat base "-" (number-to-string n)))))
7472 (setq n (1+ n)))
7473 (condition-case nil
7474 (make-indirect-buffer buffer bname 'clone)
7475 (error (make-indirect-buffer buffer bname)))))
7477 (defun org-set-frame-title (title)
7478 "Set the title of the current frame to the string TITLE."
7479 ;; FIXME: how to name a single frame in XEmacs???
7480 (unless (featurep 'xemacs)
7481 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7483 ;;;; Structure editing
7485 ;;; Inserting headlines
7487 (defun org-previous-line-empty-p (&optional next)
7488 "Is the previous line a blank line?
7489 When NEXT is non-nil, check the next line instead."
7490 (save-excursion
7491 (and (not (bobp))
7492 (or (beginning-of-line (if next 2 0)) t)
7493 (save-match-data
7494 (looking-at "[ \t]*$")))))
7496 (defun org-insert-heading (&optional arg invisible-ok)
7497 "Insert a new heading or item with same depth at point.
7498 If point is in a plain list and ARG is nil, create a new list item.
7499 With one universal prefix argument, insert a heading even in lists.
7500 With two universal prefix arguments, insert the heading at the end
7501 of the parent subtree.
7503 If point is at the beginning of a headline, insert a sibling before
7504 the current headline. If point is not at the beginning, split the line
7505 and create a new headline with the text in the current line after point
7506 \(see `org-M-RET-may-split-line' on how to modify this behavior).
7508 When INVISIBLE-OK is set, stop at invisible headlines when going back.
7509 This is important for non-interactive uses of the command."
7510 (interactive "P")
7511 (if (org-called-interactively-p 'any) (org-reveal))
7512 (cond
7513 ((or (= (buffer-size) 0)
7514 (and (not (save-excursion
7515 (and (ignore-errors (org-back-to-heading invisible-ok))
7516 (org-at-heading-p))))
7517 (or arg (not (org-in-item-p)))))
7518 (insert
7519 (if (org-previous-line-empty-p) "" "\n")
7520 (if (org-in-src-block-p) ",* " "* "))
7521 (run-hooks 'org-insert-heading-hook))
7522 ((or arg
7523 (and (not (org-in-item-p)) org-insert-heading-respect-content)
7524 (not (org-insert-item
7525 (save-excursion
7526 (beginning-of-line)
7527 (looking-at org-list-full-item-re)
7528 (match-string 3)))))
7529 (let (begn endn)
7530 (when (org-buffer-narrowed-p)
7531 (setq begn (point-min) endn (point-max))
7532 (widen))
7533 (let* ((empty-line-p nil)
7534 (eops (equal arg '(16))) ; insert at end of parent subtree
7535 (org-insert-heading-respect-content
7536 (or (not (null arg)) org-insert-heading-respect-content))
7537 (level nil)
7538 (on-heading (org-at-heading-p))
7539 ;; Get a level to fall back on
7540 (fix-level
7541 (save-excursion
7542 (org-back-to-heading t)
7543 (looking-at org-outline-regexp)
7544 (make-string (1- (length (match-string 0))) ?*)))
7545 (on-empty-line
7546 (save-excursion (beginning-of-line 1) (looking-at "^\\s-*$")))
7547 (head (save-excursion
7548 (condition-case nil
7549 (progn
7550 (org-back-to-heading invisible-ok)
7551 (when (and (not on-heading)
7552 (featurep 'org-inlinetask)
7553 (integerp org-inlinetask-min-level)
7554 (>= (length (match-string 0))
7555 org-inlinetask-min-level))
7556 ;; Find a heading level before the inline task
7557 (while (and (setq level (org-up-heading-safe))
7558 (>= level org-inlinetask-min-level)))
7559 (if (org-at-heading-p)
7560 (org-back-to-heading invisible-ok)
7561 (error "This should not happen")))
7562 (unless (and (save-excursion
7563 (save-match-data
7564 (org-backward-heading-same-level 1 invisible-ok))
7565 (= (point) (match-beginning 0)))
7566 (not (org-previous-line-empty-p t)))
7567 (setq empty-line-p (org-previous-line-empty-p)))
7568 (match-string 0))
7569 (error (or fix-level "* ")))))
7570 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7571 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7572 pos hide-previous previous-pos)
7573 (if ;; At the beginning of a heading, open a new line for insertion
7574 (and (bolp) (org-at-heading-p)
7575 (not eops)
7576 (or (bobp)
7577 (save-excursion (backward-char 1) (not (outline-invisible-p)))))
7578 (open-line (if blank 2 1))
7579 (save-excursion
7580 (setq previous-pos (point-at-bol))
7581 (end-of-line)
7582 (setq hide-previous (outline-invisible-p)))
7583 (and org-insert-heading-respect-content
7584 (save-excursion
7585 (while (outline-invisible-p)
7586 (org-show-subtree)
7587 (org-up-heading-safe))))
7588 (let ((split
7589 (and (org-get-alist-option org-M-RET-may-split-line 'headline)
7590 (save-excursion
7591 (let ((p (point)))
7592 (goto-char (point-at-bol))
7593 (and (looking-at org-complex-heading-regexp)
7594 (match-beginning 4)
7595 (> p (match-beginning 4)))))))
7596 tags pos)
7597 (cond
7598 ;; Insert a new line, possibly at end of parent subtree
7599 ((and (not arg) (not on-heading) (not on-empty-line)
7600 (not (save-excursion
7601 (beginning-of-line 1)
7602 (or (looking-at org-list-full-item-re)
7603 ;; Don't convert :end: lines to headline
7604 (looking-at "^\\s-*:end:")
7605 (looking-at "^\\s-*#\\+end_?")))))
7606 (beginning-of-line 1))
7607 (org-insert-heading-respect-content
7608 (if (not eops)
7609 (progn
7610 (org-end-of-subtree nil t)
7611 (and (looking-at "^\\*") (backward-char 1))
7612 (while (and (not (bobp))
7613 ;; Don't delete spaces in empty headlines
7614 (not (looking-back org-outline-regexp))
7615 (member (char-before) '(?\ ?\t ?\n)))
7616 (backward-delete-char 1)))
7617 (let ((p (point)))
7618 (org-up-heading-safe)
7619 (if (= p (point))
7620 (goto-char (point-max))
7621 (org-end-of-subtree nil t))))
7622 (when (featurep 'org-inlinetask)
7623 (while (and (not (eobp))
7624 (looking-at "\\(\\*+\\)[ \t]+")
7625 (>= (length (match-string 1))
7626 org-inlinetask-min-level))
7627 (org-end-of-subtree nil t)))
7628 (or (bolp) (newline))
7629 (or (org-previous-line-empty-p)
7630 (and blank (newline)))
7631 (if (or empty-line-p eops) (open-line 1)))
7632 ;; Insert a headling containing text after point
7633 ((org-at-heading-p)
7634 (when hide-previous
7635 (show-children)
7636 (org-show-entry))
7637 (looking-at ".*?\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?[ \t]*$")
7638 (setq tags (and (match-end 2) (match-string 2)))
7639 (and (match-end 1)
7640 (delete-region (match-beginning 1) (match-end 1)))
7641 (setq pos (point-at-bol))
7642 (or split (end-of-line 1))
7643 (delete-horizontal-space)
7644 (if (string-match "\\`\\*+\\'"
7645 (buffer-substring (point-at-bol) (point)))
7646 (insert " "))
7647 (newline (if blank 2 1))
7648 (when tags
7649 (save-excursion
7650 (goto-char pos)
7651 (end-of-line 1)
7652 (insert " " tags)
7653 (org-set-tags nil 'align))))
7655 (or split (end-of-line 1))
7656 (newline (cond ((and blank (not on-empty-line)) 2)
7657 (blank 1)
7658 (on-empty-line 0) (t 1)))))))
7659 (insert head) (just-one-space)
7660 (setq pos (point))
7661 (end-of-line 1)
7662 (unless (= (point) pos) (just-one-space) (backward-delete-char 1))
7663 (when (and org-insert-heading-respect-content hide-previous)
7664 (save-excursion
7665 (goto-char previous-pos)
7666 (hide-subtree)))
7667 (when (and begn endn)
7668 (narrow-to-region (min (point) begn) (max (point) endn)))
7669 (run-hooks 'org-insert-heading-hook))))))
7671 (defun org-get-heading (&optional no-tags no-todo)
7672 "Return the heading of the current entry, without the stars.
7673 When NO-TAGS is non-nil, don't include tags.
7674 When NO-TODO is non-nil, don't include TODO keywords."
7675 (save-excursion
7676 (org-back-to-heading t)
7677 (cond
7678 ((and no-tags no-todo)
7679 (looking-at org-complex-heading-regexp)
7680 (match-string 4))
7681 (no-tags
7682 (looking-at (concat org-outline-regexp
7683 "\\(.*?\\)"
7684 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7685 (match-string 1))
7686 (no-todo
7687 (looking-at org-todo-line-regexp)
7688 (match-string 3))
7689 (t (looking-at org-heading-regexp)
7690 (match-string 2)))))
7692 (defvar orgstruct-mode) ; defined below
7694 (defun org-heading-components ()
7695 "Return the components of the current heading.
7696 This is a list with the following elements:
7697 - the level as an integer
7698 - the reduced level, different if `org-odd-levels-only' is set.
7699 - the TODO keyword, or nil
7700 - the priority character, like ?A, or nil if no priority is given
7701 - the headline text itself, or the tags string if no headline text
7702 - the tags string, or nil."
7703 (save-excursion
7704 (org-back-to-heading t)
7705 (if (let (case-fold-search)
7706 (looking-at
7707 (if orgstruct-mode
7708 org-heading-regexp
7709 org-complex-heading-regexp)))
7710 (if orgstruct-mode
7711 (list (length (match-string 1))
7712 (org-reduced-level (length (match-string 1)))
7715 (match-string 2)
7716 nil)
7717 (list (length (match-string 1))
7718 (org-reduced-level (length (match-string 1)))
7719 (org-match-string-no-properties 2)
7720 (and (match-end 3) (aref (match-string 3) 2))
7721 (org-match-string-no-properties 4)
7722 (org-match-string-no-properties 5))))))
7724 (defun org-get-entry ()
7725 "Get the entry text, after heading, entire subtree."
7726 (save-excursion
7727 (org-back-to-heading t)
7728 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7730 (defun org-insert-heading-after-current ()
7731 "Insert a new heading with same level as current, after current subtree."
7732 (interactive)
7733 (org-back-to-heading)
7734 (org-insert-heading)
7735 (org-move-subtree-down)
7736 (end-of-line 1))
7738 (defun org-insert-heading-respect-content (&optional arg invisible-ok)
7739 "Insert heading with `org-insert-heading-respect-content' set to t."
7740 (interactive "P")
7741 (let ((org-insert-heading-respect-content t))
7742 (org-insert-heading arg invisible-ok)))
7744 (defun org-insert-todo-heading-respect-content (&optional force-state)
7745 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7746 (interactive "P")
7747 (let ((org-insert-heading-respect-content t))
7748 (org-insert-todo-heading force-state t)))
7750 (defun org-insert-todo-heading (arg &optional force-heading)
7751 "Insert a new heading with the same level and TODO state as current heading.
7752 If the heading has no TODO state, or if the state is DONE, use the first
7753 state (TODO by default). Also one prefix arg, force first state. With two
7754 prefix args, force inserting at the end of the parent subtree."
7755 (interactive "P")
7756 (when (or force-heading (not (org-insert-item 'checkbox)))
7757 (org-insert-heading (or (and (equal arg '(16)) '(16))
7758 force-heading))
7759 (save-excursion
7760 (org-back-to-heading)
7761 (outline-previous-heading)
7762 (looking-at org-todo-line-regexp))
7763 (let*
7764 ((new-mark-x
7765 (if (or arg
7766 (not (match-beginning 2))
7767 (member (match-string 2) org-done-keywords))
7768 (car org-todo-keywords-1)
7769 (match-string 2)))
7770 (new-mark
7772 (run-hook-with-args-until-success
7773 'org-todo-get-default-hook new-mark-x nil)
7774 new-mark-x)))
7775 (beginning-of-line 1)
7776 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7777 (if org-treat-insert-todo-heading-as-state-change
7778 (org-todo new-mark)
7779 (insert new-mark " "))))
7780 (when org-provide-todo-statistics
7781 (org-update-parent-todo-statistics))))
7783 (defun org-insert-subheading (arg)
7784 "Insert a new subheading and demote it.
7785 Works for outline headings and for plain lists alike."
7786 (interactive "P")
7787 (org-insert-heading arg)
7788 (cond
7789 ((org-at-heading-p) (org-do-demote))
7790 ((org-at-item-p) (org-indent-item))))
7792 (defun org-insert-todo-subheading (arg)
7793 "Insert a new subheading with TODO keyword or checkbox and demote it.
7794 Works for outline headings and for plain lists alike."
7795 (interactive "P")
7796 (org-insert-todo-heading arg)
7797 (cond
7798 ((org-at-heading-p) (org-do-demote))
7799 ((org-at-item-p) (org-indent-item))))
7801 ;;; Promotion and Demotion
7803 (defvar org-after-demote-entry-hook nil
7804 "Hook run after an entry has been demoted.
7805 The cursor will be at the beginning of the entry.
7806 When a subtree is being demoted, the hook will be called for each node.")
7808 (defvar org-after-promote-entry-hook nil
7809 "Hook run after an entry has been promoted.
7810 The cursor will be at the beginning of the entry.
7811 When a subtree is being promoted, the hook will be called for each node.")
7813 (defun org-promote-subtree ()
7814 "Promote the entire subtree.
7815 See also `org-promote'."
7816 (interactive)
7817 (save-excursion
7818 (org-with-limited-levels (org-map-tree 'org-promote)))
7819 (org-fix-position-after-promote))
7821 (defun org-demote-subtree ()
7822 "Demote the entire subtree. See `org-demote'.
7823 See also `org-promote'."
7824 (interactive)
7825 (save-excursion
7826 (org-with-limited-levels (org-map-tree 'org-demote)))
7827 (org-fix-position-after-promote))
7830 (defun org-do-promote ()
7831 "Promote the current heading higher up the tree.
7832 If the region is active in `transient-mark-mode', promote all headings
7833 in the region."
7834 (interactive)
7835 (save-excursion
7836 (if (org-region-active-p)
7837 (org-map-region 'org-promote (region-beginning) (region-end))
7838 (org-promote)))
7839 (org-fix-position-after-promote))
7841 (defun org-do-demote ()
7842 "Demote the current heading lower down the tree.
7843 If the region is active in `transient-mark-mode', demote all headings
7844 in the region."
7845 (interactive)
7846 (save-excursion
7847 (if (org-region-active-p)
7848 (org-map-region 'org-demote (region-beginning) (region-end))
7849 (org-demote)))
7850 (org-fix-position-after-promote))
7852 (defun org-fix-position-after-promote ()
7853 "Make sure that after pro/demotion cursor position is right."
7854 (let ((pos (point)))
7855 (when (save-excursion
7856 (beginning-of-line 1)
7857 (looking-at org-todo-line-regexp)
7858 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
7859 (cond ((eobp) (insert " "))
7860 ((eolp) (insert " "))
7861 ((equal (char-after) ?\ ) (forward-char 1))))))
7863 (defun org-current-level ()
7864 "Return the level of the current entry, or nil if before the first headline.
7865 The level is the number of stars at the beginning of the headline."
7866 (save-excursion
7867 (org-with-limited-levels
7868 (if (ignore-errors (org-back-to-heading t))
7869 (funcall outline-level)))))
7871 (defun org-get-previous-line-level ()
7872 "Return the outline depth of the last headline before the current line.
7873 Returns 0 for the first headline in the buffer, and nil if before the
7874 first headline."
7875 (let ((current-level (org-current-level))
7876 (prev-level (when (> (line-number-at-pos) 1)
7877 (save-excursion
7878 (beginning-of-line 0)
7879 (org-current-level)))))
7880 (cond ((null current-level) nil) ; Before first headline
7881 ((null prev-level) 0) ; At first headline
7882 (prev-level))))
7884 (defun org-reduced-level (l)
7885 "Compute the effective level of a heading.
7886 This takes into account the setting of `org-odd-levels-only'."
7887 (cond
7888 ((zerop l) 0)
7889 (org-odd-levels-only (1+ (floor (/ l 2))))
7890 (t l)))
7892 (defun org-level-increment ()
7893 "Return the number of stars that will be added or removed at a
7894 time to headlines when structure editing, based on the value of
7895 `org-odd-levels-only'."
7896 (if org-odd-levels-only 2 1))
7898 (defun org-get-valid-level (level &optional change)
7899 "Rectify a level change under the influence of `org-odd-levels-only'
7900 LEVEL is a current level, CHANGE is by how much the level should be
7901 modified. Even if CHANGE is nil, LEVEL may be returned modified because
7902 even level numbers will become the next higher odd number."
7903 (if org-odd-levels-only
7904 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
7905 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
7906 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
7907 (max 1 (+ level (or change 0)))))
7909 (if (boundp 'define-obsolete-function-alias)
7910 (if (or (featurep 'xemacs) (< emacs-major-version 23))
7911 (define-obsolete-function-alias 'org-get-legal-level
7912 'org-get-valid-level)
7913 (define-obsolete-function-alias 'org-get-legal-level
7914 'org-get-valid-level "23.1")))
7916 (defvar org-called-with-limited-levels nil) ;; Dynamically bound in
7917 ;; ̀org-with-limited-levels'
7918 (defun org-promote ()
7919 "Promote the current heading higher up the tree.
7920 If the region is active in `transient-mark-mode', promote all headings
7921 in the region."
7922 (org-back-to-heading t)
7923 (let* ((level (save-match-data (funcall outline-level)))
7924 (after-change-functions (remove 'flyspell-after-change-function
7925 after-change-functions))
7926 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
7927 (diff (abs (- level (length up-head) -1))))
7928 (cond ((and (= level 1) org-called-with-limited-levels
7929 org-allow-promoting-top-level-subtree)
7930 (replace-match "# " nil t))
7931 ((= level 1)
7932 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
7933 (t (replace-match up-head nil t)))
7934 ;; Fixup tag positioning
7935 (unless (= level 1)
7936 (and org-auto-align-tags (org-set-tags nil t))
7937 (if org-adapt-indentation (org-fixup-indentation (- diff))))
7938 (run-hooks 'org-after-promote-entry-hook)))
7940 (defun org-demote ()
7941 "Demote the current heading lower down the tree.
7942 If the region is active in `transient-mark-mode', demote all headings
7943 in the region."
7944 (org-back-to-heading t)
7945 (let* ((level (save-match-data (funcall outline-level)))
7946 (after-change-functions (remove 'flyspell-after-change-function
7947 after-change-functions))
7948 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
7949 (diff (abs (- level (length down-head) -1))))
7950 (replace-match down-head nil t)
7951 ;; Fixup tag positioning
7952 (and org-auto-align-tags (org-set-tags nil t))
7953 (if org-adapt-indentation (org-fixup-indentation diff))
7954 (run-hooks 'org-after-demote-entry-hook)))
7956 (defun org-cycle-level ()
7957 "Cycle the level of an empty headline through possible states.
7958 This goes first to child, then to parent, level, then up the hierarchy.
7959 After top level, it switches back to sibling level."
7960 (interactive)
7961 (let ((org-adapt-indentation nil))
7962 (when (org-point-at-end-of-empty-headline)
7963 (setq this-command 'org-cycle-level) ; Only needed for caching
7964 (let ((cur-level (org-current-level))
7965 (prev-level (org-get-previous-line-level)))
7966 (cond
7967 ;; If first headline in file, promote to top-level.
7968 ((= prev-level 0)
7969 (loop repeat (/ (- cur-level 1) (org-level-increment))
7970 do (org-do-promote)))
7971 ;; If same level as prev, demote one.
7972 ((= prev-level cur-level)
7973 (org-do-demote))
7974 ;; If parent is top-level, promote to top level if not already.
7975 ((= prev-level 1)
7976 (loop repeat (/ (- cur-level 1) (org-level-increment))
7977 do (org-do-promote)))
7978 ;; If top-level, return to prev-level.
7979 ((= cur-level 1)
7980 (loop repeat (/ (- prev-level 1) (org-level-increment))
7981 do (org-do-demote)))
7982 ;; If less than prev-level, promote one.
7983 ((< cur-level prev-level)
7984 (org-do-promote))
7985 ;; If deeper than prev-level, promote until higher than
7986 ;; prev-level.
7987 ((> cur-level prev-level)
7988 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
7989 do (org-do-promote))))
7990 t))))
7992 (defun org-map-tree (fun)
7993 "Call FUN for every heading underneath the current one."
7994 (org-back-to-heading)
7995 (let ((level (funcall outline-level)))
7996 (save-excursion
7997 (funcall fun)
7998 (while (and (progn
7999 (outline-next-heading)
8000 (> (funcall outline-level) level))
8001 (not (eobp)))
8002 (funcall fun)))))
8004 (defun org-map-region (fun beg end)
8005 "Call FUN for every heading between BEG and END."
8006 (let ((org-ignore-region t))
8007 (save-excursion
8008 (setq end (copy-marker end))
8009 (goto-char beg)
8010 (if (and (re-search-forward org-outline-regexp-bol nil t)
8011 (< (point) end))
8012 (funcall fun))
8013 (while (and (progn
8014 (outline-next-heading)
8015 (< (point) end))
8016 (not (eobp)))
8017 (funcall fun)))))
8019 (defvar org-property-end-re) ; silence byte-compiler
8020 (defun org-fixup-indentation (diff)
8021 "Change the indentation in the current entry by DIFF.
8022 However, if any line in the current entry has no indentation, or if it
8023 would end up with no indentation after the change, nothing at all is done."
8024 (save-excursion
8025 (let ((end (save-excursion (outline-next-heading)
8026 (point-marker)))
8027 (prohibit (if (> diff 0)
8028 "^\\S-"
8029 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
8030 col)
8031 (unless (save-excursion (end-of-line 1)
8032 (re-search-forward prohibit end t))
8033 (while (and (< (point) end)
8034 (re-search-forward "^[ \t]+" end t))
8035 (goto-char (match-end 0))
8036 (setq col (current-column))
8037 (if (< diff 0) (replace-match ""))
8038 (org-indent-to-column (+ diff col))))
8039 (move-marker end nil))))
8041 (defun org-convert-to-odd-levels ()
8042 "Convert an org-mode file with all levels allowed to one with odd levels.
8043 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8044 level 5 etc."
8045 (interactive)
8046 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8047 (let ((outline-level 'org-outline-level)
8048 (org-odd-levels-only nil) n)
8049 (save-excursion
8050 (goto-char (point-min))
8051 (while (re-search-forward "^\\*\\*+ " nil t)
8052 (setq n (- (length (match-string 0)) 2))
8053 (while (>= (setq n (1- n)) 0)
8054 (org-demote))
8055 (end-of-line 1))))))
8057 (defun org-convert-to-oddeven-levels ()
8058 "Convert an org-mode file with only odd levels to one with odd/even levels.
8059 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8060 file contains a section with an even level, conversion would
8061 destroy the structure of the file. An error is signaled in this
8062 case."
8063 (interactive)
8064 (goto-char (point-min))
8065 ;; First check if there are no even levels
8066 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8067 (org-show-context t)
8068 (error "Not all levels are odd in this file. Conversion not possible"))
8069 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8070 (let ((outline-regexp org-outline-regexp)
8071 (outline-level 'org-outline-level)
8072 (org-odd-levels-only nil) n)
8073 (save-excursion
8074 (goto-char (point-min))
8075 (while (re-search-forward "^\\*\\*+ " nil t)
8076 (setq n (/ (1- (length (match-string 0))) 2))
8077 (while (>= (setq n (1- n)) 0)
8078 (org-promote))
8079 (end-of-line 1))))))
8081 (defun org-tr-level (n)
8082 "Make N odd if required."
8083 (if org-odd-levels-only (1+ (/ n 2)) n))
8085 ;;; Vertical tree motion, cutting and pasting of subtrees
8087 (defun org-move-subtree-up (&optional arg)
8088 "Move the current subtree up past ARG headlines of the same level."
8089 (interactive "p")
8090 (org-move-subtree-down (- (prefix-numeric-value arg))))
8092 (defun org-move-subtree-down (&optional arg)
8093 "Move the current subtree down past ARG headlines of the same level."
8094 (interactive "p")
8095 (setq arg (prefix-numeric-value arg))
8096 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8097 'org-get-last-sibling))
8098 (ins-point (make-marker))
8099 (cnt (abs arg))
8100 (col (current-column))
8101 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8102 ;; Select the tree
8103 (org-back-to-heading)
8104 (setq beg0 (point))
8105 (save-excursion
8106 (setq ne-beg (org-back-over-empty-lines))
8107 (setq beg (point)))
8108 (save-match-data
8109 (save-excursion (outline-end-of-heading)
8110 (setq folded (outline-invisible-p)))
8111 (outline-end-of-subtree))
8112 (outline-next-heading)
8113 (setq ne-end (org-back-over-empty-lines))
8114 (setq end (point))
8115 (goto-char beg0)
8116 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8117 ;; include less whitespace
8118 (save-excursion
8119 (goto-char beg)
8120 (forward-line (- ne-beg ne-end))
8121 (setq beg (point))))
8122 ;; Find insertion point, with error handling
8123 (while (> cnt 0)
8124 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8125 (progn (goto-char beg0)
8126 (user-error "Cannot move past superior level or buffer limit")))
8127 (setq cnt (1- cnt)))
8128 (if (> arg 0)
8129 ;; Moving forward - still need to move over subtree
8130 (progn (org-end-of-subtree t t)
8131 (save-excursion
8132 (org-back-over-empty-lines)
8133 (or (bolp) (newline)))))
8134 (setq ne-ins (org-back-over-empty-lines))
8135 (move-marker ins-point (point))
8136 (setq txt (buffer-substring beg end))
8137 (org-save-markers-in-region beg end)
8138 (delete-region beg end)
8139 (org-remove-empty-overlays-at beg)
8140 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8141 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8142 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8143 (let ((bbb (point)))
8144 (insert-before-markers txt)
8145 (org-reinstall-markers-in-region bbb)
8146 (move-marker ins-point bbb))
8147 (or (bolp) (insert "\n"))
8148 (setq ins-end (point))
8149 (goto-char ins-point)
8150 (org-skip-whitespace)
8151 (when (and (< arg 0)
8152 (org-first-sibling-p)
8153 (> ne-ins ne-beg))
8154 ;; Move whitespace back to beginning
8155 (save-excursion
8156 (goto-char ins-end)
8157 (let ((kill-whole-line t))
8158 (kill-line (- ne-ins ne-beg)) (point)))
8159 (insert (make-string (- ne-ins ne-beg) ?\n)))
8160 (move-marker ins-point nil)
8161 (if folded
8162 (hide-subtree)
8163 (org-show-entry)
8164 (show-children)
8165 (org-cycle-hide-drawers 'children))
8166 (org-clean-visibility-after-subtree-move)
8167 ;; move back to the initial column we were at
8168 (move-to-column col)))
8170 (defvar org-subtree-clip ""
8171 "Clipboard for cut and paste of subtrees.
8172 This is actually only a copy of the kill, because we use the normal kill
8173 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8175 (defvar org-subtree-clip-folded nil
8176 "Was the last copied subtree folded?
8177 This is used to fold the tree back after pasting.")
8179 (defun org-cut-subtree (&optional n)
8180 "Cut the current subtree into the clipboard.
8181 With prefix arg N, cut this many sequential subtrees.
8182 This is a short-hand for marking the subtree and then cutting it."
8183 (interactive "p")
8184 (org-copy-subtree n 'cut))
8186 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8187 "Copy the current subtree it in the clipboard.
8188 With prefix arg N, copy this many sequential subtrees.
8189 This is a short-hand for marking the subtree and then copying it.
8190 If CUT is non-nil, actually cut the subtree.
8191 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8192 of some markers in the region, even if CUT is non-nil. This is
8193 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8194 (interactive "p")
8195 (let (beg end folded (beg0 (point)))
8196 (if (org-called-interactively-p 'any)
8197 (org-back-to-heading nil) ; take what looks like a subtree
8198 (org-back-to-heading t)) ; take what is really there
8199 (setq beg (point))
8200 (skip-chars-forward " \t\r\n")
8201 (save-match-data
8202 (if nosubtrees
8203 (outline-next-heading)
8204 (save-excursion (outline-end-of-heading)
8205 (setq folded (outline-invisible-p)))
8206 (condition-case nil
8207 (org-forward-heading-same-level (1- n) t)
8208 (error nil))
8209 (org-end-of-subtree t t)))
8210 (setq end (point))
8211 (goto-char beg0)
8212 (when (> end beg)
8213 (setq org-subtree-clip-folded folded)
8214 (when (or cut force-store-markers)
8215 (org-save-markers-in-region beg end))
8216 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8217 (setq org-subtree-clip (current-kill 0))
8218 (message "%s: Subtree(s) with %d characters"
8219 (if cut "Cut" "Copied")
8220 (length org-subtree-clip)))))
8222 (defun org-paste-subtree (&optional level tree for-yank)
8223 "Paste the clipboard as a subtree, with modification of headline level.
8224 The entire subtree is promoted or demoted in order to match a new headline
8225 level.
8227 If the cursor is at the beginning of a headline, the same level as
8228 that headline is used to paste the tree.
8230 If not, the new level is derived from the *visible* headings
8231 before and after the insertion point, and taken to be the inferior headline
8232 level of the two. So if the previous visible heading is level 3 and the
8233 next is level 4 (or vice versa), level 4 will be used for insertion.
8234 This makes sure that the subtree remains an independent subtree and does
8235 not swallow low level entries.
8237 You can also force a different level, either by using a numeric prefix
8238 argument, or by inserting the heading marker by hand. For example, if the
8239 cursor is after \"*****\", then the tree will be shifted to level 5.
8241 If optional TREE is given, use this text instead of the kill ring.
8243 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8244 move back over whitespace before inserting, and move point to the end of
8245 the inserted text when done."
8246 (interactive "P")
8247 (setq tree (or tree (and kill-ring (current-kill 0))))
8248 (unless (org-kill-is-subtree-p tree)
8249 (user-error "%s"
8250 (substitute-command-keys
8251 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8252 (org-with-limited-levels
8253 (let* ((visp (not (outline-invisible-p)))
8254 (txt tree)
8255 (^re_ "\\(\\*+\\)[ \t]*")
8256 (old-level (if (string-match org-outline-regexp-bol txt)
8257 (- (match-end 0) (match-beginning 0) 1)
8258 -1))
8259 (force-level (cond (level (prefix-numeric-value level))
8260 ((and (looking-at "[ \t]*$")
8261 (string-match
8262 "^\\*+$" (buffer-substring
8263 (point-at-bol) (point))))
8264 (- (match-end 1) (match-beginning 1)))
8265 ((and (bolp)
8266 (looking-at org-outline-regexp))
8267 (- (match-end 0) (point) 1))))
8268 (previous-level (save-excursion
8269 (condition-case nil
8270 (progn
8271 (outline-previous-visible-heading 1)
8272 (if (looking-at ^re_)
8273 (- (match-end 0) (match-beginning 0) 1)
8275 (error 1))))
8276 (next-level (save-excursion
8277 (condition-case nil
8278 (progn
8279 (or (looking-at org-outline-regexp)
8280 (outline-next-visible-heading 1))
8281 (if (looking-at ^re_)
8282 (- (match-end 0) (match-beginning 0) 1)
8284 (error 1))))
8285 (new-level (or force-level (max previous-level next-level)))
8286 (shift (if (or (= old-level -1)
8287 (= new-level -1)
8288 (= old-level new-level))
8290 (- new-level old-level)))
8291 (delta (if (> shift 0) -1 1))
8292 (func (if (> shift 0) 'org-demote 'org-promote))
8293 (org-odd-levels-only nil)
8294 beg end newend)
8295 ;; Remove the forced level indicator
8296 (if force-level
8297 (delete-region (point-at-bol) (point)))
8298 ;; Paste
8299 (beginning-of-line (if (bolp) 1 2))
8300 (setq beg (point))
8301 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8302 (insert-before-markers txt)
8303 (unless (string-match "\n\\'" txt) (insert "\n"))
8304 (setq newend (point))
8305 (org-reinstall-markers-in-region beg)
8306 (setq end (point))
8307 (goto-char beg)
8308 (skip-chars-forward " \t\n\r")
8309 (setq beg (point))
8310 (if (and (outline-invisible-p) visp)
8311 (save-excursion (outline-show-heading)))
8312 ;; Shift if necessary
8313 (unless (= shift 0)
8314 (save-restriction
8315 (narrow-to-region beg end)
8316 (while (not (= shift 0))
8317 (org-map-region func (point-min) (point-max))
8318 (setq shift (+ delta shift)))
8319 (goto-char (point-min))
8320 (setq newend (point-max))))
8321 (when (or (org-called-interactively-p 'interactive) for-yank)
8322 (message "Clipboard pasted as level %d subtree" new-level))
8323 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8324 kill-ring
8325 (eq org-subtree-clip (current-kill 0))
8326 org-subtree-clip-folded)
8327 ;; The tree was folded before it was killed/copied
8328 (hide-subtree))
8329 (and for-yank (goto-char newend)))))
8331 (defun org-kill-is-subtree-p (&optional txt)
8332 "Check if the current kill is an outline subtree, or a set of trees.
8333 Returns nil if kill does not start with a headline, or if the first
8334 headline level is not the largest headline level in the tree.
8335 So this will actually accept several entries of equal levels as well,
8336 which is OK for `org-paste-subtree'.
8337 If optional TXT is given, check this string instead of the current kill."
8338 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8339 (re (org-get-limited-outline-regexp))
8340 (^re (concat "^" re))
8341 (start-level (and kill
8342 (string-match
8343 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8344 kill)
8345 (- (match-end 2) (match-beginning 2) 1)))
8346 (start (1+ (or (match-beginning 2) -1))))
8347 (if (not start-level)
8348 (progn
8349 nil) ;; does not even start with a heading
8350 (catch 'exit
8351 (while (setq start (string-match ^re kill (1+ start)))
8352 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8353 (throw 'exit nil)))
8354 t))))
8356 (defvar org-markers-to-move nil
8357 "Markers that should be moved with a cut-and-paste operation.
8358 Those markers are stored together with their positions relative to
8359 the start of the region.")
8361 (defun org-save-markers-in-region (beg end)
8362 "Check markers in region.
8363 If these markers are between BEG and END, record their position relative
8364 to BEG, so that after moving the block of text, we can put the markers back
8365 into place.
8366 This function gets called just before an entry or tree gets cut from the
8367 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8368 called immediately, to move the markers with the entries."
8369 (setq org-markers-to-move nil)
8370 (when (featurep 'org-clock)
8371 (org-clock-save-markers-for-cut-and-paste beg end))
8372 (when (featurep 'org-agenda)
8373 (org-agenda-save-markers-for-cut-and-paste beg end)))
8375 (defun org-check-and-save-marker (marker beg end)
8376 "Check if MARKER is between BEG and END.
8377 If yes, remember the marker and the distance to BEG."
8378 (when (and (marker-buffer marker)
8379 (equal (marker-buffer marker) (current-buffer)))
8380 (if (and (>= marker beg) (< marker end))
8381 (push (cons marker (- marker beg)) org-markers-to-move))))
8383 (defun org-reinstall-markers-in-region (beg)
8384 "Move all remembered markers to their position relative to BEG."
8385 (mapc (lambda (x)
8386 (move-marker (car x) (+ beg (cdr x))))
8387 org-markers-to-move)
8388 (setq org-markers-to-move nil))
8390 (defun org-narrow-to-subtree ()
8391 "Narrow buffer to the current subtree."
8392 (interactive)
8393 (save-excursion
8394 (save-match-data
8395 (org-with-limited-levels
8396 (narrow-to-region
8397 (progn (org-back-to-heading t) (point))
8398 (progn (org-end-of-subtree t t)
8399 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8400 (point)))))))
8402 (defun org-narrow-to-block ()
8403 "Narrow buffer to the current block."
8404 (interactive)
8405 (let* ((case-fold-search t)
8406 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8407 "^[ \t]*#\\+end_.*")))
8408 (if blockp
8409 (narrow-to-region (car blockp) (cdr blockp))
8410 (user-error "Not in a block"))))
8412 (eval-when-compile
8413 (defvar org-property-drawer-re))
8415 (defvar org-property-start-re) ;; defined below
8416 (defun org-clone-subtree-with-time-shift (n &optional shift)
8417 "Clone the task (subtree) at point N times.
8418 The clones will be inserted as siblings.
8420 In interactive use, the user will be prompted for the number of
8421 clones to be produced. If the entry has a timestamp, the user
8422 will also be prompted for a time shift, which may be a repeater
8423 as used in time stamps, for example `+3d'. To disable this,
8424 you can call the function with a universal prefix argument.
8426 When a valid repeater is given and the entry contains any time
8427 stamps, the clones will become a sequence in time, with time
8428 stamps in the subtree shifted for each clone produced. If SHIFT
8429 is nil or the empty string, time stamps will be left alone. The
8430 ID property of the original subtree is removed.
8432 If the original subtree did contain time stamps with a repeater,
8433 the following will happen:
8434 - the repeater will be removed in each clone
8435 - an additional clone will be produced, with the current, unshifted
8436 date(s) in the entry.
8437 - the original entry will be placed *after* all the clones, with
8438 repeater intact.
8439 - the start days in the repeater in the original entry will be shifted
8440 to past the last clone.
8441 In this way you can spell out a number of instances of a repeating task,
8442 and still retain the repeater to cover future instances of the task."
8443 (interactive "nNumber of clones to produce: ")
8444 (let ((shift
8445 (or shift
8446 (if (and (not (equal current-prefix-arg '(4)))
8447 (save-excursion
8448 (re-search-forward org-ts-regexp-both
8449 (save-excursion
8450 (org-end-of-subtree t)
8451 (point)) t)))
8452 (read-from-minibuffer
8453 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8454 ""))) ;; No time shift
8455 (n-no-remove -1)
8456 (drawer-re org-drawer-regexp)
8457 beg end template task idprop
8458 shift-n shift-what doshift nmin nmax)
8459 (if (not (and (integerp n) (> n 0)))
8460 (error "Invalid number of replications %s" n))
8461 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8462 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8463 shift)))
8464 (error "Invalid shift specification %s" shift))
8465 (when doshift
8466 (setq shift-n (string-to-number (match-string 1 shift))
8467 shift-what (cdr (assoc (match-string 2 shift)
8468 '(("d" . day) ("w" . week)
8469 ("m" . month) ("y" . year))))))
8470 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8471 (setq nmin 1 nmax n)
8472 (org-back-to-heading t)
8473 (setq beg (point))
8474 (setq idprop (org-entry-get nil "ID"))
8475 (org-end-of-subtree t t)
8476 (or (bolp) (insert "\n"))
8477 (setq end (point))
8478 (setq template (buffer-substring beg end))
8479 (when (and doshift
8480 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8481 (delete-region beg end)
8482 (setq end beg)
8483 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8484 (goto-char end)
8485 (loop for n from nmin to nmax do
8486 ;; prepare clone
8487 (with-temp-buffer
8488 (insert template)
8489 (org-mode)
8490 (goto-char (point-min))
8491 (org-show-subtree)
8492 (and idprop (if org-clone-delete-id
8493 (org-entry-delete nil "ID")
8494 (org-id-get-create t)))
8495 (unless (= n 0)
8496 (while (re-search-forward "^[ \t]*CLOCK:.*$" nil t)
8497 (kill-whole-line))
8498 (goto-char (point-min))
8499 (while (re-search-forward drawer-re nil t)
8500 (mapc (lambda (d)
8501 (org-remove-empty-drawer-at d (point))) org-drawers)))
8502 (goto-char (point-min))
8503 (when doshift
8504 (while (re-search-forward org-ts-regexp-both nil t)
8505 (org-timestamp-change (* n shift-n) shift-what))
8506 (unless (= n n-no-remove)
8507 (goto-char (point-min))
8508 (while (re-search-forward org-ts-regexp nil t)
8509 (save-excursion
8510 (goto-char (match-beginning 0))
8511 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8512 (delete-region (match-beginning 1) (match-end 1)))))))
8513 (setq task (buffer-string)))
8514 (insert task))
8515 (goto-char beg)))
8517 ;;; Outline Sorting
8519 (defun org-sort (with-case)
8520 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8521 Optional argument WITH-CASE means sort case-sensitively."
8522 (interactive "P")
8523 (cond
8524 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8525 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8527 (org-call-with-arg 'org-sort-entries with-case))))
8529 (defun org-sort-remove-invisible (s)
8530 "Remove invisible links from string S."
8531 (remove-text-properties 0 (length s) org-rm-props s)
8532 (while (string-match org-bracket-link-regexp s)
8533 (setq s (replace-match (if (match-end 2)
8534 (match-string 3 s)
8535 (match-string 1 s)) t t s)))
8536 (let ((st (format " %s " s)))
8537 (while (string-match org-emph-re st)
8538 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8539 (setq s (substring st 1 -1)))
8542 (defvar org-priority-regexp) ; defined later in the file
8544 (defvar org-after-sorting-entries-or-items-hook nil
8545 "Hook that is run after a bunch of entries or items have been sorted.
8546 When children are sorted, the cursor is in the parent line when this
8547 hook gets called. When a region or a plain list is sorted, the cursor
8548 will be in the first entry of the sorted region/list.")
8550 (defun org-sort-entries
8551 (&optional with-case sorting-type getkey-func compare-func property)
8552 "Sort entries on a certain level of an outline tree.
8553 If there is an active region, the entries in the region are sorted.
8554 Else, if the cursor is before the first entry, sort the top-level items.
8555 Else, the children of the entry at point are sorted.
8557 Sorting can be alphabetically, numerically, by date/time as given by
8558 a time stamp, by a property, by priority order, or by a custom function.
8560 The command prompts for the sorting type unless it has been given to the
8561 function through the SORTING-TYPE argument, which needs to be a character,
8562 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F). Here is the
8563 precise meaning of each character:
8565 n Numerically, by converting the beginning of the entry/item to a number.
8566 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8567 o By order of TODO keywords.
8568 t By date/time, either the first active time stamp in the entry, or, if
8569 none exist, by the first inactive one.
8570 s By the scheduled date/time.
8571 d By deadline date/time.
8572 c By creation time, which is assumed to be the first inactive time stamp
8573 at the beginning of a line.
8574 p By priority according to the cookie.
8575 r By the value of a property.
8577 Capital letters will reverse the sort order.
8579 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8580 called with point at the beginning of the record. It must return either
8581 a string or a number that should serve as the sorting key for that record.
8583 Comparing entries ignores case by default. However, with an optional argument
8584 WITH-CASE, the sorting considers case as well.
8586 Sorting is done against the visible part of the headlines, it ignores hidden
8587 links."
8588 (interactive "P")
8589 (let ((case-func (if with-case 'identity 'downcase))
8590 (cmstr
8591 ;; The clock marker is lost when using `sort-subr', let's
8592 ;; store the clocking string.
8593 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8594 (save-excursion
8595 (goto-char org-clock-marker)
8596 (looking-back "^.*") (match-string-no-properties 0))))
8597 start beg end stars re re2
8598 txt what tmp)
8599 ;; Find beginning and end of region to sort
8600 (cond
8601 ((org-region-active-p)
8602 ;; we will sort the region
8603 (setq end (region-end)
8604 what "region")
8605 (goto-char (region-beginning))
8606 (if (not (org-at-heading-p)) (outline-next-heading))
8607 (setq start (point)))
8608 ((or (org-at-heading-p)
8609 (condition-case nil (progn (org-back-to-heading) t) (error nil)))
8610 ;; we will sort the children of the current headline
8611 (org-back-to-heading)
8612 (setq start (point)
8613 end (progn (org-end-of-subtree t t)
8614 (or (bolp) (insert "\n"))
8615 (org-back-over-empty-lines)
8616 (point))
8617 what "children")
8618 (goto-char start)
8619 (show-subtree)
8620 (outline-next-heading))
8622 ;; we will sort the top-level entries in this file
8623 (goto-char (point-min))
8624 (or (org-at-heading-p) (outline-next-heading))
8625 (setq start (point))
8626 (goto-char (point-max))
8627 (beginning-of-line 1)
8628 (when (looking-at ".*?\\S-")
8629 ;; File ends in a non-white line
8630 (end-of-line 1)
8631 (insert "\n"))
8632 (setq end (point-max))
8633 (setq what "top-level")
8634 (goto-char start)
8635 (show-all)))
8637 (setq beg (point))
8638 (if (>= beg end) (user-error "Nothing to sort"))
8640 (looking-at "\\(\\*+\\)")
8641 (setq stars (match-string 1)
8642 re (concat "^" (regexp-quote stars) " +")
8643 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8644 txt (buffer-substring beg end))
8645 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8646 (if (and (not (equal stars "*")) (string-match re2 txt))
8647 (user-error "Region to sort contains a level above the first entry"))
8649 (unless sorting-type
8650 (message
8651 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8652 [t]ime [s]cheduled [d]eadline [c]reated
8653 A/N/P/R/O/F/T/S/D/C means reversed:"
8654 what)
8655 (setq sorting-type (read-char-exclusive))
8657 (unless getkey-func
8658 (and (= (downcase sorting-type) ?f)
8659 (setq getkey-func
8660 (org-icompleting-read "Sort using function: "
8661 obarray 'fboundp t nil nil))
8662 (setq getkey-func (intern getkey-func))))
8664 (and (= (downcase sorting-type) ?r)
8665 (not property)
8666 (setq property
8667 (org-icompleting-read "Property: "
8668 (mapcar 'list (org-buffer-property-keys t))
8669 nil t))))
8671 (message "Sorting entries...")
8673 (save-restriction
8674 (narrow-to-region start end)
8675 (let ((dcst (downcase sorting-type))
8676 (case-fold-search nil)
8677 (now (current-time)))
8678 (sort-subr
8679 (/= dcst sorting-type)
8680 ;; This function moves to the beginning character of the "record" to
8681 ;; be sorted.
8682 (lambda nil
8683 (if (re-search-forward re nil t)
8684 (goto-char (match-beginning 0))
8685 (goto-char (point-max))))
8686 ;; This function moves to the last character of the "record" being
8687 ;; sorted.
8688 (lambda nil
8689 (save-match-data
8690 (condition-case nil
8691 (outline-forward-same-level 1)
8692 (error
8693 (goto-char (point-max))))))
8694 ;; This function returns the value that gets sorted against.
8695 (lambda nil
8696 (cond
8697 ((= dcst ?n)
8698 (if (looking-at org-complex-heading-regexp)
8699 (string-to-number (org-sort-remove-invisible (match-string 4)))
8700 nil))
8701 ((= dcst ?a)
8702 (if (looking-at org-complex-heading-regexp)
8703 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8704 nil))
8705 ((= dcst ?t)
8706 (let ((end (save-excursion (outline-next-heading) (point))))
8707 (if (or (re-search-forward org-ts-regexp end t)
8708 (re-search-forward org-ts-regexp-both end t))
8709 (org-time-string-to-seconds (match-string 0))
8710 (org-float-time now))))
8711 ((= dcst ?c)
8712 (let ((end (save-excursion (outline-next-heading) (point))))
8713 (if (re-search-forward
8714 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
8715 end t)
8716 (org-time-string-to-seconds (match-string 0))
8717 (org-float-time now))))
8718 ((= dcst ?s)
8719 (let ((end (save-excursion (outline-next-heading) (point))))
8720 (if (re-search-forward org-scheduled-time-regexp end t)
8721 (org-time-string-to-seconds (match-string 1))
8722 (org-float-time now))))
8723 ((= dcst ?d)
8724 (let ((end (save-excursion (outline-next-heading) (point))))
8725 (if (re-search-forward org-deadline-time-regexp end t)
8726 (org-time-string-to-seconds (match-string 1))
8727 (org-float-time now))))
8728 ((= dcst ?p)
8729 (if (re-search-forward org-priority-regexp (point-at-eol) t)
8730 (string-to-char (match-string 2))
8731 org-default-priority))
8732 ((= dcst ?r)
8733 (or (org-entry-get nil property) ""))
8734 ((= dcst ?o)
8735 (if (looking-at org-complex-heading-regexp)
8736 (- 9999 (length (member (match-string 2)
8737 org-todo-keywords-1)))))
8738 ((= dcst ?f)
8739 (if getkey-func
8740 (progn
8741 (setq tmp (funcall getkey-func))
8742 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
8743 tmp)
8744 (error "Invalid key function `%s'" getkey-func)))
8745 (t (error "Invalid sorting type `%c'" sorting-type))))
8747 (cond
8748 ((= dcst ?a) 'string<)
8749 ((= dcst ?f) compare-func)
8750 ((member dcst '(?p ?t ?s ?d ?c)) '<)))))
8751 (run-hooks 'org-after-sorting-entries-or-items-hook)
8752 ;; Reset the clock marker if needed
8753 (when cmstr
8754 (save-excursion
8755 (goto-char start)
8756 (search-forward cmstr nil t)
8757 (move-marker org-clock-marker (point))))
8758 (message "Sorting entries...done")))
8760 (defun org-do-sort (table what &optional with-case sorting-type)
8761 "Sort TABLE of WHAT according to SORTING-TYPE.
8762 The user will be prompted for the SORTING-TYPE if the call to this
8763 function does not specify it. WHAT is only for the prompt, to indicate
8764 what is being sorted. The sorting key will be extracted from
8765 the car of the elements of the table.
8766 If WITH-CASE is non-nil, the sorting will be case-sensitive."
8767 (unless sorting-type
8768 (message
8769 "Sort %s: [a]lphabetic, [n]umeric, [t]ime. A/N/T means reversed:"
8770 what)
8771 (setq sorting-type (read-char-exclusive)))
8772 (let ((dcst (downcase sorting-type))
8773 extractfun comparefun)
8774 ;; Define the appropriate functions
8775 (cond
8776 ((= dcst ?n)
8777 (setq extractfun 'string-to-number
8778 comparefun (if (= dcst sorting-type) '< '>)))
8779 ((= dcst ?a)
8780 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
8781 (lambda(x) (downcase (org-sort-remove-invisible x))))
8782 comparefun (if (= dcst sorting-type)
8783 'string<
8784 (lambda (a b) (and (not (string< a b))
8785 (not (string= a b)))))))
8786 ((= dcst ?t)
8787 (setq extractfun
8788 (lambda (x)
8789 (if (or (string-match org-ts-regexp x)
8790 (string-match org-ts-regexp-both x))
8791 (org-float-time
8792 (org-time-string-to-time (match-string 0 x)))
8794 comparefun (if (= dcst sorting-type) '< '>)))
8795 (t (error "Invalid sorting type `%c'" sorting-type)))
8797 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
8798 table)
8799 (lambda (a b) (funcall comparefun (car a) (car b))))))
8802 ;;; The orgstruct minor mode
8804 ;; Define a minor mode which can be used in other modes in order to
8805 ;; integrate the org-mode structure editing commands.
8807 ;; This is really a hack, because the org-mode structure commands use
8808 ;; keys which normally belong to the major mode. Here is how it
8809 ;; works: The minor mode defines all the keys necessary to operate the
8810 ;; structure commands, but wraps the commands into a function which
8811 ;; tests if the cursor is currently at a headline or a plain list
8812 ;; item. If that is the case, the structure command is used,
8813 ;; temporarily setting many Org-mode variables like regular
8814 ;; expressions for filling etc. However, when any of those keys is
8815 ;; used at a different location, function uses `key-binding' to look
8816 ;; up if the key has an associated command in another currently active
8817 ;; keymap (minor modes, major mode, global), and executes that
8818 ;; command. There might be problems if any of the keys is otherwise
8819 ;; used as a prefix key.
8821 (defcustom orgstruct-heading-prefix-regexp nil
8822 "Regexp that matches the custom prefix of Org headlines in
8823 orgstruct(++)-mode."
8824 :group 'org
8825 :version "24.4"
8826 :package-version '(Org . "8.0")
8827 :type 'string)
8828 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
8830 (defcustom orgstruct-setup-hook nil
8831 "Hook run after orgstruct-mode-map is filled."
8832 :group 'org
8833 :version "24.4"
8834 :package-version '(Org . "8.0")
8835 :type 'hook)
8837 (defvar orgstruct-initialized nil)
8839 (defvar org-local-vars nil
8840 "List of local variables, for use by `orgstruct-mode'.")
8842 ;;;###autoload
8843 (define-minor-mode orgstruct-mode
8844 "Toggle the minor mode `orgstruct-mode'.
8845 This mode is for using Org-mode structure commands in other
8846 modes. The following keys behave as if Org-mode were active, if
8847 the cursor is on a headline, or on a plain list item (both as
8848 defined by Org-mode)."
8849 nil " OrgStruct" (make-sparse-keymap)
8850 (funcall (if orgstruct-mode
8851 'add-to-invisibility-spec
8852 'remove-from-invisibility-spec)
8853 '(outline . t))
8854 (when orgstruct-mode
8855 (org-load-modules-maybe)
8856 (unless orgstruct-initialized
8857 (orgstruct-setup)
8858 (setq orgstruct-initialized t))))
8860 ;;;###autoload
8861 (defun turn-on-orgstruct ()
8862 "Unconditionally turn on `orgstruct-mode'."
8863 (orgstruct-mode 1))
8865 (defvar org-fb-vars nil)
8866 (make-variable-buffer-local 'org-fb-vars)
8867 (defun orgstruct++-mode (&optional arg)
8868 "Toggle `orgstruct-mode', the enhanced version of it.
8869 In addition to setting orgstruct-mode, this also exports all
8870 indentation and autofilling variables from org-mode into the
8871 buffer. It will also recognize item context in multiline items."
8872 (interactive "P")
8873 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
8874 (if (< arg 1)
8875 (progn (orgstruct-mode -1)
8876 (mapc (lambda(v)
8877 (org-set-local (car v)
8878 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
8879 org-fb-vars))
8880 (orgstruct-mode 1)
8881 (setq org-fb-vars nil)
8882 (let (var val)
8883 (mapc
8884 (lambda (x)
8885 (when (string-match
8886 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
8887 (symbol-name (car x)))
8888 (setq var (car x) val (nth 1 x))
8889 (push (list var `(quote ,(eval var))) org-fb-vars)
8890 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
8891 org-local-vars)
8892 (org-set-local 'orgstruct-is-++ t))))
8894 (defvar orgstruct-is-++ nil
8895 "Is `orgstruct-mode' in ++ version in the current-buffer?")
8896 (make-variable-buffer-local 'orgstruct-is-++)
8898 ;;;###autoload
8899 (defun turn-on-orgstruct++ ()
8900 "Unconditionally turn on `orgstruct++-mode'."
8901 (orgstruct++-mode 1))
8903 (defun orgstruct-error ()
8904 "Error when there is no default binding for a structure key."
8905 (interactive)
8906 (funcall (if (fboundp 'user-error)
8907 'user-error
8908 'error)
8909 "This key has no function outside structure elements"))
8911 (defun orgstruct-setup ()
8912 "Setup orgstruct keymap."
8913 (dolist (cell '((org-demote . t)
8914 (org-metaleft . t)
8915 (org-metaright . t)
8916 (org-promote . t)
8917 (org-shiftmetaleft . t)
8918 (org-shiftmetaright . t)
8919 org-backward-element
8920 org-backward-heading-same-level
8921 org-ctrl-c-ret
8922 org-ctrl-c-minus
8923 org-ctrl-c-star
8924 org-cycle
8925 org-forward-heading-same-level
8926 org-insert-heading
8927 org-insert-heading-respect-content
8928 org-kill-note-or-show-branches
8929 org-mark-subtree
8930 org-meta-return
8931 org-metadown
8932 org-metaup
8933 org-narrow-to-subtree
8934 org-promote-subtree
8935 org-reveal
8936 org-shiftdown
8937 org-shiftleft
8938 org-shiftmetadown
8939 org-shiftmetaup
8940 org-shiftright
8941 org-shifttab
8942 org-shifttab
8943 org-shiftup
8944 org-show-subtree
8945 org-sort
8946 org-up-element
8947 outline-demote
8948 outline-next-visible-heading
8949 outline-previous-visible-heading
8950 outline-promote
8951 outline-up-heading
8952 show-children))
8953 (let ((f (or (car-safe cell) cell))
8954 (disable-when-heading-prefix (cdr-safe cell)))
8955 (when (fboundp f)
8956 (dolist (binding (nconc (where-is-internal f org-mode-map)
8957 (where-is-internal f outline-mode-map)))
8958 ;; TODO use local-function-key-map
8959 (dolist (rep '(("<tab>" . "TAB")
8960 ("<return>" . "RET")
8961 ("<escape>" . "ESC")
8962 ("<delete>" . "DEL")))
8963 (setq binding (read-kbd-macro
8964 (let ((case-fold-search))
8965 (replace-regexp-in-string
8966 (regexp-quote (cdr rep))
8967 (car rep)
8968 (key-description binding))))))
8969 (let ((key (lookup-key orgstruct-mode-map binding)))
8970 (when (or (not key) (numberp key))
8971 (condition-case nil
8972 (org-defkey orgstruct-mode-map
8973 binding
8974 (orgstruct-make-binding f binding disable-when-heading-prefix))
8975 (error nil))))))))
8976 (run-hooks 'orgstruct-setup-hook))
8978 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
8979 "Create a function for binding in the structure minor mode.
8980 FUN is the command to call inside a table. KEY is the key that
8981 should be checked in for a command to execute outside of tables.
8982 Non-nil DISABLE-WHEN-HEADING-PREFIX means to disable the command
8983 if `orgstruct-heading-prefix-regexp' is non-nil."
8984 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
8985 (let ((nname name)
8986 (i 0))
8987 (while (fboundp (intern nname))
8988 (setq nname (format "%s-%d" name (setq i (1+ i)))))
8989 (setq name (intern nname)))
8990 (eval
8991 (let ((bindings '((org-heading-regexp
8992 (concat "^"
8993 orgstruct-heading-prefix-regexp
8994 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
8995 (org-outline-regexp
8996 (concat orgstruct-heading-prefix-regexp "\\*+ "))
8997 (org-outline-regexp-bol
8998 (concat "^" org-outline-regexp))
8999 (outline-regexp org-outline-regexp)
9000 (outline-heading-end-regexp "\n")
9001 (outline-level 'org-outline-level)
9002 (outline-heading-alist))))
9003 `(defun ,name (arg)
9004 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9005 "Outside of structure, run the binding of `"
9006 (key-description key) "'."
9007 (when disable-when-heading-prefix
9008 (concat
9009 "\nIf `orgstruct-heading-prefix-regexp' is non-nil, this command will always fall\n"
9010 "back to the default binding due to limitations of Org's implementation of\n"
9011 "`" (symbol-name fun) "'.")))
9012 (interactive "p")
9013 (let* ((disable
9014 ,(when disable-when-heading-prefix
9015 '(and orgstruct-heading-prefix-regexp
9016 (not (string= orgstruct-heading-prefix-regexp "")))))
9017 (fallback
9018 (or disable
9019 (not
9020 (let* ,bindings
9021 (org-context-p 'headline 'item
9022 ,(when (memq fun '(org-insert-heading))
9023 '(when orgstruct-is-++
9024 'item-body))))))))
9025 (if fallback
9026 (let* ((orgstruct-mode)
9027 (binding
9028 (loop with key = ,key
9029 for rep in
9030 '(nil
9031 ("<\\([^>]*\\)tab>" . "\\1TAB")
9032 ("<\\([^>]*\\)return>" . "\\1RET")
9033 ("<\\([^>]*\\)escape>" . "\\1ESC")
9034 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9036 (when rep
9037 (setq key (read-kbd-macro
9038 (let ((case-fold-search))
9039 (replace-regexp-in-string
9040 (car rep)
9041 (cdr rep)
9042 (key-description key))))))
9043 thereis (key-binding key))))
9044 (if (keymapp binding)
9045 (set-temporary-overlay-map binding)
9046 (let ((func (or binding
9047 (unless disable
9048 'orgstruct-error))))
9049 (when func
9050 (call-interactively func)))))
9051 (org-run-like-in-org-mode
9052 (lambda ()
9053 (interactive)
9054 (let* ,bindings
9055 (call-interactively ',fun)))))))))
9056 name))
9058 (defun org-contextualize-keys (alist contexts)
9059 "Return valid elements in ALIST depending on CONTEXTS.
9061 `org-agenda-custom-commands' or `org-capture-templates' are the
9062 values used for ALIST, and `org-agenda-custom-commands-contexts'
9063 or `org-capture-templates-contexts' are the associated contexts
9064 definitions."
9065 (let ((contexts
9066 ;; normalize contexts
9067 (mapcar
9068 (lambda(c) (cond ((listp (cadr c))
9069 (list (car c) (car c) (cadr c)))
9070 ((string= "" (cadr c))
9071 (list (car c) (car c) (caddr c)))
9072 (t c))) contexts))
9073 (a alist) c r s)
9074 ;; loop over all commands or templates
9075 (while (setq c (pop a))
9076 (let (vrules repl)
9077 (cond
9078 ((not (assoc (car c) contexts))
9079 (push c r))
9080 ((and (assoc (car c) contexts)
9081 (setq vrules (org-contextualize-validate-key
9082 (car c) contexts)))
9083 (mapc (lambda (vr)
9084 (when (not (equal (car vr) (cadr vr)))
9085 (setq repl vr))) vrules)
9086 (if (not repl) (push c r)
9087 (push (cadr repl) s)
9088 (push
9089 (cons (car c)
9090 (cdr (or (assoc (cadr repl) alist)
9091 (error "Undefined key `%s' as contextual replacement for `%s'"
9092 (cadr repl) (car c)))))
9093 r))))))
9094 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9095 (delq
9097 (delete-dups
9098 (mapcar (lambda (x)
9099 (let ((tpl (car x)))
9100 (when (not (delq
9102 (mapcar (lambda(y)
9103 (equal y tpl)) s))) x)))
9104 (reverse r))))))
9106 (defun org-contextualize-validate-key (key contexts)
9107 "Check CONTEXTS for agenda or capture KEY."
9108 (let (r rr res)
9109 (while (setq r (pop contexts))
9110 (mapc
9111 (lambda (rr)
9112 (when
9113 (and (equal key (car r))
9114 (if (functionp rr) (funcall rr)
9115 (or (and (eq (car rr) 'in-file)
9116 (buffer-file-name)
9117 (string-match (cdr rr) (buffer-file-name)))
9118 (and (eq (car rr) 'in-mode)
9119 (string-match (cdr rr) (symbol-name major-mode)))
9120 (and (eq (car rr) 'in-buffer)
9121 (string-match (cdr rr) (buffer-name)))
9122 (when (and (eq (car rr) 'not-in-file)
9123 (buffer-file-name))
9124 (not (string-match (cdr rr) (buffer-file-name))))
9125 (when (eq (car rr) 'not-in-mode)
9126 (not (string-match (cdr rr) (symbol-name major-mode))))
9127 (when (eq (car rr) 'not-in-buffer)
9128 (not (string-match (cdr rr) (buffer-name)))))))
9129 (push r res)))
9130 (car (last r))))
9131 (delete-dups (delq nil res))))
9133 (defun org-context-p (&rest contexts)
9134 "Check if local context is any of CONTEXTS.
9135 Possible values in the list of contexts are `table', `headline', and `item'."
9136 (let ((pos (point)))
9137 (goto-char (point-at-bol))
9138 (prog1 (or (and (memq 'table contexts)
9139 (looking-at "[ \t]*|"))
9140 (and (memq 'headline contexts)
9141 (looking-at org-outline-regexp))
9142 (and (memq 'item contexts)
9143 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9144 (and (memq 'item-body contexts)
9145 (org-in-item-p)))
9146 (goto-char pos))))
9148 (defun org-get-local-variables ()
9149 "Return a list of all local variables in an Org mode buffer."
9150 (let (varlist)
9151 (with-current-buffer (get-buffer-create "*Org tmp*")
9152 (erase-buffer)
9153 (org-mode)
9154 (setq varlist (buffer-local-variables)))
9155 (kill-buffer "*Org tmp*")
9156 (delq nil
9157 (mapcar
9158 (lambda (x)
9159 (setq x
9160 (if (symbolp x)
9161 (list x)
9162 (list (car x) (cdr x))))
9163 (if (and (not (get (car x) 'org-state))
9164 (string-match
9165 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9166 (symbol-name (car x))))
9167 x nil))
9168 varlist))))
9170 (defun org-clone-local-variables (from-buffer &optional regexp)
9171 "Clone local variables from FROM-BUFFER.
9172 Optional argument REGEXP selects variables to clone."
9173 (mapc
9174 (lambda (pair)
9175 (and (symbolp (car pair))
9176 (or (null regexp)
9177 (string-match regexp (symbol-name (car pair))))
9178 (set (make-local-variable (car pair))
9179 (cdr pair))))
9180 (buffer-local-variables from-buffer)))
9182 ;;;###autoload
9183 (defun org-run-like-in-org-mode (cmd)
9184 "Run a command, pretending that the current buffer is in Org-mode.
9185 This will temporarily bind local variables that are typically bound in
9186 Org-mode to the values they have in Org-mode, and then interactively
9187 call CMD."
9188 (org-load-modules-maybe)
9189 (unless org-local-vars
9190 (setq org-local-vars (org-get-local-variables)))
9191 (let (binds)
9192 (dolist (var org-local-vars)
9193 (when (or (not (boundp (car var)))
9194 (eq (symbol-value (car var))
9195 (default-value (car var))))
9196 (push (list (car var) `(quote ,(cadr var))) binds)))
9197 (eval `(let ,binds
9198 (call-interactively (quote ,cmd))))))
9200 ;;;; Archiving
9202 (defun org-get-category (&optional pos force-refresh)
9203 "Get the category applying to position POS."
9204 (save-match-data
9205 (if force-refresh (org-refresh-category-properties))
9206 (let ((pos (or pos (point))))
9207 (or (get-text-property pos 'org-category)
9208 (progn (org-refresh-category-properties)
9209 (get-text-property pos 'org-category))))))
9211 (defun org-refresh-category-properties ()
9212 "Refresh category text properties in the buffer."
9213 (let ((case-fold-search t)
9214 (inhibit-read-only t)
9215 (def-cat (cond
9216 ((null org-category)
9217 (if buffer-file-name
9218 (file-name-sans-extension
9219 (file-name-nondirectory buffer-file-name))
9220 "???"))
9221 ((symbolp org-category) (symbol-name org-category))
9222 (t org-category)))
9223 beg end cat pos optionp)
9224 (org-with-silent-modifications
9225 (save-excursion
9226 (save-restriction
9227 (widen)
9228 (goto-char (point-min))
9229 (put-text-property (point) (point-max) 'org-category def-cat)
9230 (while (re-search-forward
9231 "^\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
9232 (setq pos (match-end 0)
9233 optionp (equal (char-after (match-beginning 0)) ?#)
9234 cat (org-trim (match-string 2)))
9235 (if optionp
9236 (setq beg (point-at-bol) end (point-max))
9237 (org-back-to-heading t)
9238 (setq beg (point) end (org-end-of-subtree t t)))
9239 (put-text-property beg end 'org-category cat)
9240 (put-text-property beg end 'org-category-position beg)
9241 (goto-char pos)))))))
9243 (defun org-refresh-properties (dprop tprop)
9244 "Refresh buffer text properties.
9245 DPROP is the drawer property and TPROP is the corresponding text
9246 property to set."
9247 (let ((case-fold-search t)
9248 (inhibit-read-only t) p)
9249 (org-with-silent-modifications
9250 (save-excursion
9251 (save-restriction
9252 (widen)
9253 (goto-char (point-min))
9254 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9255 (setq p (org-match-string-no-properties 1))
9256 (save-excursion
9257 (org-back-to-heading t)
9258 (put-text-property
9259 (point-at-bol) (org-end-of-subtree t t) tprop p))))))))
9262 ;;;; Link Stuff
9264 ;;; Link abbreviations
9266 (defun org-link-expand-abbrev (link)
9267 "Apply replacements as defined in `org-link-abbrev-alist'."
9268 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9269 (let* ((key (match-string 1 link))
9270 (as (or (assoc key org-link-abbrev-alist-local)
9271 (assoc key org-link-abbrev-alist)))
9272 (tag (and (match-end 2) (match-string 3 link)))
9273 rpl)
9274 (if (not as)
9275 link
9276 (setq rpl (cdr as))
9277 (cond
9278 ((symbolp rpl) (funcall rpl tag))
9279 ((string-match "%(\\([^)]+\\))" rpl)
9280 (replace-match
9281 (save-match-data
9282 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9283 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9284 ((string-match "%h" rpl)
9285 (replace-match (url-hexify-string (or tag "")) t t rpl))
9286 (t (concat rpl tag)))))
9287 link))
9289 ;;; Storing and inserting links
9291 (defvar org-insert-link-history nil
9292 "Minibuffer history for links inserted with `org-insert-link'.")
9294 (defvar org-stored-links nil
9295 "Contains the links stored with `org-store-link'.")
9297 (defvar org-store-link-plist nil
9298 "Plist with info about the most recently link created with `org-store-link'.")
9300 (defvar org-link-protocols nil
9301 "Link protocols added to Org-mode using `org-add-link-type'.")
9303 (defvar org-store-link-functions nil
9304 "List of functions that are called to create and store a link.
9305 Each function will be called in turn until one returns a non-nil
9306 value. Each function should check if it is responsible for creating
9307 this link (for example by looking at the major mode).
9308 If not, it must exit and return nil.
9309 If yes, it should return a non-nil value after a calling
9310 `org-store-link-props' with a list of properties and values.
9311 Special properties are:
9313 :type The link prefix, like \"http\". This must be given.
9314 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9315 This is obligatory as well.
9316 :description Optional default description for the second pair
9317 of brackets in an Org-mode link. The user can still change
9318 this when inserting this link into an Org-mode buffer.
9320 In addition to these, any additional properties can be specified
9321 and then used in capture templates.")
9323 (defun org-add-link-type (type &optional follow export)
9324 "Add TYPE to the list of `org-link-types'.
9325 Re-compute all regular expressions depending on `org-link-types'
9327 FOLLOW and EXPORT are two functions.
9329 FOLLOW should take the link path as the single argument and do whatever
9330 is necessary to follow the link, for example find a file or display
9331 a mail message.
9333 EXPORT should format the link path for export to one of the export formats.
9334 It should be a function accepting three arguments:
9336 path the path of the link, the text after the prefix (like \"http:\")
9337 desc the description of the link, if any, or a description added by
9338 org-export-normalize-links if there is none
9339 format the export format, a symbol like `html' or `latex' or `ascii'..
9341 The function may use the FORMAT information to return different values
9342 depending on the format. The return value will be put literally into
9343 the exported file. If the return value is nil, this means Org should
9344 do what it normally does with links which do not have EXPORT defined.
9346 Org-mode has a built-in default for exporting links. If you are happy with
9347 this default, there is no need to define an export function for the link
9348 type. For a simple example of an export function, see `org-bbdb.el'."
9349 (add-to-list 'org-link-types type t)
9350 (org-make-link-regexps)
9351 (if (assoc type org-link-protocols)
9352 (setcdr (assoc type org-link-protocols) (list follow export))
9353 (push (list type follow export) org-link-protocols)))
9355 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9356 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9358 ;;;###autoload
9359 (defun org-store-link (arg)
9360 "\\<org-mode-map>Store an org-link to the current location.
9361 This link is added to `org-stored-links' and can later be inserted
9362 into an org-buffer with \\[org-insert-link].
9364 For some link types, a prefix arg is interpreted.
9365 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9366 For file links, arg negates `org-context-in-file-links'.
9368 A double prefix arg force skipping storing functions that are not
9369 part of Org's core.
9371 A triple prefix arg force storing a link for each line in the
9372 active region."
9373 (interactive "P")
9374 (org-load-modules-maybe)
9375 (if (and (equal arg '(64)) (org-region-active-p))
9376 (save-excursion
9377 (let ((end (region-end)))
9378 (goto-char (region-beginning))
9379 (set-mark (point))
9380 (while (< (point-at-eol) end)
9381 (move-end-of-line 1) (activate-mark)
9382 (let (current-prefix-arg)
9383 (call-interactively 'org-store-link))
9384 (move-beginning-of-line 2)
9385 (set-mark (point)))))
9386 (org-with-limited-levels
9387 (setq org-store-link-plist nil)
9388 (let (link cpltxt desc description search
9389 txt custom-id agenda-link sfuns sfunsn)
9390 (cond
9392 ;; Store a link using an external link type
9393 ((and (not (equal arg '(16)))
9394 (setq sfuns
9395 (delq
9396 nil (mapcar (lambda (f)
9397 (let (fs) (if (funcall f) (push f fs))))
9398 org-store-link-functions))
9399 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9400 (or (and (cdr sfuns)
9401 (funcall (intern
9402 (completing-read
9403 "Which function for creating the link? "
9404 sfunsn t (car sfunsn)))))
9405 (funcall (caar sfuns)))
9406 (setq link (plist-get org-store-link-plist :link)
9407 desc (or (plist-get org-store-link-plist
9408 :description) link))))
9410 ;; Store a link from a source code buffer
9411 ((org-src-edit-buffer-p)
9412 (let (label gc)
9413 (while (or (not label)
9414 (save-excursion
9415 (save-restriction
9416 (widen)
9417 (goto-char (point-min))
9418 (re-search-forward
9419 (regexp-quote (format org-coderef-label-format label))
9420 nil t))))
9421 (when label (message "Label exists already") (sit-for 2))
9422 (setq label (read-string "Code line label: " label)))
9423 (end-of-line 1)
9424 (setq link (format org-coderef-label-format label))
9425 (setq gc (- 79 (length link)))
9426 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9427 (insert link)
9428 (setq link (concat "(" label ")") desc nil)))
9430 ;; We are in the agenda, link to referenced location
9431 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9432 (let ((m (or (get-text-property (point) 'org-hd-marker)
9433 (get-text-property (point) 'org-marker))))
9434 (when m
9435 (org-with-point-at m
9436 (setq agenda-link
9437 (if (org-called-interactively-p 'any)
9438 (call-interactively 'org-store-link)
9439 (org-store-link nil)))))))
9441 ((eq major-mode 'calendar-mode)
9442 (let ((cd (calendar-cursor-to-date)))
9443 (setq link
9444 (format-time-string
9445 (car org-time-stamp-formats)
9446 (apply 'encode-time
9447 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9448 nil nil nil))))
9449 (org-store-link-props :type "calendar" :date cd)))
9451 ((eq major-mode 'help-mode)
9452 (setq link (concat "help:" (save-excursion
9453 (goto-char (point-min))
9454 (looking-at "^[^ ]+")
9455 (match-string 0))))
9456 (org-store-link-props :type "help"))
9458 ((eq major-mode 'w3-mode)
9459 (setq cpltxt (if (and (buffer-name)
9460 (not (string-match "Untitled" (buffer-name))))
9461 (buffer-name)
9462 (url-view-url t))
9463 link (url-view-url t))
9464 (org-store-link-props :type "w3" :url (url-view-url t)))
9466 ((eq major-mode 'image-mode)
9467 (setq cpltxt (concat "file:"
9468 (abbreviate-file-name buffer-file-name))
9469 link cpltxt)
9470 (org-store-link-props :type "image" :file buffer-file-name))
9472 ;; In dired, store a link to the file of the current line
9473 ((eq major-mode 'dired-mode)
9474 (let ((file (dired-get-filename nil t)))
9475 (setq file (if file
9476 (abbreviate-file-name
9477 (expand-file-name (dired-get-filename nil t)))
9478 ;; otherwise, no file so use current directory.
9479 default-directory))
9480 (setq cpltxt (concat "file:" file)
9481 link cpltxt)))
9483 ((setq search (run-hook-with-args-until-success
9484 'org-create-file-search-functions))
9485 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9486 "::" search))
9487 (setq cpltxt (or description link)))
9489 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9490 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9491 (cond
9492 ;; Store a link using the target at point
9493 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9494 (setq cpltxt
9495 (concat "file:"
9496 (abbreviate-file-name
9497 (buffer-file-name (buffer-base-buffer)))
9498 "::" (match-string 1))
9499 link cpltxt))
9500 ((and (featurep 'org-id)
9501 (or (eq org-id-link-to-org-use-id t)
9502 (and (org-called-interactively-p 'any)
9503 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9504 (and (eq org-id-link-to-org-use-id
9505 'create-if-interactive-and-no-custom-id)
9506 (not custom-id))))
9507 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9508 ;; Store a link using the ID at point
9509 (setq link (condition-case nil
9510 (prog1 (org-id-store-link)
9511 (setq desc (plist-get org-store-link-plist
9512 :description)))
9513 (error
9514 ;; Probably before first headline, link only to file
9515 (concat "file:"
9516 (abbreviate-file-name
9517 (buffer-file-name (buffer-base-buffer))))))))
9519 ;; Just link to current headline
9520 (setq cpltxt (concat "file:"
9521 (abbreviate-file-name
9522 (buffer-file-name (buffer-base-buffer)))))
9523 ;; Add a context search string
9524 (when (org-xor org-context-in-file-links arg)
9525 (let* ((ee (org-element-at-point))
9526 (et (org-element-type ee))
9527 (ev (plist-get (cadr ee) :value))
9528 (ek (plist-get (cadr ee) :key))
9529 (eok (and (stringp ek) (string-match "name" ek))))
9530 (setq txt (cond
9531 ((org-at-heading-p) nil)
9532 ((and (eq et 'keyword) eok) ev)
9533 ((org-region-active-p)
9534 (buffer-substring (region-beginning) (region-end)))))
9535 (when (or (null txt) (string-match "\\S-" txt))
9536 (setq cpltxt
9537 (concat cpltxt "::"
9538 (condition-case nil
9539 (org-make-org-heading-search-string txt)
9540 (error "")))
9541 desc (or (and (eq et 'keyword) eok ev)
9542 (nth 4 (ignore-errors (org-heading-components)))
9543 "NONE")))))
9544 (if (string-match "::\\'" cpltxt)
9545 (setq cpltxt (substring cpltxt 0 -2)))
9546 (setq link cpltxt))))
9548 ((buffer-file-name (buffer-base-buffer))
9549 ;; Just link to this file here.
9550 (setq cpltxt (concat "file:"
9551 (abbreviate-file-name
9552 (buffer-file-name (buffer-base-buffer)))))
9553 ;; Add a context string.
9554 (when (org-xor org-context-in-file-links arg)
9555 (setq txt (if (org-region-active-p)
9556 (buffer-substring (region-beginning) (region-end))
9557 (buffer-substring (point-at-bol) (point-at-eol))))
9558 ;; Only use search option if there is some text.
9559 (when (string-match "\\S-" txt)
9560 (setq cpltxt
9561 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9562 desc "NONE")))
9563 (setq link cpltxt))
9565 ((org-called-interactively-p 'interactive)
9566 (user-error "No method for storing a link from this buffer"))
9568 (t (setq link nil)))
9570 ;; We're done setting link and desc, clean up
9571 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9572 (setq link (or link cpltxt)
9573 desc (or desc cpltxt))
9574 (cond ((equal desc "NONE") (setq desc nil))
9575 ((string-match org-bracket-link-analytic-regexp desc)
9576 (let ((d0 (match-string 3 desc))
9577 (p0 (match-string 5 desc)))
9578 (setq desc
9579 (replace-regexp-in-string
9580 org-bracket-link-regexp
9581 (concat (or p0 d0)
9582 (if (equal (length (match-string 0 desc))
9583 (length desc)) "*" "")) desc)))))
9585 ;; Return the link
9586 (if (not (and (or (org-called-interactively-p 'any)
9587 executing-kbd-macro) link))
9588 (or agenda-link (and link (org-make-link-string link desc)))
9589 (push (list link desc) org-stored-links)
9590 (message "Stored: %s" (or desc link))
9591 (when custom-id
9592 (setq link (concat "file:" (abbreviate-file-name
9593 (buffer-file-name)) "::#" custom-id))
9594 (push (list link desc) org-stored-links)))))))
9596 (defun org-store-link-props (&rest plist)
9597 "Store link properties, extract names and addresses."
9598 (let (x adr)
9599 (when (setq x (plist-get plist :from))
9600 (setq adr (mail-extract-address-components x))
9601 (setq plist (plist-put plist :fromname (car adr)))
9602 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9603 (when (setq x (plist-get plist :to))
9604 (setq adr (mail-extract-address-components x))
9605 (setq plist (plist-put plist :toname (car adr)))
9606 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9607 (let ((from (plist-get plist :from))
9608 (to (plist-get plist :to)))
9609 (when (and from to org-from-is-user-regexp)
9610 (setq plist
9611 (plist-put plist :fromto
9612 (if (string-match org-from-is-user-regexp from)
9613 (concat "to %t")
9614 (concat "from %f"))))))
9615 (setq org-store-link-plist plist))
9617 (defun org-add-link-props (&rest plist)
9618 "Add these properties to the link property list."
9619 (let (key value)
9620 (while plist
9621 (setq key (pop plist) value (pop plist))
9622 (setq org-store-link-plist
9623 (plist-put org-store-link-plist key value)))))
9625 (defun org-email-link-description (&optional fmt)
9626 "Return the description part of an email link.
9627 This takes information from `org-store-link-plist' and formats it
9628 according to FMT (default from `org-email-link-description-format')."
9629 (setq fmt (or fmt org-email-link-description-format))
9630 (let* ((p org-store-link-plist)
9631 (to (plist-get p :toaddress))
9632 (from (plist-get p :fromaddress))
9633 (table
9634 (list
9635 (cons "%c" (plist-get p :fromto))
9636 (cons "%F" (plist-get p :from))
9637 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9638 (cons "%T" (plist-get p :to))
9639 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9640 (cons "%s" (plist-get p :subject))
9641 (cons "%d" (plist-get p :date))
9642 (cons "%m" (plist-get p :message-id)))))
9643 (when (string-match "%c" fmt)
9644 ;; Check if the user wrote this message
9645 (if (and org-from-is-user-regexp from to
9646 (save-match-data (string-match org-from-is-user-regexp from)))
9647 (setq fmt (replace-match "to %t" t t fmt))
9648 (setq fmt (replace-match "from %f" t t fmt))))
9649 (org-replace-escapes fmt table)))
9651 (defun org-make-org-heading-search-string (&optional string)
9652 "Make search string for the current headline or STRING."
9653 (let ((s (or string
9654 (and (derived-mode-p 'org-mode)
9655 (save-excursion
9656 (org-back-to-heading t)
9657 (org-element-property :raw-value (org-element-at-point))))))
9658 (lines org-context-in-file-links))
9659 (or string (setq s (concat "*" s))) ; Add * for headlines
9660 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9661 (when (and string (integerp lines) (> lines 0))
9662 (let ((slines (org-split-string s "\n")))
9663 (when (< lines (length slines))
9664 (setq s (mapconcat
9665 'identity
9666 (reverse (nthcdr (- (length slines) lines)
9667 (reverse slines))) "\n")))))
9668 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
9670 (defun org-make-link-string (link &optional description)
9671 "Make a link with brackets, consisting of LINK and DESCRIPTION."
9672 (unless (string-match "\\S-" link)
9673 (error "Empty link"))
9674 (when (and description
9675 (stringp description)
9676 (not (string-match "\\S-" description)))
9677 (setq description nil))
9678 (when (stringp description)
9679 ;; Remove brackets from the description, they are fatal.
9680 (while (string-match "\\[" description)
9681 (setq description (replace-match "{" t t description)))
9682 (while (string-match "\\]" description)
9683 (setq description (replace-match "}" t t description))))
9684 (when (equal link description)
9685 ;; No description needed, it is identical
9686 (setq description nil))
9687 (when (and (not description)
9688 (not (string-match (org-image-file-name-regexp) link))
9689 (not (equal link (org-link-escape link))))
9690 (setq description (org-extract-attributes link)))
9691 (setq link
9692 (cond ((string-match (org-image-file-name-regexp) link) link)
9693 ((string-match org-link-types-re link)
9694 (concat (match-string 1 link)
9695 (org-link-escape (substring link (match-end 1)))))
9696 (t (org-link-escape link))))
9697 (concat "[[" link "]"
9698 (if description (concat "[" description "]") "")
9699 "]"))
9701 (defconst org-link-escape-chars
9702 '(?\ ?\[ ?\] ?\; ?\= ?\+)
9703 "List of characters that should be escaped in link.
9704 This is the list that is used for internal purposes.")
9706 (defconst org-link-escape-chars-browser
9707 '(?\ )
9708 "List of escapes for characters that are problematic in links.
9709 This is the list that is used before handing over to the browser.")
9711 (defun org-link-escape (text &optional table merge)
9712 "Return percent escaped representation of TEXT.
9713 TEXT is a string with the text to escape.
9714 Optional argument TABLE is a list with characters that should be
9715 escaped. When nil, `org-link-escape-chars' is used.
9716 If optional argument MERGE is set, merge TABLE into
9717 `org-link-escape-chars'."
9718 (cond
9719 ((and table merge)
9720 (mapc (lambda (defchr)
9721 (unless (member defchr table)
9722 (setq table (cons defchr table)))) org-link-escape-chars))
9723 ((null table)
9724 (setq table org-link-escape-chars)))
9725 (mapconcat
9726 (lambda (char)
9727 (if (or (member char table)
9728 (and (or (< char 32) (= char 37) (> char 126))
9729 org-url-hexify-p))
9730 (mapconcat (lambda (sequence-element)
9731 (format "%%%.2X" sequence-element))
9732 (or (encode-coding-char char 'utf-8)
9733 (error "Unable to percent escape character: %s"
9734 (char-to-string char))) "")
9735 (char-to-string char))) text ""))
9737 (defun org-link-unescape (str)
9738 "Unhex hexified Unicode strings as returned from the JavaScript function
9739 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
9740 (unless (and (null str) (string= "" str))
9741 (let ((pos 0) (case-fold-search t) unhexed)
9742 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
9743 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
9744 (setq str (replace-match unhexed t t str))
9745 (setq pos (+ pos (length unhexed))))))
9746 str)
9748 (defun org-link-unescape-compound (hex)
9749 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
9750 Note: this function also decodes single byte encodings like
9751 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
9752 (save-match-data
9753 (let* ((bytes (cdr (split-string hex "%")))
9754 (ret "")
9755 (eat 0)
9756 (sum 0))
9757 (while bytes
9758 (let* ((val (string-to-number (pop bytes) 16))
9759 (shift-xor
9760 (if (= 0 eat)
9761 (cond
9762 ((>= val 252) (cons 6 252))
9763 ((>= val 248) (cons 5 248))
9764 ((>= val 240) (cons 4 240))
9765 ((>= val 224) (cons 3 224))
9766 ((>= val 192) (cons 2 192))
9767 (t (cons 0 0)))
9768 (cons 6 128))))
9769 (if (>= val 192) (setq eat (car shift-xor)))
9770 (setq val (logxor val (cdr shift-xor)))
9771 (setq sum (+ (lsh sum (car shift-xor)) val))
9772 (if (> eat 0) (setq eat (- eat 1)))
9773 (cond
9774 ((= 0 eat) ;multi byte
9775 (setq ret (concat ret (org-char-to-string sum)))
9776 (setq sum 0))
9777 ((not bytes) ; single byte(s)
9778 (setq ret (org-link-unescape-single-byte-sequence hex))))
9779 )) ;; end (while bytes
9780 ret )))
9782 (defun org-link-unescape-single-byte-sequence (hex)
9783 "Unhexify hex-encoded single byte character sequences."
9784 (mapconcat (lambda (byte)
9785 (char-to-string (string-to-number byte 16)))
9786 (cdr (split-string hex "%")) ""))
9788 (defun org-xor (a b)
9789 "Exclusive or."
9790 (if a (not b) b))
9792 (defun org-fixup-message-id-for-http (s)
9793 "Replace special characters in a message id, so it can be used in an http query."
9794 (when (string-match "%" s)
9795 (setq s (mapconcat (lambda (c)
9796 (if (eq c ?%)
9797 "%25"
9798 (char-to-string c)))
9799 s "")))
9800 (while (string-match "<" s)
9801 (setq s (replace-match "%3C" t t s)))
9802 (while (string-match ">" s)
9803 (setq s (replace-match "%3E" t t s)))
9804 (while (string-match "@" s)
9805 (setq s (replace-match "%40" t t s)))
9808 (defun org-link-prettify (link)
9809 "Return a human-readable representation of LINK.
9810 The car of LINK must be a raw link the cdr of LINK must be either
9811 a link description or nil."
9812 (let ((desc (or (cadr link) "<no description>")))
9813 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
9814 "<" (car link) ">")))
9816 ;;;###autoload
9817 (defun org-insert-link-global ()
9818 "Insert a link like Org-mode does.
9819 This command can be called in any mode to insert a link in Org-mode syntax."
9820 (interactive)
9821 (org-load-modules-maybe)
9822 (org-run-like-in-org-mode 'org-insert-link))
9824 (defun org-insert-all-links (&optional keep)
9825 "Insert all links in `org-stored-links'."
9826 (interactive "P")
9827 (let ((links (copy-sequence org-stored-links)) l)
9828 (while (setq l (if keep (pop links) (pop org-stored-links)))
9829 (insert "- ")
9830 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
9831 (insert "\n"))))
9833 (defun org-link-fontify-links-to-this-file ()
9834 "Fontify links to the current file in `org-stored-links'."
9835 (let ((f (buffer-file-name)) a b)
9836 (setq a (mapcar (lambda(l)
9837 (let ((ll (car l)))
9838 (when (and (string-match "^file:\\(.+\\)::" ll)
9839 (equal f (expand-file-name (match-string 1 ll))))
9840 ll)))
9841 org-stored-links))
9842 (when (featurep 'org-id)
9843 (setq b (mapcar (lambda(l)
9844 (let ((ll (car l)))
9845 (when (and (string-match "^id:\\(.+\\)$" ll)
9846 (equal f (expand-file-name
9847 (or (org-id-find-id-file
9848 (match-string 1 ll)) ""))))
9849 ll)))
9850 org-stored-links)))
9851 (mapcar (lambda(l)
9852 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
9853 (delq nil (append a b)))))
9855 (defvar org-link-links-in-this-file nil)
9856 (defun org-insert-link (&optional complete-file link-location default-description)
9857 "Insert a link. At the prompt, enter the link.
9859 Completion can be used to insert any of the link protocol prefixes like
9860 http or ftp in use.
9862 The history can be used to select a link previously stored with
9863 `org-store-link'. When the empty string is entered (i.e. if you just
9864 press RET at the prompt), the link defaults to the most recently
9865 stored link. As SPC triggers completion in the minibuffer, you need to
9866 use M-SPC or C-q SPC to force the insertion of a space character.
9868 You will also be prompted for a description, and if one is given, it will
9869 be displayed in the buffer instead of the link.
9871 If there is already a link at point, this command will allow you to edit link
9872 and description parts.
9874 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
9875 be selected using completion. The path to the file will be relative to the
9876 current directory if the file is in the current directory or a subdirectory.
9877 Otherwise, the link will be the absolute path as completed in the minibuffer
9878 \(i.e. normally ~/path/to/file). You can configure this behavior using the
9879 option `org-link-file-path-type'.
9881 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
9882 the current directory or below.
9884 With three \\[universal-argument] prefixes, negate the meaning of
9885 `org-keep-stored-link-after-insertion'.
9887 If `org-make-link-description-function' is non-nil, this function will be
9888 called with the link target, and the result will be the default
9889 link description.
9891 If the LINK-LOCATION parameter is non-nil, this value will be
9892 used as the link location instead of reading one interactively.
9894 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
9895 be used as the default description."
9896 (interactive "P")
9897 (let* ((wcf (current-window-configuration))
9898 (origbuf (current-buffer))
9899 (region (if (org-region-active-p)
9900 (buffer-substring (region-beginning) (region-end))))
9901 (remove (and region (list (region-beginning) (region-end))))
9902 (desc region)
9903 tmphist ; byte-compile incorrectly complains about this
9904 (link link-location)
9905 (abbrevs org-link-abbrev-alist-local)
9906 entry file all-prefixes auto-desc)
9907 (cond
9908 (link-location) ; specified by arg, just use it.
9909 ((org-in-regexp org-bracket-link-regexp 1)
9910 ;; We do have a link at point, and we are going to edit it.
9911 (setq remove (list (match-beginning 0) (match-end 0)))
9912 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
9913 (setq link (read-string "Link: "
9914 (org-link-unescape
9915 (org-match-string-no-properties 1)))))
9916 ((or (org-in-regexp org-angle-link-re)
9917 (org-in-regexp org-plain-link-re))
9918 ;; Convert to bracket link
9919 (setq remove (list (match-beginning 0) (match-end 0))
9920 link (read-string "Link: "
9921 (org-remove-angle-brackets (match-string 0)))))
9922 ((member complete-file '((4) (16)))
9923 ;; Completing read for file names.
9924 (setq link (org-file-complete-link complete-file)))
9926 ;; Read link, with completion for stored links.
9927 (org-link-fontify-links-to-this-file)
9928 (org-switch-to-buffer-other-window "*Org Links*")
9929 (with-current-buffer "*Org Links*"
9930 (erase-buffer)
9931 (insert "Insert a link.
9932 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
9933 (when org-stored-links
9934 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
9935 (insert (mapconcat 'org-link-prettify
9936 (reverse org-stored-links) "\n")))
9937 (goto-char (point-min)))
9938 (let ((cw (selected-window)))
9939 (select-window (get-buffer-window "*Org Links*" 'visible))
9940 (with-current-buffer "*Org Links*" (setq truncate-lines t))
9941 (unless (pos-visible-in-window-p (point-max))
9942 (org-fit-window-to-buffer))
9943 (and (window-live-p cw) (select-window cw)))
9944 ;; Fake a link history, containing the stored links.
9945 (setq tmphist (append (mapcar 'car org-stored-links)
9946 org-insert-link-history))
9947 (setq all-prefixes (append (mapcar 'car abbrevs)
9948 (mapcar 'car org-link-abbrev-alist)
9949 org-link-types))
9950 (unwind-protect
9951 (progn
9952 (setq link
9953 (org-completing-read
9954 "Link: "
9955 (append
9956 (mapcar (lambda (x) (concat x ":"))
9957 all-prefixes)
9958 (mapcar 'car org-stored-links))
9959 nil nil nil
9960 'tmphist
9961 (caar org-stored-links)))
9962 (if (not (string-match "\\S-" link))
9963 (user-error "No link selected"))
9964 (mapc (lambda(l)
9965 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
9966 org-stored-links)
9967 (if (or (member link all-prefixes)
9968 (and (equal ":" (substring link -1))
9969 (member (substring link 0 -1) all-prefixes)
9970 (setq link (substring link 0 -1))))
9971 (setq link (with-current-buffer origbuf
9972 (org-link-try-special-completion link)))))
9973 (set-window-configuration wcf)
9974 (kill-buffer "*Org Links*"))
9975 (setq entry (assoc link org-stored-links))
9976 (or entry (push link org-insert-link-history))
9977 (setq desc (or desc (nth 1 entry)))))
9979 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
9980 (not org-keep-stored-link-after-insertion))
9981 (setq org-stored-links (delq (assoc link org-stored-links)
9982 org-stored-links)))
9984 (if (string-match org-plain-link-re link)
9985 ;; URL-like link, normalize the use of angular brackets.
9986 (setq link (org-remove-angle-brackets link)))
9988 ;; Check if we are linking to the current file with a search
9989 ;; option If yes, simplify the link by using only the search
9990 ;; option.
9991 (when (and buffer-file-name
9992 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
9993 (let* ((path (match-string 1 link))
9994 (case-fold-search nil)
9995 (search (match-string 2 link)))
9996 (save-match-data
9997 (if (equal (file-truename buffer-file-name) (file-truename path))
9998 ;; We are linking to this same file, with a search option
9999 (setq link search)))))
10001 ;; Check if we can/should use a relative path. If yes, simplify the link
10002 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10003 (let* ((type (match-string 1 link))
10004 (path (match-string 2 link))
10005 (origpath path)
10006 (case-fold-search nil))
10007 (cond
10008 ((or (eq org-link-file-path-type 'absolute)
10009 (equal complete-file '(16)))
10010 (setq path (abbreviate-file-name (expand-file-name path))))
10011 ((eq org-link-file-path-type 'noabbrev)
10012 (setq path (expand-file-name path)))
10013 ((eq org-link-file-path-type 'relative)
10014 (setq path (file-relative-name path)))
10016 (save-match-data
10017 (if (string-match (concat "^" (regexp-quote
10018 (expand-file-name
10019 (file-name-as-directory
10020 default-directory))))
10021 (expand-file-name path))
10022 ;; We are linking a file with relative path name.
10023 (setq path (substring (expand-file-name path)
10024 (match-end 0)))
10025 (setq path (abbreviate-file-name (expand-file-name path)))))))
10026 (setq link (concat type path))
10027 (if (equal desc origpath)
10028 (setq desc path))))
10030 (if org-make-link-description-function
10031 (setq desc
10032 (or (condition-case nil
10033 (funcall org-make-link-description-function link desc)
10034 (error (progn (message "Can't get link description from `%s'"
10035 (symbol-name org-make-link-description-function))
10036 (sit-for 2) nil)))
10037 (read-string "Description: " default-description)))
10038 (if default-description (setq desc default-description)
10039 (setq desc (or (and auto-desc desc)
10040 (read-string "Description: " desc)))))
10042 (unless (string-match "\\S-" desc) (setq desc nil))
10043 (if remove (apply 'delete-region remove))
10044 (insert (org-make-link-string link desc))))
10046 (defun org-link-try-special-completion (type)
10047 "If there is completion support for link type TYPE, offer it."
10048 (let ((fun (intern (concat "org-" type "-complete-link"))))
10049 (if (functionp fun)
10050 (funcall fun)
10051 (read-string "Link (no completion support): " (concat type ":")))))
10053 (defun org-file-complete-link (&optional arg)
10054 "Create a file link using completion."
10055 (let (file link)
10056 (setq file (org-iread-file-name "File: "))
10057 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10058 (pwd1 (file-name-as-directory (abbreviate-file-name
10059 (expand-file-name ".")))))
10060 (cond
10061 ((equal arg '(16))
10062 (setq link (concat
10063 "file:"
10064 (abbreviate-file-name (expand-file-name file)))))
10065 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10066 (setq link (concat "file:" (match-string 1 file))))
10067 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10068 (expand-file-name file))
10069 (setq link (concat
10070 "file:" (match-string 1 (expand-file-name file)))))
10071 (t (setq link (concat "file:" file)))))
10072 link))
10074 (defun org-iread-file-name (&rest args)
10075 "Read-file-name using `ido-mode' speedup if available.
10076 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10077 See `read-file-name' for a description of parameters."
10078 (org-without-partial-completion
10079 (if (and org-completion-use-ido
10080 (fboundp 'ido-read-file-name)
10081 (boundp 'ido-mode) ido-mode
10082 (listp (second args)))
10083 (let ((ido-enter-matching-directory nil))
10084 (apply 'ido-read-file-name args))
10085 (apply 'read-file-name args))))
10087 (defun org-completing-read (&rest args)
10088 "Completing-read with SPACE being a normal character."
10089 (let ((enable-recursive-minibuffers t)
10090 (minibuffer-local-completion-map
10091 (copy-keymap minibuffer-local-completion-map)))
10092 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10093 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10094 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10095 (apply 'org-icompleting-read args)))
10097 (defun org-completing-read-no-i (&rest args)
10098 (let (org-completion-use-ido org-completion-use-iswitchb)
10099 (apply 'org-completing-read args)))
10101 (defun org-iswitchb-completing-read (prompt choices &rest args)
10102 "Use iswitch as a completing-read replacement to choose from choices.
10103 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10104 from."
10105 (let* ((iswitchb-use-virtual-buffers nil)
10106 (iswitchb-make-buflist-hook
10107 (lambda ()
10108 (setq iswitchb-temp-buflist choices))))
10109 (iswitchb-read-buffer prompt)))
10111 (defun org-icompleting-read (&rest args)
10112 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10113 (org-without-partial-completion
10114 (if (and org-completion-use-ido
10115 (fboundp 'ido-completing-read)
10116 (boundp 'ido-mode) ido-mode
10117 (listp (second args)))
10118 (let ((ido-enter-matching-directory nil))
10119 (apply 'ido-completing-read (concat (car args))
10120 (if (consp (car (nth 1 args)))
10121 (mapcar 'car (nth 1 args))
10122 (nth 1 args))
10123 (cddr args)))
10124 (if (and org-completion-use-iswitchb
10125 (boundp 'iswitchb-mode) iswitchb-mode
10126 (listp (second args)))
10127 (apply 'org-iswitchb-completing-read (concat (car args))
10128 (if (consp (car (nth 1 args)))
10129 (mapcar 'car (nth 1 args))
10130 (nth 1 args))
10131 (cddr args))
10132 (apply 'completing-read args)))))
10134 (defun org-extract-attributes (s)
10135 "Extract the attributes cookie from a string and set as text property."
10136 (let (a attr (start 0) key value)
10137 (save-match-data
10138 (when (string-match "{{\\([^}]+\\)}}$" s)
10139 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10140 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10141 (setq key (match-string 1 a) value (match-string 2 a)
10142 start (match-end 0)
10143 attr (plist-put attr (intern key) value))))
10144 (org-add-props s nil 'org-attr attr))
10147 ;;; Opening/following a link
10149 (defvar org-link-search-failed nil)
10151 (defvar org-open-link-functions nil
10152 "Hook for functions finding a plain text link.
10153 These functions must take a single argument, the link content.
10154 They will be called for links that look like [[link text][description]]
10155 when LINK TEXT does not have a protocol like \"http:\" and does not look
10156 like a filename (e.g. \"./blue.png\").
10158 These functions will be called *before* Org attempts to resolve the
10159 link by doing text searches in the current buffer - so if you want a
10160 link \"[[target]]\" to still find \"<<target>>\", your function should
10161 handle this as a special case.
10163 When the function does handle the link, it must return a non-nil value.
10164 If it decides that it is not responsible for this link, it must return
10165 nil to indicate that that Org-mode can continue with other options
10166 like exact and fuzzy text search.")
10168 (defun org-next-link (&optional search-backward)
10169 "Move forward to the next link.
10170 If the link is in hidden text, expose it."
10171 (interactive "P")
10172 (when (and org-link-search-failed (eq this-command last-command))
10173 (goto-char (point-min))
10174 (message "Link search wrapped back to beginning of buffer"))
10175 (setq org-link-search-failed nil)
10176 (let* ((pos (point))
10177 (ct (org-context))
10178 (a (assoc :link ct))
10179 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10180 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10181 ((looking-at org-any-link-re)
10182 ;; Don't stay stuck at link without an org-link face
10183 (forward-char (if search-backward -1 1))))
10184 (if (funcall srch-fun org-any-link-re nil t)
10185 (progn
10186 (goto-char (match-beginning 0))
10187 (if (outline-invisible-p) (org-show-context)))
10188 (goto-char pos)
10189 (setq org-link-search-failed t)
10190 (message "No further link found"))))
10192 (defun org-previous-link ()
10193 "Move backward to the previous link.
10194 If the link is in hidden text, expose it."
10195 (interactive)
10196 (funcall 'org-next-link t))
10198 (defun org-translate-link (s)
10199 "Translate a link string if a translation function has been defined."
10200 (if (and org-link-translation-function
10201 (fboundp org-link-translation-function)
10202 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10203 (progn
10204 (setq s (funcall org-link-translation-function
10205 (match-string 1 s) (match-string 2 s)))
10206 (concat (car s) ":" (cdr s)))
10209 (defun org-translate-link-from-planner (type path)
10210 "Translate a link from Emacs Planner syntax so that Org can follow it.
10211 This is still an experimental function, your mileage may vary."
10212 (cond
10213 ((member type '("http" "https" "news" "ftp"))
10214 ;; standard Internet links are the same.
10215 nil)
10216 ((and (equal type "irc") (string-match "^//" path))
10217 ;; Planner has two / at the beginning of an irc link, we have 1.
10218 ;; We should have zero, actually....
10219 (setq path (substring path 1)))
10220 ((and (equal type "lisp") (string-match "^/" path))
10221 ;; Planner has a slash, we do not.
10222 (setq type "elisp" path (substring path 1)))
10223 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10224 ;; A typical message link. Planner has the id after the final slash,
10225 ;; we separate it with a hash mark
10226 (setq path (concat (match-string 1 path) "#"
10227 (org-remove-angle-brackets (match-string 2 path))))))
10228 (cons type path))
10230 (defun org-find-file-at-mouse (ev)
10231 "Open file link or URL at mouse."
10232 (interactive "e")
10233 (mouse-set-point ev)
10234 (org-open-at-point 'in-emacs))
10236 (defun org-open-at-mouse (ev)
10237 "Open file link or URL at mouse.
10238 See the docstring of `org-open-file' for details."
10239 (interactive "e")
10240 (mouse-set-point ev)
10241 (if (eq major-mode 'org-agenda-mode)
10242 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10243 (org-open-at-point))
10245 (defvar org-window-config-before-follow-link nil
10246 "The window configuration before following a link.
10247 This is saved in case the need arises to restore it.")
10249 (defvar org-open-link-marker (make-marker)
10250 "Marker pointing to the location where `org-open-at-point; was called.")
10252 ;;;###autoload
10253 (defun org-open-at-point-global ()
10254 "Follow a link like Org-mode does.
10255 This command can be called in any mode to follow a link that has
10256 Org-mode syntax."
10257 (interactive)
10258 (org-run-like-in-org-mode 'org-open-at-point))
10260 ;;;###autoload
10261 (defun org-open-link-from-string (s &optional arg reference-buffer)
10262 "Open a link in the string S, as if it was in Org-mode."
10263 (interactive "sLink: \nP")
10264 (let ((reference-buffer (or reference-buffer (current-buffer))))
10265 (with-temp-buffer
10266 (let ((org-inhibit-startup (not reference-buffer)))
10267 (org-mode)
10268 (insert s)
10269 (goto-char (point-min))
10270 (when reference-buffer
10271 (setq org-link-abbrev-alist-local
10272 (with-current-buffer reference-buffer
10273 org-link-abbrev-alist-local)))
10274 (org-open-at-point arg reference-buffer)))))
10276 (defvar org-open-at-point-functions nil
10277 "Hook that is run when following a link at point.
10279 Functions in this hook must return t if they identify and follow
10280 a link at point. If they don't find anything interesting at point,
10281 they must return nil.")
10283 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10284 (defun org-open-at-point (&optional arg reference-buffer)
10285 "Open link at or after point.
10286 If there is no link at point, this function will search forward up to
10287 the end of the current line.
10288 Normally, files will be opened by an appropriate application. If the
10289 optional prefix argument ARG is non-nil, Emacs will visit the file.
10290 With a double prefix argument, try to open outside of Emacs, in the
10291 application the system uses for this file type."
10292 (interactive "P")
10293 ;; if in a code block, then open the block's results
10294 (unless (call-interactively #'org-babel-open-src-block-result)
10295 (org-load-modules-maybe)
10296 (move-marker org-open-link-marker (point))
10297 (setq org-window-config-before-follow-link (current-window-configuration))
10298 (org-remove-occur-highlights nil nil t)
10299 (cond
10300 ((and (org-at-heading-p)
10301 (not (org-at-timestamp-p t))
10302 (not (org-in-regexp
10303 (concat org-plain-link-re "\\|"
10304 org-bracket-link-regexp "\\|"
10305 org-angle-link-re "\\|"
10306 "[ \t]:[^ \t\n]+:[ \t]*$")))
10307 (not (get-text-property (point) 'org-linked-text)))
10308 (or (let* ((lkall (org-offer-links-in-entry (current-buffer) (point) arg))
10309 (lk0 (car lkall))
10310 (lk (if (stringp lk0) (list lk0) lk0))
10311 (lkend (cdr lkall)))
10312 (mapcar (lambda(l)
10313 (search-forward l nil lkend)
10314 (goto-char (match-beginning 0))
10315 (org-open-at-point))
10316 lk))
10317 (progn (require 'org-attach) (org-attach-reveal 'if-exists))))
10318 ((run-hook-with-args-until-success 'org-open-at-point-functions))
10319 ((and (org-at-timestamp-p t)
10320 (not (org-in-regexp org-bracket-link-regexp)))
10321 (org-follow-timestamp-link))
10322 ((and (or (org-footnote-at-reference-p) (org-footnote-at-definition-p))
10323 (not (org-in-regexp org-any-link-re)))
10324 (org-footnote-action))
10326 (let (type path link line search (pos (point)))
10327 (catch 'match
10328 (save-excursion
10329 (skip-chars-forward "^]\n\r")
10330 (when (org-in-regexp org-bracket-link-regexp 1)
10331 (setq link (org-extract-attributes
10332 (org-link-unescape (org-match-string-no-properties 1))))
10333 (while (string-match " *\n *" link)
10334 (setq link (replace-match " " t t link)))
10335 (setq link (org-link-expand-abbrev link))
10336 (cond
10337 ((or (file-name-absolute-p link)
10338 (string-match "^\\.\\.?/" link))
10339 (setq type "file" path link))
10340 ((string-match org-link-re-with-space3 link)
10341 (setq type (match-string 1 link) path (match-string 2 link)))
10342 ((string-match "^help:+\\(.+\\)" link)
10343 (setq type "help" path (match-string 1 link)))
10344 (t (setq type "thisfile" path link)))
10345 (throw 'match t)))
10347 (when (get-text-property (point) 'org-linked-text)
10348 (setq type "thisfile"
10349 pos (if (get-text-property (1+ (point)) 'org-linked-text)
10350 (1+ (point)) (point))
10351 path (buffer-substring
10352 (or (previous-single-property-change pos 'org-linked-text)
10353 (point-min))
10354 (or (next-single-property-change pos 'org-linked-text)
10355 (point-max)))
10356 ;; Ensure we will search for a <<<radio>>> link, not
10357 ;; a simple reference like <<ref>>
10358 path (concat "<" path))
10359 (throw 'match t))
10361 (save-excursion
10362 (when (or (org-in-regexp org-angle-link-re)
10363 (let ((match (org-in-regexp org-plain-link-re)))
10364 ;; Check a plain link is not within a bracket link
10365 (and match
10366 (save-excursion
10367 (progn
10368 (goto-char (car match))
10369 (not (org-in-regexp org-bracket-link-regexp))))))
10370 (let ((line_ending (save-excursion (end-of-line) (point))))
10371 ;; We are in a line before a plain or bracket link
10372 (or (re-search-forward org-plain-link-re line_ending t)
10373 (re-search-forward org-bracket-link-regexp line_ending t))))
10374 (setq type (match-string 1)
10375 path (org-link-unescape (match-string 2)))
10376 (throw 'match t)))
10377 (save-excursion
10378 (when (org-in-regexp (org-re "\\(:[[:alnum:]_@#%:]+\\):[ \t]*$"))
10379 (setq type "tags"
10380 path (match-string 1))
10381 (while (string-match ":" path)
10382 (setq path (replace-match "+" t t path)))
10383 (throw 'match t)))
10384 (when (org-in-regexp "<\\([^><\n]+\\)>")
10385 (setq type "tree-match"
10386 path (match-string 1))
10387 (throw 'match t)))
10388 (unless path
10389 (user-error "No link found"))
10391 ;; switch back to reference buffer
10392 ;; needed when if called in a temporary buffer through
10393 ;; org-open-link-from-string
10394 (with-current-buffer (or reference-buffer (current-buffer))
10396 ;; Remove any trailing spaces in path
10397 (if (string-match " +\\'" path)
10398 (setq path (replace-match "" t t path)))
10399 (if (and org-link-translation-function
10400 (fboundp org-link-translation-function))
10401 ;; Check if we need to translate the link
10402 (let ((tmp (funcall org-link-translation-function type path)))
10403 (setq type (car tmp) path (cdr tmp))))
10405 (cond
10407 ((assoc type org-link-protocols)
10408 (funcall (nth 1 (assoc type org-link-protocols)) path))
10410 ((equal type "help")
10411 (let ((f-or-v (intern path)))
10412 (cond ((fboundp f-or-v)
10413 (describe-function f-or-v))
10414 ((boundp f-or-v)
10415 (describe-variable f-or-v))
10416 (t (error "Not a known function or variable")))))
10418 ((equal type "mailto")
10419 (let ((cmd (car org-link-mailto-program))
10420 (args (cdr org-link-mailto-program)) args1
10421 (address path) (subject "") a)
10422 (if (string-match "\\(.*\\)::\\(.*\\)" path)
10423 (setq address (match-string 1 path)
10424 subject (org-link-escape (match-string 2 path))))
10425 (while args
10426 (cond
10427 ((not (stringp (car args))) (push (pop args) args1))
10428 (t (setq a (pop args))
10429 (if (string-match "%a" a)
10430 (setq a (replace-match address t t a)))
10431 (if (string-match "%s" a)
10432 (setq a (replace-match subject t t a)))
10433 (push a args1))))
10434 (apply cmd (nreverse args1))))
10436 ((member type '("http" "https" "ftp" "news"))
10437 (browse-url (concat type ":" (if (org-string-match-p "[[:nonascii:] ]" path)
10438 (org-link-escape
10439 path org-link-escape-chars-browser)
10440 path))))
10442 ((string= type "doi")
10443 (browse-url (concat org-doi-server-url (if (org-string-match-p "[[:nonascii:] ]" path)
10444 (org-link-escape
10445 path org-link-escape-chars-browser)
10446 path))))
10448 ((member type '("message"))
10449 (browse-url (concat type ":" path)))
10451 ((string= type "tags")
10452 (org-tags-view arg path))
10454 ((string= type "tree-match")
10455 (org-occur (concat "\\[" (regexp-quote path) "\\]")))
10457 ((string= type "file")
10458 (if (string-match "::\\([0-9]+\\)\\'" path)
10459 (setq line (string-to-number (match-string 1 path))
10460 path (substring path 0 (match-beginning 0)))
10461 (if (string-match "::\\(.+\\)\\'" path)
10462 (setq search (match-string 1 path)
10463 path (substring path 0 (match-beginning 0)))))
10464 (if (string-match "[*?{]" (file-name-nondirectory path))
10465 (dired path)
10466 (org-open-file path arg line search)))
10468 ((string= type "shell")
10469 (let ((buf (generate-new-buffer "*Org Shell Output"))
10470 (cmd path))
10471 (if (or (and (not (string= org-confirm-shell-link-not-regexp ""))
10472 (string-match org-confirm-shell-link-not-regexp cmd))
10473 (not org-confirm-shell-link-function)
10474 (funcall org-confirm-shell-link-function
10475 (format "Execute \"%s\" in shell? "
10476 (org-add-props cmd nil
10477 'face 'org-warning))))
10478 (progn
10479 (message "Executing %s" cmd)
10480 (shell-command cmd buf)
10481 (if (featurep 'midnight)
10482 (setq clean-buffer-list-kill-buffer-names
10483 (cons buf clean-buffer-list-kill-buffer-names))))
10484 (error "Abort"))))
10486 ((string= type "elisp")
10487 (let ((cmd path))
10488 (if (or (and (not (string= org-confirm-elisp-link-not-regexp ""))
10489 (string-match org-confirm-elisp-link-not-regexp cmd))
10490 (not org-confirm-elisp-link-function)
10491 (funcall org-confirm-elisp-link-function
10492 (format "Execute \"%s\" as elisp? "
10493 (org-add-props cmd nil
10494 'face 'org-warning))))
10495 (message "%s => %s" cmd
10496 (if (equal (string-to-char cmd) ?\()
10497 (eval (read cmd))
10498 (call-interactively (read cmd))))
10499 (error "Abort"))))
10501 ((and (string= type "thisfile")
10502 (run-hook-with-args-until-success
10503 'org-open-link-functions path)))
10505 ((string= type "thisfile")
10506 (if arg
10507 (switch-to-buffer-other-window
10508 (org-get-buffer-for-internal-link (current-buffer)))
10509 (org-mark-ring-push))
10510 (let ((cmd `(org-link-search
10511 ,path
10512 ,(cond ((equal arg '(4)) ''occur)
10513 ((equal arg '(16)) ''org-occur))
10514 ,pos)))
10515 (condition-case nil (let ((org-link-search-inhibit-query t))
10516 (eval cmd))
10517 (error (progn (widen) (eval cmd))))))
10519 (t (browse-url-at-point)))))))
10520 (move-marker org-open-link-marker nil)
10521 (run-hook-with-args 'org-follow-link-hook)))
10523 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10524 "Offer links in the current entry and return the selected link.
10525 If there is only one link, return it.
10526 If NTH is an integer, return the NTH link found.
10527 If ZERO is a string, check also this string for a link, and if
10528 there is one, return it."
10529 (with-current-buffer buffer
10530 (save-excursion
10531 (save-restriction
10532 (widen)
10533 (goto-char marker)
10534 (let ((re (concat "\\(" org-bracket-link-regexp "\\)\\|"
10535 "\\(" org-angle-link-re "\\)\\|"
10536 "\\(" org-plain-link-re "\\)"))
10537 (cnt ?0)
10538 (in-emacs (if (integerp nth) nil nth))
10539 have-zero end links link c)
10540 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10541 (push (match-string 0 zero) links)
10542 (setq cnt (1- cnt) have-zero t))
10543 (save-excursion
10544 (org-back-to-heading t)
10545 (setq end (save-excursion (outline-next-heading) (point)))
10546 (while (re-search-forward re end t)
10547 (push (match-string 0) links))
10548 (setq links (org-uniquify (reverse links))))
10549 (cond
10550 ((null links)
10551 (message "No links"))
10552 ((equal (length links) 1)
10553 (setq link (car links)))
10554 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10555 (setq link (nth (if have-zero nth (1- nth)) links)))
10556 (t ; we have to select a link
10557 (save-excursion
10558 (save-window-excursion
10559 (delete-other-windows)
10560 (with-output-to-temp-buffer "*Select Link*"
10561 (mapc (lambda (l)
10562 (if (not (string-match org-bracket-link-regexp l))
10563 (princ (format "[%c] %s\n" (incf cnt)
10564 (org-remove-angle-brackets l)))
10565 (if (match-end 3)
10566 (princ (format "[%c] %s (%s)\n" (incf cnt)
10567 (match-string 3 l) (match-string 1 l)))
10568 (princ (format "[%c] %s\n" (incf cnt)
10569 (match-string 1 l))))))
10570 links))
10571 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10572 (message "Select link to open, RET to open all:")
10573 (setq c (read-char-exclusive))
10574 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10575 (when (equal c ?q) (error "Abort"))
10576 (if (equal c ?\C-m)
10577 (setq link links)
10578 (setq nth (- c ?0))
10579 (if have-zero (setq nth (1+ nth)))
10580 (unless (and (integerp nth) (>= (length links) nth))
10581 (user-error "Invalid link selection"))
10582 (setq link (nth (1- nth) links)))))
10583 (cons link end))))))
10585 ;; Add special file links that specify the way of opening
10587 (org-add-link-type "file+sys" 'org-open-file-with-system)
10588 (org-add-link-type "file+emacs" 'org-open-file-with-emacs)
10589 (defun org-open-file-with-system (path)
10590 "Open file at PATH using the system way of opening it."
10591 (org-open-file path 'system))
10592 (defun org-open-file-with-emacs (path)
10593 "Open file at PATH in Emacs."
10594 (org-open-file path 'emacs))
10597 ;;; File search
10599 (defvar org-create-file-search-functions nil
10600 "List of functions to construct the right search string for a file link.
10601 These functions are called in turn with point at the location to
10602 which the link should point.
10604 A function in the hook should first test if it would like to
10605 handle this file type, for example by checking the `major-mode'
10606 or the file extension. If it decides not to handle this file, it
10607 should just return nil to give other functions a chance. If it
10608 does handle the file, it must return the search string to be used
10609 when following the link. The search string will be part of the
10610 file link, given after a double colon, and `org-open-at-point'
10611 will automatically search for it. If special measures must be
10612 taken to make the search successful, another function should be
10613 added to the companion hook `org-execute-file-search-functions',
10614 which see.
10616 A function in this hook may also use `setq' to set the variable
10617 `description' to provide a suggestion for the descriptive text to
10618 be used for this link when it gets inserted into an Org-mode
10619 buffer with \\[org-insert-link].")
10621 (defvar org-execute-file-search-functions nil
10622 "List of functions to execute a file search triggered by a link.
10624 Functions added to this hook must accept a single argument, the
10625 search string that was part of the file link, the part after the
10626 double colon. The function must first check if it would like to
10627 handle this search, for example by checking the `major-mode' or
10628 the file extension. If it decides not to handle this search, it
10629 should just return nil to give other functions a chance. If it
10630 does handle the search, it must return a non-nil value to keep
10631 other functions from trying.
10633 Each function can access the current prefix argument through the
10634 variable `current-prefix-arg'. Note that a single prefix is used
10635 to force opening a link in Emacs, so it may be good to only use a
10636 numeric or double prefix to guide the search function.
10638 In case this is needed, a function in this hook can also restore
10639 the window configuration before `org-open-at-point' was called using:
10641 (set-window-configuration org-window-config-before-follow-link)")
10643 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10644 (defun org-link-search (s &optional type avoid-pos stealth)
10645 "Search for a link search option.
10646 If S is surrounded by forward slashes, it is interpreted as a
10647 regular expression. In org-mode files, this will create an `org-occur'
10648 sparse tree. In ordinary files, `occur' will be used to list matches.
10649 If the current buffer is in `dired-mode', grep will be used to search
10650 in all files. If AVOID-POS is given, ignore matches near that position.
10652 When optional argument STEALTH is non-nil, do not modify
10653 visibility around point, thus ignoring
10654 `org-show-hierarchy-above', `org-show-following-heading' and
10655 `org-show-siblings' variables."
10656 (let ((case-fold-search t)
10657 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
10658 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
10659 (append '(("") (" ") ("\t") ("\n"))
10660 org-emphasis-alist)
10661 "\\|") "\\)"))
10662 (pos (point))
10663 (pre nil) (post nil)
10664 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
10665 (cond
10666 ;; First check if there are any special search functions
10667 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
10668 ;; Now try the builtin stuff
10669 ((and (equal (string-to-char s0) ?#)
10670 (> (length s0) 1)
10671 (save-excursion
10672 (goto-char (point-min))
10673 (and
10674 (re-search-forward
10675 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
10676 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
10677 (setq type 'dedicated
10678 pos (match-beginning 0))))
10679 ;; There is an exact target for this
10680 (goto-char pos)
10681 (org-back-to-heading t)))
10682 ((save-excursion
10683 (goto-char (point-min))
10684 (and
10685 (re-search-forward
10686 (concat "<<" (regexp-quote s0) ">>") nil t)
10687 (setq type 'dedicated
10688 pos (match-beginning 0))))
10689 ;; There is an exact target for this
10690 (goto-char pos))
10691 ((save-excursion
10692 (goto-char (point-min))
10693 (and
10694 (re-search-forward
10695 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
10696 (setq type 'dedicated pos (match-beginning 0))))
10697 ;; Found an element with a matching #+name affiliated keyword.
10698 (goto-char pos))
10699 ((and (string-match "^(\\(.*\\))$" s0)
10700 (save-excursion
10701 (goto-char (point-min))
10702 (and
10703 (re-search-forward
10704 (concat "[^[]" (regexp-quote
10705 (format org-coderef-label-format
10706 (match-string 1 s0))))
10707 nil t)
10708 (setq type 'dedicated
10709 pos (1+ (match-beginning 0))))))
10710 ;; There is a coderef target for this
10711 (goto-char pos))
10712 ((string-match "^/\\(.*\\)/$" s)
10713 ;; A regular expression
10714 (cond
10715 ((derived-mode-p 'org-mode)
10716 (org-occur (match-string 1 s)))
10717 (t (org-do-occur (match-string 1 s)))))
10718 ((and (derived-mode-p 'org-mode) org-link-search-must-match-exact-headline)
10719 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
10720 (goto-char (point-min))
10721 (cond
10722 ((let (case-fold-search)
10723 (re-search-forward (format org-complex-heading-regexp-format
10724 (regexp-quote s))
10725 nil t))
10726 ;; OK, found a match
10727 (setq type 'dedicated)
10728 (goto-char (match-beginning 0)))
10729 ((and (not org-link-search-inhibit-query)
10730 (eq org-link-search-must-match-exact-headline 'query-to-create)
10731 (y-or-n-p "No match - create this as a new heading? "))
10732 (goto-char (point-max))
10733 (or (bolp) (newline))
10734 (insert "* " s "\n")
10735 (beginning-of-line 0))
10737 (goto-char pos)
10738 (error "No match"))))
10740 ;; A normal search string
10741 (when (equal (string-to-char s) ?*)
10742 ;; Anchor on headlines, post may include tags.
10743 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
10744 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
10745 s (substring s 1)))
10746 (remove-text-properties
10747 0 (length s)
10748 '(face nil mouse-face nil keymap nil fontified nil) s)
10749 ;; Make a series of regular expressions to find a match
10750 (setq words (org-split-string s "[ \n\r\t]+")
10752 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
10753 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
10754 "\\)" markers)
10755 re2a_ (concat "\\(" (mapconcat 'downcase words
10756 "[ \t\r\n]+") "\\)[ \t\r\n]")
10757 re2a (concat "[ \t\r\n]" re2a_)
10758 re4_ (concat "\\(" (mapconcat 'downcase words
10759 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
10760 re4 (concat "[^a-zA-Z_]" re4_)
10762 re1 (concat pre re2 post)
10763 re3 (concat pre (if pre re4_ re4) post)
10764 re5 (concat pre ".*" re4)
10765 re2 (concat pre re2)
10766 re2a (concat pre (if pre re2a_ re2a))
10767 re4 (concat pre (if pre re4_ re4))
10768 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
10769 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
10770 re5 "\\)"))
10771 (cond
10772 ((eq type 'org-occur) (org-occur reall))
10773 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
10774 (t (goto-char (point-min))
10775 (setq type 'fuzzy)
10776 (if (or (and (org-search-not-self 1 re0 nil t)
10777 (setq type 'dedicated))
10778 (org-search-not-self 1 re1 nil t)
10779 (org-search-not-self 1 re2 nil t)
10780 (org-search-not-self 1 re2a nil t)
10781 (org-search-not-self 1 re3 nil t)
10782 (org-search-not-self 1 re4 nil t)
10783 (org-search-not-self 1 re5 nil t))
10784 (goto-char (match-beginning 1))
10785 (goto-char pos)
10786 (error "No match"))))))
10787 (and (derived-mode-p 'org-mode)
10788 (not stealth)
10789 (org-show-context 'link-search))
10790 type))
10792 (defun org-search-not-self (group &rest args)
10793 "Execute `re-search-forward', but only accept matches that do not
10794 enclose the position of `org-open-link-marker'."
10795 (let ((m org-open-link-marker))
10796 (catch 'exit
10797 (while (apply 're-search-forward args)
10798 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
10799 (goto-char (match-end group))
10800 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
10801 (> (match-beginning 0) (marker-position m))
10802 (< (match-end 0) (marker-position m)))
10803 (save-match-data
10804 (or (not (org-in-regexp
10805 org-bracket-link-analytic-regexp 1))
10806 (not (match-end 4)) ; no description
10807 (and (<= (match-beginning 4) (point))
10808 (>= (match-end 4) (point))))))
10809 (throw 'exit (point))))))))
10811 (defun org-get-buffer-for-internal-link (buffer)
10812 "Return a buffer to be used for displaying the link target of internal links."
10813 (cond
10814 ((not org-display-internal-link-with-indirect-buffer)
10815 buffer)
10816 ((string-match "(Clone)$" (buffer-name buffer))
10817 (message "Buffer is already a clone, not making another one")
10818 ;; we also do not modify visibility in this case
10819 buffer)
10820 (t ; make a new indirect buffer for displaying the link
10821 (let* ((bn (buffer-name buffer))
10822 (ibn (concat bn "(Clone)"))
10823 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
10824 (with-current-buffer ib (org-overview))
10825 ib))))
10827 (defun org-do-occur (regexp &optional cleanup)
10828 "Call the Emacs command `occur'.
10829 If CLEANUP is non-nil, remove the printout of the regular expression
10830 in the *Occur* buffer. This is useful if the regex is long and not useful
10831 to read."
10832 (occur regexp)
10833 (when cleanup
10834 (let ((cwin (selected-window)) win beg end)
10835 (when (setq win (get-buffer-window "*Occur*"))
10836 (select-window win))
10837 (goto-char (point-min))
10838 (when (re-search-forward "match[a-z]+" nil t)
10839 (setq beg (match-end 0))
10840 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
10841 (setq end (1- (match-beginning 0)))))
10842 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
10843 (goto-char (point-min))
10844 (select-window cwin))))
10846 ;;; The mark ring for links jumps
10848 (defvar org-mark-ring nil
10849 "Mark ring for positions before jumps in Org-mode.")
10850 (defvar org-mark-ring-last-goto nil
10851 "Last position in the mark ring used to go back.")
10852 ;; Fill and close the ring
10853 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
10854 (loop for i from 1 to org-mark-ring-length do
10855 (push (make-marker) org-mark-ring))
10856 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
10857 org-mark-ring)
10859 (defun org-mark-ring-push (&optional pos buffer)
10860 "Put the current position or POS into the mark ring and rotate it."
10861 (interactive)
10862 (setq pos (or pos (point)))
10863 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
10864 (move-marker (car org-mark-ring)
10865 (or pos (point))
10866 (or buffer (current-buffer)))
10867 (message "%s"
10868 (substitute-command-keys
10869 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
10871 (defun org-mark-ring-goto (&optional n)
10872 "Jump to the previous position in the mark ring.
10873 With prefix arg N, jump back that many stored positions. When
10874 called several times in succession, walk through the entire ring.
10875 Org-mode commands jumping to a different position in the current file,
10876 or to another Org-mode file, automatically push the old position
10877 onto the ring."
10878 (interactive "p")
10879 (let (p m)
10880 (if (eq last-command this-command)
10881 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
10882 (setq p org-mark-ring))
10883 (setq org-mark-ring-last-goto p)
10884 (setq m (car p))
10885 (org-pop-to-buffer-same-window (marker-buffer m))
10886 (goto-char m)
10887 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
10889 (defun org-remove-angle-brackets (s)
10890 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
10891 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
10893 (defun org-add-angle-brackets (s)
10894 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
10895 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
10897 (defun org-remove-double-quotes (s)
10898 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
10899 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
10902 ;;; Following specific links
10904 (defun org-follow-timestamp-link ()
10905 "Open an agenda view for the time-stamp date/range at point."
10906 (cond
10907 ((org-at-date-range-p t)
10908 (let ((org-agenda-start-on-weekday)
10909 (t1 (match-string 1))
10910 (t2 (match-string 2)) tt1 tt2)
10911 (setq tt1 (time-to-days (org-time-string-to-time t1))
10912 tt2 (time-to-days (org-time-string-to-time t2)))
10913 (let ((org-agenda-buffer-tmp-name
10914 (format "*Org Agenda(a:%s)"
10915 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
10916 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
10917 ((org-at-timestamp-p t)
10918 (let ((org-agenda-buffer-tmp-name
10919 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
10920 (org-agenda-list nil (time-to-days (org-time-string-to-time
10921 (substring (match-string 1) 0 10)))
10922 1)))
10923 (t (error "This should not happen"))))
10926 ;;; Following file links
10927 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
10928 (declare-function mailcap-extension-to-mime "mailcap" (extn))
10929 (declare-function mailcap-mime-info
10930 "mailcap" (string &optional request no-decode))
10931 (defvar org-wait nil)
10932 (defun org-open-file (path &optional in-emacs line search)
10933 "Open the file at PATH.
10934 First, this expands any special file name abbreviations. Then the
10935 configuration variable `org-file-apps' is checked if it contains an
10936 entry for this file type, and if yes, the corresponding command is launched.
10938 If no application is found, Emacs simply visits the file.
10940 With optional prefix argument IN-EMACS, Emacs will visit the file.
10941 With a double \\[universal-argument] \\[universal-argument] \
10942 prefix arg, Org tries to avoid opening in Emacs
10943 and to use an external application to visit the file.
10945 Optional LINE specifies a line to go to, optional SEARCH a string
10946 to search for. If LINE or SEARCH is given, the file will be
10947 opened in Emacs, unless an entry from org-file-apps that makes
10948 use of groups in a regexp matches.
10950 If you want to change the way frames are used when following a
10951 link, please customize `org-link-frame-setup'.
10953 If the file does not exist, an error is thrown."
10954 (let* ((file (if (equal path "")
10955 buffer-file-name
10956 (substitute-in-file-name (expand-file-name path))))
10957 (file-apps (append org-file-apps (org-default-apps)))
10958 (apps (org-remove-if
10959 'org-file-apps-entry-match-against-dlink-p file-apps))
10960 (apps-dlink (org-remove-if-not
10961 'org-file-apps-entry-match-against-dlink-p file-apps))
10962 (remp (and (assq 'remote apps) (org-file-remote-p file)))
10963 (dirp (if remp nil (file-directory-p file)))
10964 (file (if (and dirp org-open-directory-means-index-dot-org)
10965 (concat (file-name-as-directory file) "index.org")
10966 file))
10967 (a-m-a-p (assq 'auto-mode apps))
10968 (dfile (downcase file))
10969 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
10970 (link (cond ((and (eq line nil)
10971 (eq search nil))
10972 file)
10973 (line
10974 (concat file "::" (number-to-string line)))
10975 (search
10976 (concat file "::" search))))
10977 (dlink (downcase link))
10978 (old-buffer (current-buffer))
10979 (old-pos (point))
10980 (old-mode major-mode)
10981 ext cmd link-match-data)
10982 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
10983 (setq ext (match-string 1 dfile))
10984 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
10985 (setq ext (match-string 1 dfile))))
10986 (cond
10987 ((member in-emacs '((16) system))
10988 (setq cmd (cdr (assoc 'system apps))))
10989 (in-emacs (setq cmd 'emacs))
10991 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
10992 (and dirp (cdr (assoc 'directory apps)))
10993 ; first, try matching against apps-dlink
10994 ; if we get a match here, store the match data for later
10995 (let ((match (assoc-default dlink apps-dlink
10996 'string-match)))
10997 (if match
10998 (progn (setq link-match-data (match-data))
10999 match)
11000 (progn (setq in-emacs (or in-emacs line search))
11001 nil))) ; if we have no match in apps-dlink,
11002 ; always open the file in emacs if line or search
11003 ; is given (for backwards compatibility)
11004 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11005 'string-match)
11006 (cdr (assoc ext apps))
11007 (cdr (assoc t apps))))))
11008 (when (eq cmd 'system)
11009 (setq cmd (cdr (assoc 'system apps))))
11010 (when (eq cmd 'default)
11011 (setq cmd (cdr (assoc t apps))))
11012 (when (eq cmd 'mailcap)
11013 (require 'mailcap)
11014 (mailcap-parse-mailcaps)
11015 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11016 (command (mailcap-mime-info mime-type)))
11017 (if (stringp command)
11018 (setq cmd command)
11019 (setq cmd 'emacs))))
11020 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11021 (not (file-exists-p file))
11022 (not org-open-non-existing-files))
11023 (user-error "No such file: %s" file))
11024 (cond
11025 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11026 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11027 (while (string-match "['\"]%s['\"]" cmd)
11028 (setq cmd (replace-match "%s" t t cmd)))
11029 (while (string-match "%s" cmd)
11030 (setq cmd (replace-match
11031 (save-match-data
11032 (shell-quote-argument
11033 (convert-standard-filename file)))
11034 t t cmd)))
11036 ;; Replace "%1", "%2" etc. in command with group matches from regex
11037 (save-match-data
11038 (let ((match-index 1)
11039 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11040 (set-match-data link-match-data)
11041 (while (<= match-index number-of-groups)
11042 (let ((regex (concat "%" (number-to-string match-index)))
11043 (replace-with (match-string match-index dlink)))
11044 (while (string-match regex cmd)
11045 (setq cmd (replace-match replace-with t t cmd))))
11046 (setq match-index (+ match-index 1)))))
11048 (save-window-excursion
11049 (message "Running %s...done" cmd)
11050 (start-process-shell-command cmd nil cmd)
11051 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11052 ((or (stringp cmd)
11053 (eq cmd 'emacs))
11054 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11055 (widen)
11056 (if line (org-goto-line line)
11057 (if search (org-link-search search))))
11058 ((consp cmd)
11059 (let ((file (convert-standard-filename file)))
11060 (save-match-data
11061 (set-match-data link-match-data)
11062 (eval cmd))))
11063 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11064 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11065 (or (not (equal old-buffer (current-buffer)))
11066 (not (equal old-pos (point))))
11067 (org-mark-ring-push old-pos old-buffer))))
11069 (defun org-file-apps-entry-match-against-dlink-p (entry)
11070 "This function returns non-nil if `entry' uses a regular
11071 expression which should be matched against the whole link by
11072 org-open-file.
11074 It assumes that is the case when the entry uses a regular
11075 expression which has at least one grouping construct and the
11076 action is either a lisp form or a command string containing
11077 '%1', i.e. using at least one subexpression match as a
11078 parameter."
11079 (let ((selector (car entry))
11080 (action (cdr entry)))
11081 (if (stringp selector)
11082 (and (> (regexp-opt-depth selector) 0)
11083 (or (and (stringp action)
11084 (string-match "%[0-9]" action))
11085 (consp action)))
11086 nil)))
11088 (defun org-default-apps ()
11089 "Return the default applications for this operating system."
11090 (cond
11091 ((eq system-type 'darwin)
11092 org-file-apps-defaults-macosx)
11093 ((eq system-type 'windows-nt)
11094 org-file-apps-defaults-windowsnt)
11095 (t org-file-apps-defaults-gnu)))
11097 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11098 "Convert extensions to regular expressions in the cars of LIST.
11099 Also, weed out any non-string entries, because the return value is used
11100 only for regexp matching.
11101 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11102 point to the symbol `emacs', indicating that the file should
11103 be opened in Emacs."
11104 (append
11105 (delq nil
11106 (mapcar (lambda (x)
11107 (if (not (stringp (car x)))
11109 (if (string-match "\\W" (car x))
11111 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11112 list))
11113 (if add-auto-mode
11114 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11116 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11117 (defun org-file-remote-p (file)
11118 "Test whether FILE specifies a location on a remote system.
11119 Return non-nil if the location is indeed remote.
11121 For example, the filename \"/user@host:/foo\" specifies a location
11122 on the system \"/user@host:\"."
11123 (cond ((fboundp 'file-remote-p)
11124 (file-remote-p file))
11125 ((fboundp 'tramp-handle-file-remote-p)
11126 (tramp-handle-file-remote-p file))
11127 ((and (boundp 'ange-ftp-name-format)
11128 (string-match (car ange-ftp-name-format) file))
11129 t)))
11132 ;;;; Refiling
11134 (defun org-get-org-file ()
11135 "Read a filename, with default directory `org-directory'."
11136 (let ((default (or org-default-notes-file remember-data-file)))
11137 (read-file-name (format "File name [%s]: " default)
11138 (file-name-as-directory org-directory)
11139 default)))
11141 (defun org-notes-order-reversed-p ()
11142 "Check if the current file should receive notes in reversed order."
11143 (cond
11144 ((not org-reverse-note-order) nil)
11145 ((eq t org-reverse-note-order) t)
11146 ((not (listp org-reverse-note-order)) nil)
11147 (t (catch 'exit
11148 (let ((all org-reverse-note-order)
11149 entry)
11150 (while (setq entry (pop all))
11151 (if (string-match (car entry) buffer-file-name)
11152 (throw 'exit (cdr entry))))
11153 nil)))))
11155 (defvar org-refile-target-table nil
11156 "The list of refile targets, created by `org-refile'.")
11158 (defvar org-agenda-new-buffers nil
11159 "Buffers created to visit agenda files.")
11161 (defvar org-refile-cache nil
11162 "Cache for refile targets.")
11164 (defvar org-refile-markers nil
11165 "All the markers used for caching refile locations.")
11167 (defun org-refile-marker (pos)
11168 "Get a new refile marker, but only if caching is in use."
11169 (if (not org-refile-use-cache)
11171 (let ((m (make-marker)))
11172 (move-marker m pos)
11173 (push m org-refile-markers)
11174 m)))
11176 (defun org-refile-cache-clear ()
11177 "Clear the refile cache and disable all the markers."
11178 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11179 (setq org-refile-markers nil)
11180 (setq org-refile-cache nil)
11181 (message "Refile cache has been cleared"))
11183 (defun org-refile-cache-check-set (set)
11184 "Check if all the markers in the cache still have live buffers."
11185 (let (marker)
11186 (catch 'exit
11187 (while (and set (setq marker (nth 3 (pop set))))
11188 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11189 (when (and marker (null (marker-buffer marker)))
11190 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11191 (sit-for 3)
11192 (throw 'exit nil)))
11193 t)))
11195 (defun org-refile-cache-put (set &rest identifiers)
11196 "Push the refile targets SET into the cache, under IDENTIFIERS."
11197 (let* ((key (sha1 (prin1-to-string identifiers)))
11198 (entry (assoc key org-refile-cache)))
11199 (if entry
11200 (setcdr entry set)
11201 (push (cons key set) org-refile-cache))))
11203 (defun org-refile-cache-get (&rest identifiers)
11204 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11205 (cond
11206 ((not org-refile-cache) nil)
11207 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11209 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11210 org-refile-cache))))
11211 (and set (org-refile-cache-check-set set) set)))))
11213 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11214 "Produce a table with refile targets."
11215 (let ((case-fold-search nil)
11216 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11217 (entries (or org-refile-targets '((nil . (:level . 1)))))
11218 targets tgs txt re files f desc descre fast-path-p level pos0)
11219 (message "Getting targets...")
11220 (with-current-buffer (or default-buffer (current-buffer))
11221 (while (setq entry (pop entries))
11222 (setq files (car entry) desc (cdr entry))
11223 (setq fast-path-p nil)
11224 (cond
11225 ((null files) (setq files (list (current-buffer))))
11226 ((eq files 'org-agenda-files)
11227 (setq files (org-agenda-files 'unrestricted)))
11228 ((and (symbolp files) (fboundp files))
11229 (setq files (funcall files)))
11230 ((and (symbolp files) (boundp files))
11231 (setq files (symbol-value files))))
11232 (if (stringp files) (setq files (list files)))
11233 (cond
11234 ((eq (car desc) :tag)
11235 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11236 ((eq (car desc) :todo)
11237 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11238 ((eq (car desc) :regexp)
11239 (setq descre (cdr desc)))
11240 ((eq (car desc) :level)
11241 (setq descre (concat "^\\*\\{" (number-to-string
11242 (if org-odd-levels-only
11243 (1- (* 2 (cdr desc)))
11244 (cdr desc)))
11245 "\\}[ \t]")))
11246 ((eq (car desc) :maxlevel)
11247 (setq fast-path-p t)
11248 (setq descre (concat "^\\*\\{1," (number-to-string
11249 (if org-odd-levels-only
11250 (1- (* 2 (cdr desc)))
11251 (cdr desc)))
11252 "\\}[ \t]")))
11253 (t (error "Bad refiling target description %s" desc)))
11254 (while (setq f (pop files))
11255 (with-current-buffer
11256 (if (bufferp f) f (org-get-agenda-file-buffer f))
11258 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11259 (progn
11260 (if (bufferp f) (setq f (buffer-file-name
11261 (buffer-base-buffer f))))
11262 (setq f (and f (expand-file-name f)))
11263 (if (eq org-refile-use-outline-path 'file)
11264 (push (list (file-name-nondirectory f) f nil nil) tgs))
11265 (save-excursion
11266 (save-restriction
11267 (widen)
11268 (goto-char (point-min))
11269 (while (re-search-forward descre nil t)
11270 (goto-char (setq pos0 (point-at-bol)))
11271 (catch 'next
11272 (when org-refile-target-verify-function
11273 (save-match-data
11274 (or (funcall org-refile-target-verify-function)
11275 (throw 'next t))))
11276 (when (and (looking-at org-complex-heading-regexp)
11277 (not (member (match-string 4) excluded-entries))
11278 (match-string 4))
11279 (setq level (org-reduced-level
11280 (- (match-end 1) (match-beginning 1)))
11281 txt (org-link-display-format (match-string 4))
11282 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11283 re (format org-complex-heading-regexp-format
11284 (regexp-quote (match-string 4))))
11285 (when org-refile-use-outline-path
11286 (setq txt (mapconcat
11287 'org-protect-slash
11288 (append
11289 (if (eq org-refile-use-outline-path
11290 'file)
11291 (list (file-name-nondirectory
11292 (buffer-file-name
11293 (buffer-base-buffer))))
11294 (if (eq org-refile-use-outline-path
11295 'full-file-path)
11296 (list (buffer-file-name
11297 (buffer-base-buffer)))))
11298 (org-get-outline-path fast-path-p
11299 level txt)
11300 (list txt))
11301 "/")))
11302 (push (list txt f re (org-refile-marker (point)))
11303 tgs)))
11304 (when (= (point) pos0)
11305 ;; verification function has not moved point
11306 (goto-char (point-at-eol))))))))
11307 (when org-refile-use-cache
11308 (org-refile-cache-put tgs (buffer-file-name) descre))
11309 (setq targets (append tgs targets))))))
11310 (message "Getting targets...done")
11311 (nreverse targets)))
11313 (defun org-protect-slash (s)
11314 (while (string-match "/" s)
11315 (setq s (replace-match "\\" t t s)))
11318 (defvar org-olpa (make-vector 20 nil))
11320 (defun org-get-outline-path (&optional fastp level heading)
11321 "Return the outline path to the current entry, as a list.
11323 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11324 routine which makes outline path derivations for an entire file,
11325 avoiding backtracing. Refile target collection makes use of that."
11326 (if fastp
11327 (progn
11328 (if (> level 19)
11329 (error "Outline path failure, more than 19 levels"))
11330 (loop for i from level upto 19 do
11331 (aset org-olpa i nil))
11332 (prog1
11333 (delq nil (append org-olpa nil))
11334 (aset org-olpa level heading)))
11335 (let (rtn case-fold-search)
11336 (save-excursion
11337 (save-restriction
11338 (widen)
11339 (while (org-up-heading-safe)
11340 (when (looking-at org-complex-heading-regexp)
11341 (push (org-trim
11342 (replace-regexp-in-string
11343 ;; Remove statistical/checkboxes cookies
11344 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11345 (org-match-string-no-properties 4)))
11346 rtn)))
11347 rtn)))))
11349 (defun org-format-outline-path (path &optional width prefix separator)
11350 "Format the outline path PATH for display.
11351 WIDTH is the maximum number of characters that is available.
11352 PREFIX is a prefix to be included in the returned string,
11353 such as the file name.
11354 SEPARATOR is inserted between the different parts of the path,
11355 the default is \"/\"."
11356 (setq width (or width 79))
11357 (if prefix (setq width (- width (length prefix))))
11358 (if (not path)
11359 (or prefix "")
11360 (let* ((nsteps (length path))
11361 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11362 (maxwidth (if (<= total-width width)
11363 10000 ;; everything fits
11364 ;; we need to shorten the level headings
11365 (/ (- width nsteps) nsteps)))
11366 (org-odd-levels-only nil)
11367 (n 0)
11368 (total (1+ (length prefix))))
11369 (setq maxwidth (max maxwidth 10))
11370 (concat prefix
11371 (if prefix (or separator "/"))
11372 (mapconcat
11373 (lambda (h)
11374 (setq n (1+ n))
11375 (if (and (= n nsteps) (< maxwidth 10000))
11376 (setq maxwidth (- total-width total)))
11377 (if (< (length h) maxwidth)
11378 (progn (setq total (+ total (length h) 1)) h)
11379 (setq h (substring h 0 (- maxwidth 2))
11380 total (+ total maxwidth 1))
11381 (if (string-match "[ \t]+\\'" h)
11382 (setq h (substring h 0 (match-beginning 0))))
11383 (setq h (concat h "..")))
11384 (org-add-props h nil 'face
11385 (nth (% (1- n) org-n-level-faces)
11386 org-level-faces))
11388 path (or separator "/"))))))
11390 (defun org-display-outline-path (&optional file current separator just-return-string)
11391 "Display the current outline path in the echo area.
11393 If FILE is non-nil, prepend the output with the file name.
11394 If CURRENT is non-nil, append the current heading to the output.
11395 SEPARATOR is passed through to `org-format-outline-path'. It separates
11396 the different parts of the path and defaults to \"/\".
11397 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11398 (interactive "P")
11399 (let* (case-fold-search
11400 message-log-max ; Don't populate the *Messages* buffer
11401 (bfn (buffer-file-name (buffer-base-buffer)))
11402 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11403 res)
11404 (if current (setq path (append path
11405 (save-excursion
11406 (org-back-to-heading t)
11407 (if (looking-at org-complex-heading-regexp)
11408 (list (match-string 4)))))))
11409 (setq res
11410 (org-format-outline-path
11411 path
11412 (1- (frame-width))
11413 (and file bfn (concat (file-name-nondirectory bfn) separator))
11414 separator))
11415 (if just-return-string
11416 (org-no-properties res)
11417 (message "%s" res))))
11419 (defvar org-refile-history nil
11420 "History for refiling operations.")
11422 (defvar org-after-refile-insert-hook nil
11423 "Hook run after `org-refile' has inserted its stuff at the new location.
11424 Note that this is still *before* the stuff will be removed from
11425 the *old* location.")
11427 (defvar org-capture-last-stored-marker)
11428 (defvar org-refile-keep nil
11429 "Non-nil means `org-refile' will copy instead of refile.")
11431 (defun org-copy ()
11432 "Like `org-refile', but copy."
11433 (interactive)
11434 (let ((org-refile-keep t))
11435 (funcall 'org-refile nil nil nil "Copy")))
11437 (defun org-refile (&optional goto default-buffer rfloc msg)
11438 "Move the entry or entries at point to another heading.
11439 The list of target headings is compiled using the information in
11440 `org-refile-targets', which see.
11442 At the target location, the entry is filed as a subitem of the target
11443 heading. Depending on `org-reverse-note-order', the new subitem will
11444 either be the first or the last subitem.
11446 If there is an active region, all entries in that region will be moved.
11447 However, the region must fulfill the requirement that the first heading
11448 is the first one sets the top-level of the moved text - at most siblings
11449 below it are allowed.
11451 With prefix arg GOTO, the command will only visit the target location
11452 and not actually move anything.
11454 With a double prefix arg \\[universal-argument] \\[universal-argument], \
11455 go to the location where the last refiling operation has put the subtree.
11456 With a prefix argument of `2', refile to the running clock.
11458 RFLOC can be a refile location obtained in a different way.
11460 MSG is a string to replace \"Refile\" in the default prompt with
11461 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11463 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11465 If you are using target caching (see `org-refile-use-cache'),
11466 you have to clear the target cache in order to find new targets.
11467 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11468 prefix argument (`C-u C-u C-u C-c C-w')."
11470 (interactive "P")
11471 (if (member goto '(0 (64)))
11472 (org-refile-cache-clear)
11473 (let* ((actionmsg (or msg "Refile"))
11474 (cbuf (current-buffer))
11475 (regionp (org-region-active-p))
11476 (region-start (and regionp (region-beginning)))
11477 (region-end (and regionp (region-end)))
11478 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11479 pos it nbuf file re level reversed)
11480 (setq last-command nil)
11481 (when regionp
11482 (goto-char region-start)
11483 (or (bolp) (goto-char (point-at-bol)))
11484 (setq region-start (point))
11485 (unless (or (org-kill-is-subtree-p
11486 (buffer-substring region-start region-end))
11487 (prog1 org-refile-active-region-within-subtree
11488 (let ((s (point-at-eol)))
11489 (org-toggle-heading)
11490 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11491 (user-error "The region is not a (sequence of) subtree(s)")))
11492 (if (equal goto '(16))
11493 (org-refile-goto-last-stored)
11494 (when (or
11495 (and (equal goto 2)
11496 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11497 (prog1
11498 (setq it (list (or org-clock-heading "running clock")
11499 (buffer-file-name
11500 (marker-buffer org-clock-hd-marker))
11502 (marker-position org-clock-hd-marker)))
11503 (setq goto nil)))
11504 (setq it (or rfloc
11505 (let (heading-text)
11506 (save-excursion
11507 (unless goto
11508 (org-back-to-heading t)
11509 (setq heading-text
11510 (nth 4 (org-heading-components))))
11512 (org-refile-get-location
11513 (cond (goto "Goto")
11514 (regionp (concat actionmsg " region to"))
11515 (t (concat actionmsg " subtree \""
11516 heading-text "\" to")))
11517 default-buffer
11518 (and (not (equal '(4) goto))
11519 org-refile-allow-creating-parent-nodes)
11520 goto))))))
11521 (setq file (nth 1 it)
11522 re (nth 2 it)
11523 pos (nth 3 it))
11524 (if (and (not goto)
11526 (equal (buffer-file-name) file)
11527 (if regionp
11528 (and (>= pos region-start)
11529 (<= pos region-end))
11530 (and (>= pos (point))
11531 (< pos (save-excursion
11532 (org-end-of-subtree t t))))))
11533 (error "Cannot refile to position inside the tree or region"))
11535 (setq nbuf (or (find-buffer-visiting file)
11536 (find-file-noselect file)))
11537 (if goto
11538 (progn
11539 (org-pop-to-buffer-same-window nbuf)
11540 (goto-char pos)
11541 (org-show-context 'org-goto))
11542 (if regionp
11543 (progn
11544 (org-kill-new (buffer-substring region-start region-end))
11545 (org-save-markers-in-region region-start region-end))
11546 (org-copy-subtree 1 nil t))
11547 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11548 (find-file-noselect file)))
11549 (setq reversed (org-notes-order-reversed-p))
11550 (save-excursion
11551 (save-restriction
11552 (widen)
11553 (if pos
11554 (progn
11555 (goto-char pos)
11556 (looking-at org-outline-regexp)
11557 (setq level (org-get-valid-level (funcall outline-level) 1))
11558 (goto-char
11559 (if reversed
11560 (or (outline-next-heading) (point-max))
11561 (or (save-excursion (org-get-next-sibling))
11562 (org-end-of-subtree t t)
11563 (point-max)))))
11564 (setq level 1)
11565 (if (not reversed)
11566 (goto-char (point-max))
11567 (goto-char (point-min))
11568 (or (outline-next-heading) (goto-char (point-max)))))
11569 (if (not (bolp)) (newline))
11570 (org-paste-subtree level)
11571 (when org-log-refile
11572 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11573 (unless (eq org-log-refile 'note)
11574 (save-excursion (org-add-log-note))))
11575 (and org-auto-align-tags
11576 (let ((org-loop-over-headlines-in-active-region nil))
11577 (org-set-tags nil t)))
11578 (with-demoted-errors
11579 (bookmark-set "org-refile-last-stored"))
11580 ;; If we are refiling for capture, make sure that the
11581 ;; last-capture pointers point here
11582 (when (org-bound-and-true-p org-refile-for-capture)
11583 (with-demoted-errors
11584 (bookmark-set "org-capture-last-stored-marker"))
11585 (move-marker org-capture-last-stored-marker (point)))
11586 (if (fboundp 'deactivate-mark) (deactivate-mark))
11587 (run-hooks 'org-after-refile-insert-hook))))
11588 (unless org-refile-keep
11589 (if regionp
11590 (delete-region (point) (+ (point) (- region-end region-start)))
11591 (delete-region
11592 (and (org-back-to-heading t) (point))
11593 (min (buffer-size) (org-end-of-subtree t t) (point)))))
11594 (when (featurep 'org-inlinetask)
11595 (org-inlinetask-remove-END-maybe))
11596 (setq org-markers-to-move nil)
11597 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11599 (defun org-refile-goto-last-stored ()
11600 "Go to the location where the last refile was stored."
11601 (interactive)
11602 (bookmark-jump "org-refile-last-stored")
11603 (message "This is the location of the last refile"))
11605 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11606 no-exclude)
11607 "Prompt the user for a refile location, using PROMPT.
11608 PROMPT should not be suffixed with a colon and a space, because
11609 this function appends the default value from
11610 `org-refile-history' automatically, if that is not empty.
11611 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
11612 this is used for the GOTO interface."
11613 (let ((org-refile-targets org-refile-targets)
11614 (org-refile-use-outline-path org-refile-use-outline-path)
11615 excluded-entries)
11616 (when (and (derived-mode-p 'org-mode)
11617 (not org-refile-use-cache)
11618 (not no-exclude))
11619 (org-map-tree
11620 (lambda()
11621 (setq excluded-entries
11622 (append excluded-entries (list (org-get-heading t t)))))))
11623 (setq org-refile-target-table
11624 (org-refile-get-targets default-buffer excluded-entries)))
11625 (unless org-refile-target-table
11626 (user-error "No refile targets"))
11627 (let* ((cbuf (current-buffer))
11628 (partial-completion-mode nil)
11629 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
11630 (cfunc (if (and org-refile-use-outline-path
11631 org-outline-path-complete-in-steps)
11632 'org-olpath-completing-read
11633 'org-icompleting-read))
11634 (extra (if org-refile-use-outline-path "/" ""))
11635 (cbnex (concat (buffer-name) extra))
11636 (filename (and cfn (expand-file-name cfn)))
11637 (tbl (mapcar
11638 (lambda (x)
11639 (if (and (not (member org-refile-use-outline-path
11640 '(file full-file-path)))
11641 (not (equal filename (nth 1 x))))
11642 (cons (concat (car x) extra " ("
11643 (file-name-nondirectory (nth 1 x)) ")")
11644 (cdr x))
11645 (cons (concat (car x) extra) (cdr x))))
11646 org-refile-target-table))
11647 (completion-ignore-case t)
11648 cdef
11649 (prompt (concat prompt
11650 (or (and (car org-refile-history)
11651 (concat " (default " (car org-refile-history) ")"))
11652 (and (assoc cbnex tbl) (setq cdef cbnex)
11653 (concat " (default " cbnex ")"))) ": "))
11654 pa answ parent-target child parent old-hist)
11655 (setq old-hist org-refile-history)
11656 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
11657 nil 'org-refile-history (or cdef (car org-refile-history))))
11658 (setq pa (or (assoc answ tbl) (assoc (concat answ "/") tbl)))
11659 (org-refile-check-position pa)
11660 (if pa
11661 (progn
11662 (when (or (not org-refile-history)
11663 (not (eq old-hist org-refile-history))
11664 (not (equal (car pa) (car org-refile-history))))
11665 (setq org-refile-history
11666 (cons (car pa) (if (assoc (car org-refile-history) tbl)
11667 org-refile-history
11668 (cdr org-refile-history))))
11669 (if (equal (car org-refile-history) (nth 1 org-refile-history))
11670 (pop org-refile-history)))
11672 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
11673 (progn
11674 (setq parent (match-string 1 answ)
11675 child (match-string 2 answ))
11676 (setq parent-target (or (assoc parent tbl)
11677 (assoc (concat parent "/") tbl)))
11678 (when (and parent-target
11679 (or (eq new-nodes t)
11680 (and (eq new-nodes 'confirm)
11681 (y-or-n-p (format "Create new node \"%s\"? "
11682 child)))))
11683 (org-refile-new-child parent-target child)))
11684 (user-error "Invalid target location")))))
11686 (declare-function org-string-nw-p "org-macs" (s))
11687 (defun org-refile-check-position (refile-pointer)
11688 "Check if the refile pointer matches the headline to which it points."
11689 (let* ((file (nth 1 refile-pointer))
11690 (re (nth 2 refile-pointer))
11691 (pos (nth 3 refile-pointer))
11692 buffer)
11693 (if (and (not (markerp pos)) (not file))
11694 (user-error "Please save the buffer to a file before refiling")
11695 (when (org-string-nw-p re)
11696 (setq buffer (if (markerp pos)
11697 (marker-buffer pos)
11698 (or (find-buffer-visiting file)
11699 (find-file-noselect file))))
11700 (with-current-buffer buffer
11701 (save-excursion
11702 (save-restriction
11703 (widen)
11704 (goto-char pos)
11705 (beginning-of-line 1)
11706 (unless (org-looking-at-p re)
11707 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
11709 (defun org-refile-new-child (parent-target child)
11710 "Use refile target PARENT-TARGET to add new CHILD below it."
11711 (unless parent-target
11712 (error "Cannot find parent for new node"))
11713 (let ((file (nth 1 parent-target))
11714 (pos (nth 3 parent-target))
11715 level)
11716 (with-current-buffer (or (find-buffer-visiting file)
11717 (find-file-noselect file))
11718 (save-excursion
11719 (save-restriction
11720 (widen)
11721 (if pos
11722 (goto-char pos)
11723 (goto-char (point-max))
11724 (if (not (bolp)) (newline)))
11725 (when (looking-at org-outline-regexp)
11726 (setq level (funcall outline-level))
11727 (org-end-of-subtree t t))
11728 (org-back-over-empty-lines)
11729 (insert "\n" (make-string
11730 (if pos (org-get-valid-level level 1) 1) ?*)
11731 " " child "\n")
11732 (beginning-of-line 0)
11733 (list (concat (car parent-target) "/" child) file "" (point)))))))
11735 (defun org-olpath-completing-read (prompt collection &rest args)
11736 "Read an outline path like a file name."
11737 (let ((thetable collection)
11738 (org-completion-use-ido nil) ; does not work with ido.
11739 (org-completion-use-iswitchb nil)) ; or iswitchb
11740 (apply
11741 'org-icompleting-read prompt
11742 (lambda (string predicate &optional flag)
11743 (let (rtn r f (l (length string)))
11744 (cond
11745 ((eq flag nil)
11746 ;; try completion
11747 (try-completion string thetable))
11748 ((eq flag t)
11749 ;; all-completions
11750 (setq rtn (all-completions string thetable predicate))
11751 (mapcar
11752 (lambda (x)
11753 (setq r (substring x l))
11754 (if (string-match " ([^)]*)$" x)
11755 (setq f (match-string 0 x))
11756 (setq f ""))
11757 (if (string-match "/" r)
11758 (concat string (substring r 0 (match-end 0)) f)
11760 rtn))
11761 ((eq flag 'lambda)
11762 ;; exact match?
11763 (assoc string thetable)))))
11764 args)))
11766 ;;;; Dynamic blocks
11768 (defun org-find-dblock (name)
11769 "Find the first dynamic block with name NAME in the buffer.
11770 If not found, stay at current position and return nil."
11771 (let ((case-fold-search t) pos)
11772 (save-excursion
11773 (goto-char (point-min))
11774 (setq pos (and (re-search-forward
11775 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
11776 (match-beginning 0))))
11777 (if pos (goto-char pos))
11778 pos))
11780 (defconst org-dblock-start-re
11781 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
11782 "Matches the start line of a dynamic block, with parameters.")
11784 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
11785 "Matches the end of a dynamic block.")
11787 (defun org-create-dblock (plist)
11788 "Create a dynamic block section, with parameters taken from PLIST.
11789 PLIST must contain a :name entry which is used as name of the block."
11790 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
11791 (end-of-line 1)
11792 (newline))
11793 (let ((col (current-column))
11794 (name (plist-get plist :name)))
11795 (insert "#+BEGIN: " name)
11796 (while plist
11797 (if (eq (car plist) :name)
11798 (setq plist (cddr plist))
11799 (insert " " (prin1-to-string (pop plist)))))
11800 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
11801 (beginning-of-line -2)))
11803 (defun org-prepare-dblock ()
11804 "Prepare dynamic block for refresh.
11805 This empties the block, puts the cursor at the insert position and returns
11806 the property list including an extra property :name with the block name."
11807 (unless (looking-at org-dblock-start-re)
11808 (user-error "Not at a dynamic block"))
11809 (let* ((begdel (1+ (match-end 0)))
11810 (name (org-no-properties (match-string 1)))
11811 (params (append (list :name name)
11812 (read (concat "(" (match-string 3) ")")))))
11813 (save-excursion
11814 (beginning-of-line 1)
11815 (skip-chars-forward " \t")
11816 (setq params (plist-put params :indentation-column (current-column))))
11817 (unless (re-search-forward org-dblock-end-re nil t)
11818 (error "Dynamic block not terminated"))
11819 (setq params
11820 (append params
11821 (list :content (buffer-substring
11822 begdel (match-beginning 0)))))
11823 (delete-region begdel (match-beginning 0))
11824 (goto-char begdel)
11825 (open-line 1)
11826 params))
11828 (defun org-map-dblocks (&optional command)
11829 "Apply COMMAND to all dynamic blocks in the current buffer.
11830 If COMMAND is not given, use `org-update-dblock'."
11831 (let ((cmd (or command 'org-update-dblock)))
11832 (save-excursion
11833 (goto-char (point-min))
11834 (while (re-search-forward org-dblock-start-re nil t)
11835 (goto-char (match-beginning 0))
11836 (save-excursion
11837 (condition-case nil
11838 (funcall cmd)
11839 (error (message "Error during update of dynamic block"))))
11840 (unless (re-search-forward org-dblock-end-re nil t)
11841 (error "Dynamic block not terminated"))))))
11843 (defun org-dblock-update (&optional arg)
11844 "User command for updating dynamic blocks.
11845 Update the dynamic block at point. With prefix ARG, update all dynamic
11846 blocks in the buffer."
11847 (interactive "P")
11848 (if arg
11849 (org-update-all-dblocks)
11850 (or (looking-at org-dblock-start-re)
11851 (org-beginning-of-dblock))
11852 (org-update-dblock)))
11854 (defun org-update-dblock ()
11855 "Update the dynamic block at point.
11856 This means to empty the block, parse for parameters and then call
11857 the correct writing function."
11858 (interactive)
11859 (save-window-excursion
11860 (let* ((pos (point))
11861 (line (org-current-line))
11862 (params (org-prepare-dblock))
11863 (name (plist-get params :name))
11864 (indent (plist-get params :indentation-column))
11865 (cmd (intern (concat "org-dblock-write:" name))))
11866 (message "Updating dynamic block `%s' at line %d..." name line)
11867 (funcall cmd params)
11868 (message "Updating dynamic block `%s' at line %d...done" name line)
11869 (goto-char pos)
11870 (when (and indent (> indent 0))
11871 (setq indent (make-string indent ?\ ))
11872 (save-excursion
11873 (org-beginning-of-dblock)
11874 (forward-line 1)
11875 (while (not (looking-at org-dblock-end-re))
11876 (insert indent)
11877 (beginning-of-line 2))
11878 (when (looking-at org-dblock-end-re)
11879 (and (looking-at "[ \t]+")
11880 (replace-match ""))
11881 (insert indent)))))))
11883 (defun org-beginning-of-dblock ()
11884 "Find the beginning of the dynamic block at point.
11885 Error if there is no such block at point."
11886 (let ((pos (point))
11887 beg)
11888 (end-of-line 1)
11889 (if (and (re-search-backward org-dblock-start-re nil t)
11890 (setq beg (match-beginning 0))
11891 (re-search-forward org-dblock-end-re nil t)
11892 (> (match-end 0) pos))
11893 (goto-char beg)
11894 (goto-char pos)
11895 (error "Not in a dynamic block"))))
11897 (defun org-update-all-dblocks ()
11898 "Update all dynamic blocks in the buffer.
11899 This function can be used in a hook."
11900 (interactive)
11901 (when (derived-mode-p 'org-mode)
11902 (org-map-dblocks 'org-update-dblock)))
11905 ;;;; Completion
11907 (defun org-get-export-keywords ()
11908 "Return a list of all currently understood export keywords.
11909 Export keywords include options, block names, attributes and
11910 keywords relative to each registered export back-end."
11911 (delq nil
11912 (let (keywords)
11913 (mapc
11914 (lambda (back-end)
11915 (let ((props (cdr back-end)))
11916 ;; Back-end name (for keywords, like #+LATEX:)
11917 (push (upcase (symbol-name (car back-end))) keywords)
11918 ;; Back-end options.
11919 (mapc (lambda (option) (push (cadr option) keywords))
11920 (plist-get (cdr back-end) :options-alist))))
11921 (org-bound-and-true-p org-export-registered-backends))
11922 keywords)))
11924 (defconst org-options-keywords
11925 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
11926 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
11927 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
11928 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
11929 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
11931 (defcustom org-structure-template-alist
11932 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC" "<src lang=\"?\">\n\n</src>")
11933 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE" "<example>\n?\n</example>")
11934 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE" "<quote>\n?\n</quote>")
11935 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE" "<verse>\n?\n</verse>")
11936 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM" "<verbatim>\n?\n</verbatim>")
11937 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER" "<center>\n?\n</center>")
11938 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX"
11939 "<literal style=\"latex\">\n?\n</literal>")
11940 ("L" "#+LaTeX: " "<literal style=\"latex\">?</literal>")
11941 ("h" "#+BEGIN_HTML\n?\n#+END_HTML"
11942 "<literal style=\"html\">\n?\n</literal>")
11943 ("H" "#+HTML: " "<literal style=\"html\">?</literal>")
11944 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII" "")
11945 ("A" "#+ASCII: " "")
11946 ("i" "#+INDEX: ?" "#+INDEX: ?")
11947 ("I" "#+INCLUDE: %file ?"
11948 "<include file=%file markup=\"?\">"))
11949 "Structure completion elements.
11950 This is a list of abbreviation keys and values. The value gets inserted
11951 if you type `<' followed by the key and then press the completion key,
11952 usually `M-TAB'. %file will be replaced by a file name after prompting
11953 for the file using completion. The cursor will be placed at the position
11954 of the `?` in the template.
11955 There are two templates for each key, the first uses the original Org syntax,
11956 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
11957 the default when the /org-mtags.el/ module has been loaded. See also the
11958 variable `org-mtags-prefer-muse-templates'."
11959 :group 'org-completion
11960 :type '(repeat
11961 (list
11962 (string :tag "Key")
11963 (string :tag "Template")
11964 (string :tag "Muse Template"))))
11966 (defun org-try-structure-completion ()
11967 "Try to complete a structure template before point.
11968 This looks for strings like \"<e\" on an otherwise empty line and
11969 expands them."
11970 (let ((l (buffer-substring (point-at-bol) (point)))
11972 (when (and (looking-at "[ \t]*$")
11973 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
11974 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
11975 (org-complete-expand-structure-template (+ -1 (point-at-bol)
11976 (match-beginning 1)) a)
11977 t)))
11979 (defun org-complete-expand-structure-template (start cell)
11980 "Expand a structure template."
11981 (let* ((musep (org-bound-and-true-p org-mtags-prefer-muse-templates))
11982 (rpl (nth (if musep 2 1) cell))
11983 (ind ""))
11984 (delete-region start (point))
11985 (when (string-match "\\`#\\+" rpl)
11986 (cond
11987 ((bolp))
11988 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
11989 (setq ind (buffer-substring (point-at-bol) (point))))
11990 (t (newline))))
11991 (setq start (point))
11992 (if (string-match "%file" rpl)
11993 (setq rpl (replace-match
11994 (concat
11995 "\""
11996 (save-match-data
11997 (abbreviate-file-name (read-file-name "Include file: ")))
11998 "\"")
11999 t t rpl)))
12000 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12001 (concat "\n" ind)))
12002 (insert rpl)
12003 (if (re-search-backward "\\?" start t) (delete-char 1))))
12005 ;;;; TODO, DEADLINE, Comments
12007 (defun org-toggle-comment ()
12008 "Change the COMMENT state of an entry."
12009 (interactive)
12010 (save-excursion
12011 (org-back-to-heading)
12012 (let (case-fold-search)
12013 (cond
12014 ((looking-at (format org-heading-keyword-regexp-format
12015 org-comment-string))
12016 (goto-char (match-end 1))
12017 (looking-at (concat " +" org-comment-string))
12018 (replace-match "" t t)
12019 (when (eolp) (insert " ")))
12020 ((looking-at org-outline-regexp)
12021 (goto-char (match-end 0))
12022 (insert org-comment-string " "))))))
12024 (defvar org-last-todo-state-is-todo nil
12025 "This is non-nil when the last TODO state change led to a TODO state.
12026 If the last change removed the TODO tag or switched to DONE, then
12027 this is nil.")
12029 (defvar org-setting-tags nil) ; dynamically skipped
12031 (defvar org-todo-setup-filter-hook nil
12032 "Hook for functions that pre-filter todo specs.
12033 Each function takes a todo spec and returns either nil or the spec
12034 transformed into canonical form." )
12036 (defvar org-todo-get-default-hook nil
12037 "Hook for functions that get a default item for todo.
12038 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12039 nil or a string to be used for the todo mark." )
12041 (defvar org-agenda-headline-snapshot-before-repeat)
12043 (defun org-current-effective-time ()
12044 "Return current time adjusted for `org-extend-today-until' variable."
12045 (let* ((ct (org-current-time))
12046 (dct (decode-time ct))
12047 (ct1
12048 (cond
12049 (org-use-last-clock-out-time-as-effective-time
12050 (or (org-clock-get-last-clock-out-time) ct))
12051 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12052 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12053 (t ct))))
12054 ct1))
12056 (defun org-todo-yesterday (&optional arg)
12057 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12058 (interactive "P")
12059 (if (eq major-mode 'org-agenda-mode)
12060 (apply 'org-agenda-todo-yesterday arg)
12061 (let* ((hour (third (decode-time
12062 (org-current-time))))
12063 (org-extend-today-until (1+ hour)))
12064 (org-todo arg))))
12066 (defvar org-block-entry-blocking ""
12067 "First entry preventing the TODO state change.")
12069 (defun org-todo (&optional arg)
12070 "Change the TODO state of an item.
12071 The state of an item is given by a keyword at the start of the heading,
12072 like
12073 *** TODO Write paper
12074 *** DONE Call mom
12076 The different keywords are specified in the variable `org-todo-keywords'.
12077 By default the available states are \"TODO\" and \"DONE\".
12078 So for this example: when the item starts with TODO, it is changed to DONE.
12079 When it starts with DONE, the DONE is removed. And when neither TODO nor
12080 DONE are present, add TODO at the beginning of the heading.
12082 With \\[universal-argument] prefix arg, use completion to determine the new \
12083 state.
12084 With numeric prefix arg, switch to that state.
12085 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12086 keywords (nextset).
12087 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12088 With a numeric prefix arg of 0, inhibit note taking for the change.
12090 For calling through lisp, arg is also interpreted in the following way:
12091 'none -> empty state
12092 \"\"(empty string) -> switch to empty state
12093 'done -> switch to DONE
12094 'nextset -> switch to the next set of keywords
12095 'previousset -> switch to the previous set of keywords
12096 \"WAITING\" -> switch to the specified keyword, but only if it
12097 really is a member of `org-todo-keywords'."
12098 (interactive "P")
12099 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12100 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12101 'region-start-level 'region))
12102 org-loop-over-headlines-in-active-region)
12103 (org-map-entries
12104 `(org-todo ,arg)
12105 org-loop-over-headlines-in-active-region
12106 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12107 (if (equal arg '(16)) (setq arg 'nextset))
12108 (let ((org-blocker-hook org-blocker-hook)
12109 commentp
12110 case-fold-search)
12111 (when (equal arg '(64))
12112 (setq arg nil org-blocker-hook nil))
12113 (when (and org-blocker-hook
12114 (or org-inhibit-blocking
12115 (org-entry-get nil "NOBLOCKING")))
12116 (setq org-blocker-hook nil))
12117 (save-excursion
12118 (catch 'exit
12119 (org-back-to-heading t)
12120 (when (looking-at (concat "^\\*+ " org-comment-string))
12121 (org-toggle-comment)
12122 (setq commentp t))
12123 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12124 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12125 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12126 (let* ((match-data (match-data))
12127 (startpos (point-at-bol))
12128 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12129 (org-log-done org-log-done)
12130 (org-log-repeat org-log-repeat)
12131 (org-todo-log-states org-todo-log-states)
12132 (org-inhibit-logging
12133 (if (equal arg 0)
12134 (progn (setq arg nil) 'note) org-inhibit-logging))
12135 (this (match-string 1))
12136 (hl-pos (match-beginning 0))
12137 (head (org-get-todo-sequence-head this))
12138 (ass (assoc head org-todo-kwd-alist))
12139 (interpret (nth 1 ass))
12140 (done-word (nth 3 ass))
12141 (final-done-word (nth 4 ass))
12142 (org-last-state (or this ""))
12143 (completion-ignore-case t)
12144 (member (member this org-todo-keywords-1))
12145 (tail (cdr member))
12146 (org-state (cond
12147 ((and org-todo-key-trigger
12148 (or (and (equal arg '(4))
12149 (eq org-use-fast-todo-selection 'prefix))
12150 (and (not arg) org-use-fast-todo-selection
12151 (not (eq org-use-fast-todo-selection
12152 'prefix)))))
12153 ;; Use fast selection
12154 (org-fast-todo-selection))
12155 ((and (equal arg '(4))
12156 (or (not org-use-fast-todo-selection)
12157 (not org-todo-key-trigger)))
12158 ;; Read a state with completion
12159 (org-icompleting-read
12160 "State: " (mapcar 'list org-todo-keywords-1)
12161 nil t))
12162 ((eq arg 'right)
12163 (if this
12164 (if tail (car tail) nil)
12165 (car org-todo-keywords-1)))
12166 ((eq arg 'left)
12167 (if (equal member org-todo-keywords-1)
12169 (if this
12170 (nth (- (length org-todo-keywords-1)
12171 (length tail) 2)
12172 org-todo-keywords-1)
12173 (org-last org-todo-keywords-1))))
12174 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12175 (setq arg nil))) ; hack to fall back to cycling
12176 (arg
12177 ;; user or caller requests a specific state
12178 (cond
12179 ((equal arg "") nil)
12180 ((eq arg 'none) nil)
12181 ((eq arg 'done) (or done-word (car org-done-keywords)))
12182 ((eq arg 'nextset)
12183 (or (car (cdr (member head org-todo-heads)))
12184 (car org-todo-heads)))
12185 ((eq arg 'previousset)
12186 (let ((org-todo-heads (reverse org-todo-heads)))
12187 (or (car (cdr (member head org-todo-heads)))
12188 (car org-todo-heads))))
12189 ((car (member arg org-todo-keywords-1)))
12190 ((stringp arg)
12191 (user-error "State `%s' not valid in this file" arg))
12192 ((nth (1- (prefix-numeric-value arg))
12193 org-todo-keywords-1))))
12194 ((null member) (or head (car org-todo-keywords-1)))
12195 ((equal this final-done-word) nil) ;; -> make empty
12196 ((null tail) nil) ;; -> first entry
12197 ((memq interpret '(type priority))
12198 (if (eq this-command last-command)
12199 (car tail)
12200 (if (> (length tail) 0)
12201 (or done-word (car org-done-keywords))
12202 nil)))
12204 (car tail))))
12205 (org-state (or
12206 (run-hook-with-args-until-success
12207 'org-todo-get-default-hook org-state org-last-state)
12208 org-state))
12209 (next (if org-state (concat " " org-state " ") " "))
12210 (change-plist (list :type 'todo-state-change :from this :to org-state
12211 :position startpos))
12212 dolog now-done-p)
12213 (when org-blocker-hook
12214 (setq org-last-todo-state-is-todo
12215 (not (member this org-done-keywords)))
12216 (unless (save-excursion
12217 (save-match-data
12218 (org-with-wide-buffer
12219 (run-hook-with-args-until-failure
12220 'org-blocker-hook change-plist))))
12221 (if (org-called-interactively-p 'interactive)
12222 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12223 this org-state org-block-entry-blocking)
12224 ;; fail silently
12225 (message "TODO state change from %s to %s blocked (by \"%s\")"
12226 this org-state org-block-entry-blocking)
12227 (throw 'exit nil))))
12228 (store-match-data match-data)
12229 (replace-match next t t)
12230 (unless (pos-visible-in-window-p hl-pos)
12231 (message "TODO state changed to %s" (org-trim next)))
12232 (unless head
12233 (setq head (org-get-todo-sequence-head org-state)
12234 ass (assoc head org-todo-kwd-alist)
12235 interpret (nth 1 ass)
12236 done-word (nth 3 ass)
12237 final-done-word (nth 4 ass)))
12238 (when (memq arg '(nextset previousset))
12239 (message "Keyword-Set %d/%d: %s"
12240 (- (length org-todo-sets) -1
12241 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12242 (length org-todo-sets)
12243 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12244 (setq org-last-todo-state-is-todo
12245 (not (member org-state org-done-keywords)))
12246 (setq now-done-p (and (member org-state org-done-keywords)
12247 (not (member this org-done-keywords))))
12248 (and logging (org-local-logging logging))
12249 (when (and (or org-todo-log-states org-log-done)
12250 (not (eq org-inhibit-logging t))
12251 (not (memq arg '(nextset previousset))))
12252 ;; we need to look at recording a time and note
12253 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12254 (nth 2 (assoc this org-todo-log-states))))
12255 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12256 (setq dolog 'time))
12257 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12258 (and org-state
12259 (member org-state org-not-done-keywords)
12260 (not (member this org-not-done-keywords))))
12261 ;; This is now a todo state and was not one before
12262 ;; If there was a CLOSED time stamp, get rid of it.
12263 (org-add-planning-info nil nil 'closed))
12264 (when (and now-done-p org-log-done)
12265 ;; It is now done, and it was not done before
12266 (org-add-planning-info 'closed (org-current-effective-time))
12267 (if (and (not dolog) (eq 'note org-log-done))
12268 (org-add-log-setup 'done org-state this 'findpos 'note)))
12269 (when (and org-state dolog)
12270 ;; This is a non-nil state, and we need to log it
12271 (org-add-log-setup 'state org-state this 'findpos dolog)))
12272 ;; Fixup tag positioning
12273 (org-todo-trigger-tag-changes org-state)
12274 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12275 (when org-provide-todo-statistics
12276 (org-update-parent-todo-statistics))
12277 (run-hooks 'org-after-todo-state-change-hook)
12278 (if (and arg (not (member org-state org-done-keywords)))
12279 (setq head (org-get-todo-sequence-head org-state)))
12280 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12281 ;; Do we need to trigger a repeat?
12282 (when now-done-p
12283 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12284 ;; This is for the agenda, take a snapshot of the headline.
12285 (save-match-data
12286 (setq org-agenda-headline-snapshot-before-repeat
12287 (org-get-heading))))
12288 (org-auto-repeat-maybe org-state))
12289 ;; Fixup cursor location if close to the keyword
12290 (if (and (outline-on-heading-p)
12291 (not (bolp))
12292 (save-excursion (beginning-of-line 1)
12293 (looking-at org-todo-line-regexp))
12294 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12295 (progn
12296 (goto-char (or (match-end 2) (match-end 1)))
12297 (and (looking-at " ") (just-one-space))))
12298 (when org-trigger-hook
12299 (save-excursion
12300 (run-hook-with-args 'org-trigger-hook change-plist)))
12301 (when commentp (org-toggle-comment))))))))
12303 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12304 "Block turning an entry into a TODO, using the hierarchy.
12305 This checks whether the current task should be blocked from state
12306 changes. Such blocking occurs when:
12308 1. The task has children which are not all in a completed state.
12310 2. A task has a parent with the property :ORDERED:, and there
12311 are siblings prior to the current task with incomplete
12312 status.
12314 3. The parent of the task is blocked because it has siblings that should
12315 be done first, or is child of a block grandparent TODO entry."
12317 (if (not org-enforce-todo-dependencies)
12318 t ; if locally turned off don't block
12319 (catch 'dont-block
12320 ;; If this is not a todo state change, or if this entry is already DONE,
12321 ;; do not block
12322 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12323 (member (plist-get change-plist :from)
12324 (cons 'done org-done-keywords))
12325 (member (plist-get change-plist :to)
12326 (cons 'todo org-not-done-keywords))
12327 (not (plist-get change-plist :to)))
12328 (throw 'dont-block t))
12329 ;; If this task has children, and any are undone, it's blocked
12330 (save-excursion
12331 (org-back-to-heading t)
12332 (let ((this-level (funcall outline-level)))
12333 (outline-next-heading)
12334 (let ((child-level (funcall outline-level)))
12335 (while (and (not (eobp))
12336 (> child-level this-level))
12337 ;; this todo has children, check whether they are all
12338 ;; completed
12339 (if (and (not (org-entry-is-done-p))
12340 (org-entry-is-todo-p))
12341 (progn (setq org-block-entry-blocking (org-get-heading))
12342 (throw 'dont-block nil)))
12343 (outline-next-heading)
12344 (setq child-level (funcall outline-level))))))
12345 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12346 ;; any previous siblings are undone, it's blocked
12347 (save-excursion
12348 (org-back-to-heading t)
12349 (let* ((pos (point))
12350 (parent-pos (and (org-up-heading-safe) (point))))
12351 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12352 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12353 (forward-line 1)
12354 (re-search-forward org-not-done-heading-regexp pos t))
12355 (setq org-block-entry-blocking (match-string 0))
12356 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12357 ;; Search further up the hierarchy, to see if an ancestor is blocked
12358 (while t
12359 (goto-char parent-pos)
12360 (if (not (looking-at org-not-done-heading-regexp))
12361 (throw 'dont-block t)) ; do not block, parent is not a TODO
12362 (setq pos (point))
12363 (setq parent-pos (and (org-up-heading-safe) (point)))
12364 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12365 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12366 (forward-line 1)
12367 (re-search-forward org-not-done-heading-regexp pos t)
12368 (setq org-block-entry-blocking (org-get-heading)))
12369 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12371 (defcustom org-track-ordered-property-with-tag nil
12372 "Should the ORDERED property also be shown as a tag?
12373 The ORDERED property decides if an entry should require subtasks to be
12374 completed in sequence. Since a property is not very visible, setting
12375 this option means that toggling the ORDERED property with the command
12376 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12377 not relevant for the behavior, but it makes things more visible.
12379 Note that toggling the tag with tags commands will not change the property
12380 and therefore not influence behavior!
12382 This can be t, meaning the tag ORDERED should be used, It can also be a
12383 string to select a different tag for this task."
12384 :group 'org-todo
12385 :type '(choice
12386 (const :tag "No tracking" nil)
12387 (const :tag "Track with ORDERED tag" t)
12388 (string :tag "Use other tag")))
12390 (defun org-toggle-ordered-property ()
12391 "Toggle the ORDERED property of the current entry.
12392 For better visibility, you can track the value of this property with a tag.
12393 See variable `org-track-ordered-property-with-tag'."
12394 (interactive)
12395 (let* ((t1 org-track-ordered-property-with-tag)
12396 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12397 (save-excursion
12398 (org-back-to-heading)
12399 (if (org-entry-get nil "ORDERED")
12400 (progn
12401 (org-delete-property "ORDERED" "PROPERTIES")
12402 (and tag (org-toggle-tag tag 'off))
12403 (message "Subtasks can be completed in arbitrary order"))
12404 (org-entry-put nil "ORDERED" "t")
12405 (and tag (org-toggle-tag tag 'on))
12406 (message "Subtasks must be completed in sequence")))))
12408 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12409 (defun org-block-todo-from-checkboxes (change-plist)
12410 "Block turning an entry into a TODO, using checkboxes.
12411 This checks whether the current task should be blocked from state
12412 changes because there are unchecked boxes in this entry."
12413 (if (not org-enforce-todo-checkbox-dependencies)
12414 t ; if locally turned off don't block
12415 (catch 'dont-block
12416 ;; If this is not a todo state change, or if this entry is already DONE,
12417 ;; do not block
12418 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12419 (member (plist-get change-plist :from)
12420 (cons 'done org-done-keywords))
12421 (member (plist-get change-plist :to)
12422 (cons 'todo org-not-done-keywords))
12423 (not (plist-get change-plist :to)))
12424 (throw 'dont-block t))
12425 ;; If this task has checkboxes that are not checked, it's blocked
12426 (save-excursion
12427 (org-back-to-heading t)
12428 (let ((beg (point)) end)
12429 (outline-next-heading)
12430 (setq end (point))
12431 (goto-char beg)
12432 (if (org-list-search-forward
12433 (concat (org-item-beginning-re)
12434 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12435 "\\[[- ]\\]")
12436 end t)
12437 (progn
12438 (if (boundp 'org-blocked-by-checkboxes)
12439 (setq org-blocked-by-checkboxes t))
12440 (throw 'dont-block nil)))))
12441 t))) ; do not block
12443 (defun org-entry-blocked-p ()
12444 "Is the current entry blocked?"
12445 (org-with-silent-modifications
12446 (if (org-entry-get nil "NOBLOCKING")
12447 nil ;; Never block this entry
12448 (not (run-hook-with-args-until-failure
12449 'org-blocker-hook
12450 (list :type 'todo-state-change
12451 :position (point)
12452 :from 'todo
12453 :to 'done))))))
12455 (defun org-update-statistics-cookies (all)
12456 "Update the statistics cookie, either from TODO or from checkboxes.
12457 This should be called with the cursor in a line with a statistics cookie."
12458 (interactive "P")
12459 (if all
12460 (progn
12461 (org-update-checkbox-count 'all)
12462 (org-map-entries 'org-update-parent-todo-statistics))
12463 (if (not (org-at-heading-p))
12464 (org-update-checkbox-count)
12465 (let ((pos (point-marker))
12466 end l1 l2)
12467 (ignore-errors (org-back-to-heading t))
12468 (if (not (org-at-heading-p))
12469 (org-update-checkbox-count)
12470 (setq l1 (org-outline-level))
12471 (setq end (save-excursion
12472 (outline-next-heading)
12473 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12474 (point)))
12475 (if (and (save-excursion
12476 (re-search-forward
12477 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12478 (not (save-excursion (re-search-forward
12479 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12480 (org-update-checkbox-count)
12481 (if (and l2 (> l2 l1))
12482 (progn
12483 (goto-char end)
12484 (org-update-parent-todo-statistics))
12485 (goto-char pos)
12486 (beginning-of-line 1)
12487 (while (re-search-forward
12488 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12489 (point-at-eol) t)
12490 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12491 (goto-char pos)
12492 (move-marker pos nil)))))
12494 (defvar org-entry-property-inherited-from) ;; defined below
12495 (defun org-update-parent-todo-statistics ()
12496 "Update any statistics cookie in the parent of the current headline.
12497 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12498 the entire subtree and this will travel up the hierarchy and update
12499 statistics everywhere."
12500 (let* ((prop (save-excursion (org-up-heading-safe)
12501 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12502 (recursive (or (not org-hierarchical-todo-statistics)
12503 (and prop (string-match "\\<recursive\\>" prop))))
12504 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12506 (first t)
12507 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12508 level ltoggle l1 new ndel
12509 (cnt-all 0) (cnt-done 0) is-percent kwd
12510 checkbox-beg ov ovs ove cookie-present)
12511 (catch 'exit
12512 (save-excursion
12513 (beginning-of-line 1)
12514 (setq ltoggle (funcall outline-level))
12515 ;; Three situations are to consider:
12517 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12518 ;; to the top-level ancestor on the headline;
12520 ;; 2. If parent has "recursive" property, repeat up to the
12521 ;; headline setting that property, taking inheritance into
12522 ;; account;
12524 ;; 3. Else, move up to direct parent and proceed only once.
12525 (while (and (setq level (org-up-heading-safe))
12526 (or recursive first)
12527 (>= (point) lim))
12528 (setq first nil cookie-present nil)
12529 (unless (and level
12530 (not (string-match
12531 "\\<checkbox\\>"
12532 (downcase (or (org-entry-get nil "COOKIE_DATA")
12533 "")))))
12534 (throw 'exit nil))
12535 (while (re-search-forward box-re (point-at-eol) t)
12536 (setq cnt-all 0 cnt-done 0 cookie-present t)
12537 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12538 (save-match-data
12539 (unless (outline-next-heading) (throw 'exit nil))
12540 (while (and (looking-at org-complex-heading-regexp)
12541 (> (setq l1 (length (match-string 1))) level))
12542 (setq kwd (and (or recursive (= l1 ltoggle))
12543 (match-string 2)))
12544 (if (or (eq org-provide-todo-statistics 'all-headlines)
12545 (and (listp org-provide-todo-statistics)
12546 (or (member kwd org-provide-todo-statistics)
12547 (member kwd org-done-keywords))))
12548 (setq cnt-all (1+ cnt-all))
12549 (if (eq org-provide-todo-statistics t)
12550 (and kwd (setq cnt-all (1+ cnt-all)))))
12551 (and (member kwd org-done-keywords)
12552 (setq cnt-done (1+ cnt-done)))
12553 (outline-next-heading)))
12554 (setq new
12555 (if is-percent
12556 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12557 (format "[%d/%d]" cnt-done cnt-all))
12558 ndel (- (match-end 0) checkbox-beg))
12559 ;; handle overlays when updating cookie from column view
12560 (when (setq ov (car (overlays-at checkbox-beg)))
12561 (setq ovs (overlay-start ov) ove (overlay-end ov))
12562 (delete-overlay ov))
12563 (goto-char checkbox-beg)
12564 (insert new)
12565 (delete-region (point) (+ (point) ndel))
12566 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12567 (when ov (move-overlay ov ovs ove)))
12568 (when cookie-present
12569 (run-hook-with-args 'org-after-todo-statistics-hook
12570 cnt-done (- cnt-all cnt-done))))))
12571 (run-hooks 'org-todo-statistics-hook)))
12573 (defvar org-after-todo-statistics-hook nil
12574 "Hook that is called after a TODO statistics cookie has been updated.
12575 Each function is called with two arguments: the number of not-done entries
12576 and the number of done entries.
12578 For example, the following function, when added to this hook, will switch
12579 an entry to DONE when all children are done, and back to TODO when new
12580 entries are set to a TODO status. Note that this hook is only called
12581 when there is a statistics cookie in the headline!
12583 (defun org-summary-todo (n-done n-not-done)
12584 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12585 (let (org-log-done org-log-states) ; turn off logging
12586 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
12589 (defvar org-todo-statistics-hook nil
12590 "Hook that is run whenever Org thinks TODO statistics should be updated.
12591 This hook runs even if there is no statistics cookie present, in which case
12592 `org-after-todo-statistics-hook' would not run.")
12594 (defun org-todo-trigger-tag-changes (state)
12595 "Apply the changes defined in `org-todo-state-tags-triggers'."
12596 (let ((l org-todo-state-tags-triggers)
12597 changes)
12598 (when (or (not state) (equal state ""))
12599 (setq changes (append changes (cdr (assoc "" l)))))
12600 (when (and (stringp state) (> (length state) 0))
12601 (setq changes (append changes (cdr (assoc state l)))))
12602 (when (member state org-not-done-keywords)
12603 (setq changes (append changes (cdr (assoc 'todo l)))))
12604 (when (member state org-done-keywords)
12605 (setq changes (append changes (cdr (assoc 'done l)))))
12606 (dolist (c changes)
12607 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
12609 (defun org-local-logging (value)
12610 "Get logging settings from a property VALUE."
12611 (let* (words w a)
12612 ;; directly set the variables, they are already local.
12613 (setq org-log-done nil
12614 org-log-repeat nil
12615 org-todo-log-states nil)
12616 (setq words (org-split-string value))
12617 (while (setq w (pop words))
12618 (cond
12619 ((setq a (assoc w org-startup-options))
12620 (and (member (nth 1 a) '(org-log-done org-log-repeat))
12621 (set (nth 1 a) (nth 2 a))))
12622 ((setq a (org-extract-log-state-settings w))
12623 (and (member (car a) org-todo-keywords-1)
12624 (push a org-todo-log-states)))))))
12626 (defun org-get-todo-sequence-head (kwd)
12627 "Return the head of the TODO sequence to which KWD belongs.
12628 If KWD is not set, check if there is a text property remembering the
12629 right sequence."
12630 (let (p)
12631 (cond
12632 ((not kwd)
12633 (or (get-text-property (point-at-bol) 'org-todo-head)
12634 (progn
12635 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
12636 nil (point-at-eol)))
12637 (get-text-property p 'org-todo-head))))
12638 ((not (member kwd org-todo-keywords-1))
12639 (car org-todo-keywords-1))
12640 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
12642 (defun org-fast-todo-selection ()
12643 "Fast TODO keyword selection with single keys.
12644 Returns the new TODO keyword, or nil if no state change should occur."
12645 (let* ((fulltable org-todo-key-alist)
12646 (done-keywords org-done-keywords) ;; needed for the faces.
12647 (maxlen (apply 'max (mapcar
12648 (lambda (x)
12649 (if (stringp (car x)) (string-width (car x)) 0))
12650 fulltable)))
12651 (expert nil)
12652 (fwidth (+ maxlen 3 1 3))
12653 (ncol (/ (- (window-width) 4) fwidth))
12654 tg cnt e c tbl
12655 groups ingroup)
12656 (save-excursion
12657 (save-window-excursion
12658 (if expert
12659 (set-buffer (get-buffer-create " *Org todo*"))
12660 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
12661 (erase-buffer)
12662 (org-set-local 'org-done-keywords done-keywords)
12663 (setq tbl fulltable cnt 0)
12664 (while (setq e (pop tbl))
12665 (cond
12666 ((equal e '(:startgroup))
12667 (push '() groups) (setq ingroup t)
12668 (when (not (= cnt 0))
12669 (setq cnt 0)
12670 (insert "\n"))
12671 (insert "{ "))
12672 ((equal e '(:endgroup))
12673 (setq ingroup nil cnt 0)
12674 (insert "}\n"))
12675 ((equal e '(:newline))
12676 (when (not (= cnt 0))
12677 (setq cnt 0)
12678 (insert "\n")
12679 (setq e (car tbl))
12680 (while (equal (car tbl) '(:newline))
12681 (insert "\n")
12682 (setq tbl (cdr tbl)))))
12684 (setq tg (car e) c (cdr e))
12685 (if ingroup (push tg (car groups)))
12686 (setq tg (org-add-props tg nil 'face
12687 (org-get-todo-face tg)))
12688 (if (and (= cnt 0) (not ingroup)) (insert " "))
12689 (insert "[" c "] " tg (make-string
12690 (- fwidth 4 (length tg)) ?\ ))
12691 (when (= (setq cnt (1+ cnt)) ncol)
12692 (insert "\n")
12693 (if ingroup (insert " "))
12694 (setq cnt 0)))))
12695 (insert "\n")
12696 (goto-char (point-min))
12697 (if (not expert) (org-fit-window-to-buffer))
12698 (message "[a-z..]:Set [SPC]:clear")
12699 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
12700 (cond
12701 ((or (= c ?\C-g)
12702 (and (= c ?q) (not (rassoc c fulltable))))
12703 (setq quit-flag t))
12704 ((= c ?\ ) nil)
12705 ((setq e (rassoc c fulltable) tg (car e))
12707 (t (setq quit-flag t)))))))
12709 (defun org-entry-is-todo-p ()
12710 (member (org-get-todo-state) org-not-done-keywords))
12712 (defun org-entry-is-done-p ()
12713 (member (org-get-todo-state) org-done-keywords))
12715 (defun org-get-todo-state ()
12716 "Return the TODO keyword of the current subtree."
12717 (save-excursion
12718 (org-back-to-heading t)
12719 (and (looking-at org-todo-line-regexp)
12720 (match-end 2)
12721 (match-string 2))))
12723 (defun org-at-date-range-p (&optional inactive-ok)
12724 "Is the cursor inside a date range?"
12725 (interactive)
12726 (save-excursion
12727 (catch 'exit
12728 (let ((pos (point)))
12729 (skip-chars-backward "^[<\r\n")
12730 (skip-chars-backward "<[")
12731 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
12732 (>= (match-end 0) pos)
12733 (throw 'exit t))
12734 (skip-chars-backward "^<[\r\n")
12735 (skip-chars-backward "<[")
12736 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
12737 (>= (match-end 0) pos)
12738 (throw 'exit t)))
12739 nil)))
12741 (defun org-get-repeat (&optional tagline)
12742 "Check if there is a deadline/schedule with repeater in this entry."
12743 (save-match-data
12744 (save-excursion
12745 (org-back-to-heading t)
12746 (and (re-search-forward (if tagline
12747 (concat tagline "\\s-*" org-repeat-re)
12748 org-repeat-re)
12749 (org-entry-end-position) t)
12750 (match-string-no-properties 1)))))
12752 (defvar org-last-changed-timestamp)
12753 (defvar org-last-inserted-timestamp)
12754 (defvar org-log-post-message)
12755 (defvar org-log-note-purpose)
12756 (defvar org-log-note-how)
12757 (defvar org-log-note-extra)
12758 (defun org-auto-repeat-maybe (done-word)
12759 "Check if the current headline contains a repeated deadline/schedule.
12760 If yes, set TODO state back to what it was and change the base date
12761 of repeating deadline/scheduled time stamps to new date.
12762 This function is run automatically after each state change to a DONE state."
12763 ;; last-state is dynamically scoped into this function
12764 (let* ((repeat (org-get-repeat))
12765 (aa (assoc org-last-state org-todo-kwd-alist))
12766 (interpret (nth 1 aa))
12767 (head (nth 2 aa))
12768 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
12769 (msg "Entry repeats: ")
12770 (org-log-done nil)
12771 (org-todo-log-states nil)
12772 re type n what ts time to-state)
12773 (when repeat
12774 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
12775 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
12776 org-todo-repeat-to-state))
12777 (unless (and to-state (member to-state org-todo-keywords-1))
12778 (setq to-state (if (eq interpret 'type) org-last-state head)))
12779 (org-todo to-state)
12780 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
12781 (org-entry-put nil "LAST_REPEAT" (format-time-string
12782 (org-time-stamp-format t t))))
12783 (when org-log-repeat
12784 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
12785 (memq 'org-add-log-note post-command-hook))
12786 ;; OK, we are already setup for some record
12787 (if (eq org-log-repeat 'note)
12788 ;; make sure we take a note, not only a time stamp
12789 (setq org-log-note-how 'note))
12790 ;; Set up for taking a record
12791 (org-add-log-setup 'state (or done-word (car org-done-keywords))
12792 org-last-state
12793 'findpos org-log-repeat)))
12794 (org-back-to-heading t)
12795 (org-add-planning-info nil nil 'closed)
12796 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12797 org-deadline-time-regexp "\\)\\|\\("
12798 org-ts-regexp "\\)"))
12799 (while (re-search-forward
12800 re (save-excursion (outline-next-heading) (point)) t)
12801 (setq type (if (match-end 1) org-scheduled-string
12802 (if (match-end 3) org-deadline-string "Plain:"))
12803 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
12804 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
12805 (setq n (string-to-number (match-string 2 ts))
12806 what (match-string 3 ts))
12807 (if (equal what "w") (setq n (* n 7) what "d"))
12808 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
12809 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
12810 ;; Preparation, see if we need to modify the start date for the change
12811 (when (match-end 1)
12812 (setq time (save-match-data (org-time-string-to-time ts)))
12813 (cond
12814 ((equal (match-string 1 ts) ".")
12815 ;; Shift starting date to today
12816 (org-timestamp-change
12817 (- (org-today) (time-to-days time))
12818 'day))
12819 ((equal (match-string 1 ts) "+")
12820 (let ((nshiftmax 10) (nshift 0))
12821 (while (or (= nshift 0)
12822 (<= (time-to-days time)
12823 (time-to-days (current-time))))
12824 (when (= (incf nshift) nshiftmax)
12825 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
12826 (error "Abort")))
12827 (org-timestamp-change n (cdr (assoc what whata)))
12828 (org-at-timestamp-p t)
12829 (setq ts (match-string 1))
12830 (setq time (save-match-data (org-time-string-to-time ts)))))
12831 (org-timestamp-change (- n) (cdr (assoc what whata)))
12832 ;; rematch, so that we have everything in place for the real shift
12833 (org-at-timestamp-p t)
12834 (setq ts (match-string 1))
12835 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
12836 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
12837 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
12838 (setq org-log-post-message msg)
12839 (message "%s" msg))))
12841 (defun org-show-todo-tree (arg)
12842 "Make a compact tree which shows all headlines marked with TODO.
12843 The tree will show the lines where the regexp matches, and all higher
12844 headlines above the match.
12845 With a \\[universal-argument] prefix, prompt for a regexp to match.
12846 With a numeric prefix N, construct a sparse tree for the Nth element
12847 of `org-todo-keywords-1'."
12848 (interactive "P")
12849 (let ((case-fold-search nil)
12850 (kwd-re
12851 (cond ((null arg) org-not-done-regexp)
12852 ((equal arg '(4))
12853 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
12854 (mapcar 'list org-todo-keywords-1))))
12855 (concat "\\("
12856 (mapconcat 'identity (org-split-string kwd "|") "\\|")
12857 "\\)\\>")))
12858 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
12859 (regexp-quote (nth (1- (prefix-numeric-value arg))
12860 org-todo-keywords-1)))
12861 (t (user-error "Invalid prefix argument: %s" arg)))))
12862 (message "%d TODO entries found"
12863 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
12865 (defun org-deadline (arg &optional time)
12866 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
12867 With one universal prefix argument, remove any deadline from the item.
12868 With two universal prefix arguments, prompt for a warning delay.
12869 With argument TIME, set the deadline at the corresponding date. TIME
12870 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
12871 (interactive "P")
12872 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12873 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12874 'region-start-level 'region))
12875 org-loop-over-headlines-in-active-region)
12876 (org-map-entries
12877 `(org-deadline ',arg ,time)
12878 org-loop-over-headlines-in-active-region
12879 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12880 (let* ((old-date (org-entry-get nil "DEADLINE"))
12881 (old-date-time (if old-date (org-time-string-to-time old-date)))
12882 (repeater (and old-date
12883 (string-match
12884 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
12885 old-date)
12886 (match-string 1 old-date))))
12887 (cond
12888 ((equal arg '(4))
12889 (when (and old-date org-log-redeadline)
12890 (org-add-log-setup 'deldeadline nil old-date 'findpos
12891 org-log-redeadline))
12892 (org-remove-timestamp-with-keyword org-deadline-string)
12893 (message "Item no longer has a deadline."))
12894 ((equal arg '(16))
12895 (save-excursion
12896 (if (re-search-forward
12897 org-deadline-time-regexp
12898 (save-excursion (outline-next-heading) (point)) t)
12899 (let* ((rpl0 (match-string 1))
12900 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
12901 (replace-match
12902 (concat org-deadline-string
12903 " <" rpl
12904 (format " -%dd"
12905 (abs
12906 (- (time-to-days
12907 (save-match-data
12908 (org-read-date nil t nil "Warn starting from" old-date-time)))
12909 (time-to-days old-date-time))))
12910 ">") t t))
12911 (user-error "No deadline information to update"))))
12913 (org-add-planning-info 'deadline time 'closed)
12914 (when (and old-date org-log-redeadline
12915 (not (equal old-date
12916 (substring org-last-inserted-timestamp 1 -1))))
12917 (org-add-log-setup 'redeadline nil old-date 'findpos
12918 org-log-redeadline))
12919 (when repeater
12920 (save-excursion
12921 (org-back-to-heading t)
12922 (when (re-search-forward (concat org-deadline-string " "
12923 org-last-inserted-timestamp)
12924 (save-excursion
12925 (outline-next-heading) (point)) t)
12926 (goto-char (1- (match-end 0)))
12927 (insert " " repeater)
12928 (setq org-last-inserted-timestamp
12929 (concat (substring org-last-inserted-timestamp 0 -1)
12930 " " repeater
12931 (substring org-last-inserted-timestamp -1))))))
12932 (message "Deadline on %s" org-last-inserted-timestamp))))))
12934 (defun org-schedule (arg &optional time)
12935 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
12936 With one universal prefix argument, remove any scheduling date from the item.
12937 With two universal prefix arguments, prompt for a delay cookie.
12938 With argument TIME, scheduled at the corresponding date. TIME can
12939 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
12940 (interactive "P")
12941 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12942 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12943 'region-start-level 'region))
12944 org-loop-over-headlines-in-active-region)
12945 (org-map-entries
12946 `(org-schedule ',arg ,time)
12947 org-loop-over-headlines-in-active-region
12948 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12949 (let* ((old-date (org-entry-get nil "SCHEDULED"))
12950 (old-date-time (if old-date (org-time-string-to-time old-date)))
12951 (repeater (and old-date
12952 (string-match
12953 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
12954 old-date)
12955 (match-string 1 old-date))))
12956 (cond
12957 ((equal arg '(4))
12958 (progn
12959 (when (and old-date org-log-reschedule)
12960 (org-add-log-setup 'delschedule nil old-date 'findpos
12961 org-log-reschedule))
12962 (org-remove-timestamp-with-keyword org-scheduled-string)
12963 (message "Item is no longer scheduled.")))
12964 ((equal arg '(16))
12965 (save-excursion
12966 (if (re-search-forward
12967 org-scheduled-time-regexp
12968 (save-excursion (outline-next-heading) (point)) t)
12969 (let* ((rpl0 (match-string 1))
12970 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
12971 (replace-match
12972 (concat org-scheduled-string
12973 " <" rpl
12974 (format " -%dd"
12975 (abs
12976 (- (time-to-days
12977 (save-match-data
12978 (org-read-date nil t nil "Delay until" old-date-time)))
12979 (time-to-days old-date-time))))
12980 ">") t t))
12981 (user-error "No scheduled information to update"))))
12983 (org-add-planning-info 'scheduled time 'closed)
12984 (when (and old-date org-log-reschedule
12985 (not (equal old-date
12986 (substring org-last-inserted-timestamp 1 -1))))
12987 (org-add-log-setup 'reschedule nil old-date 'findpos
12988 org-log-reschedule))
12989 (when repeater
12990 (save-excursion
12991 (org-back-to-heading t)
12992 (when (re-search-forward (concat org-scheduled-string " "
12993 org-last-inserted-timestamp)
12994 (save-excursion
12995 (outline-next-heading) (point)) t)
12996 (goto-char (1- (match-end 0)))
12997 (insert " " repeater)
12998 (setq org-last-inserted-timestamp
12999 (concat (substring org-last-inserted-timestamp 0 -1)
13000 " " repeater
13001 (substring org-last-inserted-timestamp -1))))))
13002 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13004 (defun org-get-scheduled-time (pom &optional inherit)
13005 "Get the scheduled time as a time tuple, of a format suitable
13006 for calling org-schedule with, or if there is no scheduling,
13007 returns nil."
13008 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13009 (when time
13010 (apply 'encode-time (org-parse-time-string time)))))
13012 (defun org-get-deadline-time (pom &optional inherit)
13013 "Get the deadline as a time tuple, of a format suitable for
13014 calling org-deadline with, or if there is no scheduling, returns
13015 nil."
13016 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13017 (when time
13018 (apply 'encode-time (org-parse-time-string time)))))
13020 (defun org-remove-timestamp-with-keyword (keyword)
13021 "Remove all time stamps with KEYWORD in the current entry."
13022 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13023 beg)
13024 (save-excursion
13025 (org-back-to-heading t)
13026 (setq beg (point))
13027 (outline-next-heading)
13028 (while (re-search-backward re beg t)
13029 (replace-match "")
13030 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13031 (equal (char-before) ?\ ))
13032 (backward-delete-char 1)
13033 (if (string-match "^[ \t]*$" (buffer-substring
13034 (point-at-bol) (point-at-eol)))
13035 (delete-region (point-at-bol)
13036 (min (point-max) (1+ (point-at-eol))))))))))
13038 (defun org-add-planning-info (what &optional time &rest remove)
13039 "Insert new timestamp with keyword in the line directly after the headline.
13040 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
13041 If non is given, the user is prompted for a date.
13042 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
13043 be removed."
13044 (interactive)
13045 (let (org-time-was-given org-end-time-was-given ts
13046 end default-time default-input)
13048 (catch 'exit
13049 (when (and (memq what '(scheduled deadline))
13050 (or (not time)
13051 (and (stringp time)
13052 (string-match "^[-+]+[0-9]" time))))
13053 ;; Try to get a default date/time from existing timestamp
13054 (save-excursion
13055 (org-back-to-heading t)
13056 (setq end (save-excursion (outline-next-heading) (point)))
13057 (when (re-search-forward (if (eq what 'scheduled)
13058 org-scheduled-time-regexp
13059 org-deadline-time-regexp)
13060 end t)
13061 (setq ts (match-string 1)
13062 default-time
13063 (apply 'encode-time (org-parse-time-string ts))
13064 default-input (and ts (org-get-compact-tod ts))))))
13065 (when what
13066 (setq time
13067 (if (stringp time)
13068 ;; This is a string (relative or absolute), set proper date
13069 (apply 'encode-time
13070 (org-read-date-analyze
13071 time default-time (decode-time default-time)))
13072 ;; If necessary, get the time from the user
13073 (or time (org-read-date nil 'to-time nil nil
13074 default-time default-input)))))
13076 (when (and org-insert-labeled-timestamps-at-point
13077 (member what '(scheduled deadline)))
13078 (insert
13079 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
13080 (org-insert-time-stamp time org-time-was-given
13081 nil nil nil (list org-end-time-was-given))
13082 (setq what nil))
13083 (save-excursion
13084 (save-restriction
13085 (let (col list elt ts buffer-invisibility-spec)
13086 (org-back-to-heading t)
13087 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
13088 (goto-char (match-end 1))
13089 (setq col (current-column))
13090 (goto-char (match-end 0))
13091 (if (eobp) (insert "\n") (forward-char 1))
13092 (when (and (not what)
13093 (not (looking-at
13094 (concat "[ \t]*"
13095 org-keyword-time-not-clock-regexp))))
13096 ;; Nothing to add, nothing to remove...... :-)
13097 (throw 'exit nil))
13098 (if (and (not (looking-at org-outline-regexp))
13099 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
13100 "[^\r\n]*"))
13101 (not (equal (match-string 1) org-clock-string)))
13102 (narrow-to-region (match-beginning 0) (match-end 0))
13103 (insert-before-markers "\n")
13104 (backward-char 1)
13105 (narrow-to-region (point) (point))
13106 (and org-adapt-indentation (org-indent-to-column col)))
13107 ;; Check if we have to remove something.
13108 (setq list (cons what remove))
13109 (while list
13110 (setq elt (pop list))
13111 (when (or (and (eq elt 'scheduled)
13112 (re-search-forward org-scheduled-time-regexp nil t))
13113 (and (eq elt 'deadline)
13114 (re-search-forward org-deadline-time-regexp nil t))
13115 (and (eq elt 'closed)
13116 (re-search-forward org-closed-time-regexp nil t)))
13117 (replace-match "")
13118 (if (looking-at "--+<[^>]+>") (replace-match ""))))
13119 (and (looking-at "[ \t]+") (replace-match ""))
13120 (and org-adapt-indentation (bolp) (org-indent-to-column col))
13121 (when what
13122 (insert
13123 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
13124 (cond ((eq what 'scheduled) org-scheduled-string)
13125 ((eq what 'deadline) org-deadline-string)
13126 ((eq what 'closed) org-closed-string))
13127 " ")
13128 (setq ts (org-insert-time-stamp
13129 time
13130 (or org-time-was-given
13131 (and (eq what 'closed) org-log-done-with-time))
13132 (eq what 'closed)
13133 nil nil (list org-end-time-was-given)))
13134 (insert
13135 (if (not (or (bolp) (eq (char-before) ?\ )
13136 (memq (char-after) '(32 10))
13137 (eobp))) " " ""))
13138 (end-of-line 1))
13139 (goto-char (point-min))
13140 (widen)
13141 (if (and (looking-at "[ \t]*\n")
13142 (equal (char-before) ?\n))
13143 (delete-region (1- (point)) (point-at-eol)))
13144 ts))))))
13146 (defvar org-log-note-marker (make-marker))
13147 (defvar org-log-note-purpose nil)
13148 (defvar org-log-note-state nil)
13149 (defvar org-log-note-previous-state nil)
13150 (defvar org-log-note-how nil)
13151 (defvar org-log-note-extra nil)
13152 (defvar org-log-note-window-configuration nil)
13153 (defvar org-log-note-return-to (make-marker))
13154 (defvar org-log-note-effective-time nil
13155 "Remembered current time so that dynamically scoped
13156 `org-extend-today-until' affects tha timestamps in state change
13157 log")
13159 (defvar org-log-post-message nil
13160 "Message to be displayed after a log note has been stored.
13161 The auto-repeater uses this.")
13163 (defun org-add-note ()
13164 "Add a note to the current entry.
13165 This is done in the same way as adding a state change note."
13166 (interactive)
13167 (org-add-log-setup 'note nil nil 'findpos nil))
13169 (defvar org-property-end-re)
13170 (defun org-add-log-setup (&optional purpose state prev-state
13171 findpos how extra)
13172 "Set up the post command hook to take a note.
13173 If this is about to TODO state change, the new state is expected in STATE.
13174 When FINDPOS is non-nil, find the correct position for the note in
13175 the current entry. If not, assume that it can be inserted at point.
13176 HOW is an indicator what kind of note should be created.
13177 EXTRA is additional text that will be inserted into the notes buffer."
13178 (let* ((org-log-into-drawer (org-log-into-drawer))
13179 (drawer (cond ((stringp org-log-into-drawer)
13180 org-log-into-drawer)
13181 (org-log-into-drawer "LOGBOOK"))))
13182 (save-restriction
13183 (save-excursion
13184 (when findpos
13185 (org-back-to-heading t)
13186 (narrow-to-region (point) (save-excursion
13187 (outline-next-heading) (point)))
13188 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"
13189 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
13190 "[^\r\n]*\\)?"))
13191 (goto-char (match-end 0))
13192 (cond
13193 (drawer
13194 (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*$")
13195 nil t)
13196 (progn
13197 (goto-char (match-end 0))
13198 (or org-log-states-order-reversed
13199 (and (re-search-forward org-property-end-re nil t)
13200 (goto-char (1- (match-beginning 0))))))
13201 (insert "\n:" drawer ":\n:END:")
13202 (beginning-of-line 0)
13203 (org-indent-line)
13204 (beginning-of-line 2)
13205 (org-indent-line)
13206 (end-of-line 0)))
13207 ((and org-log-state-notes-insert-after-drawers
13208 (save-excursion
13209 (forward-line) (looking-at org-drawer-regexp)))
13210 (forward-line)
13211 (while (looking-at org-drawer-regexp)
13212 (goto-char (match-end 0))
13213 (re-search-forward org-property-end-re (point-max) t)
13214 (forward-line))
13215 (forward-line -1)))
13216 (unless org-log-states-order-reversed
13217 (and (= (char-after) ?\n) (forward-char 1))
13218 (org-skip-over-state-notes)
13219 (skip-chars-backward " \t\n\r")))
13220 (move-marker org-log-note-marker (point))
13221 (setq org-log-note-purpose purpose
13222 org-log-note-state state
13223 org-log-note-previous-state prev-state
13224 org-log-note-how how
13225 org-log-note-extra extra
13226 org-log-note-effective-time (org-current-effective-time))
13227 (add-hook 'post-command-hook 'org-add-log-note 'append)))))
13229 (defun org-skip-over-state-notes ()
13230 "Skip past the list of State notes in an entry."
13231 (if (looking-at "\n[ \t]*- State") (forward-char 1))
13232 (when (ignore-errors (goto-char (org-in-item-p)))
13233 (let* ((struct (org-list-struct))
13234 (prevs (org-list-prevs-alist struct)))
13235 (while (looking-at "[ \t]*- State")
13236 (goto-char (or (org-list-get-next-item (point) struct prevs)
13237 (org-list-get-item-end (point) struct)))))))
13239 (defun org-add-log-note (&optional purpose)
13240 "Pop up a window for taking a note, and add this note later at point."
13241 (remove-hook 'post-command-hook 'org-add-log-note)
13242 (setq org-log-note-window-configuration (current-window-configuration))
13243 (delete-other-windows)
13244 (move-marker org-log-note-return-to (point))
13245 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13246 (goto-char org-log-note-marker)
13247 (org-switch-to-buffer-other-window "*Org Note*")
13248 (erase-buffer)
13249 (if (memq org-log-note-how '(time state))
13250 (let (current-prefix-arg) (org-store-log-note))
13251 (let ((org-inhibit-startup t)) (org-mode))
13252 (insert (format "# Insert note for %s.
13253 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13254 (cond
13255 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13256 ((eq org-log-note-purpose 'done) "closed todo item")
13257 ((eq org-log-note-purpose 'state)
13258 (format "state change from \"%s\" to \"%s\""
13259 (or org-log-note-previous-state "")
13260 (or org-log-note-state "")))
13261 ((eq org-log-note-purpose 'reschedule)
13262 "rescheduling")
13263 ((eq org-log-note-purpose 'delschedule)
13264 "no longer scheduled")
13265 ((eq org-log-note-purpose 'redeadline)
13266 "changing deadline")
13267 ((eq org-log-note-purpose 'deldeadline)
13268 "removing deadline")
13269 ((eq org-log-note-purpose 'refile)
13270 "refiling")
13271 ((eq org-log-note-purpose 'note)
13272 "this entry")
13273 (t (error "This should not happen")))))
13274 (if org-log-note-extra (insert org-log-note-extra))
13275 (org-set-local 'org-finish-function 'org-store-log-note)
13276 (run-hooks 'org-log-buffer-setup-hook)))
13278 (defvar org-note-abort nil) ; dynamically scoped
13279 (defun org-store-log-note ()
13280 "Finish taking a log note, and insert it to where it belongs."
13281 (let ((txt (buffer-string)))
13282 (kill-buffer (current-buffer))
13283 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings)))
13284 lines ind bul)
13285 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13286 (setq txt (replace-match "" t t txt)))
13287 (if (string-match "\\s-+\\'" txt)
13288 (setq txt (replace-match "" t t txt)))
13289 (setq lines (org-split-string txt "\n"))
13290 (when (and note (string-match "\\S-" note))
13291 (setq note
13292 (org-replace-escapes
13293 note
13294 (list (cons "%u" (user-login-name))
13295 (cons "%U" user-full-name)
13296 (cons "%t" (format-time-string
13297 (org-time-stamp-format 'long 'inactive)
13298 org-log-note-effective-time))
13299 (cons "%T" (format-time-string
13300 (org-time-stamp-format 'long nil)
13301 org-log-note-effective-time))
13302 (cons "%d" (format-time-string
13303 (org-time-stamp-format nil 'inactive)
13304 org-log-note-effective-time))
13305 (cons "%D" (format-time-string
13306 (org-time-stamp-format nil nil)
13307 org-log-note-effective-time))
13308 (cons "%s" (if org-log-note-state
13309 (concat "\"" org-log-note-state "\"")
13310 ""))
13311 (cons "%S" (if org-log-note-previous-state
13312 (concat "\"" org-log-note-previous-state "\"")
13313 "\"\"")))))
13314 (if lines (setq note (concat note " \\\\")))
13315 (push note lines))
13316 (when (or current-prefix-arg org-note-abort)
13317 (when org-log-into-drawer
13318 (org-remove-empty-drawer-at
13319 (if (stringp org-log-into-drawer) org-log-into-drawer "LOGBOOK")
13320 org-log-note-marker))
13321 (setq lines nil))
13322 (when lines
13323 (with-current-buffer (marker-buffer org-log-note-marker)
13324 (save-excursion
13325 (goto-char org-log-note-marker)
13326 (move-marker org-log-note-marker nil)
13327 (end-of-line 1)
13328 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13329 (setq ind (save-excursion
13330 (if (ignore-errors (goto-char (org-in-item-p)))
13331 (let ((struct (org-list-struct)))
13332 (org-list-get-ind
13333 (org-list-get-top-point struct) struct))
13334 (skip-chars-backward " \r\t\n")
13335 (cond
13336 ((and (org-at-heading-p)
13337 org-adapt-indentation)
13338 (1+ (org-current-level)))
13339 ((org-at-heading-p) 0)
13340 (t (org-get-indentation))))))
13341 (setq bul (org-list-bullet-string "-"))
13342 (org-indent-line-to ind)
13343 (insert bul (pop lines))
13344 (let ((ind-body (+ (length bul) ind)))
13345 (while lines
13346 (insert "\n")
13347 (org-indent-line-to ind-body)
13348 (insert (pop lines))))
13349 (message "Note stored")
13350 (org-back-to-heading t)
13351 (org-cycle-hide-drawers 'children))
13352 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13353 ;; from within `org-add-log-note' because `buffer-undo-list'
13354 ;; is then modified outside of `org-with-remote-undo'.
13355 (when (eq this-command 'org-agenda-todo)
13356 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13357 ;; Don't add undo information when called from `org-agenda-todo'
13358 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13359 (set-window-configuration org-log-note-window-configuration)
13360 (with-current-buffer (marker-buffer org-log-note-return-to)
13361 (goto-char org-log-note-return-to))
13362 (move-marker org-log-note-return-to nil)
13363 (and org-log-post-message (message "%s" org-log-post-message))))
13365 (defun org-remove-empty-drawer-at (drawer pos)
13366 "Remove an empty drawer DRAWER at position POS.
13367 POS may also be a marker."
13368 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13369 (save-excursion
13370 (save-restriction
13371 (widen)
13372 (goto-char pos)
13373 (if (org-in-regexp
13374 (concat "^[ \t]*:" drawer ":[ \t]*\n[ \t]*:END:[ \t]*\n?") 2)
13375 (replace-match ""))))))
13377 (defvar org-ts-type nil)
13378 (defun org-sparse-tree (&optional arg type)
13379 "Create a sparse tree, prompt for the details.
13380 This command can create sparse trees. You first need to select the type
13381 of match used to create the tree:
13383 t Show all TODO entries.
13384 T Show entries with a specific TODO keyword.
13385 m Show entries selected by a tags/property match.
13386 p Enter a property name and its value (both with completion on existing
13387 names/values) and show entries with that property.
13388 r Show entries matching a regular expression (`/' can be used as well).
13389 b Show deadlines and scheduled items before a date.
13390 a Show deadlines and scheduled items after a date.
13391 d Show deadlines due within `org-deadline-warning-days'.
13392 D Show deadlines and scheduled items between a date range."
13393 (interactive "P")
13394 (let (ans kwd value ts-type)
13395 (setq type (or type org-sparse-tree-default-date-type))
13396 (setq org-ts-type type)
13397 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty\n [d]eadlines [b]efore-date [a]fter-date [D]ates range\n [c]ycle through date types: %s"
13398 (cond ((eq type 'all) "all timestamps")
13399 ((eq type 'scheduled) "only scheduled")
13400 ((eq type 'deadline) "only deadline")
13401 ((eq type 'active) "only active timestamps")
13402 ((eq type 'inactive) "only inactive timestamps")
13403 ((eq type 'scheduled-or-deadline) "scheduled/deadline")
13404 ((eq type 'closed) "with a closed time-stamp")
13405 (t "scheduled/deadline")))
13406 (setq ans (read-char-exclusive))
13407 (cond
13408 ((equal ans ?c)
13409 (org-sparse-tree
13410 arg (cadr (member type '(scheduled-or-deadline
13411 all scheduled deadline active inactive closed)))))
13412 ((equal ans ?d)
13413 (call-interactively 'org-check-deadlines))
13414 ((equal ans ?b)
13415 (call-interactively 'org-check-before-date))
13416 ((equal ans ?a)
13417 (call-interactively 'org-check-after-date))
13418 ((equal ans ?D)
13419 (call-interactively 'org-check-dates-range))
13420 ((equal ans ?t)
13421 (call-interactively 'org-show-todo-tree))
13422 ((equal ans ?T)
13423 (org-show-todo-tree '(4)))
13424 ((member ans '(?T ?m))
13425 (call-interactively 'org-match-sparse-tree))
13426 ((member ans '(?p ?P))
13427 (setq kwd (org-icompleting-read "Property: "
13428 (mapcar 'list (org-buffer-property-keys))))
13429 (setq value (org-icompleting-read "Value: "
13430 (mapcar 'list (org-property-values kwd))))
13431 (unless (string-match "\\`{.*}\\'" value)
13432 (setq value (concat "\"" value "\"")))
13433 (org-match-sparse-tree arg (concat kwd "=" value)))
13434 ((member ans '(?r ?R ?/))
13435 (call-interactively 'org-occur))
13436 (t (user-error "No such sparse tree command \"%c\"" ans)))))
13438 (defvar org-occur-highlights nil
13439 "List of overlays used for occur matches.")
13440 (make-variable-buffer-local 'org-occur-highlights)
13441 (defvar org-occur-parameters nil
13442 "Parameters of the active org-occur calls.
13443 This is a list, each call to org-occur pushes as cons cell,
13444 containing the regular expression and the callback, onto the list.
13445 The list can contain several entries if `org-occur' has been called
13446 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13447 will only contain one set of parameters. When the highlights are
13448 removed (for example with `C-c C-c', or with the next edit (depending
13449 on `org-remove-highlights-with-change'), this variable is emptied
13450 as well.")
13451 (make-variable-buffer-local 'org-occur-parameters)
13453 (defun org-occur (regexp &optional keep-previous callback)
13454 "Make a compact tree which shows all matches of REGEXP.
13455 The tree will show the lines where the regexp matches, and all higher
13456 headlines above the match. It will also show the heading after the match,
13457 to make sure editing the matching entry is easy.
13458 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13459 call to `org-occur' will be kept, to allow stacking of calls to this
13460 command.
13461 If CALLBACK is non-nil, it is a function which is called to confirm
13462 that the match should indeed be shown."
13463 (interactive "sRegexp: \nP")
13464 (when (equal regexp "")
13465 (user-error "Regexp cannot be empty"))
13466 (unless keep-previous
13467 (org-remove-occur-highlights nil nil t))
13468 (push (cons regexp callback) org-occur-parameters)
13469 (let ((cnt 0))
13470 (save-excursion
13471 (goto-char (point-min))
13472 (if (or (not keep-previous) ; do not want to keep
13473 (not org-occur-highlights)) ; no previous matches
13474 ;; hide everything
13475 (org-overview))
13476 (while (re-search-forward regexp nil t)
13477 (when (or (not callback)
13478 (save-match-data (funcall callback)))
13479 (setq cnt (1+ cnt))
13480 (when org-highlight-sparse-tree-matches
13481 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13482 (org-show-context 'occur-tree))))
13483 (when org-remove-highlights-with-change
13484 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13485 nil 'local))
13486 (unless org-sparse-tree-open-archived-trees
13487 (org-hide-archived-subtrees (point-min) (point-max)))
13488 (run-hooks 'org-occur-hook)
13489 (if (org-called-interactively-p 'interactive)
13490 (message "%d match(es) for regexp %s" cnt regexp))
13491 cnt))
13493 (defun org-occur-next-match (&optional n reset)
13494 "Function for `next-error-function' to find sparse tree matches.
13495 N is the number of matches to move, when negative move backwards.
13496 RESET is entirely ignored - this function always goes back to the
13497 starting point when no match is found."
13498 (let* ((limit (if (< n 0) (point-min) (point-max)))
13499 (search-func (if (< n 0)
13500 'previous-single-char-property-change
13501 'next-single-char-property-change))
13502 (n (abs n))
13503 (pos (point))
13505 (catch 'exit
13506 (while (setq p1 (funcall search-func (point) 'org-type))
13507 (when (equal p1 limit)
13508 (goto-char pos)
13509 (error "No more matches"))
13510 (when (equal (get-char-property p1 'org-type) 'org-occur)
13511 (setq n (1- n))
13512 (when (= n 0)
13513 (goto-char p1)
13514 (throw 'exit (point))))
13515 (goto-char p1))
13516 (goto-char p1)
13517 (error "No more matches"))))
13519 (defun org-show-context (&optional key)
13520 "Make sure point and context are visible.
13521 How much context is shown depends upon the variables
13522 `org-show-hierarchy-above', `org-show-following-heading',
13523 `org-show-entry-below' and `org-show-siblings'."
13524 (let ((heading-p (org-at-heading-p t))
13525 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
13526 (following-p (org-get-alist-option org-show-following-heading key))
13527 (entry-p (org-get-alist-option org-show-entry-below key))
13528 (siblings-p (org-get-alist-option org-show-siblings key)))
13529 ;; Show heading or entry text
13530 (if (and heading-p (not entry-p))
13531 (org-flag-heading nil) ; only show the heading
13532 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
13533 (org-show-hidden-entry))) ; show entire entry
13534 (when following-p
13535 ;; Show next sibling, or heading below text
13536 (save-excursion
13537 (and (if heading-p (org-goto-sibling) (outline-next-heading))
13538 (org-flag-heading nil))))
13539 (when siblings-p (org-show-siblings))
13540 (when hierarchy-p
13541 ;; show all higher headings, possibly with siblings
13542 (save-excursion
13543 (while (and (condition-case nil
13544 (progn (org-up-heading-all 1) t)
13545 (error nil))
13546 (not (bobp)))
13547 (org-flag-heading nil)
13548 (when siblings-p (org-show-siblings)))))
13549 (unless (eq key 'agenda) (org-fix-ellipsis-at-bol))))
13551 (defvar org-reveal-start-hook nil
13552 "Hook run before revealing a location.")
13554 (defun org-reveal (&optional siblings)
13555 "Show current entry, hierarchy above it, and the following headline.
13556 This can be used to show a consistent set of context around locations
13557 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
13558 not t for the search context.
13560 With optional argument SIBLINGS, on each level of the hierarchy all
13561 siblings are shown. This repairs the tree structure to what it would
13562 look like when opened with hierarchical calls to `org-cycle'.
13563 With double optional argument \\[universal-argument] \\[universal-argument], \
13564 go to the parent and show the
13565 entire tree."
13566 (interactive "P")
13567 (run-hooks 'org-reveal-start-hook)
13568 (let ((org-show-hierarchy-above t)
13569 (org-show-following-heading t)
13570 (org-show-siblings (if siblings t org-show-siblings)))
13571 (org-show-context nil))
13572 (when (equal siblings '(16))
13573 (save-excursion
13574 (when (org-up-heading-safe)
13575 (org-show-subtree)
13576 (run-hook-with-args 'org-cycle-hook 'subtree)))))
13578 (defun org-highlight-new-match (beg end)
13579 "Highlight from BEG to END and mark the highlight is an occur headline."
13580 (let ((ov (make-overlay beg end)))
13581 (overlay-put ov 'face 'secondary-selection)
13582 (overlay-put ov 'org-type 'org-occur)
13583 (push ov org-occur-highlights)))
13585 (defun org-remove-occur-highlights (&optional beg end noremove)
13586 "Remove the occur highlights from the buffer.
13587 BEG and END are ignored. If NOREMOVE is nil, remove this function
13588 from the `before-change-functions' in the current buffer."
13589 (interactive)
13590 (unless org-inhibit-highlight-removal
13591 (mapc 'delete-overlay org-occur-highlights)
13592 (setq org-occur-highlights nil)
13593 (setq org-occur-parameters nil)
13594 (unless noremove
13595 (remove-hook 'before-change-functions
13596 'org-remove-occur-highlights 'local))))
13598 ;;;; Priorities
13600 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
13601 "Regular expression matching the priority indicator.")
13603 (defvar org-remove-priority-next-time nil)
13605 (defun org-priority-up ()
13606 "Increase the priority of the current item."
13607 (interactive)
13608 (org-priority 'up))
13610 (defun org-priority-down ()
13611 "Decrease the priority of the current item."
13612 (interactive)
13613 (org-priority 'down))
13615 (defun org-priority (&optional action show)
13616 "Change the priority of an item.
13617 ACTION can be `set', `up', `down', or a character."
13618 (interactive "P")
13619 (if (equal action '(4))
13620 (org-show-priority)
13621 (unless org-enable-priority-commands
13622 (user-error "Priority commands are disabled"))
13623 (setq action (or action 'set))
13624 (let (current new news have remove)
13625 (save-excursion
13626 (org-back-to-heading t)
13627 (if (looking-at org-priority-regexp)
13628 (setq current (string-to-char (match-string 2))
13629 have t))
13630 (cond
13631 ((eq action 'remove)
13632 (setq remove t new ?\ ))
13633 ((or (eq action 'set)
13634 (if (featurep 'xemacs) (characterp action) (integerp action)))
13635 (if (not (eq action 'set))
13636 (setq new action)
13637 (message "Priority %c-%c, SPC to remove: "
13638 org-highest-priority org-lowest-priority)
13639 (save-match-data
13640 (setq new (read-char-exclusive))))
13641 (if (and (= (upcase org-highest-priority) org-highest-priority)
13642 (= (upcase org-lowest-priority) org-lowest-priority))
13643 (setq new (upcase new)))
13644 (cond ((equal new ?\ ) (setq remove t))
13645 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
13646 (user-error "Priority must be between `%c' and `%c'"
13647 org-highest-priority org-lowest-priority))))
13648 ((eq action 'up)
13649 (setq new (if have
13650 (1- current) ; normal cycling
13651 ;; last priority was empty
13652 (if (eq last-command this-command)
13653 org-lowest-priority ; wrap around empty to lowest
13654 ;; default
13655 (if org-priority-start-cycle-with-default
13656 org-default-priority
13657 (1- org-default-priority))))))
13658 ((eq action 'down)
13659 (setq new (if have
13660 (1+ current) ; normal cycling
13661 ;; last priority was empty
13662 (if (eq last-command this-command)
13663 org-highest-priority ; wrap around empty to highest
13664 ;; default
13665 (if org-priority-start-cycle-with-default
13666 org-default-priority
13667 (1+ org-default-priority))))))
13668 (t (user-error "Invalid action")))
13669 (if (or (< (upcase new) org-highest-priority)
13670 (> (upcase new) org-lowest-priority))
13671 (if (and (memq action '(up down))
13672 (not have) (not (eq last-command this-command)))
13673 ;; `new' is from default priority
13674 (error
13675 "The default can not be set, see `org-default-priority' why")
13676 ;; normal cycling: `new' is beyond highest/lowest priority
13677 ;; and is wrapped around to the empty priority
13678 (setq remove t)))
13679 (setq news (format "%c" new))
13680 (if have
13681 (if remove
13682 (replace-match "" t t nil 1)
13683 (replace-match news t t nil 2))
13684 (if remove
13685 (user-error "No priority cookie found in line")
13686 (let ((case-fold-search nil))
13687 (looking-at org-todo-line-regexp))
13688 (if (match-end 2)
13689 (progn
13690 (goto-char (match-end 2))
13691 (insert " [#" news "]"))
13692 (goto-char (match-beginning 3))
13693 (insert "[#" news "] "))))
13694 (org-preserve-lc (org-set-tags nil 'align)))
13695 (if remove
13696 (message "Priority removed")
13697 (message "Priority of current item set to %s" news)))))
13699 (defun org-show-priority ()
13700 "Show the priority of the current item.
13701 This priority is composed of the main priority given with the [#A] cookies,
13702 and by additional input from the age of a schedules or deadline entry."
13703 (interactive)
13704 (let ((pri (if (eq major-mode 'org-agenda-mode)
13705 (org-get-at-bol 'priority)
13706 (save-excursion
13707 (save-match-data
13708 (beginning-of-line)
13709 (and (looking-at org-heading-regexp)
13710 (org-get-priority (match-string 0))))))))
13711 (message "Priority is %d" (if pri pri -1000))))
13713 (defun org-get-priority (s)
13714 "Find priority cookie and return priority."
13715 (save-match-data
13716 (if (functionp org-get-priority-function)
13717 (funcall org-get-priority-function)
13718 (if (not (string-match org-priority-regexp s))
13719 (* 1000 (- org-lowest-priority org-default-priority))
13720 (* 1000 (- org-lowest-priority
13721 (string-to-char (match-string 2 s))))))))
13723 ;;;; Tags
13725 (defvar org-agenda-archives-mode)
13726 (defvar org-map-continue-from nil
13727 "Position from where mapping should continue.
13728 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
13730 (defvar org-scanner-tags nil
13731 "The current tag list while the tags scanner is running.")
13732 (defvar org-trust-scanner-tags nil
13733 "Should `org-get-tags-at' use the tags for the scanner.
13734 This is for internal dynamical scoping only.
13735 When this is non-nil, the function `org-get-tags-at' will return the value
13736 of `org-scanner-tags' instead of building the list by itself. This
13737 can lead to large speed-ups when the tags scanner is used in a file with
13738 many entries, and when the list of tags is retrieved, for example to
13739 obtain a list of properties. Building the tags list for each entry in such
13740 a file becomes an N^2 operation - but with this variable set, it scales
13741 as N.")
13743 (defun org-scan-tags (action matcher todo-only &optional start-level)
13744 "Sca headline tags with inheritance and produce output ACTION.
13746 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
13747 or `agenda' to produce an entry list for an agenda view. It can also be
13748 a Lisp form or a function that should be called at each matched headline, in
13749 this case the return value is a list of all return values from these calls.
13751 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
13752 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
13753 only lines with a not-done TODO keyword are included in the output.
13754 This should be the same variable that was scoped into
13755 and set by `org-make-tags-matcher' when it constructed MATCHER.
13757 START-LEVEL can be a string with asterisks, reducing the scope to
13758 headlines matching this string."
13759 (require 'org-agenda)
13760 (let* ((re (concat "^"
13761 (if start-level
13762 ;; Get the correct level to match
13763 (concat "\\*\\{" (number-to-string start-level) "\\} ")
13764 org-outline-regexp)
13765 " *\\(\\<\\("
13766 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
13767 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
13768 (props (list 'face 'default
13769 'done-face 'org-agenda-done
13770 'undone-face 'default
13771 'mouse-face 'highlight
13772 'org-not-done-regexp org-not-done-regexp
13773 'org-todo-regexp org-todo-regexp
13774 'org-complex-heading-regexp org-complex-heading-regexp
13775 'help-echo
13776 (format "mouse-2 or RET jump to org file %s"
13777 (abbreviate-file-name
13778 (or (buffer-file-name (buffer-base-buffer))
13779 (buffer-name (buffer-base-buffer)))))))
13780 (org-map-continue-from nil)
13781 lspos tags tags-list
13782 (tags-alist (list (cons 0 org-file-tags)))
13783 (llast 0) rtn rtn1 level category i txt
13784 todo marker entry priority)
13785 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
13786 (setq action (list 'lambda nil action)))
13787 (save-excursion
13788 (goto-char (point-min))
13789 (when (eq action 'sparse-tree)
13790 (org-overview)
13791 (org-remove-occur-highlights))
13792 (while (let (case-fold-search)
13793 (re-search-forward re nil t))
13794 (setq org-map-continue-from nil)
13795 (catch :skip
13796 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
13797 tags (if (match-end 4) (org-match-string-no-properties 4)))
13798 (goto-char (setq lspos (match-beginning 0)))
13799 (setq level (org-reduced-level (org-outline-level))
13800 category (org-get-category))
13801 (setq i llast llast level)
13802 ;; remove tag lists from same and sublevels
13803 (while (>= i level)
13804 (when (setq entry (assoc i tags-alist))
13805 (setq tags-alist (delete entry tags-alist)))
13806 (setq i (1- i)))
13807 ;; add the next tags
13808 (when tags
13809 (setq tags (org-split-string tags ":")
13810 tags-alist
13811 (cons (cons level tags) tags-alist)))
13812 ;; compile tags for current headline
13813 (setq tags-list
13814 (if org-use-tag-inheritance
13815 (apply 'append (mapcar 'cdr (reverse tags-alist)))
13816 tags)
13817 org-scanner-tags tags-list)
13818 (when org-use-tag-inheritance
13819 (setcdr (car tags-alist)
13820 (mapcar (lambda (x)
13821 (setq x (copy-sequence x))
13822 (org-add-prop-inherited x))
13823 (cdar tags-alist))))
13824 (when (and tags org-use-tag-inheritance
13825 (or (not (eq t org-use-tag-inheritance))
13826 org-tags-exclude-from-inheritance))
13827 ;; selective inheritance, remove uninherited ones
13828 (setcdr (car tags-alist)
13829 (org-remove-uninherited-tags (cdar tags-alist))))
13830 (when (and
13832 ;; eval matcher only when the todo condition is OK
13833 (and (or (not todo-only) (member todo org-not-done-keywords))
13834 (let ((case-fold-search t) (org-trust-scanner-tags t))
13835 (eval matcher)))
13837 ;; Call the skipper, but return t if it does not skip,
13838 ;; so that the `and' form continues evaluating
13839 (progn
13840 (unless (eq action 'sparse-tree) (org-agenda-skip))
13843 ;; Check if timestamps are deselecting this entry
13844 (or (not todo-only)
13845 (and (member todo org-not-done-keywords)
13846 (or (not org-agenda-tags-todo-honor-ignore-options)
13847 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
13849 ;; select this headline
13850 (cond
13851 ((eq action 'sparse-tree)
13852 (and org-highlight-sparse-tree-matches
13853 (org-get-heading) (match-end 0)
13854 (org-highlight-new-match
13855 (match-beginning 1) (match-end 1)))
13856 (org-show-context 'tags-tree))
13857 ((eq action 'agenda)
13858 (setq txt (org-agenda-format-item
13860 (concat
13861 (if (eq org-tags-match-list-sublevels 'indented)
13862 (make-string (1- level) ?.) "")
13863 (org-get-heading))
13864 level category
13865 tags-list)
13866 priority (org-get-priority txt))
13867 (goto-char lspos)
13868 (setq marker (org-agenda-new-marker))
13869 (org-add-props txt props
13870 'org-marker marker 'org-hd-marker marker 'org-category category
13871 'todo-state todo
13872 'priority priority 'type "tagsmatch")
13873 (push txt rtn))
13874 ((functionp action)
13875 (setq org-map-continue-from nil)
13876 (save-excursion
13877 (setq rtn1 (funcall action))
13878 (push rtn1 rtn)))
13879 (t (user-error "Invalid action")))
13881 ;; if we are to skip sublevels, jump to end of subtree
13882 (unless org-tags-match-list-sublevels
13883 (org-end-of-subtree t)
13884 (backward-char 1))))
13885 ;; Get the correct position from where to continue
13886 (if org-map-continue-from
13887 (goto-char org-map-continue-from)
13888 (and (= (point) lspos) (end-of-line 1)))))
13889 (when (and (eq action 'sparse-tree)
13890 (not org-sparse-tree-open-archived-trees))
13891 (org-hide-archived-subtrees (point-min) (point-max)))
13892 (nreverse rtn)))
13894 (defun org-remove-uninherited-tags (tags)
13895 "Remove all tags that are not inherited from the list TAGS."
13896 (cond
13897 ((eq org-use-tag-inheritance t)
13898 (if org-tags-exclude-from-inheritance
13899 (org-delete-all org-tags-exclude-from-inheritance tags)
13900 tags))
13901 ((not org-use-tag-inheritance) nil)
13902 ((stringp org-use-tag-inheritance)
13903 (delq nil (mapcar
13904 (lambda (x)
13905 (if (and (string-match org-use-tag-inheritance x)
13906 (not (member x org-tags-exclude-from-inheritance)))
13907 x nil))
13908 tags)))
13909 ((listp org-use-tag-inheritance)
13910 (delq nil (mapcar
13911 (lambda (x)
13912 (if (member x org-use-tag-inheritance) x nil))
13913 tags)))))
13915 (defun org-match-sparse-tree (&optional todo-only match)
13916 "Create a sparse tree according to tags string MATCH.
13917 MATCH can contain positive and negative selection of tags, like
13918 \"+WORK+URGENT-WITHBOSS\".
13919 If optional argument TODO-ONLY is non-nil, only select lines that are
13920 also TODO lines."
13921 (interactive "P")
13922 (org-agenda-prepare-buffers (list (current-buffer)))
13923 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
13925 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
13927 (defvar org-cached-props nil)
13928 (defun org-cached-entry-get (pom property)
13929 (if (or (eq t org-use-property-inheritance)
13930 (and (stringp org-use-property-inheritance)
13931 (string-match org-use-property-inheritance property))
13932 (and (listp org-use-property-inheritance)
13933 (member property org-use-property-inheritance)))
13934 ;; Caching is not possible, check it directly
13935 (org-entry-get pom property 'inherit)
13936 ;; Get all properties, so that we can do complicated checks easily
13937 (cdr (assoc property (or org-cached-props
13938 (setq org-cached-props
13939 (org-entry-properties pom)))))))
13941 (defun org-global-tags-completion-table (&optional files)
13942 "Return the list of all tags in all agenda buffer/files.
13943 Optional FILES argument is a list of files which can be used
13944 instead of the agenda files."
13945 (save-excursion
13946 (org-uniquify
13947 (delq nil
13948 (apply 'append
13949 (mapcar
13950 (lambda (file)
13951 (set-buffer (find-file-noselect file))
13952 (append (org-get-buffer-tags)
13953 (mapcar (lambda (x) (if (stringp (car-safe x))
13954 (list (car-safe x)) nil))
13955 org-tag-alist)))
13956 (if (and files (car files))
13957 files
13958 (org-agenda-files))))))))
13960 (defun org-make-tags-matcher (match)
13961 "Create the TAGS/TODO matcher form for the selection string MATCH.
13963 The variable `todo-only' is scoped dynamically into this function.
13964 It will be set to t if the matcher restricts matching to TODO entries,
13965 otherwise will not be touched.
13967 Returns a cons of the selection string MATCH and the constructed
13968 lisp form implementing the matcher. The matcher is to be evaluated
13969 at an Org entry, with point on the headline, and returns t if the
13970 entry matches the selection string MATCH. The returned lisp form
13971 references two variables with information about the entry, which
13972 must be bound around the form's evaluation: todo, the TODO keyword
13973 at the entry (or nil of none); and tags-list, the list of all tags
13974 at the entry including inherited ones. Additionally, the category
13975 of the entry (if any) must be specified as the text property
13976 'org-category on the headline.
13978 See also `org-scan-tags'.
13980 (declare (special todo-only))
13981 (unless (boundp 'todo-only)
13982 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
13983 (unless match
13984 ;; Get a new match request, with completion against the global
13985 ;; tags table and the local tags in current buffer
13986 (let ((org-last-tags-completion-table
13987 (org-uniquify
13988 (delq nil (append (org-get-buffer-tags)
13989 (org-global-tags-completion-table))))))
13990 (setq match (org-completing-read-no-i
13991 "Match: " 'org-tags-completion-function nil nil nil
13992 'org-tags-history))))
13994 ;; Parse the string and create a lisp form
13995 (let ((match0 match)
13996 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
13997 minus tag mm
13998 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
13999 orterms term orlist re-p str-p level-p level-op time-p
14000 prop-p pn pv po gv rest)
14001 ;; Expand group tags
14002 (setq match (org-tags-expand match))
14003 (if (string-match "/+" match)
14004 ;; match contains also a todo-matching request
14005 (progn
14006 (setq tagsmatch (substring match 0 (match-beginning 0))
14007 todomatch (substring match (match-end 0)))
14008 (if (string-match "^!" todomatch)
14009 (setq todo-only t todomatch (substring todomatch 1)))
14010 (if (string-match "^\\s-*$" todomatch)
14011 (setq todomatch nil)))
14012 ;; only matching tags
14013 (setq tagsmatch match todomatch nil))
14015 ;; Make the tags matcher
14016 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14017 (setq tagsmatcher t)
14018 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14019 (while (setq term (pop orterms))
14020 (while (and (equal (substring term -1) "\\") orterms)
14021 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14022 (while (string-match re term)
14023 (setq rest (substring term (match-end 0))
14024 minus (and (match-end 1)
14025 (equal (match-string 1 term) "-"))
14026 tag (save-match-data (replace-regexp-in-string
14027 "\\\\-" "-"
14028 (match-string 2 term)))
14029 re-p (equal (string-to-char tag) ?{)
14030 level-p (match-end 4)
14031 prop-p (match-end 5)
14032 mm (cond
14033 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14034 (level-p
14035 (setq level-op (org-op-to-function (match-string 3 term)))
14036 `(,level-op level ,(string-to-number
14037 (match-string 4 term))))
14038 (prop-p
14039 (setq pn (match-string 5 term)
14040 po (match-string 6 term)
14041 pv (match-string 7 term)
14042 re-p (equal (string-to-char pv) ?{)
14043 str-p (equal (string-to-char pv) ?\")
14044 time-p (save-match-data
14045 (string-match "^\"[[<].*[]>]\"$" pv))
14046 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14047 (if time-p (setq pv (org-matcher-time pv)))
14048 (setq po (org-op-to-function po (if time-p 'time str-p)))
14049 (cond
14050 ((equal pn "CATEGORY")
14051 (setq gv '(get-text-property (point) 'org-category)))
14052 ((equal pn "TODO")
14053 (setq gv 'todo))
14055 (setq gv `(org-cached-entry-get nil ,pn))))
14056 (if re-p
14057 (if (eq po 'org<>)
14058 `(not (string-match ,pv (or ,gv "")))
14059 `(string-match ,pv (or ,gv "")))
14060 (if str-p
14061 `(,po (or ,gv "") ,pv)
14062 `(,po (string-to-number (or ,gv ""))
14063 ,(string-to-number pv) ))))
14064 (t `(member ,tag tags-list)))
14065 mm (if minus (list 'not mm) mm)
14066 term rest)
14067 (push mm tagsmatcher))
14068 (push (if (> (length tagsmatcher) 1)
14069 (cons 'and tagsmatcher)
14070 (car tagsmatcher))
14071 orlist)
14072 (setq tagsmatcher nil))
14073 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14074 (setq tagsmatcher
14075 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14076 ;; Make the todo matcher
14077 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14078 (setq todomatcher t)
14079 (setq orterms (org-split-string todomatch "|") orlist nil)
14080 (while (setq term (pop orterms))
14081 (while (string-match re term)
14082 (setq minus (and (match-end 1)
14083 (equal (match-string 1 term) "-"))
14084 kwd (match-string 2 term)
14085 re-p (equal (string-to-char kwd) ?{)
14086 term (substring term (match-end 0))
14087 mm (if re-p
14088 `(string-match ,(substring kwd 1 -1) todo)
14089 (list 'equal 'todo kwd))
14090 mm (if minus (list 'not mm) mm))
14091 (push mm todomatcher))
14092 (push (if (> (length todomatcher) 1)
14093 (cons 'and todomatcher)
14094 (car todomatcher))
14095 orlist)
14096 (setq todomatcher nil))
14097 (setq todomatcher (if (> (length orlist) 1)
14098 (cons 'or orlist) (car orlist))))
14100 ;; Return the string and lisp forms of the matcher
14101 (setq matcher (if todomatcher
14102 (list 'and tagsmatcher todomatcher)
14103 tagsmatcher))
14104 (when todo-only
14105 (setq matcher (list 'and '(member todo org-not-done-keywords)
14106 matcher)))
14107 (cons match0 matcher)))
14109 (defun org-tags-expand (match &optional single-as-list downcased)
14110 "Expand group tags in MATCH.
14112 This replaces every group tag in MATCH with a regexp tag search.
14113 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14114 will be replaced like this:
14116 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14117 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14118 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14120 Replacing by a regexp preserves the structure of the match.
14121 E.g., this expansion
14123 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14125 will match anything tagged with \"Lab\" and \"Home\", or tagged
14126 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14128 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14129 assumed to be a single group tag, and the function will return
14130 the list of tags in this group.
14132 When DOWNCASE is non-nil, expand downcased TAGS."
14133 (if org-group-tags
14134 (let* ((case-fold-search t)
14135 (stable org-mode-syntax-table)
14136 (tal (or org-tag-groups-alist-for-agenda
14137 org-tag-groups-alist))
14138 (tal (if downcased
14139 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14140 (tml (mapcar 'car tal))
14141 (rtnmatch match) rpl)
14142 ;; @ and _ are allowed as word-components in tags
14143 (modify-syntax-entry ?@ "w" stable)
14144 (modify-syntax-entry ?_ "w" stable)
14145 (while (and tml
14146 (with-syntax-table stable
14147 (string-match
14148 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14149 (regexp-opt tml) "\\>\\)") rtnmatch)))
14150 (let* ((dir (match-string 1 rtnmatch))
14151 (tag (match-string 2 rtnmatch))
14152 (tag (if downcased (downcase tag) tag)))
14153 (setq tml (delete tag tml))
14154 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14155 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14156 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14157 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14158 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14159 (if single-as-list
14160 (or (reverse rpl) (list rtnmatch))
14161 rtnmatch))
14162 (if single-as-list (list (if downcased (downcase match) match))
14163 match)))
14165 (defun org-op-to-function (op &optional stringp)
14166 "Turn an operator into the appropriate function."
14167 (setq op
14168 (cond
14169 ((equal op "<" ) '(< string< org-time<))
14170 ((equal op ">" ) '(> org-string> org-time>))
14171 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14172 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14173 ((member op '("=" "==")) '(= string= org-time=))
14174 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14175 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14177 (defun org<> (a b) (not (= a b)))
14178 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14179 (defun org-string>= (a b) (not (string< a b)))
14180 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14181 (defun org-string<> (a b) (not (string= a b)))
14182 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14183 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14184 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14185 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14186 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14187 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14188 (defun org-2ft (s)
14189 "Convert S to a floating point time.
14190 If S is already a number, just return it. If it is a string, parse
14191 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14192 (cond
14193 ((numberp s) s)
14194 ((stringp s)
14195 (condition-case nil
14196 (float-time (apply 'encode-time (org-parse-time-string s)))
14197 (error 0.)))
14198 (t 0.)))
14200 (defun org-time-today ()
14201 "Time in seconds today at 0:00.
14202 Returns the float number of seconds since the beginning of the
14203 epoch to the beginning of today (00:00)."
14204 (float-time (apply 'encode-time
14205 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14207 (defun org-matcher-time (s)
14208 "Interpret a time comparison value."
14209 (save-match-data
14210 (cond
14211 ((string= s "<now>") (float-time))
14212 ((string= s "<today>") (org-time-today))
14213 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14214 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14215 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14216 (+ (org-time-today)
14217 (* (string-to-number (match-string 1 s))
14218 (cdr (assoc (match-string 2 s)
14219 '(("d" . 86400.0) ("w" . 604800.0)
14220 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14221 (t (org-2ft s)))))
14223 (defun org-match-any-p (re list)
14224 "Does re match any element of list?"
14225 (setq list (mapcar (lambda (x) (string-match re x)) list))
14226 (delq nil list))
14228 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14229 (defvar org-tags-overlay (make-overlay 1 1))
14230 (org-detach-overlay org-tags-overlay)
14232 (defun org-get-local-tags-at (&optional pos)
14233 "Get a list of tags defined in the current headline."
14234 (org-get-tags-at pos 'local))
14236 (defun org-get-local-tags ()
14237 "Get a list of tags defined in the current headline."
14238 (org-get-tags-at nil 'local))
14240 (defun org-get-tags-at (&optional pos local)
14241 "Get a list of all headline tags applicable at POS.
14242 POS defaults to point. If tags are inherited, the list contains
14243 the targets in the same sequence as the headlines appear, i.e.
14244 the tags of the current headline come last.
14245 When LOCAL is non-nil, only return tags from the current headline,
14246 ignore inherited ones."
14247 (interactive)
14248 (if (and org-trust-scanner-tags
14249 (or (not pos) (equal pos (point)))
14250 (not local))
14251 org-scanner-tags
14252 (let (tags ltags lastpos parent)
14253 (save-excursion
14254 (save-restriction
14255 (widen)
14256 (goto-char (or pos (point)))
14257 (save-match-data
14258 (catch 'done
14259 (condition-case nil
14260 (progn
14261 (org-back-to-heading t)
14262 (while (not (equal lastpos (point)))
14263 (setq lastpos (point))
14264 (when (looking-at
14265 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14266 (setq ltags (org-split-string
14267 (org-match-string-no-properties 1) ":"))
14268 (when parent
14269 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14270 (setq tags (append
14271 (if parent
14272 (org-remove-uninherited-tags ltags)
14273 ltags)
14274 tags)))
14275 (or org-use-tag-inheritance (throw 'done t))
14276 (if local (throw 'done t))
14277 (or (org-up-heading-safe) (error nil))
14278 (setq parent t)))
14279 (error nil)))))
14280 (if local
14281 tags
14282 (reverse (delete-dups
14283 (reverse (append
14284 (org-remove-uninherited-tags
14285 org-file-tags) tags)))))))))
14287 (defun org-add-prop-inherited (s)
14288 (add-text-properties 0 (length s) '(inherited t) s)
14291 (defun org-toggle-tag (tag &optional onoff)
14292 "Toggle the tag TAG for the current line.
14293 If ONOFF is `on' or `off', don't toggle but set to this state."
14294 (let (res current)
14295 (save-excursion
14296 (org-back-to-heading t)
14297 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14298 (point-at-eol) t)
14299 (progn
14300 (setq current (match-string 1))
14301 (replace-match ""))
14302 (setq current ""))
14303 (setq current (nreverse (org-split-string current ":")))
14304 (cond
14305 ((eq onoff 'on)
14306 (setq res t)
14307 (or (member tag current) (push tag current)))
14308 ((eq onoff 'off)
14309 (or (not (member tag current)) (setq current (delete tag current))))
14310 (t (if (member tag current)
14311 (setq current (delete tag current))
14312 (setq res t)
14313 (push tag current))))
14314 (end-of-line 1)
14315 (if current
14316 (progn
14317 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14318 (org-set-tags nil t))
14319 (delete-horizontal-space))
14320 (run-hooks 'org-after-tags-change-hook))
14321 res))
14323 (defun org-align-tags-here (to-col)
14324 ;; Assumes that this is a headline
14325 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14326 (beginning-of-line 1)
14327 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14328 (< pos (match-beginning 2)))
14329 (progn
14330 (setq tags-l (- (match-end 2) (match-beginning 2)))
14331 (goto-char (match-beginning 1))
14332 (insert " ")
14333 (delete-region (point) (1+ (match-beginning 2)))
14334 (setq ncol (max (current-column)
14335 (1+ col)
14336 (if (> to-col 0)
14337 to-col
14338 (- (abs to-col) tags-l))))
14339 (setq p (point))
14340 (insert (make-string (- ncol (current-column)) ?\ ))
14341 (setq ncol (current-column))
14342 (when indent-tabs-mode (tabify p (point-at-eol)))
14343 (org-move-to-column (min ncol col) t))
14344 (goto-char pos))))
14346 (defun org-set-tags-command (&optional arg just-align)
14347 "Call the set-tags command for the current entry."
14348 (interactive "P")
14349 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14350 (org-set-tags arg just-align)
14351 (save-excursion
14352 (unless (and (org-region-active-p)
14353 org-loop-over-headlines-in-active-region)
14354 (org-back-to-heading t))
14355 (org-set-tags arg just-align))))
14357 (defun org-set-tags-to (data)
14358 "Set the tags of the current entry to DATA, replacing the current tags.
14359 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14360 If DATA is nil or the empty string, any tags will be removed."
14361 (interactive "sTags: ")
14362 (setq data
14363 (cond
14364 ((eq data nil) "")
14365 ((equal data "") "")
14366 ((stringp data)
14367 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14368 ":"))
14369 ((listp data)
14370 (concat ":" (mapconcat 'identity data ":") ":"))))
14371 (when data
14372 (save-excursion
14373 (org-back-to-heading t)
14374 (when (looking-at org-complex-heading-regexp)
14375 (if (match-end 5)
14376 (progn
14377 (goto-char (match-beginning 5))
14378 (insert data)
14379 (delete-region (point) (point-at-eol))
14380 (org-set-tags nil 'align))
14381 (goto-char (point-at-eol))
14382 (insert " " data)
14383 (org-set-tags nil 'align)))
14384 (beginning-of-line 1)
14385 (if (looking-at ".*?\\([ \t]+\\)$")
14386 (delete-region (match-beginning 1) (match-end 1))))))
14388 (defun org-align-all-tags ()
14389 "Align the tags i all headings."
14390 (interactive)
14391 (save-excursion
14392 (or (ignore-errors (org-back-to-heading t))
14393 (outline-next-heading))
14394 (if (org-at-heading-p)
14395 (org-set-tags t)
14396 (message "No headings"))))
14398 (defvar org-indent-indentation-per-level)
14399 (defun org-set-tags (&optional arg just-align)
14400 "Set the tags for the current headline.
14401 With prefix ARG, realign all tags in headings in the current buffer."
14402 (interactive "P")
14403 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14404 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14405 'region-start-level 'region))
14406 org-loop-over-headlines-in-active-region)
14407 (org-map-entries
14408 ;; We don't use ARG and JUST-ALIGN here these args are not
14409 ;; useful when looping over headlines
14410 `(org-set-tags)
14411 org-loop-over-headlines-in-active-region
14412 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14413 (let* ((re org-outline-regexp-bol)
14414 (current (unless arg (org-get-tags-string)))
14415 (col (current-column))
14416 (org-setting-tags t)
14417 table current-tags inherited-tags ; computed below when needed
14418 tags p0 c0 c1 rpl di tc level)
14419 (if arg
14420 (save-excursion
14421 (goto-char (point-min))
14422 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14423 (while (re-search-forward re nil t)
14424 (org-set-tags nil t)
14425 (end-of-line 1)))
14426 (message "All tags realigned to column %d" org-tags-column))
14427 (if just-align
14428 (setq tags current)
14429 ;; Get a new set of tags from the user
14430 (save-excursion
14431 (setq table (append org-tag-persistent-alist
14432 (or org-tag-alist (org-get-buffer-tags))
14433 (and
14434 org-complete-tags-always-offer-all-agenda-tags
14435 (org-global-tags-completion-table
14436 (org-agenda-files))))
14437 org-last-tags-completion-table table
14438 current-tags (org-split-string current ":")
14439 inherited-tags (nreverse
14440 (nthcdr (length current-tags)
14441 (nreverse (org-get-tags-at))))
14442 tags
14443 (if (or (eq t org-use-fast-tag-selection)
14444 (and org-use-fast-tag-selection
14445 (delq nil (mapcar 'cdr table))))
14446 (org-fast-tag-selection
14447 current-tags inherited-tags table
14448 (if org-fast-tag-selection-include-todo
14449 org-todo-key-alist))
14450 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14451 (org-trim
14452 (org-icompleting-read "Tags: "
14453 'org-tags-completion-function
14454 nil nil current 'org-tags-history))))))
14455 (while (string-match "[-+&]+" tags)
14456 ;; No boolean logic, just a list
14457 (setq tags (replace-match ":" t t tags))))
14459 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14461 (if org-tags-sort-function
14462 (setq tags (mapconcat 'identity
14463 (sort (org-split-string
14464 tags (org-re "[^[:alnum:]_@#%]+"))
14465 org-tags-sort-function) ":")))
14467 (if (string-match "\\`[\t ]*\\'" tags)
14468 (setq tags "")
14469 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14470 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14472 ;; Insert new tags at the correct column
14473 (beginning-of-line 1)
14474 (setq level (or (and (looking-at org-outline-regexp)
14475 (- (match-end 0) (point) 1))
14477 (cond
14478 ((and (equal current "") (equal tags "")))
14479 ((re-search-forward
14480 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14481 (point-at-eol) t)
14482 (if (equal tags "")
14483 (setq rpl "")
14484 (goto-char (match-beginning 0))
14485 (setq c0 (current-column)
14486 ;; compute offset for the case of org-indent-mode active
14487 di (if org-indent-mode
14488 (* (1- org-indent-indentation-per-level) (1- level))
14490 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14491 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14492 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (length tags))))
14493 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14494 (replace-match rpl t t)
14495 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14496 tags)
14497 (t (error "Tags alignment failed")))
14498 (org-move-to-column col)
14499 (unless just-align
14500 (run-hooks 'org-after-tags-change-hook))))))
14502 (defun org-change-tag-in-region (beg end tag off)
14503 "Add or remove TAG for each entry in the region.
14504 This works in the agenda, and also in an org-mode buffer."
14505 (interactive
14506 (list (region-beginning) (region-end)
14507 (let ((org-last-tags-completion-table
14508 (if (derived-mode-p 'org-mode)
14509 (org-uniquify
14510 (delq nil (append (org-get-buffer-tags)
14511 (org-global-tags-completion-table))))
14512 (org-global-tags-completion-table))))
14513 (org-icompleting-read
14514 "Tag: " 'org-tags-completion-function nil nil nil
14515 'org-tags-history))
14516 (progn
14517 (message "[s]et or [r]emove? ")
14518 (equal (read-char-exclusive) ?r))))
14519 (if (fboundp 'deactivate-mark) (deactivate-mark))
14520 (let ((agendap (equal major-mode 'org-agenda-mode))
14521 l1 l2 m buf pos newhead (cnt 0))
14522 (goto-char end)
14523 (setq l2 (1- (org-current-line)))
14524 (goto-char beg)
14525 (setq l1 (org-current-line))
14526 (loop for l from l1 to l2 do
14527 (org-goto-line l)
14528 (setq m (get-text-property (point) 'org-hd-marker))
14529 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14530 (and agendap m))
14531 (setq buf (if agendap (marker-buffer m) (current-buffer))
14532 pos (if agendap m (point)))
14533 (with-current-buffer buf
14534 (save-excursion
14535 (save-restriction
14536 (goto-char pos)
14537 (setq cnt (1+ cnt))
14538 (org-toggle-tag tag (if off 'off 'on))
14539 (setq newhead (org-get-heading)))))
14540 (and agendap (org-agenda-change-all-lines newhead m))))
14541 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
14543 (defun org-tags-completion-function (string predicate &optional flag)
14544 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
14545 (confirm (lambda (x) (stringp (car x)))))
14546 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
14547 (setq s1 (match-string 1 string)
14548 s2 (match-string 2 string))
14549 (setq s1 "" s2 string))
14550 (cond
14551 ((eq flag nil)
14552 ;; try completion
14553 (setq rtn (try-completion s2 ctable confirm))
14554 (if (stringp rtn)
14555 (setq rtn
14556 (concat s1 s2 (substring rtn (length s2))
14557 (if (and org-add-colon-after-tag-completion
14558 (assoc rtn ctable))
14559 ":" ""))))
14560 rtn)
14561 ((eq flag t)
14562 ;; all-completions
14563 (all-completions s2 ctable confirm))
14564 ((eq flag 'lambda)
14565 ;; exact match?
14566 (assoc s2 ctable)))))
14568 (defun org-fast-tag-insert (kwd tags face &optional end)
14569 "Insert KDW, and the TAGS, the latter with face FACE.
14570 Also insert END."
14571 (insert (format "%-12s" (concat kwd ":"))
14572 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
14573 (or end "")))
14575 (defun org-fast-tag-show-exit (flag)
14576 (save-excursion
14577 (org-goto-line 3)
14578 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
14579 (replace-match ""))
14580 (when flag
14581 (end-of-line 1)
14582 (org-move-to-column (- (window-width) 19) t)
14583 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
14585 (defun org-set-current-tags-overlay (current prefix)
14586 "Add an overlay to CURRENT tag with PREFIX."
14587 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
14588 (if (featurep 'xemacs)
14589 (org-overlay-display org-tags-overlay (concat prefix s)
14590 'secondary-selection)
14591 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
14592 (org-overlay-display org-tags-overlay (concat prefix s)))))
14594 (defvar org-last-tag-selection-key nil)
14595 (defun org-fast-tag-selection (current inherited table &optional todo-table)
14596 "Fast tag selection with single keys.
14597 CURRENT is the current list of tags in the headline, INHERITED is the
14598 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
14599 possibly with grouping information. TODO-TABLE is a similar table with
14600 TODO keywords, should these have keys assigned to them.
14601 If the keys are nil, a-z are automatically assigned.
14602 Returns the new tags string, or nil to not change the current settings."
14603 (let* ((fulltable (append table todo-table))
14604 (maxlen (apply 'max (mapcar
14605 (lambda (x)
14606 (if (stringp (car x)) (string-width (car x)) 0))
14607 fulltable)))
14608 (buf (current-buffer))
14609 (expert (eq org-fast-tag-selection-single-key 'expert))
14610 (buffer-tags nil)
14611 (fwidth (+ maxlen 3 1 3))
14612 (ncol (/ (- (window-width) 4) fwidth))
14613 (i-face 'org-done)
14614 (c-face 'org-todo)
14615 tg cnt e c char c1 c2 ntable tbl rtn
14616 ov-start ov-end ov-prefix
14617 (exit-after-next org-fast-tag-selection-single-key)
14618 (done-keywords org-done-keywords)
14619 groups ingroup)
14620 (save-excursion
14621 (beginning-of-line 1)
14622 (if (looking-at
14623 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14624 (setq ov-start (match-beginning 1)
14625 ov-end (match-end 1)
14626 ov-prefix "")
14627 (setq ov-start (1- (point-at-eol))
14628 ov-end (1+ ov-start))
14629 (skip-chars-forward "^\n\r")
14630 (setq ov-prefix
14631 (concat
14632 (buffer-substring (1- (point)) (point))
14633 (if (> (current-column) org-tags-column)
14635 (make-string (- org-tags-column (current-column)) ?\ ))))))
14636 (move-overlay org-tags-overlay ov-start ov-end)
14637 (save-window-excursion
14638 (if expert
14639 (set-buffer (get-buffer-create " *Org tags*"))
14640 (delete-other-windows)
14641 (split-window-vertically)
14642 (org-switch-to-buffer-other-window (get-buffer-create " *Org tags*")))
14643 (erase-buffer)
14644 (org-set-local 'org-done-keywords done-keywords)
14645 (org-fast-tag-insert "Inherited" inherited i-face "\n")
14646 (org-fast-tag-insert "Current" current c-face "\n\n")
14647 (org-fast-tag-show-exit exit-after-next)
14648 (org-set-current-tags-overlay current ov-prefix)
14649 (setq tbl fulltable char ?a cnt 0)
14650 (while (setq e (pop tbl))
14651 (cond
14652 ((equal (car e) :startgroup)
14653 (push '() groups) (setq ingroup t)
14654 (when (not (= cnt 0))
14655 (setq cnt 0)
14656 (insert "\n"))
14657 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
14658 ((equal (car e) :endgroup)
14659 (setq ingroup nil cnt 0)
14660 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
14661 ((equal e '(:newline))
14662 (when (not (= cnt 0))
14663 (setq cnt 0)
14664 (insert "\n")
14665 (setq e (car tbl))
14666 (while (equal (car tbl) '(:newline))
14667 (insert "\n")
14668 (setq tbl (cdr tbl)))))
14669 ((equal e '(:grouptags)) nil)
14671 (setq tg (copy-sequence (car e)) c2 nil)
14672 (if (cdr e)
14673 (setq c (cdr e))
14674 ;; automatically assign a character.
14675 (setq c1 (string-to-char
14676 (downcase (substring
14677 tg (if (= (string-to-char tg) ?@) 1 0)))))
14678 (if (or (rassoc c1 ntable) (rassoc c1 table))
14679 (while (or (rassoc char ntable) (rassoc char table))
14680 (setq char (1+ char)))
14681 (setq c2 c1))
14682 (setq c (or c2 char)))
14683 (if ingroup (push tg (car groups)))
14684 (setq tg (org-add-props tg nil 'face
14685 (cond
14686 ((not (assoc tg table))
14687 (org-get-todo-face tg))
14688 ((member tg current) c-face)
14689 ((member tg inherited) i-face))))
14690 (if (equal (caar tbl) :grouptags)
14691 (org-add-props tg nil 'face 'org-tag-group))
14692 (if (and (= cnt 0) (not ingroup)) (insert " "))
14693 (insert "[" c "] " tg (make-string
14694 (- fwidth 4 (length tg)) ?\ ))
14695 (push (cons tg c) ntable)
14696 (when (= (setq cnt (1+ cnt)) ncol)
14697 (insert "\n")
14698 (if ingroup (insert " "))
14699 (setq cnt 0)))))
14700 (setq ntable (nreverse ntable))
14701 (insert "\n")
14702 (goto-char (point-min))
14703 (if (not expert) (org-fit-window-to-buffer))
14704 (setq rtn
14705 (catch 'exit
14706 (while t
14707 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
14708 (if (not groups) "no " "")
14709 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
14710 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
14711 (setq org-last-tag-selection-key c)
14712 (cond
14713 ((= c ?\r) (throw 'exit t))
14714 ((= c ?!)
14715 (setq groups (not groups))
14716 (goto-char (point-min))
14717 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
14718 ((= c ?\C-c)
14719 (if (not expert)
14720 (org-fast-tag-show-exit
14721 (setq exit-after-next (not exit-after-next)))
14722 (setq expert nil)
14723 (delete-other-windows)
14724 (set-window-buffer (split-window-vertically) " *Org tags*")
14725 (org-switch-to-buffer-other-window " *Org tags*")
14726 (org-fit-window-to-buffer)))
14727 ((or (= c ?\C-g)
14728 (and (= c ?q) (not (rassoc c ntable))))
14729 (org-detach-overlay org-tags-overlay)
14730 (setq quit-flag t))
14731 ((= c ?\ )
14732 (setq current nil)
14733 (if exit-after-next (setq exit-after-next 'now)))
14734 ((= c ?\t)
14735 (condition-case nil
14736 (setq tg (org-icompleting-read
14737 "Tag: "
14738 (or buffer-tags
14739 (with-current-buffer buf
14740 (org-get-buffer-tags)))))
14741 (quit (setq tg "")))
14742 (when (string-match "\\S-" tg)
14743 (add-to-list 'buffer-tags (list tg))
14744 (if (member tg current)
14745 (setq current (delete tg current))
14746 (push tg current)))
14747 (if exit-after-next (setq exit-after-next 'now)))
14748 ((setq e (rassoc c todo-table) tg (car e))
14749 (with-current-buffer buf
14750 (save-excursion (org-todo tg)))
14751 (if exit-after-next (setq exit-after-next 'now)))
14752 ((setq e (rassoc c ntable) tg (car e))
14753 (if (member tg current)
14754 (setq current (delete tg current))
14755 (loop for g in groups do
14756 (if (member tg g)
14757 (mapc (lambda (x)
14758 (setq current (delete x current)))
14759 g)))
14760 (push tg current))
14761 (if exit-after-next (setq exit-after-next 'now))))
14763 ;; Create a sorted list
14764 (setq current
14765 (sort current
14766 (lambda (a b)
14767 (assoc b (cdr (memq (assoc a ntable) ntable))))))
14768 (if (eq exit-after-next 'now) (throw 'exit t))
14769 (goto-char (point-min))
14770 (beginning-of-line 2)
14771 (delete-region (point) (point-at-eol))
14772 (org-fast-tag-insert "Current" current c-face)
14773 (org-set-current-tags-overlay current ov-prefix)
14774 (while (re-search-forward
14775 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
14776 (setq tg (match-string 1))
14777 (add-text-properties
14778 (match-beginning 1) (match-end 1)
14779 (list 'face
14780 (cond
14781 ((member tg current) c-face)
14782 ((member tg inherited) i-face)
14783 (t (get-text-property (match-beginning 1) 'face))))))
14784 (goto-char (point-min)))))
14785 (org-detach-overlay org-tags-overlay)
14786 (if rtn
14787 (mapconcat 'identity current ":")
14788 nil))))
14790 (defun org-get-tags-string ()
14791 "Get the TAGS string in the current headline."
14792 (unless (org-at-heading-p t)
14793 (user-error "Not on a heading"))
14794 (save-excursion
14795 (beginning-of-line 1)
14796 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14797 (org-match-string-no-properties 1)
14798 "")))
14800 (defun org-get-tags ()
14801 "Get the list of tags specified in the current headline."
14802 (org-split-string (org-get-tags-string) ":"))
14804 (defun org-get-buffer-tags ()
14805 "Get a table of all tags used in the buffer, for completion."
14806 (let (tags)
14807 (save-excursion
14808 (goto-char (point-min))
14809 (while (re-search-forward
14810 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
14811 (when (equal (char-after (point-at-bol 0)) ?*)
14812 (mapc (lambda (x) (add-to-list 'tags x))
14813 (org-split-string (org-match-string-no-properties 1) ":")))))
14814 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
14815 (mapcar 'list tags)))
14817 ;;;; The mapping API
14819 (defun org-map-entries (func &optional match scope &rest skip)
14820 "Call FUNC at each headline selected by MATCH in SCOPE.
14822 FUNC is a function or a lisp form. The function will be called without
14823 arguments, with the cursor positioned at the beginning of the headline.
14824 The return values of all calls to the function will be collected and
14825 returned as a list.
14827 The call to FUNC will be wrapped into a save-excursion form, so FUNC
14828 does not need to preserve point. After evaluation, the cursor will be
14829 moved to the end of the line (presumably of the headline of the
14830 processed entry) and search continues from there. Under some
14831 circumstances, this may not produce the wanted results. For example,
14832 if you have removed (e.g. archived) the current (sub)tree it could
14833 mean that the next entry will be skipped entirely. In such cases, you
14834 can specify the position from where search should continue by making
14835 FUNC set the variable `org-map-continue-from' to the desired buffer
14836 position.
14838 MATCH is a tags/property/todo match as it is used in the agenda tags view.
14839 Only headlines that are matched by this query will be considered during
14840 the iteration. When MATCH is nil or t, all headlines will be
14841 visited by the iteration.
14843 SCOPE determines the scope of this command. It can be any of:
14845 nil The current buffer, respecting the restriction if any
14846 tree The subtree started with the entry at point
14847 region The entries within the active region, if any
14848 region-start-level
14849 The entries within the active region, but only those at
14850 the same level than the first one.
14851 file The current buffer, without restriction
14852 file-with-archives
14853 The current buffer, and any archives associated with it
14854 agenda All agenda files
14855 agenda-with-archives
14856 All agenda files with any archive files associated with them
14857 \(file1 file2 ...)
14858 If this is a list, all files in the list will be scanned
14860 The remaining args are treated as settings for the skipping facilities of
14861 the scanner. The following items can be given here:
14863 archive skip trees with the archive tag
14864 comment skip trees with the COMMENT keyword
14865 function or Emacs Lisp form:
14866 will be used as value for `org-agenda-skip-function', so
14867 whenever the function returns a position, FUNC will not be
14868 called for that entry and search will continue from the
14869 position returned
14871 If your function needs to retrieve the tags including inherited tags
14872 at the *current* entry, you can use the value of the variable
14873 `org-scanner-tags' which will be much faster than getting the value
14874 with `org-get-tags-at'. If your function gets properties with
14875 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
14876 to t around the call to `org-entry-properties' to get the same speedup.
14877 Note that if your function moves around to retrieve tags and properties at
14878 a *different* entry, you cannot use these techniques."
14879 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
14880 (not (org-region-active-p)))
14881 (let* ((org-agenda-archives-mode nil) ; just to make sure
14882 (org-agenda-skip-archived-trees (memq 'archive skip))
14883 (org-agenda-skip-comment-trees (memq 'comment skip))
14884 (org-agenda-skip-function
14885 (car (org-delete-all '(comment archive) skip)))
14886 (org-tags-match-list-sublevels t)
14887 (start-level (eq scope 'region-start-level))
14888 matcher file res
14889 org-todo-keywords-for-agenda
14890 org-done-keywords-for-agenda
14891 org-todo-keyword-alist-for-agenda
14892 org-drawers-for-agenda
14893 org-tag-alist-for-agenda
14894 todo-only)
14896 (cond
14897 ((eq match t) (setq matcher t))
14898 ((eq match nil) (setq matcher t))
14899 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
14901 (save-window-excursion
14902 (save-restriction
14903 (cond ((eq scope 'tree)
14904 (org-back-to-heading t)
14905 (org-narrow-to-subtree)
14906 (setq scope nil))
14907 ((and (or (eq scope 'region) (eq scope 'region-start-level))
14908 (org-region-active-p))
14909 ;; If needed, set start-level to a string like "2"
14910 (when start-level
14911 (save-excursion
14912 (goto-char (region-beginning))
14913 (unless (org-at-heading-p) (outline-next-heading))
14914 (setq start-level (org-current-level))))
14915 (narrow-to-region (region-beginning)
14916 (save-excursion
14917 (goto-char (region-end))
14918 (unless (and (bolp) (org-at-heading-p))
14919 (outline-next-heading))
14920 (point)))
14921 (setq scope nil)))
14923 (if (not scope)
14924 (progn
14925 (org-agenda-prepare-buffers
14926 (list (buffer-file-name (current-buffer))))
14927 (setq res (org-scan-tags func matcher todo-only start-level)))
14928 ;; Get the right scope
14929 (cond
14930 ((and scope (listp scope) (symbolp (car scope)))
14931 (setq scope (eval scope)))
14932 ((eq scope 'agenda)
14933 (setq scope (org-agenda-files t)))
14934 ((eq scope 'agenda-with-archives)
14935 (setq scope (org-agenda-files t))
14936 (setq scope (org-add-archive-files scope)))
14937 ((eq scope 'file)
14938 (setq scope (list (buffer-file-name))))
14939 ((eq scope 'file-with-archives)
14940 (setq scope (org-add-archive-files (list (buffer-file-name))))))
14941 (org-agenda-prepare-buffers scope)
14942 (while (setq file (pop scope))
14943 (with-current-buffer (org-find-base-buffer-visiting file)
14944 (save-excursion
14945 (save-restriction
14946 (widen)
14947 (goto-char (point-min))
14948 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
14949 res)))
14951 ;;;; Properties
14953 ;;; Setting and retrieving properties
14955 (defconst org-special-properties
14956 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "CLOSED" "PRIORITY"
14957 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE" "CLOCKSUM" "CLOCKSUM_T")
14958 "The special properties valid in Org-mode.
14960 These are properties that are not defined in the property drawer,
14961 but in some other way.")
14963 (defconst org-default-properties
14964 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
14965 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
14966 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
14967 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
14968 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE"
14969 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
14970 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
14971 "Some properties that are used by Org-mode for various purposes.
14972 Being in this list makes sure that they are offered for completion.")
14974 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
14975 "Regular expression matching the first line of a property drawer.")
14977 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
14978 "Regular expression matching the last line of a property drawer.")
14980 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
14981 "Regular expression matching the first line of a property drawer.")
14983 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
14984 "Regular expression matching the first line of a property drawer.")
14986 (defconst org-property-drawer-re
14987 (concat "\\(" org-property-start-re "\\)[^\000]*\\("
14988 org-property-end-re "\\)\n?")
14989 "Matches an entire property drawer.")
14991 (defconst org-clock-drawer-re
14992 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*\\("
14993 org-property-end-re "\\)\n?")
14994 "Matches an entire clock drawer.")
14996 (defsubst org-re-property (property)
14997 "Return a regexp matching a PROPERTY line.
14998 Match group 1 will be set to the value."
14999 (concat "^[ \t]*:" (regexp-quote property) ":[ \t]*\\(\\S-.*\\)"))
15001 (defsubst org-re-property-keyword (property)
15002 "Return a regexp matching a PROPERTY line, possibly with no
15003 value for the property."
15004 (concat "^[ \t]*:" (regexp-quote property) ":[ \t]*\\(\\S-.*\\)?"))
15006 (defun org-property-action ()
15007 "Do an action on properties."
15008 (interactive)
15009 (let (c)
15010 (org-at-property-p)
15011 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15012 (setq c (read-char-exclusive))
15013 (cond
15014 ((equal c ?s)
15015 (call-interactively 'org-set-property))
15016 ((equal c ?d)
15017 (call-interactively 'org-delete-property))
15018 ((equal c ?D)
15019 (call-interactively 'org-delete-property-globally))
15020 ((equal c ?c)
15021 (call-interactively 'org-compute-property-at-point))
15022 (t (user-error "No such property action %c" c)))))
15024 (defun org-inc-effort ()
15025 "Increment the value of the effort property in the current entry."
15026 (interactive)
15027 (org-set-effort nil t))
15029 (defvar org-clock-effort) ;; Defined in org-clock.el
15030 (defvar org-clock-current-task) ;; Defined in org-clock.el
15031 (defun org-set-effort (&optional value increment)
15032 "Set the effort property of the current entry.
15033 With numerical prefix arg, use the nth allowed value, 0 stands for the
15034 10th allowed value.
15036 When INCREMENT is non-nil, set the property to the next allowed value."
15037 (interactive "P")
15038 (if (equal value 0) (setq value 10))
15039 (let* ((completion-ignore-case t)
15040 (prop org-effort-property)
15041 (cur (org-entry-get nil prop))
15042 (allowed (org-property-get-allowed-values nil prop 'table))
15043 (existing (mapcar 'list (org-property-values prop)))
15044 (heading (nth 4 (org-heading-components)))
15046 (val (cond
15047 ((stringp value) value)
15048 ((and allowed (integerp value))
15049 (or (car (nth (1- value) allowed))
15050 (car (org-last allowed))))
15051 ((and allowed increment)
15052 (or (caadr (member (list cur) allowed))
15053 (user-error "Allowed effort values are not set")))
15054 (allowed
15055 (message "Select 1-9,0, [RET%s]: %s"
15056 (if cur (concat "=" cur) "")
15057 (mapconcat 'car allowed " "))
15058 (setq rpl (read-char-exclusive))
15059 (if (equal rpl ?\r)
15061 (setq rpl (- rpl ?0))
15062 (if (equal rpl 0) (setq rpl 10))
15063 (if (and (> rpl 0) (<= rpl (length allowed)))
15064 (car (nth (1- rpl) allowed))
15065 (org-completing-read "Effort: " allowed nil))))
15067 (let (org-completion-use-ido org-completion-use-iswitchb)
15068 (org-completing-read
15069 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15070 (concat "[" cur "]") "")
15071 ": ")
15072 existing nil nil "" nil cur))))))
15073 (unless (equal (org-entry-get nil prop) val)
15074 (org-entry-put nil prop val))
15075 (save-excursion
15076 (org-back-to-heading t)
15077 (put-text-property (point-at-bol) (point-at-eol) 'org-effort val))
15078 (when (string= heading org-clock-current-task)
15079 (setq org-clock-effort (get-text-property (point-at-bol) 'org-effort))
15080 (org-clock-update-mode-line))
15081 (message "%s is now %s" prop val)))
15083 (defun org-at-property-p ()
15084 "Is cursor inside a property drawer?"
15085 (save-excursion
15086 (beginning-of-line 1)
15087 (when (looking-at (org-re "^[ \t]*\\(:\\([[:alpha:]][[:alnum:]_-]*\\):\\)[ \t]*\\(.*\\)"))
15088 (save-match-data ;; Used by calling procedures
15089 (let ((p (point))
15090 (range (unless (org-before-first-heading-p)
15091 (org-get-property-block))))
15092 (and range (<= (car range) p) (< p (cdr range))))))))
15094 (defun org-get-property-block (&optional beg end force)
15095 "Return the (beg . end) range of the body of the property drawer.
15096 BEG and END are the beginning and end of the current subtree, or of
15097 the part before the first headline. If they are not given, they will
15098 be found. If the drawer does not exist and FORCE is non-nil, create
15099 the drawer."
15100 (catch 'exit
15101 (save-excursion
15102 (let* ((beg (or beg (and (org-before-first-heading-p) (point-min))
15103 (progn (org-back-to-heading t) (point))))
15104 (end (or end (and (not (outline-next-heading)) (point-max))
15105 (point))))
15106 (goto-char beg)
15107 (if (re-search-forward org-property-start-re end t)
15108 (setq beg (1+ (match-end 0)))
15109 (if force
15110 (save-excursion
15111 (org-insert-property-drawer)
15112 (setq end (progn (outline-next-heading) (point))))
15113 (throw 'exit nil))
15114 (goto-char beg)
15115 (if (re-search-forward org-property-start-re end t)
15116 (setq beg (1+ (match-end 0)))))
15117 (if (re-search-forward org-property-end-re end t)
15118 (setq end (match-beginning 0))
15119 (or force (throw 'exit nil))
15120 (goto-char beg)
15121 (setq end beg)
15122 (org-indent-line)
15123 (insert ":END:\n"))
15124 (cons beg end)))))
15126 (defun org-entry-properties (&optional pom which specific)
15127 "Get all properties of the entry at point-or-marker POM.
15128 This includes the TODO keyword, the tags, time strings for deadline,
15129 scheduled, and clocking, and any additional properties defined in the
15130 entry. The return value is an alist, keys may occur multiple times
15131 if the property key was used several times.
15132 POM may also be nil, in which case the current entry is used.
15133 If WHICH is nil or `all', get all properties. If WHICH is
15134 `special' or `standard', only get that subclass. If WHICH
15135 is a string only get exactly this property. SPECIFIC can be a string, the
15136 specific property we are interested in. Specifying it can speed
15137 things up because then unnecessary parsing is avoided."
15138 (setq which (or which 'all))
15139 (org-with-point-at pom
15140 (let ((clockstr (substring org-clock-string 0 -1))
15141 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY" "BLOCKED"))
15142 (case-fold-search nil)
15143 beg end range props sum-props key key1 value string clocksum clocksumt)
15144 (save-excursion
15145 (when (condition-case nil
15146 (and (derived-mode-p 'org-mode) (org-back-to-heading t))
15147 (error nil))
15148 (setq beg (point))
15149 (setq sum-props (get-text-property (point) 'org-summaries))
15150 (setq clocksum (get-text-property (point) :org-clock-minutes)
15151 clocksumt (get-text-property (point) :org-clock-minutes-today))
15152 (outline-next-heading)
15153 (setq end (point))
15154 (when (memq which '(all special))
15155 ;; Get the special properties, like TODO and tags
15156 (goto-char beg)
15157 (when (and (or (not specific) (string= specific "TODO"))
15158 (looking-at org-todo-line-regexp) (match-end 2))
15159 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15160 (when (and (or (not specific) (string= specific "PRIORITY"))
15161 (looking-at org-priority-regexp))
15162 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15163 (when (or (not specific) (string= specific "FILE"))
15164 (push (cons "FILE" buffer-file-name) props))
15165 (when (and (or (not specific) (string= specific "TAGS"))
15166 (setq value (org-get-tags-string))
15167 (string-match "\\S-" value))
15168 (push (cons "TAGS" value) props))
15169 (when (and (or (not specific) (string= specific "ALLTAGS"))
15170 (setq value (org-get-tags-at)))
15171 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":")
15172 ":"))
15173 props))
15174 (when (or (not specific) (string= specific "BLOCKED"))
15175 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props))
15176 (when (or (not specific)
15177 (member specific
15178 '("SCHEDULED" "DEADLINE" "CLOCK" "CLOSED"
15179 "TIMESTAMP" "TIMESTAMP_IA")))
15180 (catch 'match
15181 (while (re-search-forward org-maybe-keyword-time-regexp end t)
15182 (setq key (if (match-end 1)
15183 (substring (org-match-string-no-properties 1)
15184 0 -1))
15185 string (if (equal key clockstr)
15186 (org-trim
15187 (buffer-substring-no-properties
15188 (match-beginning 3) (goto-char
15189 (point-at-eol))))
15190 (substring (org-match-string-no-properties 3)
15191 1 -1)))
15192 ;; Get the correct property name from the key. This is
15193 ;; necessary if the user has configured time keywords.
15194 (setq key1 (concat key ":"))
15195 (cond
15196 ((not key)
15197 (setq key
15198 (if (= (char-after (match-beginning 3)) ?\[)
15199 "TIMESTAMP_IA" "TIMESTAMP")))
15200 ((equal key1 org-scheduled-string) (setq key "SCHEDULED"))
15201 ((equal key1 org-deadline-string) (setq key "DEADLINE"))
15202 ((equal key1 org-closed-string) (setq key "CLOSED"))
15203 ((equal key1 org-clock-string) (setq key "CLOCK")))
15204 (if (and specific (equal key specific) (not (equal key "CLOCK")))
15205 (progn
15206 (push (cons key string) props)
15207 ;; no need to search further if match is found
15208 (throw 'match t))
15209 (when (or (equal key "CLOCK") (not (assoc key props)))
15210 (push (cons key string) props)))))))
15212 (when (memq which '(all standard))
15213 ;; Get the standard properties, like :PROP: ...
15214 (setq range (org-get-property-block beg end))
15215 (when range
15216 (goto-char (car range))
15217 (while (re-search-forward
15218 (org-re "^[ \t]*:\\([[:alpha:]][[:alnum:]_-]*\\):[ \t]*\\(\\S-.*\\)?")
15219 (cdr range) t)
15220 (setq key (org-match-string-no-properties 1)
15221 value (org-trim (or (org-match-string-no-properties 2) "")))
15222 (unless (member key excluded)
15223 (push (cons key (or value "")) props)))))
15224 (if clocksum
15225 (push (cons "CLOCKSUM"
15226 (org-columns-number-to-string (/ (float clocksum) 60.)
15227 'add_times))
15228 props))
15229 (if clocksumt
15230 (push (cons "CLOCKSUM_T"
15231 (org-columns-number-to-string (/ (float clocksumt) 60.)
15232 'add_times))
15233 props))
15234 (unless (assoc "CATEGORY" props)
15235 (push (cons "CATEGORY" (org-get-category)) props))
15236 (append sum-props (nreverse props)))))))
15238 (defun org-entry-get (pom property &optional inherit literal-nil)
15239 "Get value of PROPERTY for entry or content at point-or-marker POM.
15240 If INHERIT is non-nil and the entry does not have the property,
15241 then also check higher levels of the hierarchy.
15242 If INHERIT is the symbol `selective', use inheritance only if the setting
15243 in `org-use-property-inheritance' selects PROPERTY for inheritance.
15244 If the property is present but empty, the return value is the empty string.
15245 If the property is not present at all, nil is returned.
15247 If LITERAL-NIL is set, return the string value \"nil\" as a string,
15248 do not interpret it as the list atom nil. This is used for inheritance
15249 when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
15250 (org-with-point-at pom
15251 (if (and inherit (if (eq inherit 'selective)
15252 (org-property-inherit-p property)
15254 (org-entry-get-with-inheritance property literal-nil)
15255 (if (member property org-special-properties)
15256 ;; We need a special property. Use `org-entry-properties' to
15257 ;; retrieve it, but specify the wanted property
15258 (cdr (assoc property (org-entry-properties nil 'special property)))
15259 (let ((range (org-get-property-block)))
15260 (when (and range (not (eq (car range) (cdr range))))
15261 (let* ((props (list (or (assoc property org-file-properties)
15262 (assoc property org-global-properties)
15263 (assoc property org-global-properties-fixed))))
15264 (ap (lambda (key)
15265 (when (re-search-forward
15266 (org-re-property key) (cdr range) t)
15267 (setq props
15268 (org-update-property-plist
15270 (if (match-end 1)
15271 (org-match-string-no-properties 1) "")
15272 props)))))
15273 val)
15274 (goto-char (car range))
15275 (funcall ap property)
15276 (goto-char (car range))
15277 (while (funcall ap (concat property "+")))
15278 (setq val (cdr (assoc property props)))
15279 (when val (if literal-nil val (org-not-nil val))))))))))
15281 (defun org-property-or-variable-value (var &optional inherit)
15282 "Check if there is a property fixing the value of VAR.
15283 If yes, return this value. If not, return the current value of the variable."
15284 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15285 (if (and prop (stringp prop) (string-match "\\S-" prop))
15286 (read prop)
15287 (symbol-value var))))
15289 (defun org-entry-delete (pom property &optional delete-empty-drawer)
15290 "Delete the property PROPERTY from entry at point-or-marker POM.
15291 When optional argument DELETE-EMPTY-DRAWER is a string, it defines
15292 an empty drawer to delete."
15293 (org-with-point-at pom
15294 (if (member property org-special-properties)
15295 nil ; cannot delete these properties.
15296 (let ((range (org-get-property-block)))
15297 (if (and range
15298 (goto-char (car range))
15299 (re-search-forward
15300 (org-re-property property)
15301 (cdr range) t))
15302 (progn
15303 (delete-region (match-beginning 0) (1+ (point-at-eol)))
15304 (and delete-empty-drawer
15305 (org-remove-empty-drawer-at
15306 delete-empty-drawer (car range)))
15308 nil)))))
15310 ;; Multi-values properties are properties that contain multiple values
15311 ;; These values are assumed to be single words, separated by whitespace.
15312 (defun org-entry-add-to-multivalued-property (pom property value)
15313 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15314 (let* ((old (org-entry-get pom property))
15315 (values (and old (org-split-string old "[ \t]"))))
15316 (setq value (org-entry-protect-space value))
15317 (unless (member value values)
15318 (setq values (append values (list value)))
15319 (org-entry-put pom property
15320 (mapconcat 'identity values " ")))))
15322 (defun org-entry-remove-from-multivalued-property (pom property value)
15323 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15324 (let* ((old (org-entry-get pom property))
15325 (values (and old (org-split-string old "[ \t]"))))
15326 (setq value (org-entry-protect-space value))
15327 (when (member value values)
15328 (setq values (delete value values))
15329 (org-entry-put pom property
15330 (mapconcat 'identity values " ")))))
15332 (defun org-entry-member-in-multivalued-property (pom property value)
15333 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15334 (let* ((old (org-entry-get pom property))
15335 (values (and old (org-split-string old "[ \t]"))))
15336 (setq value (org-entry-protect-space value))
15337 (member value values)))
15339 (defun org-entry-get-multivalued-property (pom property)
15340 "Return a list of values in a multivalued property."
15341 (let* ((value (org-entry-get pom property))
15342 (values (and value (org-split-string value "[ \t]"))))
15343 (mapcar 'org-entry-restore-space values)))
15345 (defun org-entry-put-multivalued-property (pom property &rest values)
15346 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15347 VALUES should be a list of strings. Spaces will be protected."
15348 (org-entry-put pom property
15349 (mapconcat 'org-entry-protect-space values " "))
15350 (let* ((value (org-entry-get pom property))
15351 (values (and value (org-split-string value "[ \t]"))))
15352 (mapcar 'org-entry-restore-space values)))
15354 (defun org-entry-protect-space (s)
15355 "Protect spaces and newline in string S."
15356 (while (string-match " " s)
15357 (setq s (replace-match "%20" t t s)))
15358 (while (string-match "\n" s)
15359 (setq s (replace-match "%0A" t t s)))
15362 (defun org-entry-restore-space (s)
15363 "Restore spaces and newline in string S."
15364 (while (string-match "%20" s)
15365 (setq s (replace-match " " t t s)))
15366 (while (string-match "%0A" s)
15367 (setq s (replace-match "\n" t t s)))
15370 (defvar org-entry-property-inherited-from (make-marker)
15371 "Marker pointing to the entry from where a property was inherited.
15372 Each call to `org-entry-get-with-inheritance' will set this marker to the
15373 location of the entry where the inheritance search matched. If there was
15374 no match, the marker will point nowhere.
15375 Note that also `org-entry-get' calls this function, if the INHERIT flag
15376 is set.")
15378 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15379 "Get PROPERTY of entry or content at point, search higher levels if needed.
15380 The search will stop at the first ancestor which has the property defined.
15381 If the value found is \"nil\", return nil to show that the property
15382 should be considered as undefined (this is the meaning of nil here).
15383 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15384 (move-marker org-entry-property-inherited-from nil)
15385 (let (tmp)
15386 (save-excursion
15387 (save-restriction
15388 (widen)
15389 (catch 'ex
15390 (while t
15391 (when (setq tmp (org-entry-get nil property nil 'literal-nil))
15392 (or (ignore-errors (org-back-to-heading t))
15393 (goto-char (point-min)))
15394 (move-marker org-entry-property-inherited-from (point))
15395 (throw 'ex tmp))
15396 (or (ignore-errors (org-up-heading-safe))
15397 (throw 'ex nil))))))
15398 (setq tmp (or tmp
15399 (cdr (assoc property org-file-properties))
15400 (cdr (assoc property org-global-properties))
15401 (cdr (assoc property org-global-properties-fixed))))
15402 (if literal-nil tmp (org-not-nil tmp))))
15404 (defvar org-property-changed-functions nil
15405 "Hook called when the value of a property has changed.
15406 Each hook function should accept two arguments, the name of the property
15407 and the new value.")
15409 (defun org-entry-put (pom property value)
15410 "Set PROPERTY to VALUE for entry at point-or-marker POM."
15411 (org-with-point-at pom
15412 (org-back-to-heading t)
15413 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
15414 range)
15415 (cond
15416 ((equal property "TODO")
15417 (when (and (stringp value) (string-match "\\S-" value)
15418 (not (member value org-todo-keywords-1)))
15419 (user-error "\"%s\" is not a valid TODO state" value))
15420 (if (or (not value)
15421 (not (string-match "\\S-" value)))
15422 (setq value 'none))
15423 (org-todo value)
15424 (org-set-tags nil 'align))
15425 ((equal property "PRIORITY")
15426 (org-priority (if (and value (stringp value) (string-match "\\S-" value))
15427 (string-to-char value) ?\ ))
15428 (org-set-tags nil 'align))
15429 ((equal property "CLOCKSUM")
15430 (if (not (re-search-forward
15431 (concat org-clock-string ".*\\]--\\(\\[[^]]+\\]\\)") nil t))
15432 (error "Cannot find a clock log")
15433 (goto-char (- (match-end 1) 2))
15434 (cond
15435 ((eq value 'earlier) (org-timestamp-down))
15436 ((eq value 'later) (org-timestamp-up)))
15437 (org-clock-sum-current-item)))
15438 ((equal property "SCHEDULED")
15439 (if (re-search-forward org-scheduled-time-regexp end t)
15440 (cond
15441 ((eq value 'earlier) (org-timestamp-change -1 'day))
15442 ((eq value 'later) (org-timestamp-change 1 'day))
15443 (t (call-interactively 'org-schedule)))
15444 (call-interactively 'org-schedule)))
15445 ((equal property "DEADLINE")
15446 (if (re-search-forward org-deadline-time-regexp end t)
15447 (cond
15448 ((eq value 'earlier) (org-timestamp-change -1 'day))
15449 ((eq value 'later) (org-timestamp-change 1 'day))
15450 (t (call-interactively 'org-deadline)))
15451 (call-interactively 'org-deadline)))
15452 ((member property org-special-properties)
15453 (error "The %s property can not yet be set with `org-entry-put'"
15454 property))
15455 (t ; a non-special property
15456 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
15457 (setq range (org-get-property-block beg end 'force))
15458 (goto-char (car range))
15459 (if (re-search-forward
15460 (org-re-property-keyword property) (cdr range) t)
15461 (progn
15462 (delete-region (match-beginning 0) (match-end 0))
15463 (goto-char (match-beginning 0)))
15464 (goto-char (cdr range))
15465 (insert "\n")
15466 (backward-char 1)
15467 (org-indent-line))
15468 (insert ":" property ":")
15469 (and value (insert " " value))
15470 (org-indent-line)))))
15471 (run-hook-with-args 'org-property-changed-functions property value)))
15473 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
15474 "Get all property keys in the current buffer.
15475 With INCLUDE-SPECIALS, also list the special properties that reflect things
15476 like tags and TODO state.
15477 With INCLUDE-DEFAULTS, also include properties that has special meaning
15478 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING
15479 and others.
15480 With INCLUDE-COLUMNS, also include property names given in COLUMN
15481 formats in the current buffer."
15482 (let (rtn range cfmt s p)
15483 (save-excursion
15484 (save-restriction
15485 (widen)
15486 (goto-char (point-min))
15487 (while (re-search-forward org-property-start-re nil t)
15488 (setq range (org-get-property-block))
15489 (goto-char (car range))
15490 (while (re-search-forward
15491 (org-re "^[ \t]*:\\([-[:alnum:]_]+\\):")
15492 (cdr range) t)
15493 (add-to-list 'rtn (org-match-string-no-properties 1)))
15494 (outline-next-heading))))
15496 (when include-specials
15497 (setq rtn (append org-special-properties rtn)))
15499 (when include-defaults
15500 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties)
15501 (add-to-list 'rtn org-effort-property))
15503 (when include-columns
15504 (save-excursion
15505 (save-restriction
15506 (widen)
15507 (goto-char (point-min))
15508 (while (re-search-forward
15509 "^\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
15510 nil t)
15511 (setq cfmt (match-string 2) s 0)
15512 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
15513 cfmt s)
15514 (setq s (match-end 0)
15515 p (match-string 1 cfmt))
15516 (unless (or (equal p "ITEM")
15517 (member p org-special-properties))
15518 (add-to-list 'rtn (match-string 1 cfmt))))))))
15520 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
15522 (defun org-property-values (key)
15523 "Return a list of all values of property KEY in the current buffer."
15524 (save-excursion
15525 (save-restriction
15526 (widen)
15527 (goto-char (point-min))
15528 (let ((re (org-re-property key))
15529 values)
15530 (while (re-search-forward re nil t)
15531 (add-to-list 'values (org-trim (match-string 1))))
15532 (delete "" values)))))
15534 (defun org-insert-property-drawer ()
15535 "Insert a property drawer into the current entry."
15536 (org-back-to-heading t)
15537 (looking-at org-outline-regexp)
15538 (let ((indent (if org-adapt-indentation
15539 (- (match-end 0) (match-beginning 0))
15541 (beg (point))
15542 (re (concat "^[ \t]*" org-keyword-time-regexp))
15543 end hiddenp)
15544 (outline-next-heading)
15545 (setq end (point))
15546 (goto-char beg)
15547 (while (re-search-forward re end t))
15548 (setq hiddenp (outline-invisible-p))
15549 (end-of-line 1)
15550 (and (equal (char-after) ?\n) (forward-char 1))
15551 (while (looking-at "^[ \t]*\\(:CLOCK:\\|:LOGBOOK:\\|CLOCK:\\|:END:\\)")
15552 (if (member (match-string 1) '("CLOCK:" ":END:"))
15553 ;; just skip this line
15554 (beginning-of-line 2)
15555 ;; Drawer start, find the end
15556 (re-search-forward "^\\*+ \\|^[ \t]*:END:" nil t)
15557 (beginning-of-line 1)))
15558 (org-skip-over-state-notes)
15559 (skip-chars-backward " \t\n\r")
15560 (if (eq (char-before) ?*) (forward-char 1))
15561 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
15562 (beginning-of-line 0)
15563 (org-indent-to-column indent)
15564 (beginning-of-line 2)
15565 (org-indent-to-column indent)
15566 (beginning-of-line 0)
15567 (if hiddenp
15568 (save-excursion
15569 (org-back-to-heading t)
15570 (hide-entry))
15571 (org-flag-drawer t))))
15573 (defun org-insert-drawer (&optional arg drawer)
15574 "Insert a drawer at point.
15576 Optional argument DRAWER, when non-nil, is a string representing
15577 drawer's name. Otherwise, the user is prompted for a name.
15579 If a region is active, insert the drawer around that region
15580 instead.
15582 Point is left between drawer's boundaries."
15583 (interactive "P")
15584 (let* ((logbook (if (stringp org-log-into-drawer) org-log-into-drawer
15585 "LOGBOOK"))
15586 ;; SYSTEM-DRAWERS is a list of drawer names that are used
15587 ;; internally by Org. They are meant to be inserted
15588 ;; automatically.
15589 (system-drawers `("CLOCK" ,logbook "PROPERTIES"))
15590 ;; Remove system drawers from list. Note: For some reason,
15591 ;; `org-completing-read' ignores the predicate while
15592 ;; `completing-read' handles it fine.
15593 (drawer (if arg "PROPERTIES"
15594 (or drawer
15595 (completing-read
15596 "Drawer: " org-drawers
15597 (lambda (d) (not (member d system-drawers))))))))
15598 (cond
15599 ;; With C-u, fall back on `org-insert-property-drawer'
15600 (arg (org-insert-property-drawer))
15601 ;; With an active region, insert a drawer at point.
15602 ((not (org-region-active-p))
15603 (progn
15604 (unless (bolp) (insert "\n"))
15605 (insert (format ":%s:\n\n:END:\n" drawer))
15606 (forward-line -2)))
15607 ;; Otherwise, insert the drawer at point
15609 (let ((rbeg (region-beginning))
15610 (rend (copy-marker (region-end))))
15611 (unwind-protect
15612 (progn
15613 (goto-char rbeg)
15614 (beginning-of-line)
15615 (when (save-excursion
15616 (re-search-forward org-outline-regexp-bol rend t))
15617 (user-error "Drawers cannot contain headlines"))
15618 ;; Position point at the beginning of the first
15619 ;; non-blank line in region. Insert drawer's opening
15620 ;; there, then indent it.
15621 (org-skip-whitespace)
15622 (beginning-of-line)
15623 (insert ":" drawer ":\n")
15624 (forward-line -1)
15625 (indent-for-tab-command)
15626 ;; Move point to the beginning of the first blank line
15627 ;; after the last non-blank line in region. Insert
15628 ;; drawer's closing, then indent it.
15629 (goto-char rend)
15630 (skip-chars-backward " \r\t\n")
15631 (insert "\n:END:")
15632 (deactivate-mark t)
15633 (indent-for-tab-command)
15634 (unless (eolp) (insert "\n")))
15635 ;; Clear marker, whatever the outcome of insertion is.
15636 (set-marker rend nil)))))))
15638 (defvar org-property-set-functions-alist nil
15639 "Property set function alist.
15640 Each entry should have the following format:
15642 (PROPERTY . READ-FUNCTION)
15644 The read function will be called with the same argument as
15645 `org-completing-read'.")
15647 (defun org-set-property-function (property)
15648 "Get the function that should be used to set PROPERTY.
15649 This is computed according to `org-property-set-functions-alist'."
15650 (or (cdr (assoc property org-property-set-functions-alist))
15651 'org-completing-read))
15653 (defun org-read-property-value (property)
15654 "Read PROPERTY value from user."
15655 (let* ((completion-ignore-case t)
15656 (allowed (org-property-get-allowed-values nil property 'table))
15657 (cur (org-entry-get nil property))
15658 (prompt (concat property " value"
15659 (if (and cur (string-match "\\S-" cur))
15660 (concat " [" cur "]") "") ": "))
15661 (set-function (org-set-property-function property))
15662 (val (if allowed
15663 (funcall set-function prompt allowed nil
15664 (not (get-text-property 0 'org-unrestricted
15665 (caar allowed))))
15666 (let (org-completion-use-ido org-completion-use-iswitchb)
15667 (funcall set-function prompt
15668 (mapcar 'list (org-property-values property))
15669 nil nil "" nil cur)))))
15670 (if (equal val "")
15672 val)))
15674 (defvar org-last-set-property nil)
15675 (defvar org-last-set-property-value nil)
15676 (defun org-read-property-name ()
15677 "Read a property name."
15678 (let* ((completion-ignore-case t)
15679 (keys (org-buffer-property-keys nil t t))
15680 (default-prop (or (save-excursion
15681 (save-match-data
15682 (beginning-of-line)
15683 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
15684 (null (string= (match-string 1) "END"))
15685 (match-string 1))))
15686 org-last-set-property))
15687 (property (org-icompleting-read
15688 (concat "Property"
15689 (if default-prop (concat " [" default-prop "]") "")
15690 ": ")
15691 (mapcar 'list keys)
15692 nil nil nil nil
15693 default-prop)))
15694 (if (member property keys)
15695 property
15696 (or (cdr (assoc (downcase property)
15697 (mapcar (lambda (x) (cons (downcase x) x))
15698 keys)))
15699 property))))
15701 (defun org-set-property-and-value (use-last)
15702 "Allow to set [PROPERTY]: [value] direction from prompt.
15703 When use-default, don't even ask, just use the last
15704 \"[PROPERTY]: [value]\" string from the history."
15705 (interactive "P")
15706 (let* ((completion-ignore-case t)
15707 (pv (or (and use-last org-last-set-property-value)
15708 (org-completing-read
15709 "Enter a \"[Property]: [value]\" pair: "
15710 nil nil nil nil nil
15711 org-last-set-property-value)))
15712 prop val)
15713 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
15714 (setq prop (match-string 1 pv)
15715 val (match-string 2 pv))
15716 (org-set-property prop val))))
15718 (defun org-set-property (property value)
15719 "In the current entry, set PROPERTY to VALUE.
15720 When called interactively, this will prompt for a property name, offering
15721 completion on existing and default properties. And then it will prompt
15722 for a value, offering completion either on allowed values (via an inherited
15723 xxx_ALL property) or on existing values in other instances of this property
15724 in the current file."
15725 (interactive (list nil nil))
15726 (let* ((property (or property (org-read-property-name)))
15727 (value (or value (org-read-property-value property)))
15728 (fn (cdr (assoc property org-properties-postprocess-alist))))
15729 (setq org-last-set-property property)
15730 (setq org-last-set-property-value (concat property ": " value))
15731 ;; Possibly postprocess the inserted value:
15732 (when fn (setq value (funcall fn value)))
15733 (unless (equal (org-entry-get nil property) value)
15734 (org-entry-put nil property value))))
15736 (defun org-delete-property (property &optional delete-empty-drawer)
15737 "In the current entry, delete PROPERTY.
15738 When optional argument DELETE-EMPTY-DRAWER is a string, it defines
15739 an empty drawer to delete."
15740 (interactive
15741 (let* ((completion-ignore-case t)
15742 (prop (org-icompleting-read "Property: "
15743 (org-entry-properties nil 'standard))))
15744 (list prop)))
15745 (message "Property %s %s" property
15746 (if (org-entry-delete nil property delete-empty-drawer)
15747 "deleted"
15748 "was not present in the entry")))
15750 (defun org-delete-property-globally (property)
15751 "Remove PROPERTY globally, from all entries."
15752 (interactive
15753 (let* ((completion-ignore-case t)
15754 (prop (org-icompleting-read
15755 "Globally remove property: "
15756 (mapcar 'list (org-buffer-property-keys)))))
15757 (list prop)))
15758 (save-excursion
15759 (save-restriction
15760 (widen)
15761 (goto-char (point-min))
15762 (let ((cnt 0))
15763 (while (re-search-forward
15764 (org-re-property property)
15765 nil t)
15766 (setq cnt (1+ cnt))
15767 (delete-region (match-beginning 0) (1+ (point-at-eol))))
15768 (message "Property \"%s\" removed from %d entries" property cnt)))))
15770 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
15772 (defun org-compute-property-at-point ()
15773 "Compute the property at point.
15774 This looks for an enclosing column format, extracts the operator and
15775 then applies it to the property in the column format's scope."
15776 (interactive)
15777 (unless (org-at-property-p)
15778 (user-error "Not at a property"))
15779 (let ((prop (org-match-string-no-properties 2)))
15780 (org-columns-get-format-and-top-level)
15781 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
15782 (user-error "No operator defined for property %s" prop))
15783 (org-columns-compute prop)))
15785 (defvar org-property-allowed-value-functions nil
15786 "Hook for functions supplying allowed values for a specific property.
15787 The functions must take a single argument, the name of the property, and
15788 return a flat list of allowed values. If \":ETC\" is one of
15789 the values, this means that these values are intended as defaults for
15790 completion, but that other values should be allowed too.
15791 The functions must return nil if they are not responsible for this
15792 property.")
15794 (defun org-property-get-allowed-values (pom property &optional table)
15795 "Get allowed values for the property PROPERTY.
15796 When TABLE is non-nil, return an alist that can directly be used for
15797 completion."
15798 (let (vals)
15799 (cond
15800 ((equal property "TODO")
15801 (setq vals (org-with-point-at pom
15802 (append org-todo-keywords-1 '("")))))
15803 ((equal property "PRIORITY")
15804 (let ((n org-lowest-priority))
15805 (while (>= n org-highest-priority)
15806 (push (char-to-string n) vals)
15807 (setq n (1- n)))))
15808 ((member property org-special-properties))
15809 ((setq vals (run-hook-with-args-until-success
15810 'org-property-allowed-value-functions property)))
15812 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
15813 (when (and vals (string-match "\\S-" vals))
15814 (setq vals (car (read-from-string (concat "(" vals ")"))))
15815 (setq vals (mapcar (lambda (x)
15816 (cond ((stringp x) x)
15817 ((numberp x) (number-to-string x))
15818 ((symbolp x) (symbol-name x))
15819 (t "???")))
15820 vals)))))
15821 (when (member ":ETC" vals)
15822 (setq vals (remove ":ETC" vals))
15823 (org-add-props (car vals) '(org-unrestricted t)))
15824 (if table (mapcar 'list vals) vals)))
15826 (defun org-property-previous-allowed-value (&optional previous)
15827 "Switch to the next allowed value for this property."
15828 (interactive)
15829 (org-property-next-allowed-value t))
15831 (defun org-property-next-allowed-value (&optional previous)
15832 "Switch to the next allowed value for this property."
15833 (interactive)
15834 (unless (org-at-property-p)
15835 (user-error "Not at a property"))
15836 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
15837 (key (match-string 2))
15838 (value (match-string 3))
15839 (allowed (or (org-property-get-allowed-values (point) key)
15840 (and (member value '("[ ]" "[-]" "[X]"))
15841 '("[ ]" "[X]"))))
15842 (heading (save-match-data (nth 4 (org-heading-components))))
15843 nval)
15844 (unless allowed
15845 (user-error "Allowed values for this property have not been defined"))
15846 (if previous (setq allowed (reverse allowed)))
15847 (if (member value allowed)
15848 (setq nval (car (cdr (member value allowed)))))
15849 (setq nval (or nval (car allowed)))
15850 (if (equal nval value)
15851 (user-error "Only one allowed value for this property"))
15852 (org-at-property-p)
15853 (replace-match (concat " :" key ": " nval) t t)
15854 (org-indent-line)
15855 (beginning-of-line 1)
15856 (skip-chars-forward " \t")
15857 (when (equal prop org-effort-property)
15858 (save-excursion
15859 (org-back-to-heading t)
15860 (put-text-property (point-at-bol) (point-at-eol) 'org-effort nval))
15861 (when (string= org-clock-current-task heading)
15862 (setq org-clock-effort nval)
15863 (org-clock-update-mode-line)))
15864 (run-hook-with-args 'org-property-changed-functions key nval)))
15866 (defun org-find-olp (path &optional this-buffer)
15867 "Return a marker pointing to the entry at outline path OLP.
15868 If anything goes wrong, throw an error.
15869 You can wrap this call to catch the error like this:
15871 (condition-case msg
15872 (org-mobile-locate-entry (match-string 4))
15873 (error (nth 1 msg)))
15875 The return value will then be either a string with the error message,
15876 or a marker if everything is OK.
15878 If THIS-BUFFER is set, the outline path does not contain a file,
15879 only headings."
15880 (let* ((file (if this-buffer buffer-file-name (pop path)))
15881 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
15882 (level 1)
15883 (lmin 1)
15884 (lmax 1)
15885 limit re end found pos heading cnt flevel)
15886 (unless buffer (error "File not found :%s" file))
15887 (with-current-buffer buffer
15888 (save-excursion
15889 (save-restriction
15890 (widen)
15891 (setq limit (point-max))
15892 (goto-char (point-min))
15893 (while (setq heading (pop path))
15894 (setq re (format org-complex-heading-regexp-format
15895 (regexp-quote heading)))
15896 (setq cnt 0 pos (point))
15897 (while (re-search-forward re end t)
15898 (setq level (- (match-end 1) (match-beginning 1)))
15899 (if (and (>= level lmin) (<= level lmax))
15900 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
15901 (when (= cnt 0) (error "Heading not found on level %d: %s"
15902 lmax heading))
15903 (when (> cnt 1) (error "Heading not unique on level %d: %s"
15904 lmax heading))
15905 (goto-char found)
15906 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
15907 (setq end (save-excursion (org-end-of-subtree t t))))
15908 (when (org-at-heading-p)
15909 (point-marker)))))))
15911 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
15912 "Find node HEADING in BUFFER.
15913 Return a marker to the heading if it was found, or nil if not.
15914 If POS-ONLY is set, return just the position instead of a marker.
15916 The heading text must match exact, but it may have a TODO keyword,
15917 a priority cookie and tags in the standard locations."
15918 (with-current-buffer (or buffer (current-buffer))
15919 (save-excursion
15920 (save-restriction
15921 (widen)
15922 (goto-char (point-min))
15923 (let (case-fold-search)
15924 (if (re-search-forward
15925 (format org-complex-heading-regexp-format
15926 (regexp-quote heading)) nil t)
15927 (if pos-only
15928 (match-beginning 0)
15929 (move-marker (make-marker) (match-beginning 0)))))))))
15931 (defun org-find-exact-heading-in-directory (heading &optional dir)
15932 "Find Org node headline HEADING in all .org files in directory DIR.
15933 When the target headline is found, return a marker to this location."
15934 (let ((files (directory-files (or dir default-directory)
15935 nil "\\`[^.#].*\\.org\\'"))
15936 file visiting m buffer)
15937 (catch 'found
15938 (while (setq file (pop files))
15939 (message "trying %s" file)
15940 (setq visiting (org-find-base-buffer-visiting file))
15941 (setq buffer (or visiting (find-file-noselect file)))
15942 (setq m (org-find-exact-headline-in-buffer
15943 heading buffer))
15944 (when (and (not m) (not visiting)) (kill-buffer buffer))
15945 (and m (throw 'found m))))))
15947 (defun org-find-entry-with-id (ident)
15948 "Locate the entry that contains the ID property with exact value IDENT.
15949 IDENT can be a string, a symbol or a number, this function will search for
15950 the string representation of it.
15951 Return the position where this entry starts, or nil if there is no such entry."
15952 (interactive "sID: ")
15953 (let ((id (cond
15954 ((stringp ident) ident)
15955 ((symbol-name ident) (symbol-name ident))
15956 ((numberp ident) (number-to-string ident))
15957 (t (error "IDENT %s must be a string, symbol or number" ident))))
15958 (case-fold-search nil))
15959 (save-excursion
15960 (save-restriction
15961 (widen)
15962 (goto-char (point-min))
15963 (when (re-search-forward
15964 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
15965 nil t)
15966 (org-back-to-heading t)
15967 (point))))))
15969 ;;;; Timestamps
15971 (defvar org-last-changed-timestamp nil)
15972 (defvar org-last-inserted-timestamp nil
15973 "The last time stamp inserted with `org-insert-time-stamp'.")
15974 (defvar org-time-was-given) ; dynamically scoped parameter
15975 (defvar org-end-time-was-given) ; dynamically scoped parameter
15976 (defvar org-ts-what) ; dynamically scoped parameter
15978 (defun org-time-stamp (arg &optional inactive)
15979 "Prompt for a date/time and insert a time stamp.
15980 If the user specifies a time like HH:MM or if this command is
15981 called with at least one prefix argument, the time stamp contains
15982 the date and the time. Otherwise, only the date is be included.
15984 All parts of a date not specified by the user is filled in from
15985 the current date/time. So if you just press return without
15986 typing anything, the time stamp will represent the current
15987 date/time.
15989 If there is already a timestamp at the cursor, it will be
15990 modified.
15992 With two universal prefix arguments, insert an active timestamp
15993 with the current time without prompting the user."
15994 (interactive "P")
15995 (let* ((ts nil)
15996 (default-time
15997 ;; Default time is either today, or, when entering a range,
15998 ;; the range start.
15999 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
16000 (save-excursion
16001 (re-search-backward
16002 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
16003 (- (point) 20) t)))
16004 (apply 'encode-time (org-parse-time-string (match-string 1)))
16005 (current-time)))
16006 (default-input (and ts (org-get-compact-tod ts)))
16007 (repeater (save-excursion
16008 (save-match-data
16009 (beginning-of-line)
16010 (when (re-search-forward
16011 "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
16012 (save-excursion (progn (end-of-line) (point))) t)
16013 (match-string 0)))))
16014 org-time-was-given org-end-time-was-given time)
16015 (cond
16016 ((and (org-at-timestamp-p t)
16017 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16018 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16019 (insert "--")
16020 (setq time (let ((this-command this-command))
16021 (org-read-date arg 'totime nil nil
16022 default-time default-input inactive)))
16023 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16024 ((org-at-timestamp-p t)
16025 (setq time (let ((this-command this-command))
16026 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16027 (when (org-at-timestamp-p t) ; just to get the match data
16028 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
16029 (replace-match "")
16030 (setq org-last-changed-timestamp
16031 (org-insert-time-stamp
16032 time (or org-time-was-given arg)
16033 inactive nil nil (list org-end-time-was-given)))
16034 (when repeater (goto-char (1- (point))) (insert " " repeater)
16035 (setq org-last-changed-timestamp
16036 (concat (substring org-last-inserted-timestamp 0 -1)
16037 " " repeater ">"))))
16038 (message "Timestamp updated"))
16039 ((equal arg '(16))
16040 (org-insert-time-stamp (current-time) t))
16042 (setq time (let ((this-command this-command))
16043 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16044 (org-insert-time-stamp time (or org-time-was-given arg) inactive
16045 nil nil (list org-end-time-was-given))))))
16047 ;; FIXME: can we use this for something else, like computing time differences?
16048 (defun org-get-compact-tod (s)
16049 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16050 (let* ((t1 (match-string 1 s))
16051 (h1 (string-to-number (match-string 2 s)))
16052 (m1 (string-to-number (match-string 3 s)))
16053 (t2 (and (match-end 4) (match-string 5 s)))
16054 (h2 (and t2 (string-to-number (match-string 6 s))))
16055 (m2 (and t2 (string-to-number (match-string 7 s))))
16056 dh dm)
16057 (if (not t2)
16059 (setq dh (- h2 h1) dm (- m2 m1))
16060 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16061 (concat t1 "+" (number-to-string dh)
16062 (if (/= 0 dm) (concat ":" (number-to-string dm))))))))
16064 (defun org-time-stamp-inactive (&optional arg)
16065 "Insert an inactive time stamp.
16066 An inactive time stamp is enclosed in square brackets instead of angle
16067 brackets. It is inactive in the sense that it does not trigger agenda entries,
16068 does not link to the calendar and cannot be changed with the S-cursor keys.
16069 So these are more for recording a certain time/date."
16070 (interactive "P")
16071 (org-time-stamp arg 'inactive))
16073 (defvar org-date-ovl (make-overlay 1 1))
16074 (overlay-put org-date-ovl 'face 'org-date-selected)
16075 (org-detach-overlay org-date-ovl)
16077 (defvar org-ans1) ; dynamically scoped parameter
16078 (defvar org-ans2) ; dynamically scoped parameter
16080 (defvar org-plain-time-of-day-regexp) ; defined below
16082 (defvar org-overriding-default-time nil) ; dynamically scoped
16083 (defvar org-read-date-overlay nil)
16084 (defvar org-dcst nil) ; dynamically scoped
16085 (defvar org-read-date-history nil)
16086 (defvar org-read-date-final-answer nil)
16087 (defvar org-read-date-analyze-futurep nil)
16088 (defvar org-read-date-analyze-forced-year nil)
16089 (defvar org-read-date-inactive)
16091 (defvar org-read-date-minibuffer-local-map
16092 (let ((map (make-sparse-keymap)))
16093 (set-keymap-parent map minibuffer-local-map)
16094 (org-defkey map (kbd ".")
16095 (lambda () (interactive)
16096 ;; Are we at the beginning of the prompt?
16097 (if (looking-back "^[^:]+: ")
16098 (org-eval-in-calendar '(calendar-goto-today))
16099 (insert "."))))
16100 (org-defkey map (kbd "C-.")
16101 (lambda () (interactive)
16102 (org-eval-in-calendar '(calendar-goto-today))))
16103 (org-defkey map [(meta shift left)]
16104 (lambda () (interactive)
16105 (org-eval-in-calendar '(calendar-backward-month 1))))
16106 (org-defkey map [(meta shift right)]
16107 (lambda () (interactive)
16108 (org-eval-in-calendar '(calendar-forward-month 1))))
16109 (org-defkey map [(meta shift up)]
16110 (lambda () (interactive)
16111 (org-eval-in-calendar '(calendar-backward-year 1))))
16112 (org-defkey map [(meta shift down)]
16113 (lambda () (interactive)
16114 (org-eval-in-calendar '(calendar-forward-year 1))))
16115 (org-defkey map [?\e (shift left)]
16116 (lambda () (interactive)
16117 (org-eval-in-calendar '(calendar-backward-month 1))))
16118 (org-defkey map [?\e (shift right)]
16119 (lambda () (interactive)
16120 (org-eval-in-calendar '(calendar-forward-month 1))))
16121 (org-defkey map [?\e (shift up)]
16122 (lambda () (interactive)
16123 (org-eval-in-calendar '(calendar-backward-year 1))))
16124 (org-defkey map [?\e (shift down)]
16125 (lambda () (interactive)
16126 (org-eval-in-calendar '(calendar-forward-year 1))))
16127 (org-defkey map [(shift up)]
16128 (lambda () (interactive)
16129 (org-eval-in-calendar '(calendar-backward-week 1))))
16130 (org-defkey map [(shift down)]
16131 (lambda () (interactive)
16132 (org-eval-in-calendar '(calendar-forward-week 1))))
16133 (org-defkey map [(shift left)]
16134 (lambda () (interactive)
16135 (org-eval-in-calendar '(calendar-backward-day 1))))
16136 (org-defkey map [(shift right)]
16137 (lambda () (interactive)
16138 (org-eval-in-calendar '(calendar-forward-day 1))))
16139 (org-defkey map "!"
16140 (lambda () (interactive)
16141 (org-eval-in-calendar '(diary-view-entries))
16142 (message "")))
16143 (org-defkey map ">"
16144 (lambda () (interactive)
16145 (org-eval-in-calendar '(scroll-calendar-left 1))))
16146 (org-defkey map "<"
16147 (lambda () (interactive)
16148 (org-eval-in-calendar '(scroll-calendar-right 1))))
16149 (org-defkey map "\C-v"
16150 (lambda () (interactive)
16151 (org-eval-in-calendar
16152 '(calendar-scroll-left-three-months 1))))
16153 (org-defkey map "\M-v"
16154 (lambda () (interactive)
16155 (org-eval-in-calendar
16156 '(calendar-scroll-right-three-months 1))))
16157 map)
16158 "Keymap for minibuffer commands when using `org-read-date'.")
16160 (defun org-read-date (&optional org-with-time to-time from-string prompt
16161 default-time default-input inactive)
16162 "Read a date, possibly a time, and make things smooth for the user.
16163 The prompt will suggest to enter an ISO date, but you can also enter anything
16164 which will at least partially be understood by `parse-time-string'.
16165 Unrecognized parts of the date will default to the current day, month, year,
16166 hour and minute. If this command is called to replace a timestamp at point,
16167 or to enter the second timestamp of a range, the default time is taken
16168 from the existing stamp. Furthermore, the command prefers the future,
16169 so if you are giving a date where the year is not given, and the day-month
16170 combination is already past in the current year, it will assume you
16171 mean next year. For details, see the manual. A few examples:
16173 3-2-5 --> 2003-02-05
16174 feb 15 --> currentyear-02-15
16175 2/15 --> currentyear-02-15
16176 sep 12 9 --> 2009-09-12
16177 12:45 --> today 12:45
16178 22 sept 0:34 --> currentyear-09-22 0:34
16179 12 --> currentyear-currentmonth-12
16180 Fri --> nearest Friday after today
16181 -Tue --> last Tuesday
16182 etc.
16184 Furthermore you can specify a relative date by giving, as the *first* thing
16185 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16186 change in days weeks, months, years.
16187 With a single plus or minus, the date is relative to today. With a double
16188 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16189 +4d --> four days from today
16190 +4 --> same as above
16191 +2w --> two weeks from today
16192 ++5 --> five days from default date
16194 The function understands only English month and weekday abbreviations.
16196 While prompting, a calendar is popped up - you can also select the
16197 date with the mouse (button 1). The calendar shows a period of three
16198 months. To scroll it to other months, use the keys `>' and `<'.
16199 If you don't like the calendar, turn it off with
16200 \(setq org-read-date-popup-calendar nil)
16202 With optional argument TO-TIME, the date will immediately be converted
16203 to an internal time.
16204 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16205 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16206 still enter a time, and this function will inform the calling routine
16207 about this change. The calling routine may then choose to change the
16208 format used to insert the time stamp into the buffer to include the time.
16209 With optional argument FROM-STRING, read from this string instead from
16210 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16211 the time/date that is used for everything that is not specified by the
16212 user."
16213 (require 'parse-time)
16214 (let* ((org-time-stamp-rounding-minutes
16215 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16216 (org-dcst org-display-custom-times)
16217 (ct (org-current-time))
16218 (org-def (or org-overriding-default-time default-time ct))
16219 (org-defdecode (decode-time org-def))
16220 (dummy (progn
16221 (when (< (nth 2 org-defdecode) org-extend-today-until)
16222 (setcar (nthcdr 2 org-defdecode) -1)
16223 (setcar (nthcdr 1 org-defdecode) 59)
16224 (setq org-def (apply 'encode-time org-defdecode)
16225 org-defdecode (decode-time org-def)))))
16226 (mouse-autoselect-window nil) ; Don't let the mouse jump
16227 (calendar-frame-setup nil)
16228 (calendar-setup nil)
16229 (calendar-move-hook nil)
16230 (calendar-view-diary-initially-flag nil)
16231 (calendar-view-holidays-initially-flag nil)
16232 (timestr (format-time-string
16233 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16234 (prompt (concat (if prompt (concat prompt " ") "")
16235 (format "Date+time [%s]: " timestr)))
16236 ans (org-ans0 "") org-ans1 org-ans2 final)
16238 (cond
16239 (from-string (setq ans from-string))
16240 (org-read-date-popup-calendar
16241 (save-excursion
16242 (save-window-excursion
16243 (calendar)
16244 (org-eval-in-calendar '(setq cursor-type nil) t)
16245 (unwind-protect
16246 (progn
16247 (calendar-forward-day (- (time-to-days org-def)
16248 (calendar-absolute-from-gregorian
16249 (calendar-current-date))))
16250 (org-eval-in-calendar nil t)
16251 (let* ((old-map (current-local-map))
16252 (map (copy-keymap calendar-mode-map))
16253 (minibuffer-local-map
16254 (copy-keymap org-read-date-minibuffer-local-map)))
16255 (org-defkey map (kbd "RET") 'org-calendar-select)
16256 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16257 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16258 (unwind-protect
16259 (progn
16260 (use-local-map map)
16261 (setq org-read-date-inactive inactive)
16262 (add-hook 'post-command-hook 'org-read-date-display)
16263 (setq org-ans0 (read-string prompt default-input
16264 'org-read-date-history nil))
16265 ;; org-ans0: from prompt
16266 ;; org-ans1: from mouse click
16267 ;; org-ans2: from calendar motion
16268 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16269 (remove-hook 'post-command-hook 'org-read-date-display)
16270 (use-local-map old-map)
16271 (when org-read-date-overlay
16272 (delete-overlay org-read-date-overlay)
16273 (setq org-read-date-overlay nil)))))
16274 (bury-buffer "*Calendar*")))))
16276 (t ; Naked prompt only
16277 (unwind-protect
16278 (setq ans (read-string prompt default-input
16279 'org-read-date-history timestr))
16280 (when org-read-date-overlay
16281 (delete-overlay org-read-date-overlay)
16282 (setq org-read-date-overlay nil)))))
16284 (setq final (org-read-date-analyze ans org-def org-defdecode))
16286 (when org-read-date-analyze-forced-year
16287 (message "Year was forced into %s"
16288 (if org-read-date-force-compatible-dates
16289 "compatible range (1970-2037)"
16290 "range representable on this machine"))
16291 (ding))
16293 ;; One round trip to get rid of 34th of August and stuff like that....
16294 (setq final (decode-time (apply 'encode-time final)))
16296 (setq org-read-date-final-answer ans)
16298 (if to-time
16299 (apply 'encode-time final)
16300 (if (and (boundp 'org-time-was-given) org-time-was-given)
16301 (format "%04d-%02d-%02d %02d:%02d"
16302 (nth 5 final) (nth 4 final) (nth 3 final)
16303 (nth 2 final) (nth 1 final))
16304 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16306 (defvar org-def)
16307 (defvar org-defdecode)
16308 (defvar org-with-time)
16309 (defun org-read-date-display ()
16310 "Display the current date prompt interpretation in the minibuffer."
16311 (when org-read-date-display-live
16312 (when org-read-date-overlay
16313 (delete-overlay org-read-date-overlay))
16314 (when (minibufferp (current-buffer))
16315 (save-excursion
16316 (end-of-line 1)
16317 (while (not (equal (buffer-substring
16318 (max (point-min) (- (point) 4)) (point))
16319 " "))
16320 (insert " ")))
16321 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16322 " " (or org-ans1 org-ans2)))
16323 (org-end-time-was-given nil)
16324 (f (org-read-date-analyze ans org-def org-defdecode))
16325 (fmts (if org-dcst
16326 org-time-stamp-custom-formats
16327 org-time-stamp-formats))
16328 (fmt (if (or org-with-time
16329 (and (boundp 'org-time-was-given) org-time-was-given))
16330 (cdr fmts)
16331 (car fmts)))
16332 (txt (format-time-string fmt (apply 'encode-time f)))
16333 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16334 (txt (concat "=> " txt)))
16335 (when (and org-end-time-was-given
16336 (string-match org-plain-time-of-day-regexp txt))
16337 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16338 org-end-time-was-given
16339 (substring txt (match-end 0)))))
16340 (when org-read-date-analyze-futurep
16341 (setq txt (concat txt " (=>F)")))
16342 (setq org-read-date-overlay
16343 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16344 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16346 (defun org-read-date-analyze (ans org-def org-defdecode)
16347 "Analyze the combined answer of the date prompt."
16348 ;; FIXME: cleanup and comment
16349 (let ((nowdecode (decode-time (current-time)))
16350 delta deltan deltaw deltadef year month day
16351 hour minute second wday pm h2 m2 tl wday1
16352 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16353 (setq org-read-date-analyze-futurep nil
16354 org-read-date-analyze-forced-year nil)
16355 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16356 (setq ans "+0"))
16358 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16359 (setq ans (replace-match "" t t ans)
16360 deltan (car delta)
16361 deltaw (nth 1 delta)
16362 deltadef (nth 2 delta)))
16364 ;; Check if there is an iso week date in there. If yes, store the
16365 ;; info and postpone interpreting it until the rest of the parsing
16366 ;; is done.
16367 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16368 (setq iso-year (if (match-end 1)
16369 (org-small-year-to-year
16370 (string-to-number (match-string 1 ans))))
16371 iso-weekday (if (match-end 3)
16372 (string-to-number (match-string 3 ans)))
16373 iso-week (string-to-number (match-string 2 ans)))
16374 (setq ans (replace-match "" t t ans)))
16376 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16377 (when (string-match
16378 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16379 (setq year (if (match-end 2)
16380 (string-to-number (match-string 2 ans))
16381 (progn (setq kill-year t)
16382 (string-to-number (format-time-string "%Y"))))
16383 month (string-to-number (match-string 3 ans))
16384 day (string-to-number (match-string 4 ans)))
16385 (if (< year 100) (setq year (+ 2000 year)))
16386 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16387 t nil ans)))
16389 ;; Help matching dotted european dates
16390 (when (string-match
16391 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16392 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16393 (setq kill-year t)
16394 (string-to-number (format-time-string "%Y")))
16395 day (string-to-number (match-string 1 ans))
16396 month (string-to-number (match-string 2 ans))
16397 ans (replace-match (format "%04d-%02d-%02d" year month day)
16398 t nil ans)))
16400 ;; Help matching american dates, like 5/30 or 5/30/7
16401 (when (string-match
16402 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16403 (setq year (if (match-end 4)
16404 (string-to-number (match-string 4 ans))
16405 (progn (setq kill-year t)
16406 (string-to-number (format-time-string "%Y"))))
16407 month (string-to-number (match-string 1 ans))
16408 day (string-to-number (match-string 2 ans)))
16409 (if (< year 100) (setq year (+ 2000 year)))
16410 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16411 t nil ans)))
16412 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16413 ;; If there is a time with am/pm, and *no* time without it, we convert
16414 ;; so that matching will be successful.
16415 (loop for i from 1 to 2 do ; twice, for end time as well
16416 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16417 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16418 (setq hour (string-to-number (match-string 1 ans))
16419 minute (if (match-end 3)
16420 (string-to-number (match-string 3 ans))
16422 pm (equal ?p
16423 (string-to-char (downcase (match-string 4 ans)))))
16424 (if (and (= hour 12) (not pm))
16425 (setq hour 0)
16426 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16427 (setq ans (replace-match (format "%02d:%02d" hour minute)
16428 t t ans))))
16430 ;; Check if a time range is given as a duration
16431 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16432 (setq hour (string-to-number (match-string 1 ans))
16433 h2 (+ hour (string-to-number (match-string 3 ans)))
16434 minute (string-to-number (match-string 2 ans))
16435 m2 (+ minute (if (match-end 5) (string-to-number
16436 (match-string 5 ans))0)))
16437 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16438 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16439 t t ans)))
16441 ;; Check if there is a time range
16442 (when (boundp 'org-end-time-was-given)
16443 (setq org-time-was-given nil)
16444 (when (and (string-match org-plain-time-of-day-regexp ans)
16445 (match-end 8))
16446 (setq org-end-time-was-given (match-string 8 ans))
16447 (setq ans (concat (substring ans 0 (match-beginning 7))
16448 (substring ans (match-end 7))))))
16450 (setq tl (parse-time-string ans)
16451 day (or (nth 3 tl) (nth 3 org-defdecode))
16452 month (or (nth 4 tl)
16453 (if (and org-read-date-prefer-future
16454 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
16455 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
16456 (nth 4 org-defdecode)))
16457 year (or (and (not kill-year) (nth 5 tl))
16458 (if (and org-read-date-prefer-future
16459 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
16460 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
16461 (nth 5 org-defdecode)))
16462 hour (or (nth 2 tl) (nth 2 org-defdecode))
16463 minute (or (nth 1 tl) (nth 1 org-defdecode))
16464 second (or (nth 0 tl) 0)
16465 wday (nth 6 tl))
16467 (when (and (eq org-read-date-prefer-future 'time)
16468 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16469 (equal day (nth 3 nowdecode))
16470 (equal month (nth 4 nowdecode))
16471 (equal year (nth 5 nowdecode))
16472 (nth 2 tl)
16473 (or (< (nth 2 tl) (nth 2 nowdecode))
16474 (and (= (nth 2 tl) (nth 2 nowdecode))
16475 (nth 1 tl)
16476 (< (nth 1 tl) (nth 1 nowdecode)))))
16477 (setq day (1+ day)
16478 futurep t))
16480 ;; Special date definitions below
16481 (cond
16482 (iso-week
16483 ;; There was an iso week
16484 (require 'cal-iso)
16485 (setq futurep nil)
16486 (setq year (or iso-year year)
16487 day (or iso-weekday wday 1)
16488 wday nil ; to make sure that the trigger below does not match
16489 iso-date (calendar-gregorian-from-absolute
16490 (calendar-absolute-from-iso
16491 (list iso-week day year))))
16492 ; FIXME: Should we also push ISO weeks into the future?
16493 ; (when (and org-read-date-prefer-future
16494 ; (not iso-year)
16495 ; (< (calendar-absolute-from-gregorian iso-date)
16496 ; (time-to-days (current-time))))
16497 ; (setq year (1+ year)
16498 ; iso-date (calendar-gregorian-from-absolute
16499 ; (calendar-absolute-from-iso
16500 ; (list iso-week day year)))))
16501 (setq month (car iso-date)
16502 year (nth 2 iso-date)
16503 day (nth 1 iso-date)))
16504 (deltan
16505 (setq futurep nil)
16506 (unless deltadef
16507 (let ((now (decode-time (current-time))))
16508 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
16509 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
16510 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
16511 ((equal deltaw "m") (setq month (+ month deltan)))
16512 ((equal deltaw "y") (setq year (+ year deltan)))))
16513 ((and wday (not (nth 3 tl)))
16514 ;; Weekday was given, but no day, so pick that day in the week
16515 ;; on or after the derived date.
16516 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
16517 (unless (equal wday wday1)
16518 (setq day (+ day (% (- wday wday1 -7) 7))))))
16519 (if (and (boundp 'org-time-was-given)
16520 (nth 2 tl))
16521 (setq org-time-was-given t))
16522 (if (< year 100) (setq year (+ 2000 year)))
16523 ;; Check of the date is representable
16524 (if org-read-date-force-compatible-dates
16525 (progn
16526 (if (< year 1970)
16527 (setq year 1970 org-read-date-analyze-forced-year t))
16528 (if (> year 2037)
16529 (setq year 2037 org-read-date-analyze-forced-year t)))
16530 (condition-case nil
16531 (ignore (encode-time second minute hour day month year))
16532 (error
16533 (setq year (nth 5 org-defdecode))
16534 (setq org-read-date-analyze-forced-year t))))
16535 (setq org-read-date-analyze-futurep futurep)
16536 (list second minute hour day month year)))
16538 (defvar parse-time-weekdays)
16539 (defun org-read-date-get-relative (s today default)
16540 "Check string S for special relative date string.
16541 TODAY and DEFAULT are internal times, for today and for a default.
16542 Return shift list (N what def-flag)
16543 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
16544 N is the number of WHATs to shift.
16545 DEF-FLAG is t when a double ++ or -- indicates shift relative to
16546 the DEFAULT date rather than TODAY."
16547 (require 'parse-time)
16548 (when (and
16549 (string-match
16550 (concat
16551 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
16552 "\\([0-9]+\\)?"
16553 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
16554 "\\([ \t]\\|$\\)") s)
16555 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
16556 (let* ((dir (if (> (match-end 1) (match-beginning 1))
16557 (string-to-char (substring (match-string 1 s) -1))
16558 ?+))
16559 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
16560 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
16561 (what (if (match-end 3) (match-string 3 s) "d"))
16562 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
16563 (date (if rel default today))
16564 (wday (nth 6 (decode-time date)))
16565 delta)
16566 (if wday1
16567 (progn
16568 (setq delta (mod (+ 7 (- wday1 wday)) 7))
16569 (if (= delta 0) (setq delta 7))
16570 (if (= dir ?-)
16571 (progn
16572 (setq delta (- delta 7))
16573 (if (= delta 0) (setq delta -7))))
16574 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
16575 (list delta "d" rel))
16576 (list (* n (if (= dir ?-) -1 1)) what rel)))))
16578 (defun org-order-calendar-date-args (arg1 arg2 arg3)
16579 "Turn a user-specified date into the internal representation.
16580 The internal representation needed by the calendar is (month day year).
16581 This is a wrapper to handle the brain-dead convention in calendar that
16582 user function argument order change dependent on argument order."
16583 (if (boundp 'calendar-date-style)
16584 (cond
16585 ((eq calendar-date-style 'american)
16586 (list arg1 arg2 arg3))
16587 ((eq calendar-date-style 'european)
16588 (list arg2 arg1 arg3))
16589 ((eq calendar-date-style 'iso)
16590 (list arg2 arg3 arg1)))
16591 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
16592 (if (org-bound-and-true-p european-calendar-style)
16593 (list arg2 arg1 arg3)
16594 (list arg1 arg2 arg3)))))
16596 (defun org-eval-in-calendar (form &optional keepdate)
16597 "Eval FORM in the calendar window and return to current window.
16598 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
16599 otherwise stick to the current value of `org-ans2'."
16600 (let ((sf (selected-frame))
16601 (sw (selected-window)))
16602 (select-window (get-buffer-window "*Calendar*" t))
16603 (eval form)
16604 (when (and (not keepdate) (calendar-cursor-to-date))
16605 (let* ((date (calendar-cursor-to-date))
16606 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16607 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
16608 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
16609 (select-window sw)
16610 (org-select-frame-set-input-focus sf)))
16612 (defun org-calendar-select ()
16613 "Return to `org-read-date' with the date currently selected.
16614 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
16615 (interactive)
16616 (when (calendar-cursor-to-date)
16617 (let* ((date (calendar-cursor-to-date))
16618 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16619 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
16620 (if (active-minibuffer-window) (exit-minibuffer))))
16622 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
16623 "Insert a date stamp for the date given by the internal TIME.
16624 WITH-HM means use the stamp format that includes the time of the day.
16625 INACTIVE means use square brackets instead of angular ones, so that the
16626 stamp will not contribute to the agenda.
16627 PRE and POST are optional strings to be inserted before and after the
16628 stamp.
16629 The command returns the inserted time stamp."
16630 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
16631 stamp)
16632 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
16633 (insert-before-markers (or pre ""))
16634 (when (listp extra)
16635 (setq extra (car extra))
16636 (if (and (stringp extra)
16637 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
16638 (setq extra (format "-%02d:%02d"
16639 (string-to-number (match-string 1 extra))
16640 (string-to-number (match-string 2 extra))))
16641 (setq extra nil)))
16642 (when extra
16643 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
16644 (insert-before-markers (setq stamp (format-time-string fmt time)))
16645 (insert-before-markers (or post ""))
16646 (setq org-last-inserted-timestamp stamp)))
16648 (defun org-toggle-time-stamp-overlays ()
16649 "Toggle the use of custom time stamp formats."
16650 (interactive)
16651 (setq org-display-custom-times (not org-display-custom-times))
16652 (unless org-display-custom-times
16653 (let ((p (point-min)) (bmp (buffer-modified-p)))
16654 (while (setq p (next-single-property-change p 'display))
16655 (if (and (get-text-property p 'display)
16656 (eq (get-text-property p 'face) 'org-date))
16657 (remove-text-properties
16658 p (setq p (next-single-property-change p 'display))
16659 '(display t))))
16660 (set-buffer-modified-p bmp)))
16661 (if (featurep 'xemacs)
16662 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
16663 (org-restart-font-lock)
16664 (setq org-table-may-need-update t)
16665 (if org-display-custom-times
16666 (message "Time stamps are overlaid with custom format")
16667 (message "Time stamp overlays removed")))
16669 (defun org-display-custom-time (beg end)
16670 "Overlay modified time stamp format over timestamp between BEG and END."
16671 (let* ((ts (buffer-substring beg end))
16672 t1 w1 with-hm tf time str w2 (off 0))
16673 (save-match-data
16674 (setq t1 (org-parse-time-string ts t))
16675 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
16676 (setq off (- (match-end 0) (match-beginning 0)))))
16677 (setq end (- end off))
16678 (setq w1 (- end beg)
16679 with-hm (and (nth 1 t1) (nth 2 t1))
16680 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
16681 time (org-fix-decoded-time t1)
16682 str (org-add-props
16683 (format-time-string
16684 (substring tf 1 -1) (apply 'encode-time time))
16685 nil 'mouse-face 'highlight)
16686 w2 (length str))
16687 (if (not (= w2 w1))
16688 (add-text-properties (1+ beg) (+ 2 beg)
16689 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
16690 (if (featurep 'xemacs)
16691 (progn
16692 (put-text-property beg end 'invisible t)
16693 (put-text-property beg end 'end-glyph (make-glyph str)))
16694 (put-text-property beg end 'display str))))
16696 (defun org-translate-time (string)
16697 "Translate all timestamps in STRING to custom format.
16698 But do this only if the variable `org-display-custom-times' is set."
16699 (when org-display-custom-times
16700 (save-match-data
16701 (let* ((start 0)
16702 (re org-ts-regexp-both)
16703 t1 with-hm inactive tf time str beg end)
16704 (while (setq start (string-match re string start))
16705 (setq beg (match-beginning 0)
16706 end (match-end 0)
16707 t1 (save-match-data
16708 (org-parse-time-string (substring string beg end) t))
16709 with-hm (and (nth 1 t1) (nth 2 t1))
16710 inactive (equal (substring string beg (1+ beg)) "[")
16711 tf (funcall (if with-hm 'cdr 'car)
16712 org-time-stamp-custom-formats)
16713 time (org-fix-decoded-time t1)
16714 str (format-time-string
16715 (concat
16716 (if inactive "[" "<") (substring tf 1 -1)
16717 (if inactive "]" ">"))
16718 (apply 'encode-time time))
16719 string (replace-match str t t string)
16720 start (+ start (length str)))))))
16721 string)
16723 (defun org-fix-decoded-time (time)
16724 "Set 0 instead of nil for the first 6 elements of time.
16725 Don't touch the rest."
16726 (let ((n 0))
16727 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
16729 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
16731 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
16732 "Difference between TIMESTAMP-STRING and now in days.
16733 If SECONDS is non-nil, return the difference in seconds."
16734 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
16735 (- (funcall fdiff (org-time-string-to-time timestamp-string))
16736 (funcall fdiff (current-time)))))
16738 (defun org-deadline-close (timestamp-string &optional ndays)
16739 "Is the time in TIMESTAMP-STRING close to the current date?"
16740 (setq ndays (or ndays (org-get-wdays timestamp-string)))
16741 (and (< (org-time-stamp-to-now timestamp-string) ndays)
16742 (not (org-entry-is-done-p))))
16744 (defun org-get-wdays (ts &optional delay zero-delay)
16745 "Get the deadline lead time appropriate for timestring TS.
16746 When DELAY is non-nil, get the delay time for scheduled items
16747 instead of the deadline lead time. When ZERO-DELAY is non-nil
16748 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
16749 don't try to find the delay cookie in the scheduled timestamp."
16750 (let ((tv (if delay org-scheduled-delay-days
16751 org-deadline-warning-days)))
16752 (cond
16753 ((or (and delay (< tv 0))
16754 (and delay zero-delay (<= tv 0))
16755 (and (not delay) (<= tv 0)))
16756 ;; Enforce this value no matter what
16757 (- tv))
16758 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
16759 ;; lead time is specified.
16760 (floor (* (string-to-number (match-string 1 ts))
16761 (cdr (assoc (match-string 2 ts)
16762 '(("d" . 1) ("w" . 7)
16763 ("m" . 30.4) ("y" . 365.25)
16764 ("h" . 0.041667)))))))
16765 ;; go for the default.
16766 (t tv))))
16768 (defun org-calendar-select-mouse (ev)
16769 "Return to `org-read-date' with the date currently selected.
16770 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
16771 (interactive "e")
16772 (mouse-set-point ev)
16773 (when (calendar-cursor-to-date)
16774 (let* ((date (calendar-cursor-to-date))
16775 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16776 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
16777 (if (active-minibuffer-window) (exit-minibuffer))))
16779 (defun org-check-deadlines (ndays)
16780 "Check if there are any deadlines due or past due.
16781 A deadline is considered due if it happens within `org-deadline-warning-days'
16782 days from today's date. If the deadline appears in an entry marked DONE,
16783 it is not shown. The prefix arg NDAYS can be used to test that many
16784 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
16785 (interactive "P")
16786 (let* ((org-warn-days
16787 (cond
16788 ((equal ndays '(4)) 100000)
16789 (ndays (prefix-numeric-value ndays))
16790 (t (abs org-deadline-warning-days))))
16791 (case-fold-search nil)
16792 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
16793 (callback
16794 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
16796 (message "%d deadlines past-due or due within %d days"
16797 (org-occur regexp nil callback)
16798 org-warn-days)))
16800 (defsubst org-re-timestamp (type)
16801 "Return a regexp for timestamp TYPE.
16802 Allowed values for TYPE are:
16804 all: all timestamps
16805 active: only active timestamps (<...>)
16806 inactive: only inactive timestamps ([...])
16807 scheduled: only scheduled timestamps
16808 deadline: only deadline timestamps
16809 closed: only closed time-stamps
16811 When TYPE is nil, fall back on returning a regexp that matches
16812 both scheduled and deadline timestamps."
16813 (cond ((eq type 'all) "\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\(?: +[^]+0-9> \n -]+\\)?\\(?: +[0-9]\\{1,2\\}:[0-9]\\{2\\}\\)?\\)")
16814 ((eq type 'active) org-ts-regexp)
16815 ((eq type 'inactive) "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]")
16816 ((eq type 'scheduled) (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
16817 ((eq type 'deadline) (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
16818 ((eq type 'closed) (concat org-closed-string " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]"))
16819 ((eq type 'scheduled-or-deadline)
16820 (concat "\\<\\(?:" org-deadline-string "\\|" org-scheduled-string "\\) *<\\([^>]+\\)>"))))
16822 (defun org-check-before-date (date)
16823 "Check if there are deadlines or scheduled entries before DATE."
16824 (interactive (list (org-read-date)))
16825 (let ((case-fold-search nil)
16826 (regexp (org-re-timestamp org-ts-type))
16827 (callback
16828 (lambda () (time-less-p
16829 (org-time-string-to-time (match-string 1))
16830 (org-time-string-to-time date)))))
16831 (message "%d entries before %s"
16832 (org-occur regexp nil callback) date)))
16834 (defun org-check-after-date (date)
16835 "Check if there are deadlines or scheduled entries after DATE."
16836 (interactive (list (org-read-date)))
16837 (let ((case-fold-search nil)
16838 (regexp (org-re-timestamp org-ts-type))
16839 (callback
16840 (lambda () (not
16841 (time-less-p
16842 (org-time-string-to-time (match-string 1))
16843 (org-time-string-to-time date))))))
16844 (message "%d entries after %s"
16845 (org-occur regexp nil callback) date)))
16847 (defun org-check-dates-range (start-date end-date)
16848 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
16849 (interactive (list (org-read-date nil nil nil "Range starts")
16850 (org-read-date nil nil nil "Range end")))
16851 (let ((case-fold-search nil)
16852 (regexp (org-re-timestamp org-ts-type))
16853 (callback
16854 (lambda ()
16855 (let ((match (match-string 1)))
16856 (and
16857 (not (time-less-p
16858 (org-time-string-to-time match)
16859 (org-time-string-to-time start-date)))
16860 (time-less-p
16861 (org-time-string-to-time match)
16862 (org-time-string-to-time end-date)))))))
16863 (message "%d entries between %s and %s"
16864 (org-occur regexp nil callback) start-date end-date)))
16866 (defun org-evaluate-time-range (&optional to-buffer)
16867 "Evaluate a time range by computing the difference between start and end.
16868 Normally the result is just printed in the echo area, but with prefix arg
16869 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
16870 If the time range is actually in a table, the result is inserted into the
16871 next column.
16872 For time difference computation, a year is assumed to be exactly 365
16873 days in order to avoid rounding problems."
16874 (interactive "P")
16876 (org-clock-update-time-maybe)
16877 (save-excursion
16878 (unless (org-at-date-range-p t)
16879 (goto-char (point-at-bol))
16880 (re-search-forward org-tr-regexp-both (point-at-eol) t))
16881 (if (not (org-at-date-range-p t))
16882 (user-error "Not at a time-stamp range, and none found in current line")))
16883 (let* ((ts1 (match-string 1))
16884 (ts2 (match-string 2))
16885 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
16886 (match-end (match-end 0))
16887 (time1 (org-time-string-to-time ts1))
16888 (time2 (org-time-string-to-time ts2))
16889 (t1 (org-float-time time1))
16890 (t2 (org-float-time time2))
16891 (diff (abs (- t2 t1)))
16892 (negative (< (- t2 t1) 0))
16893 ;; (ys (floor (* 365 24 60 60)))
16894 (ds (* 24 60 60))
16895 (hs (* 60 60))
16896 (fy "%dy %dd %02d:%02d")
16897 (fy1 "%dy %dd")
16898 (fd "%dd %02d:%02d")
16899 (fd1 "%dd")
16900 (fh "%02d:%02d")
16901 y d h m align)
16902 (if havetime
16903 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
16905 d (floor (/ diff ds)) diff (mod diff ds)
16906 h (floor (/ diff hs)) diff (mod diff hs)
16907 m (floor (/ diff 60)))
16908 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
16910 d (floor (+ (/ diff ds) 0.5))
16911 h 0 m 0))
16912 (if (not to-buffer)
16913 (message "%s" (org-make-tdiff-string y d h m))
16914 (if (org-at-table-p)
16915 (progn
16916 (goto-char match-end)
16917 (setq align t)
16918 (and (looking-at " *|") (goto-char (match-end 0))))
16919 (goto-char match-end))
16920 (if (looking-at
16921 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
16922 (replace-match ""))
16923 (if negative (insert " -"))
16924 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
16925 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
16926 (insert " " (format fh h m))))
16927 (if align (org-table-align))
16928 (message "Time difference inserted")))))
16930 (defun org-make-tdiff-string (y d h m)
16931 (let ((fmt "")
16932 (l nil))
16933 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
16934 l (push y l)))
16935 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
16936 l (push d l)))
16937 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
16938 l (push h l)))
16939 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
16940 l (push m l)))
16941 (apply 'format fmt (nreverse l))))
16943 (defun org-time-string-to-time (s &optional buffer pos)
16944 "Convert a timestamp string into internal time."
16945 (condition-case errdata
16946 (apply 'encode-time (org-parse-time-string s))
16947 (error (error "Bad timestamp `%s'%s\nError was: %s"
16948 s (if (not (and buffer pos))
16950 (format " at %d in buffer `%s'" pos buffer))
16951 (cdr errdata)))))
16953 (defun org-time-string-to-seconds (s)
16954 "Convert a timestamp string to a number of seconds."
16955 (org-float-time (org-time-string-to-time s)))
16957 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
16958 "Convert a time stamp to an absolute day number.
16959 If there is a specifier for a cyclic time stamp, get the closest
16960 date to DAYNR.
16961 PREFER and SHOW-ALL are passed through to `org-closest-date'.
16962 The variable `date' is bound by the calendar when this is called."
16963 (cond
16964 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
16965 (if (org-diary-sexp-entry (match-string 1 s) "" date)
16966 daynr
16967 (+ daynr 1000)))
16968 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
16969 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
16970 (time-to-days (current-time))) (match-string 0 s)
16971 prefer show-all))
16972 (t (time-to-days
16973 (condition-case errdata
16974 (apply 'encode-time (org-parse-time-string s))
16975 (error (error "Bad timestamp `%s'%s\nError was: %s"
16976 s (if (not (and buffer pos))
16978 (format " at %d in buffer `%s'" pos buffer))
16979 (cdr errdata))))))))
16981 (defun org-days-to-iso-week (days)
16982 "Return the iso week number."
16983 (require 'cal-iso)
16984 (car (calendar-iso-from-absolute days)))
16986 (defun org-small-year-to-year (year)
16987 "Convert 2-digit years into 4-digit years.
16988 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2037.
16989 The year 2000 cannot be abbreviated. Any year larger than 99
16990 is returned unchanged."
16991 (if (< year 38)
16992 (setq year (+ 2000 year))
16993 (if (< year 100)
16994 (setq year (+ 1900 year))))
16995 year)
16997 (defun org-time-from-absolute (d)
16998 "Return the time corresponding to date D.
16999 D may be an absolute day number, or a calendar-type list (month day year)."
17000 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17001 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17003 (defun org-calendar-holiday ()
17004 "List of holidays, for Diary display in Org-mode."
17005 (require 'holidays)
17006 (let ((hl (funcall
17007 (if (fboundp 'calendar-check-holidays)
17008 'calendar-check-holidays 'check-calendar-holidays) date)))
17009 (if hl (mapconcat 'identity hl "; "))))
17011 (defun org-diary-sexp-entry (sexp entry date)
17012 "Process a SEXP diary ENTRY for DATE."
17013 (require 'diary-lib)
17014 (let ((result (if calendar-debug-sexp
17015 (let ((stack-trace-on-error t))
17016 (eval (car (read-from-string sexp))))
17017 (condition-case nil
17018 (eval (car (read-from-string sexp)))
17019 (error
17020 (beep)
17021 (message "Bad sexp at line %d in %s: %s"
17022 (org-current-line)
17023 (buffer-file-name) sexp)
17024 (sleep-for 2))))))
17025 (cond ((stringp result) (split-string result "; "))
17026 ((and (consp result)
17027 (not (consp (cdr result)))
17028 (stringp (cdr result))) (cdr result))
17029 ((and (consp result)
17030 (stringp (car result))) result)
17031 (result entry))))
17033 (defun org-diary-to-ical-string (frombuf)
17034 "Get iCalendar entries from diary entries in buffer FROMBUF.
17035 This uses the icalendar.el library."
17036 (let* ((tmpdir (if (featurep 'xemacs)
17037 (temp-directory)
17038 temporary-file-directory))
17039 (tmpfile (make-temp-name
17040 (expand-file-name "orgics" tmpdir)))
17041 buf rtn b e)
17042 (with-current-buffer frombuf
17043 (icalendar-export-region (point-min) (point-max) tmpfile)
17044 (setq buf (find-buffer-visiting tmpfile))
17045 (set-buffer buf)
17046 (goto-char (point-min))
17047 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17048 (setq b (match-beginning 0)))
17049 (goto-char (point-max))
17050 (if (re-search-backward "^END:VEVENT" nil t)
17051 (setq e (match-end 0)))
17052 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17053 (kill-buffer buf)
17054 (delete-file tmpfile)
17055 rtn))
17057 (defun org-closest-date (start current change prefer show-all)
17058 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17059 When PREFER is `past', return a date that is either CURRENT or past.
17060 When PREFER is `future', return a date that is either CURRENT or future.
17061 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17062 ;; Make the proper lists from the dates
17063 (catch 'exit
17064 (let ((a1 '(("h" . hour)
17065 ("d" . day)
17066 ("w" . week)
17067 ("m" . month)
17068 ("y" . year)))
17069 (shour (nth 2 (org-parse-time-string start)))
17070 dn dw sday cday n1 n2 n0
17071 d m y y1 y2 date1 date2 nmonths nm ny m2)
17073 (setq start (org-date-to-gregorian start)
17074 current (org-date-to-gregorian
17075 (if show-all
17076 current
17077 (time-to-days (current-time))))
17078 sday (calendar-absolute-from-gregorian start)
17079 cday (calendar-absolute-from-gregorian current))
17081 (if (<= cday sday) (throw 'exit sday))
17083 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17084 (setq dn (string-to-number (match-string 1 change))
17085 dw (cdr (assoc (match-string 2 change) a1)))
17086 (user-error "Invalid change specifier: %s" change))
17087 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17088 (cond
17089 ((eq dw 'hour)
17090 (let ((missing-hours
17091 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17092 dn)))
17093 (setq n1 (if (zerop missing-hours) cday
17094 (- cday (1+ (floor (/ missing-hours 24)))))
17095 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17096 ((eq dw 'day)
17097 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17098 n2 (+ n1 dn)))
17099 ((eq dw 'year)
17100 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17101 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17102 (setq date1 (list m d y1)
17103 n1 (calendar-absolute-from-gregorian date1)
17104 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17105 n2 (calendar-absolute-from-gregorian date2)))
17106 ((eq dw 'month)
17107 ;; approx number of month between the two dates
17108 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17109 ;; How often does dn fit in there?
17110 (setq d (nth 1 start) m (car start) y (nth 2 start)
17111 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17112 m (+ m nm)
17113 ny (floor (/ m 12))
17114 y (+ y ny)
17115 m (- m (* ny 12)))
17116 (while (> m 12) (setq m (- m 12) y (1+ y)))
17117 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17118 (setq m2 (+ m dn) y2 y)
17119 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17120 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17121 (while (<= n2 cday)
17122 (setq n1 n2 m m2 y y2)
17123 (setq m2 (+ m dn) y2 y)
17124 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17125 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17126 ;; Make sure n1 is the earlier date
17127 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17128 (if show-all
17129 (cond
17130 ((eq prefer 'past) (if (= cday n2) n2 n1))
17131 ((eq prefer 'future) (if (= cday n1) n1 n2))
17132 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17133 (cond
17134 ((eq prefer 'past) (if (= cday n2) n2 n1))
17135 ((eq prefer 'future) (if (= cday n1) n1 n2))
17136 (t (if (= cday n1) n1 n2)))))))
17138 (defun org-date-to-gregorian (date)
17139 "Turn any specification of DATE into a Gregorian date for the calendar."
17140 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17141 ((and (listp date) (= (length date) 3)) date)
17142 ((stringp date)
17143 (setq date (org-parse-time-string date))
17144 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17145 ((listp date)
17146 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17148 (defun org-parse-time-string (s &optional nodefault)
17149 "Parse the standard Org-mode time string.
17150 This should be a lot faster than the normal `parse-time-string'.
17151 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17152 hour and minute fields will be nil if not given."
17153 (cond ((string-match org-ts-regexp0 s)
17154 (list 0
17155 (if (or (match-beginning 8) (not nodefault))
17156 (string-to-number (or (match-string 8 s) "0")))
17157 (if (or (match-beginning 7) (not nodefault))
17158 (string-to-number (or (match-string 7 s) "0")))
17159 (string-to-number (match-string 4 s))
17160 (string-to-number (match-string 3 s))
17161 (string-to-number (match-string 2 s))
17162 nil nil nil))
17163 ((string-match "^<[^>]+>$" s)
17164 (decode-time (seconds-to-time (org-matcher-time s))))
17165 (t (error "Not a standard Org-mode time string: %s" s))))
17167 (defun org-timestamp-up (&optional arg)
17168 "Increase the date item at the cursor by one.
17169 If the cursor is on the year, change the year. If it is on the month,
17170 the day or the time, change that.
17171 With prefix ARG, change by that many units."
17172 (interactive "p")
17173 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17175 (defun org-timestamp-down (&optional arg)
17176 "Decrease the date item at the cursor by one.
17177 If the cursor is on the year, change the year. If it is on the month,
17178 the day or the time, change that.
17179 With prefix ARG, change by that many units."
17180 (interactive "p")
17181 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17183 (defun org-timestamp-up-day (&optional arg)
17184 "Increase the date in the time stamp by one day.
17185 With prefix ARG, change that many days."
17186 (interactive "p")
17187 (if (and (not (org-at-timestamp-p t))
17188 (org-at-heading-p))
17189 (org-todo 'up)
17190 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17192 (defun org-timestamp-down-day (&optional arg)
17193 "Decrease the date in the time stamp by one day.
17194 With prefix ARG, change that many days."
17195 (interactive "p")
17196 (if (and (not (org-at-timestamp-p t))
17197 (org-at-heading-p))
17198 (org-todo 'down)
17199 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17201 (defun org-at-timestamp-p (&optional inactive-ok)
17202 "Determine if the cursor is in or at a timestamp."
17203 (interactive)
17204 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17205 (pos (point))
17206 (ans (or (looking-at tsr)
17207 (save-excursion
17208 (skip-chars-backward "^[<\n\r\t")
17209 (if (> (point) (point-min)) (backward-char 1))
17210 (and (looking-at tsr)
17211 (> (- (match-end 0) pos) -1))))))
17212 (and ans
17213 (boundp 'org-ts-what)
17214 (setq org-ts-what
17215 (cond
17216 ((= pos (match-beginning 0)) 'bracket)
17217 ;; Point is considered to be "on the bracket" whether
17218 ;; it's really on it or right after it.
17219 ((= pos (1- (match-end 0))) 'bracket)
17220 ((= pos (match-end 0)) 'after)
17221 ((org-pos-in-match-range pos 2) 'year)
17222 ((org-pos-in-match-range pos 3) 'month)
17223 ((org-pos-in-match-range pos 7) 'hour)
17224 ((org-pos-in-match-range pos 8) 'minute)
17225 ((or (org-pos-in-match-range pos 4)
17226 (org-pos-in-match-range pos 5)) 'day)
17227 ((and (> pos (or (match-end 8) (match-end 5)))
17228 (< pos (match-end 0)))
17229 (- pos (or (match-end 8) (match-end 5))))
17230 (t 'day))))
17231 ans))
17233 (defun org-toggle-timestamp-type ()
17234 "Toggle the type (<active> or [inactive]) of a time stamp."
17235 (interactive)
17236 (when (org-at-timestamp-p t)
17237 (let ((beg (match-beginning 0)) (end (match-end 0))
17238 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17239 (save-excursion
17240 (goto-char beg)
17241 (while (re-search-forward "[][<>]" end t)
17242 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17243 t t)))
17244 (message "Timestamp is now %sactive"
17245 (if (equal (char-after beg) ?<) "" "in")))))
17247 (defun org-at-clock-log-p nil
17248 "Is the cursor on the clock log line?"
17249 (save-excursion
17250 (move-beginning-of-line 1)
17251 (looking-at "^[ \t]*CLOCK:")))
17253 (defvar org-clock-history) ; defined in org-clock.el
17254 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17255 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17256 "Change the date in the time stamp at point.
17257 The date will be changed by N times WHAT. WHAT can be `day', `month',
17258 `year', `minute', `second'. If WHAT is not given, the cursor position
17259 in the timestamp determines what will be changed.
17260 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17261 (let ((origin (point)) origin-cat
17262 with-hm inactive
17263 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17264 org-ts-what
17265 extra rem
17266 ts time time0 fixnext clrgx)
17267 (if (not (org-at-timestamp-p t))
17268 (user-error "Not at a timestamp"))
17269 (if (and (not what) (eq org-ts-what 'bracket))
17270 (org-toggle-timestamp-type)
17271 ;; Point isn't on brackets. Remember the part of the time-stamp
17272 ;; the point was in. Indeed, size of time-stamps may change,
17273 ;; but point must be kept in the same category nonetheless.
17274 (setq origin-cat org-ts-what)
17275 (if (and (not what) (not (eq org-ts-what 'day))
17276 org-display-custom-times
17277 (get-text-property (point) 'display)
17278 (not (get-text-property (1- (point)) 'display)))
17279 (setq org-ts-what 'day))
17280 (setq org-ts-what (or what org-ts-what)
17281 inactive (= (char-after (match-beginning 0)) ?\[)
17282 ts (match-string 0))
17283 (replace-match "")
17284 (when (string-match
17285 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17287 (setq extra (match-string 1 ts))
17288 (if suppress-tmp-delay
17289 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17290 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17291 (setq with-hm t))
17292 (setq time0 (org-parse-time-string ts))
17293 (when (and updown
17294 (eq org-ts-what 'minute)
17295 (not current-prefix-arg))
17296 ;; This looks like s-up and s-down. Change by one rounding step.
17297 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17298 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17299 (setcar (cdr time0) (+ (nth 1 time0)
17300 (if (> n 0) (- rem) (- dm rem))))))
17301 (setq time
17302 (encode-time (or (car time0) 0)
17303 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17304 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17305 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17306 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17307 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17308 (nthcdr 6 time0)))
17309 (when (and (member org-ts-what '(hour minute))
17310 extra
17311 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17312 (setq extra (org-modify-ts-extra
17313 extra
17314 (if (eq org-ts-what 'hour) 2 5)
17315 n dm)))
17316 (when (integerp org-ts-what)
17317 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17318 (if (eq what 'calendar)
17319 (let ((cal-date (org-get-date-from-calendar)))
17320 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17321 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17322 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17323 (setcar time0 (or (car time0) 0))
17324 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17325 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17326 (setq time (apply 'encode-time time0))))
17327 ;; Insert the new time-stamp, and ensure point stays in the same
17328 ;; category as before (i.e. not after the last position in that
17329 ;; category).
17330 (let ((pos (point)))
17331 ;; Stay before inserted string. `save-excursion' is of no use.
17332 (setq org-last-changed-timestamp
17333 (org-insert-time-stamp time with-hm inactive nil nil extra))
17334 (goto-char pos))
17335 (save-match-data
17336 (looking-at org-ts-regexp3)
17337 (goto-char (cond
17338 ;; `day' category ends before `hour' if any, or at
17339 ;; the end of the day name.
17340 ((eq origin-cat 'day)
17341 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17342 ((eq origin-cat 'hour) (min (match-end 7) origin))
17343 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17344 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17345 ;; `year' and `month' have both fixed size: point
17346 ;; couldn't have moved into another part.
17347 (t origin))))
17348 ;; Update clock if on a CLOCK line.
17349 (org-clock-update-time-maybe)
17350 ;; Maybe adjust the closest clock in `org-clock-history'
17351 (when org-clock-adjust-closest
17352 (if (not (and (org-at-clock-log-p)
17353 (< 1 (length (delq nil (mapcar 'marker-position
17354 org-clock-history))))))
17355 (message "No clock to adjust")
17356 (cond ((save-excursion ; fix previous clock?
17357 (re-search-backward org-ts-regexp0 nil t)
17358 (org-looking-back (concat org-clock-string " \\[")))
17359 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17360 ((save-excursion ; fix next clock?
17361 (re-search-backward org-ts-regexp0 nil t)
17362 (looking-at (concat org-ts-regexp0 "\\] =>")))
17363 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17364 (save-window-excursion
17365 ;; Find closest clock to point, adjust the previous/next one in history
17366 (let* ((p (save-excursion (org-back-to-heading t)))
17367 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17368 (clfixnth
17369 (+ fixnext (- (length cl) (or (length (member (apply #'min cl) cl)) 100))))
17370 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17371 (if (not clfixpos)
17372 (message "No clock to adjust")
17373 (save-excursion
17374 (org-goto-marker-or-bmk clfixpos)
17375 (org-show-subtree)
17376 (when (re-search-forward clrgx nil t)
17377 (goto-char (match-beginning 1))
17378 (let (org-clock-adjust-closest)
17379 (org-timestamp-change n org-ts-what updown))
17380 (message "Clock adjusted in %s for heading: %s"
17381 (file-name-nondirectory (buffer-file-name))
17382 (org-get-heading t t)))))))))
17383 ;; Try to recenter the calendar window, if any.
17384 (if (and org-calendar-follow-timestamp-change
17385 (get-buffer-window "*Calendar*" t)
17386 (memq org-ts-what '(day month year)))
17387 (org-recenter-calendar (time-to-days time))))))
17389 (defun org-modify-ts-extra (s pos n dm)
17390 "Change the different parts of the lead-time and repeat fields in timestamp."
17391 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17392 ng h m new rem)
17393 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17394 (cond
17395 ((or (org-pos-in-match-range pos 2)
17396 (org-pos-in-match-range pos 3))
17397 (setq m (string-to-number (match-string 3 s))
17398 h (string-to-number (match-string 2 s)))
17399 (if (org-pos-in-match-range pos 2)
17400 (setq h (+ h n))
17401 (setq n (* dm (org-no-warnings (signum n))))
17402 (when (not (= 0 (setq rem (% m dm))))
17403 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17404 (setq m (+ m n)))
17405 (if (< m 0) (setq m (+ m 60) h (1- h)))
17406 (if (> m 59) (setq m (- m 60) h (1+ h)))
17407 (setq h (min 24 (max 0 h)))
17408 (setq ng 1 new (format "-%02d:%02d" h m)))
17409 ((org-pos-in-match-range pos 6)
17410 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17411 ((org-pos-in-match-range pos 5)
17412 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17414 ((org-pos-in-match-range pos 9)
17415 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17416 ((org-pos-in-match-range pos 8)
17417 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17419 (when ng
17420 (setq s (concat
17421 (substring s 0 (match-beginning ng))
17423 (substring s (match-end ng))))))
17426 (defun org-recenter-calendar (date)
17427 "If the calendar is visible, recenter it to DATE."
17428 (let ((cwin (get-buffer-window "*Calendar*" t)))
17429 (when cwin
17430 (let ((calendar-move-hook nil))
17431 (with-selected-window cwin
17432 (calendar-goto-date (if (listp date) date
17433 (calendar-gregorian-from-absolute date))))))))
17435 (defun org-goto-calendar (&optional arg)
17436 "Go to the Emacs calendar at the current date.
17437 If there is a time stamp in the current line, go to that date.
17438 A prefix ARG can be used to force the current date."
17439 (interactive "P")
17440 (let ((tsr org-ts-regexp) diff
17441 (calendar-move-hook nil)
17442 (calendar-view-holidays-initially-flag nil)
17443 (calendar-view-diary-initially-flag nil))
17444 (if (or (org-at-timestamp-p)
17445 (save-excursion
17446 (beginning-of-line 1)
17447 (looking-at (concat ".*" tsr))))
17448 (let ((d1 (time-to-days (current-time)))
17449 (d2 (time-to-days
17450 (org-time-string-to-time (match-string 1)))))
17451 (setq diff (- d2 d1))))
17452 (calendar)
17453 (calendar-goto-today)
17454 (if (and diff (not arg)) (calendar-forward-day diff))))
17456 (defun org-get-date-from-calendar ()
17457 "Return a list (month day year) of date at point in calendar."
17458 (with-current-buffer "*Calendar*"
17459 (save-match-data
17460 (calendar-cursor-to-date))))
17462 (defun org-date-from-calendar ()
17463 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17464 If there is already a time stamp at the cursor position, update it."
17465 (interactive)
17466 (if (org-at-timestamp-p t)
17467 (org-timestamp-change 0 'calendar)
17468 (let ((cal-date (org-get-date-from-calendar)))
17469 (org-insert-time-stamp
17470 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17472 (defcustom org-effort-durations
17473 `(("h" . 60)
17474 ("d" . ,(* 60 8))
17475 ("w" . ,(* 60 8 5))
17476 ("m" . ,(* 60 8 5 4))
17477 ("y" . ,(* 60 8 5 40)))
17478 "Conversion factor to minutes for an effort modifier.
17480 Each entry has the form (MODIFIER . MINUTES).
17482 In an effort string, a number followed by MODIFIER is multiplied
17483 by the specified number of MINUTES to obtain an effort in
17484 minutes.
17486 For example, if the value of this variable is ((\"hours\" . 60)), then an
17487 effort string \"2hours\" is equivalent to 120 minutes."
17488 :group 'org-agenda
17489 :version "24.1"
17490 :type '(alist :key-type (string :tag "Modifier")
17491 :value-type (number :tag "Minutes")))
17493 (defun org-minutes-to-clocksum-string (m)
17494 "Format number of minutes as a clocksum string.
17495 The format is determined by `org-time-clocksum-format',
17496 `org-time-clocksum-use-fractional' and
17497 `org-time-clocksum-fractional-format' and
17498 `org-time-clocksum-use-effort-durations'."
17499 (let ((clocksum "")
17500 (m (round m)) ; Don't allow fractions of minutes
17501 h d w mo y fmt n)
17502 (setq h (if org-time-clocksum-use-effort-durations
17503 (cdr (assoc "h" org-effort-durations)) 60)
17504 d (if org-time-clocksum-use-effort-durations
17505 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
17506 w (if org-time-clocksum-use-effort-durations
17507 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
17508 mo (if org-time-clocksum-use-effort-durations
17509 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
17510 y (if org-time-clocksum-use-effort-durations
17511 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
17512 ;; fractional format
17513 (if org-time-clocksum-use-fractional
17514 (cond
17515 ;; single format string
17516 ((stringp org-time-clocksum-fractional-format)
17517 (format org-time-clocksum-fractional-format (/ m (float h))))
17518 ;; choice of fractional formats for different time units
17519 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
17520 (> (/ (truncate m) (* y d h)) 0))
17521 (format fmt (/ m (* y d (float h)))))
17522 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
17523 (> (/ (truncate m) (* mo d h)) 0))
17524 (format fmt (/ m (* mo d (float h)))))
17525 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17526 (> (/ (truncate m) (* w d h)) 0))
17527 (format fmt (/ m (* w d (float h)))))
17528 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
17529 (> (/ (truncate m) (* d h)) 0))
17530 (format fmt (/ m (* d (float h)))))
17531 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17532 (> (/ (truncate m) h) 0))
17533 (format fmt (/ m (float h))))
17534 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
17535 (format fmt m))
17536 ;; fall back to smallest time unit with a format
17537 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17538 (format fmt (/ m (float h))))
17539 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
17540 (format fmt (/ m (* d (float h)))))
17541 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17542 (format fmt (/ m (* w d (float h)))))
17543 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
17544 (format fmt (/ m (* mo d (float h)))))
17545 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
17546 (format fmt (/ m (* y d (float h))))))
17547 ;; standard (non-fractional) format, with single format string
17548 (if (stringp org-time-clocksum-format)
17549 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
17550 ;; separate formats components
17551 (and (setq fmt (plist-get org-time-clocksum-format :years))
17552 (or (> (setq n (/ (truncate m) (* y d h))) 0)
17553 (plist-get org-time-clocksum-format :require-years))
17554 (setq clocksum (concat clocksum (format fmt n))
17555 m (- m (* n y d h))))
17556 (and (setq fmt (plist-get org-time-clocksum-format :months))
17557 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
17558 (plist-get org-time-clocksum-format :require-months))
17559 (setq clocksum (concat clocksum (format fmt n))
17560 m (- m (* n mo d h))))
17561 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
17562 (or (> (setq n (/ (truncate m) (* w d h))) 0)
17563 (plist-get org-time-clocksum-format :require-weeks))
17564 (setq clocksum (concat clocksum (format fmt n))
17565 m (- m (* n w d h))))
17566 (and (setq fmt (plist-get org-time-clocksum-format :days))
17567 (or (> (setq n (/ (truncate m) (* d h))) 0)
17568 (plist-get org-time-clocksum-format :require-days))
17569 (setq clocksum (concat clocksum (format fmt n))
17570 m (- m (* n d h))))
17571 (and (setq fmt (plist-get org-time-clocksum-format :hours))
17572 (or (> (setq n (/ (truncate m) h)) 0)
17573 (plist-get org-time-clocksum-format :require-hours))
17574 (setq clocksum (concat clocksum (format fmt n))
17575 m (- m (* n h))))
17576 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
17577 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
17578 (setq clocksum (concat clocksum (format fmt m))))
17579 ;; return formatted time duration
17580 clocksum))))
17582 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
17583 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
17584 "Org mode version 8.0")
17586 (defun org-hours-to-clocksum-string (n)
17587 (org-minutes-to-clocksum-string (* n 60)))
17589 (defun org-hh:mm-string-to-minutes (s)
17590 "Convert a string H:MM to a number of minutes.
17591 If the string is just a number, interpret it as minutes.
17592 In fact, the first hh:mm or number in the string will be taken,
17593 there can be extra stuff in the string.
17594 If no number is found, the return value is 0."
17595 (cond
17596 ((integerp s) s)
17597 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
17598 (+ (* (string-to-number (match-string 1 s)) 60)
17599 (string-to-number (match-string 2 s))))
17600 ((string-match "\\([0-9]+\\)" s)
17601 (string-to-number (match-string 1 s)))
17602 (t 0)))
17604 (defcustom org-image-actual-width t
17605 "Should we use the actual width of images when inlining them?
17607 When set to `t', always use the image width.
17609 When set to a number, use imagemagick (when available) to set
17610 the image's width to this value.
17612 When set to a number in a list, try to get the width from any
17613 #+ATTR.* keyword if it matches a width specification like
17615 #+ATTR_HTML: :width 300px
17617 and fall back on that number if none is found.
17619 When set to nil, try to get the width from an #+ATTR.* keyword
17620 and fall back on the original width if none is found.
17622 This requires Emacs >= 24.1, build with imagemagick support."
17623 :group 'org-appearance
17624 :version "24.4"
17625 :package-version '(Org . "8.0")
17626 :type '(choice
17627 (const :tag "Use the image width" t)
17628 (integer :tag "Use a number of pixels")
17629 (list :tag "Use #+ATTR* or a number of pixels" (integer))
17630 (const :tag "Use #+ATTR* or don't resize" nil)))
17632 (defcustom org-agenda-inhibit-startup nil
17633 "Inhibit startup when preparing agenda buffers.
17634 When this variable is `t' (the default), the initialization of
17635 the Org agenda buffers is inhibited: e.g. the visibility state
17636 is not set, the tables are not re-aligned, etc."
17637 :type 'boolean
17638 :version "24.3"
17639 :group 'org-agenda)
17641 (defun org-duration-string-to-minutes (s &optional output-to-string)
17642 "Convert a duration string S to minutes.
17644 A bare number is interpreted as minutes, modifiers can be set by
17645 customizing `org-effort-durations' (which see).
17647 Entries containing a colon are interpreted as H:MM by
17648 `org-hh:mm-string-to-minutes'."
17649 (let ((result 0)
17650 (re (concat "\\([0-9.]+\\) *\\("
17651 (regexp-opt (mapcar 'car org-effort-durations))
17652 "\\)")))
17653 (while (string-match re s)
17654 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
17655 (string-to-number (match-string 1 s))))
17656 (setq s (replace-match "" nil t s)))
17657 (setq result (floor result))
17658 (incf result (org-hh:mm-string-to-minutes s))
17659 (if output-to-string (number-to-string result) result)))
17661 ;;;; Files
17663 (defun org-save-all-org-buffers ()
17664 "Save all Org-mode buffers without user confirmation."
17665 (interactive)
17666 (message "Saving all Org-mode buffers...")
17667 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
17668 (when (featurep 'org-id) (org-id-locations-save))
17669 (message "Saving all Org-mode buffers... done"))
17671 (defun org-revert-all-org-buffers ()
17672 "Revert all Org-mode buffers.
17673 Prompt for confirmation when there are unsaved changes.
17674 Be sure you know what you are doing before letting this function
17675 overwrite your changes.
17677 This function is useful in a setup where one tracks org files
17678 with a version control system, to revert on one machine after pulling
17679 changes from another. I believe the procedure must be like this:
17681 1. M-x org-save-all-org-buffers
17682 2. Pull changes from the other machine, resolve conflicts
17683 3. M-x org-revert-all-org-buffers"
17684 (interactive)
17685 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
17686 (user-error "Abort"))
17687 (save-excursion
17688 (save-window-excursion
17689 (mapc
17690 (lambda (b)
17691 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
17692 (with-current-buffer b buffer-file-name))
17693 (org-pop-to-buffer-same-window b)
17694 (revert-buffer t 'no-confirm)))
17695 (buffer-list))
17696 (when (and (featurep 'org-id) org-id-track-globally)
17697 (org-id-locations-load)))))
17699 ;;;; Agenda files
17701 ;;;###autoload
17702 (defun org-switchb (&optional arg)
17703 "Switch between Org buffers.
17704 With one prefix argument, restrict available buffers to files.
17705 With two prefix arguments, restrict available buffers to agenda files.
17707 Defaults to `iswitchb' for buffer name completion.
17708 Set `org-completion-use-ido' to make it use ido instead."
17709 (interactive "P")
17710 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
17711 ((equal arg '(16)) (org-buffer-list 'agenda))
17712 (t (org-buffer-list))))
17713 (org-completion-use-iswitchb org-completion-use-iswitchb)
17714 (org-completion-use-ido org-completion-use-ido))
17715 (unless (or org-completion-use-ido org-completion-use-iswitchb)
17716 (setq org-completion-use-iswitchb t))
17717 (org-pop-to-buffer-same-window
17718 (org-icompleting-read "Org buffer: "
17719 (mapcar 'list (mapcar 'buffer-name blist))
17720 nil t))))
17722 ;;; Define some older names previously used for this functionality
17723 ;;;###autoload
17724 (defalias 'org-ido-switchb 'org-switchb)
17725 ;;;###autoload
17726 (defalias 'org-iswitchb 'org-switchb)
17728 (defun org-buffer-list (&optional predicate exclude-tmp)
17729 "Return a list of Org buffers.
17730 PREDICATE can be `export', `files' or `agenda'.
17732 export restrict the list to Export buffers.
17733 files restrict the list to buffers visiting Org files.
17734 agenda restrict the list to buffers visiting agenda files.
17736 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
17737 (let* ((bfn nil)
17738 (agenda-files (and (eq predicate 'agenda)
17739 (mapcar 'file-truename (org-agenda-files t))))
17740 (filter
17741 (cond
17742 ((eq predicate 'files)
17743 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
17744 ((eq predicate 'export)
17745 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
17746 ((eq predicate 'agenda)
17747 (lambda (b)
17748 (with-current-buffer b
17749 (and (derived-mode-p 'org-mode)
17750 (setq bfn (buffer-file-name b))
17751 (member (file-truename bfn) agenda-files)))))
17752 (t (lambda (b) (with-current-buffer b
17753 (or (derived-mode-p 'org-mode)
17754 (string-match "\*Org .*Export"
17755 (buffer-name b)))))))))
17756 (delq nil
17757 (mapcar
17758 (lambda(b)
17759 (if (and (funcall filter b)
17760 (or (not exclude-tmp)
17761 (not (string-match "tmp" (buffer-name b)))))
17763 nil))
17764 (buffer-list)))))
17766 (defun org-agenda-files (&optional unrestricted archives)
17767 "Get the list of agenda files.
17768 Optional UNRESTRICTED means return the full list even if a restriction
17769 is currently in place.
17770 When ARCHIVES is t, include all archive files that are really being
17771 used by the agenda files. If ARCHIVE is `ifmode', do this only if
17772 `org-agenda-archives-mode' is t."
17773 (let ((files
17774 (cond
17775 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
17776 ((stringp org-agenda-files) (org-read-agenda-file-list))
17777 ((listp org-agenda-files) org-agenda-files)
17778 (t (error "Invalid value of `org-agenda-files'")))))
17779 (setq files (apply 'append
17780 (mapcar (lambda (f)
17781 (if (file-directory-p f)
17782 (directory-files
17783 f t org-agenda-file-regexp)
17784 (list f)))
17785 files)))
17786 (when org-agenda-skip-unavailable-files
17787 (setq files (delq nil
17788 (mapcar (function
17789 (lambda (file)
17790 (and (file-readable-p file) file)))
17791 files))))
17792 (when (or (eq archives t)
17793 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
17794 (setq files (org-add-archive-files files)))
17795 files))
17797 (defun org-agenda-file-p (&optional file)
17798 "Return non-nil, if FILE is an agenda file.
17799 If FILE is omitted, use the file associated with the current
17800 buffer."
17801 (member (or file (buffer-file-name))
17802 (org-agenda-files t)))
17804 (defun org-edit-agenda-file-list ()
17805 "Edit the list of agenda files.
17806 Depending on setup, this either uses customize to edit the variable
17807 `org-agenda-files', or it visits the file that is holding the list. In the
17808 latter case, the buffer is set up in a way that saving it automatically kills
17809 the buffer and restores the previous window configuration."
17810 (interactive)
17811 (if (stringp org-agenda-files)
17812 (let ((cw (current-window-configuration)))
17813 (find-file org-agenda-files)
17814 (org-set-local 'org-window-configuration cw)
17815 (org-add-hook 'after-save-hook
17816 (lambda ()
17817 (set-window-configuration
17818 (prog1 org-window-configuration
17819 (kill-buffer (current-buffer))))
17820 (org-install-agenda-files-menu)
17821 (message "New agenda file list installed"))
17822 nil 'local)
17823 (message "%s" (substitute-command-keys
17824 "Edit list and finish with \\[save-buffer]")))
17825 (customize-variable 'org-agenda-files)))
17827 (defun org-store-new-agenda-file-list (list)
17828 "Set new value for the agenda file list and save it correctly."
17829 (if (stringp org-agenda-files)
17830 (let ((fe (org-read-agenda-file-list t)) b u)
17831 (while (setq b (find-buffer-visiting org-agenda-files))
17832 (kill-buffer b))
17833 (with-temp-file org-agenda-files
17834 (insert
17835 (mapconcat
17836 (lambda (f) ;; Keep un-expanded entries.
17837 (if (setq u (assoc f fe))
17838 (cdr u)
17840 list "\n")
17841 "\n")))
17842 (let ((org-mode-hook nil) (org-inhibit-startup t)
17843 (org-insert-mode-line-in-empty-file nil))
17844 (setq org-agenda-files list)
17845 (customize-save-variable 'org-agenda-files org-agenda-files))))
17847 (defun org-read-agenda-file-list (&optional pair-with-expansion)
17848 "Read the list of agenda files from a file.
17849 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
17850 filenames, used by `org-store-new-agenda-file-list' to write back
17851 un-expanded file names."
17852 (when (file-directory-p org-agenda-files)
17853 (error "`org-agenda-files' cannot be a single directory"))
17854 (when (stringp org-agenda-files)
17855 (with-temp-buffer
17856 (insert-file-contents org-agenda-files)
17857 (mapcar
17858 (lambda (f)
17859 (let ((e (expand-file-name (substitute-in-file-name f)
17860 org-directory)))
17861 (if pair-with-expansion
17862 (cons e f)
17863 e)))
17864 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
17866 ;;;###autoload
17867 (defun org-cycle-agenda-files ()
17868 "Cycle through the files in `org-agenda-files'.
17869 If the current buffer visits an agenda file, find the next one in the list.
17870 If the current buffer does not, find the first agenda file."
17871 (interactive)
17872 (let* ((fs (org-agenda-files t))
17873 (files (append fs (list (car fs))))
17874 (tcf (if buffer-file-name (file-truename buffer-file-name)))
17875 file)
17876 (unless files (user-error "No agenda files"))
17877 (catch 'exit
17878 (while (setq file (pop files))
17879 (if (equal (file-truename file) tcf)
17880 (when (car files)
17881 (find-file (car files))
17882 (throw 'exit t))))
17883 (find-file (car fs)))
17884 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
17886 (defun org-agenda-file-to-front (&optional to-end)
17887 "Move/add the current file to the top of the agenda file list.
17888 If the file is not present in the list, it is added to the front. If it is
17889 present, it is moved there. With optional argument TO-END, add/move to the
17890 end of the list."
17891 (interactive "P")
17892 (let ((org-agenda-skip-unavailable-files nil)
17893 (file-alist (mapcar (lambda (x)
17894 (cons (file-truename x) x))
17895 (org-agenda-files t)))
17896 (ctf (file-truename
17897 (or buffer-file-name
17898 (user-error "Please save the current buffer to a file"))))
17899 x had)
17900 (setq x (assoc ctf file-alist) had x)
17902 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
17903 (if to-end
17904 (setq file-alist (append (delq x file-alist) (list x)))
17905 (setq file-alist (cons x (delq x file-alist))))
17906 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
17907 (org-install-agenda-files-menu)
17908 (message "File %s to %s of agenda file list"
17909 (if had "moved" "added") (if to-end "end" "front"))))
17911 (defun org-remove-file (&optional file)
17912 "Remove current file from the list of files in variable `org-agenda-files'.
17913 These are the files which are being checked for agenda entries.
17914 Optional argument FILE means use this file instead of the current."
17915 (interactive)
17916 (let* ((org-agenda-skip-unavailable-files nil)
17917 (file (or file buffer-file-name
17918 (user-error "Current buffer does not visit a file")))
17919 (true-file (file-truename file))
17920 (afile (abbreviate-file-name file))
17921 (files (delq nil (mapcar
17922 (lambda (x)
17923 (if (equal true-file
17924 (file-truename x))
17925 nil x))
17926 (org-agenda-files t)))))
17927 (if (not (= (length files) (length (org-agenda-files t))))
17928 (progn
17929 (org-store-new-agenda-file-list files)
17930 (org-install-agenda-files-menu)
17931 (message "Removed file: %s" afile))
17932 (message "File was not in list: %s (not removed)" afile))))
17934 (defun org-file-menu-entry (file)
17935 (vector file (list 'find-file file) t))
17937 (defun org-check-agenda-file (file)
17938 "Make sure FILE exists. If not, ask user what to do."
17939 (when (not (file-exists-p file))
17940 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
17941 (abbreviate-file-name file))
17942 (let ((r (downcase (read-char-exclusive))))
17943 (cond
17944 ((equal r ?r)
17945 (org-remove-file file)
17946 (throw 'nextfile t))
17947 (t (error "Abort"))))))
17949 (defun org-get-agenda-file-buffer (file)
17950 "Get a buffer visiting FILE. If the buffer needs to be created, add
17951 it to the list of buffers which might be released later."
17952 (let ((buf (org-find-base-buffer-visiting file)))
17953 (if buf
17954 buf ; just return it
17955 ;; Make a new buffer and remember it
17956 (setq buf (find-file-noselect file))
17957 (if buf (push buf org-agenda-new-buffers))
17958 buf)))
17960 (defun org-release-buffers (blist)
17961 "Release all buffers in list, asking the user for confirmation when needed.
17962 When a buffer is unmodified, it is just killed. When modified, it is saved
17963 \(if the user agrees) and then killed."
17964 (let (buf file)
17965 (while (setq buf (pop blist))
17966 (setq file (buffer-file-name buf))
17967 (when (and (buffer-modified-p buf)
17968 file
17969 (y-or-n-p (format "Save file %s? " file)))
17970 (with-current-buffer buf (save-buffer)))
17971 (kill-buffer buf))))
17973 (defun org-agenda-prepare-buffers (files)
17974 "Create buffers for all agenda files, protect archived trees and comments."
17975 (interactive)
17976 (let ((pa '(:org-archived t))
17977 (pc '(:org-comment t))
17978 (pall '(:org-archived t :org-comment t))
17979 (inhibit-read-only t)
17980 (org-inhibit-startup org-agenda-inhibit-startup)
17981 (rea (concat ":" org-archive-tag ":"))
17982 file re)
17983 (setq org-tag-alist-for-agenda nil
17984 org-tag-groups-alist-for-agenda nil)
17985 (save-excursion
17986 (save-restriction
17987 (while (setq file (pop files))
17988 (catch 'nextfile
17989 (if (bufferp file)
17990 (set-buffer file)
17991 (org-check-agenda-file file)
17992 (set-buffer (org-get-agenda-file-buffer file)))
17993 (widen)
17994 (org-set-regexps-and-options-for-tags)
17995 (goto-char (point-min))
17996 (let ((case-fold-search t))
17997 (when (search-forward "#+setupfile" nil t)
17998 ;; Don't set all regexps and options systematically as
17999 ;; this is only run for setting agenda tags from setup
18000 ;; file
18001 (org-set-regexps-and-options)))
18002 (org-refresh-category-properties)
18003 (org-refresh-properties org-effort-property 'org-effort)
18004 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime)
18005 (setq org-todo-keywords-for-agenda
18006 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18007 (setq org-done-keywords-for-agenda
18008 (append org-done-keywords-for-agenda org-done-keywords))
18009 (setq org-todo-keyword-alist-for-agenda
18010 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18011 (setq org-drawers-for-agenda
18012 (append org-drawers-for-agenda org-drawers))
18013 (setq org-tag-alist-for-agenda
18014 (org-uniquify
18015 (append org-tag-alist-for-agenda
18016 org-tag-alist
18017 org-tag-persistent-alist)))
18018 (if org-group-tags
18019 (setq org-tag-groups-alist-for-agenda
18020 (org-uniquify-alist
18021 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18022 (org-with-silent-modifications
18023 (save-excursion
18024 (remove-text-properties (point-min) (point-max) pall)
18025 (when org-agenda-skip-archived-trees
18026 (goto-char (point-min))
18027 (while (re-search-forward rea nil t)
18028 (if (org-at-heading-p t)
18029 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18030 (goto-char (point-min))
18031 (setq re (format org-heading-keyword-regexp-format
18032 org-comment-string))
18033 (while (re-search-forward re nil t)
18034 (add-text-properties
18035 (match-beginning 0) (org-end-of-subtree t) pc))))))))
18036 (setq org-todo-keywords-for-agenda
18037 (org-uniquify org-todo-keywords-for-agenda))
18038 (setq org-todo-keyword-alist-for-agenda
18039 (org-uniquify org-todo-keyword-alist-for-agenda))))
18042 ;;;; CDLaTeX minor mode
18044 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18045 "Keymap for the minor `org-cdlatex-mode'.")
18047 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18048 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18049 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18050 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18051 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
18053 (defvar org-cdlatex-texmathp-advice-is-done nil
18054 "Flag remembering if we have applied the advice to texmathp already.")
18056 (define-minor-mode org-cdlatex-mode
18057 "Toggle the minor `org-cdlatex-mode'.
18058 This mode supports entering LaTeX environment and math in LaTeX fragments
18059 in Org-mode.
18060 \\{org-cdlatex-mode-map}"
18061 nil " OCDL" nil
18062 (when org-cdlatex-mode
18063 (require 'cdlatex)
18064 (run-hooks 'cdlatex-mode-hook)
18065 (cdlatex-compute-tables))
18066 (unless org-cdlatex-texmathp-advice-is-done
18067 (setq org-cdlatex-texmathp-advice-is-done t)
18068 (defadvice texmathp (around org-math-always-on activate)
18069 "Always return t in org-mode buffers.
18070 This is because we want to insert math symbols without dollars even outside
18071 the LaTeX math segments. If Orgmode thinks that point is actually inside
18072 an embedded LaTeX fragment, let texmathp do its job.
18073 \\[org-cdlatex-mode-map]"
18074 (interactive)
18075 (let (p)
18076 (cond
18077 ((not (derived-mode-p 'org-mode)) ad-do-it)
18078 ((eq this-command 'cdlatex-math-symbol)
18079 (setq ad-return-value t
18080 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18082 (let ((p (org-inside-LaTeX-fragment-p)))
18083 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18084 (setq ad-return-value t
18085 texmathp-why '("Org-mode embedded math" . 0))
18086 (if p ad-do-it)))))))))
18088 (defun turn-on-org-cdlatex ()
18089 "Unconditionally turn on `org-cdlatex-mode'."
18090 (org-cdlatex-mode 1))
18092 (defun org-try-cdlatex-tab ()
18093 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18094 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18095 - inside a LaTeX fragment, or
18096 - after the first word in a line, where an abbreviation expansion could
18097 insert a LaTeX environment."
18098 (when org-cdlatex-mode
18099 (cond
18100 ;; Before any word on the line: No expansion possible.
18101 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18102 ;; Just after first word on the line: Expand it. Make sure it
18103 ;; cannot happen on headlines, though.
18104 ((save-excursion
18105 (skip-chars-backward "a-zA-Z0-9*")
18106 (skip-chars-backward " \t")
18107 (and (bolp) (not (org-at-heading-p))))
18108 (cdlatex-tab) t)
18109 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18111 (defun org-cdlatex-underscore-caret (&optional arg)
18112 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18113 Revert to the normal definition outside of these fragments."
18114 (interactive "P")
18115 (if (org-inside-LaTeX-fragment-p)
18116 (call-interactively 'cdlatex-sub-superscript)
18117 (let (org-cdlatex-mode)
18118 (call-interactively (key-binding (vector last-input-event))))))
18120 (defun org-cdlatex-math-modify (&optional arg)
18121 "Execute `cdlatex-math-modify' in LaTeX fragments.
18122 Revert to the normal definition outside of these fragments."
18123 (interactive "P")
18124 (if (org-inside-LaTeX-fragment-p)
18125 (call-interactively 'cdlatex-math-modify)
18126 (let (org-cdlatex-mode)
18127 (call-interactively (key-binding (vector last-input-event))))))
18131 ;;;; LaTeX fragments
18133 (defvar org-latex-regexps
18134 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
18135 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
18136 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
18137 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
18138 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
18139 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
18140 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
18141 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
18142 "Regular expressions for matching embedded LaTeX.")
18144 (defun org-inside-LaTeX-fragment-p ()
18145 "Test if point is inside a LaTeX fragment.
18146 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18147 sequence appearing also before point.
18148 Even though the matchers for math are configurable, this function assumes
18149 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18150 delimiters are skipped when they have been removed by customization.
18151 The return value is nil, or a cons cell with the delimiter and the
18152 position of this delimiter.
18154 This function does a reasonably good job, but can locally be fooled by
18155 for example currency specifications. For example it will assume being in
18156 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18157 fragments that are properly closed, but during editing, we have to live
18158 with the uncertainty caused by missing closing delimiters. This function
18159 looks only before point, not after."
18160 (catch 'exit
18161 (let ((pos (point))
18162 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18163 (lim (progn
18164 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18165 (point)))
18166 dd-on str (start 0) m re)
18167 (goto-char pos)
18168 (when dodollar
18169 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18170 re (nth 1 (assoc "$" org-latex-regexps)))
18171 (while (string-match re str start)
18172 (cond
18173 ((= (match-end 0) (length str))
18174 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18175 ((= (match-end 0) (- (length str) 5))
18176 (throw 'exit nil))
18177 (t (setq start (match-end 0))))))
18178 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18179 (goto-char pos)
18180 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18181 (and (match-beginning 2) (throw 'exit nil))
18182 ;; count $$
18183 (while (re-search-backward "\\$\\$" lim t)
18184 (setq dd-on (not dd-on)))
18185 (goto-char pos)
18186 (if dd-on (cons "$$" m))))))
18188 (defun org-inside-latex-macro-p ()
18189 "Is point inside a LaTeX macro or its arguments?"
18190 (save-match-data
18191 (org-in-regexp
18192 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18194 (defvar org-latex-fragment-image-overlays nil
18195 "List of overlays carrying the images of latex fragments.")
18196 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18198 (defun org-remove-latex-fragment-image-overlays ()
18199 "Remove all overlays with LaTeX fragment images in current buffer."
18200 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18201 (setq org-latex-fragment-image-overlays nil))
18203 (defun org-preview-latex-fragment (&optional subtree)
18204 "Preview the LaTeX fragment at point, or all locally or globally.
18205 If the cursor is in a LaTeX fragment, create the image and overlay
18206 it over the source code. If there is no fragment at point, display
18207 all fragments in the current text, from one headline to the next. With
18208 prefix SUBTREE, display all fragments in the current subtree. With a
18209 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18210 the cursor is before the first headline,
18211 display all fragments in the buffer.
18212 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
18213 (interactive "P")
18214 (unless buffer-file-name
18215 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18216 (org-remove-latex-fragment-image-overlays)
18217 (save-excursion
18218 (save-restriction
18219 (let (beg end at msg)
18220 (cond
18221 ((or (equal subtree '(16))
18222 (not (save-excursion
18223 (re-search-backward org-outline-regexp-bol nil t))))
18224 (setq beg (point-min) end (point-max)
18225 msg "Creating images for buffer...%s"))
18226 ((equal subtree '(4))
18227 (org-back-to-heading)
18228 (setq beg (point) end (org-end-of-subtree t)
18229 msg "Creating images for subtree...%s"))
18231 (if (setq at (org-inside-LaTeX-fragment-p))
18232 (goto-char (max (point-min) (- (cdr at) 2)))
18233 (org-back-to-heading))
18234 (setq beg (point) end (progn (outline-next-heading) (point))
18235 msg (if at "Creating image...%s"
18236 "Creating images for entry...%s"))))
18237 (message msg "")
18238 (narrow-to-region beg end)
18239 (goto-char beg)
18240 (org-format-latex
18241 (concat org-latex-preview-ltxpng-directory (file-name-sans-extension
18242 (file-name-nondirectory
18243 buffer-file-name)))
18244 default-directory 'overlays msg at 'forbuffer
18245 org-latex-create-formula-image-program)
18246 (message msg "done. Use `C-c C-c' to remove images.")))))
18248 (defun org-format-latex (prefix &optional dir overlays msg at
18249 forbuffer processing-type)
18250 "Replace LaTeX fragments with links to an image, and produce images.
18251 Some of the options can be changed using the variable
18252 `org-format-latex-options'."
18253 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18254 (let* ((prefixnodir (file-name-nondirectory prefix))
18255 (absprefix (expand-file-name prefix dir))
18256 (todir (file-name-directory absprefix))
18257 (opt org-format-latex-options)
18258 (optnew org-format-latex-options)
18259 (matchers (plist-get opt :matchers))
18260 (re-list org-latex-regexps)
18261 (cnt 0) txt hash link beg end re e checkdir
18262 string
18263 m n block-type block linkfile movefile ov)
18264 ;; Check the different regular expressions
18265 (while (setq e (pop re-list))
18266 (setq m (car e) re (nth 1 e) n (nth 2 e) block-type (nth 3 e)
18267 block (if block-type "\n\n" ""))
18268 (when (member m matchers)
18269 (goto-char (point-min))
18270 (while (re-search-forward re nil t)
18271 (when (and (or (not at) (equal (cdr at) (match-beginning n)))
18272 (or (not overlays)
18273 (not (eq (get-char-property (match-beginning n)
18274 'org-overlay-type)
18275 'org-latex-overlay))))
18276 (cond
18277 ((eq processing-type 'verbatim))
18278 ((eq processing-type 'mathjax)
18279 ;; Prepare for MathJax processing.
18280 (setq string (match-string n))
18281 (when (member m '("$" "$1"))
18282 (save-excursion
18283 (delete-region (match-beginning n) (match-end n))
18284 (goto-char (match-beginning n))
18285 (insert (concat "\\(" (substring string 1 -1) "\\)")))))
18286 ((or (eq processing-type 'dvipng)
18287 (eq processing-type 'imagemagick))
18288 ;; Process to an image.
18289 (setq txt (match-string n)
18290 beg (match-beginning n) end (match-end n)
18291 cnt (1+ cnt))
18292 (let ((face (face-at-point))
18293 (fg (plist-get opt :foreground))
18294 (bg (plist-get opt :background))
18295 ;; Ensure full list is printed.
18296 print-length print-level)
18297 (when forbuffer
18298 ;; Get the colors from the face at point.
18299 (goto-char beg)
18300 (when (eq fg 'auto)
18301 (setq fg (face-attribute face :foreground nil 'default)))
18302 (when (eq bg 'auto)
18303 (setq bg (face-attribute face :background nil 'default)))
18304 (setq optnew (copy-sequence opt))
18305 (plist-put optnew :foreground fg)
18306 (plist-put optnew :background bg))
18307 (setq hash (sha1 (prin1-to-string
18308 (list org-format-latex-header
18309 org-latex-default-packages-alist
18310 org-latex-packages-alist
18311 org-format-latex-options
18312 forbuffer txt fg bg)))
18313 linkfile (format "%s_%s.png" prefix hash)
18314 movefile (format "%s_%s.png" absprefix hash)))
18315 (setq link (concat block "[[file:" linkfile "]]" block))
18316 (if msg (message msg cnt))
18317 (goto-char beg)
18318 (unless checkdir ; Ensure the directory exists.
18319 (setq checkdir t)
18320 (or (file-directory-p todir) (make-directory todir t)))
18321 (unless (file-exists-p movefile)
18322 (org-create-formula-image
18323 txt movefile optnew forbuffer processing-type))
18324 (if overlays
18325 (progn
18326 (mapc (lambda (o)
18327 (if (eq (overlay-get o 'org-overlay-type)
18328 'org-latex-overlay)
18329 (delete-overlay o)))
18330 (overlays-in beg end))
18331 (setq ov (make-overlay beg end))
18332 (overlay-put ov 'org-overlay-type 'org-latex-overlay)
18333 (if (featurep 'xemacs)
18334 (progn
18335 (overlay-put ov 'invisible t)
18336 (overlay-put
18337 ov 'end-glyph
18338 (make-glyph (vector 'png :file movefile))))
18339 (overlay-put
18340 ov 'display
18341 (list 'image :type 'png :file movefile :ascent 'center)))
18342 (push ov org-latex-fragment-image-overlays)
18343 (goto-char end))
18344 (delete-region beg end)
18345 (insert (org-add-props link
18346 (list 'org-latex-src
18347 (replace-regexp-in-string
18348 "\"" "" txt)
18349 'org-latex-src-embed-type
18350 (if block-type 'paragraph 'character))))))
18351 ((eq processing-type 'mathml)
18352 ;; Process to MathML
18353 (unless (save-match-data (org-format-latex-mathml-available-p))
18354 (user-error "LaTeX to MathML converter not configured"))
18355 (setq txt (match-string n)
18356 beg (match-beginning n) end (match-end n)
18357 cnt (1+ cnt))
18358 (if msg (message msg cnt))
18359 (goto-char beg)
18360 (delete-region beg end)
18361 (insert (org-format-latex-as-mathml
18362 txt block-type prefix dir)))
18364 (error "Unknown conversion type %s for LaTeX fragments"
18365 processing-type)))))))))
18367 (defun org-create-math-formula (latex-frag &optional mathml-file)
18368 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18369 Use `org-latex-to-mathml-convert-command'. If the conversion is
18370 sucessful, return the portion between \"<math...> </math>\"
18371 elements otherwise return nil. When MATHML-FILE is specified,
18372 write the results in to that file. When invoked as an
18373 interactive command, prompt for LATEX-FRAG, with initial value
18374 set to the current active region and echo the results for user
18375 inspection."
18376 (interactive (list (let ((frag (when (org-region-active-p)
18377 (buffer-substring-no-properties
18378 (region-beginning) (region-end)))))
18379 (read-string "LaTeX Fragment: " frag nil frag))))
18380 (unless latex-frag (error "Invalid LaTeX fragment"))
18381 (let* ((tmp-in-file (file-relative-name
18382 (make-temp-name (expand-file-name "ltxmathml-in"))))
18383 (ignore (write-region latex-frag nil tmp-in-file))
18384 (tmp-out-file (file-relative-name
18385 (make-temp-name (expand-file-name "ltxmathml-out"))))
18386 (cmd (format-spec
18387 org-latex-to-mathml-convert-command
18388 `((?j . ,(shell-quote-argument
18389 (expand-file-name org-latex-to-mathml-jar-file)))
18390 (?I . ,(shell-quote-argument tmp-in-file))
18391 (?o . ,(shell-quote-argument tmp-out-file)))))
18392 mathml shell-command-output)
18393 (when (org-called-interactively-p 'any)
18394 (unless (org-format-latex-mathml-available-p)
18395 (user-error "LaTeX to MathML converter not configured")))
18396 (message "Running %s" cmd)
18397 (setq shell-command-output (shell-command-to-string cmd))
18398 (setq mathml
18399 (when (file-readable-p tmp-out-file)
18400 (with-current-buffer (find-file-noselect tmp-out-file t)
18401 (goto-char (point-min))
18402 (when (re-search-forward
18403 (concat
18404 (regexp-quote
18405 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18406 "\\(.\\|\n\\)*"
18407 (regexp-quote "</math>")) nil t)
18408 (prog1 (match-string 0) (kill-buffer))))))
18409 (cond
18410 (mathml
18411 (setq mathml
18412 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18413 (when mathml-file
18414 (write-region mathml nil mathml-file))
18415 (when (org-called-interactively-p 'any)
18416 (message mathml)))
18417 ((message "LaTeX to MathML conversion failed")
18418 (message shell-command-output)))
18419 (delete-file tmp-in-file)
18420 (when (file-exists-p tmp-out-file)
18421 (delete-file tmp-out-file))
18422 mathml))
18424 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18425 prefix &optional dir)
18426 "Use `org-create-math-formula' but check local cache first."
18427 (let* ((absprefix (expand-file-name prefix dir))
18428 (print-length nil) (print-level nil)
18429 (formula-id (concat
18430 "formula-"
18431 (sha1
18432 (prin1-to-string
18433 (list latex-frag
18434 org-latex-to-mathml-convert-command)))))
18435 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18436 (formula-cache-dir (file-name-directory formula-cache)))
18438 (unless (file-directory-p formula-cache-dir)
18439 (make-directory formula-cache-dir t))
18441 (unless (file-exists-p formula-cache)
18442 (org-create-math-formula latex-frag formula-cache))
18444 (if (file-exists-p formula-cache)
18445 ;; Successful conversion. Return the link to MathML file.
18446 (org-add-props
18447 (format "[[file:%s]]" (file-relative-name formula-cache dir))
18448 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
18449 'org-latex-src-embed-type (if latex-frag-type
18450 'paragraph 'character)))
18451 ;; Failed conversion. Return the LaTeX fragment verbatim
18452 latex-frag)))
18454 (defun org-create-formula-image (string tofile options buffer &optional type)
18455 "Create an image from LaTeX source using dvipng or convert.
18456 This function calls either `org-create-formula-image-with-dvipng'
18457 or `org-create-formula-image-with-imagemagick' depending on the
18458 value of `org-latex-create-formula-image-program' or on the value
18459 of the optional TYPE variable.
18461 Note: ultimately these two function should be combined as they
18462 share a good deal of logic."
18463 (org-check-external-command
18464 "latex" "needed to convert LaTeX fragments to images")
18465 (funcall
18466 (case (or type org-latex-create-formula-image-program)
18467 ('dvipng
18468 (org-check-external-command
18469 "dvipng" "needed to convert LaTeX fragments to images")
18470 #'org-create-formula-image-with-dvipng)
18471 ('imagemagick
18472 (org-check-external-command
18473 "convert" "you need to install imagemagick")
18474 #'org-create-formula-image-with-imagemagick)
18475 (t (error
18476 "Invalid value of `org-latex-create-formula-image-program'")))
18477 string tofile options buffer))
18479 (declare-function org-export--get-global-options "ox" (&optional backend))
18480 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
18481 (defun org-create-formula--latex-header ()
18482 "Return LaTeX header appropriate for previewing a LaTeX snippet."
18483 (org-latex-guess-inputenc
18484 (org-splice-latex-header
18485 org-format-latex-header
18486 org-latex-default-packages-alist
18487 org-latex-packages-alist t
18488 (plist-get
18489 (org-combine-plists
18490 (org-export--get-global-options 'latex)
18491 (org-export--get-inbuffer-options 'latex))
18492 :latex-header))))
18494 ;; This function borrows from Ganesh Swami's latex2png.el
18495 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
18496 "This calls dvipng."
18497 (require 'ox-latex)
18498 (let* ((tmpdir (if (featurep 'xemacs)
18499 (temp-directory)
18500 temporary-file-directory))
18501 (texfilebase (make-temp-name
18502 (expand-file-name "orgtex" tmpdir)))
18503 (texfile (concat texfilebase ".tex"))
18504 (dvifile (concat texfilebase ".dvi"))
18505 (pngfile (concat texfilebase ".png"))
18506 (fnh (if (featurep 'xemacs)
18507 (font-height (face-font 'default))
18508 (face-attribute 'default :height nil)))
18509 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18510 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
18511 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18512 "Black"))
18513 (bg (or (plist-get options (if buffer :background :html-background))
18514 "Transparent")))
18515 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
18516 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
18517 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
18518 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
18519 (let ((latex-header (org-create-formula--latex-header)))
18520 (with-temp-file texfile
18521 (insert latex-header)
18522 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
18523 (let ((dir default-directory))
18524 (condition-case nil
18525 (progn
18526 (cd tmpdir)
18527 (call-process "latex" nil nil nil texfile))
18528 (error nil))
18529 (cd dir))
18530 (if (not (file-exists-p dvifile))
18531 (progn (message "Failed to create dvi file from %s" texfile) nil)
18532 (condition-case nil
18533 (if (featurep 'xemacs)
18534 (call-process "dvipng" nil nil nil
18535 "-fg" fg "-bg" bg
18536 "-T" "tight"
18537 "-o" pngfile
18538 dvifile)
18539 (call-process "dvipng" nil nil nil
18540 "-fg" fg "-bg" bg
18541 "-D" dpi
18542 ;;"-x" scale "-y" scale
18543 "-T" "tight"
18544 "-o" pngfile
18545 dvifile))
18546 (error nil))
18547 (if (not (file-exists-p pngfile))
18548 (if org-format-latex-signal-error
18549 (error "Failed to create png file from %s" texfile)
18550 (message "Failed to create png file from %s" texfile)
18551 nil)
18552 ;; Use the requested file name and clean up
18553 (copy-file pngfile tofile 'replace)
18554 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
18555 (if (file-exists-p (concat texfilebase e))
18556 (delete-file (concat texfilebase e))))
18557 pngfile))))
18559 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
18560 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
18561 "This calls convert, which is included into imagemagick."
18562 (require 'ox-latex)
18563 (let* ((tmpdir (if (featurep 'xemacs)
18564 (temp-directory)
18565 temporary-file-directory))
18566 (texfilebase (make-temp-name
18567 (expand-file-name "orgtex" tmpdir)))
18568 (texfile (concat texfilebase ".tex"))
18569 (pdffile (concat texfilebase ".pdf"))
18570 (pngfile (concat texfilebase ".png"))
18571 (fnh (if (featurep 'xemacs)
18572 (font-height (face-font 'default))
18573 (face-attribute 'default :height nil)))
18574 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18575 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
18576 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18577 "black"))
18578 (bg (or (plist-get options (if buffer :background :html-background))
18579 "white")))
18580 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
18581 (setq fg (org-latex-color-format fg)))
18582 (if (eq bg 'default) (setq bg (org-latex-color :background))
18583 (setq bg (org-latex-color-format
18584 (if (string= bg "Transparent") "white" bg))))
18585 (let ((latex-header (org-create-formula--latex-header)))
18586 (with-temp-file texfile
18587 (insert latex-header)
18588 (insert "\n\\begin{document}\n"
18589 "\\definecolor{fg}{rgb}{" fg "}\n"
18590 "\\definecolor{bg}{rgb}{" bg "}\n"
18591 "\n\\pagecolor{bg}\n"
18592 "\n{\\color{fg}\n"
18593 string
18594 "\n}\n"
18595 "\n\\end{document}\n")))
18596 (org-latex-compile texfile t)
18597 (if (not (file-exists-p pdffile))
18598 (progn (message "Failed to create pdf file from %s" texfile) nil)
18599 (condition-case nil
18600 (if (featurep 'xemacs)
18601 (call-process "convert" nil nil nil
18602 "-density" "96"
18603 "-trim"
18604 "-antialias"
18605 pdffile
18606 "-quality" "100"
18607 ;; "-sharpen" "0x1.0"
18608 pngfile)
18609 (call-process "convert" nil nil nil
18610 "-density" dpi
18611 "-trim"
18612 "-antialias"
18613 pdffile
18614 "-quality" "100"
18615 ;; "-sharpen" "0x1.0"
18616 pngfile))
18617 (error nil))
18618 (if (not (file-exists-p pngfile))
18619 (if org-format-latex-signal-error
18620 (error "Failed to create png file from %s" texfile)
18621 (message "Failed to create png file from %s" texfile)
18622 nil)
18623 ;; Use the requested file name and clean up
18624 (copy-file pngfile tofile 'replace)
18625 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
18626 (if (file-exists-p (concat texfilebase e))
18627 (delete-file (concat texfilebase e))))
18628 pngfile))))
18630 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
18631 "Fill a LaTeX header template TPL.
18632 In the template, the following place holders will be recognized:
18634 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
18635 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
18636 [PACKAGES] \\usepackage statements for PKG
18637 [NO-PACKAGES] do not include PKG
18638 [EXTRA] the string EXTRA
18639 [NO-EXTRA] do not include EXTRA
18641 For backward compatibility, if both the positive and the negative place
18642 holder is missing, the positive one (without the \"NO-\") will be
18643 assumed to be present at the end of the template.
18644 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
18645 EXTRA is a string.
18646 SNIPPETS-P indicates if this is run to create snippet images for HTML."
18647 (let (rpl (end ""))
18648 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
18649 (setq rpl (if (or (match-end 1) (not def-pkg))
18650 "" (org-latex-packages-to-string def-pkg snippets-p t))
18651 tpl (replace-match rpl t t tpl))
18652 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
18654 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
18655 (setq rpl (if (or (match-end 1) (not pkg))
18656 "" (org-latex-packages-to-string pkg snippets-p t))
18657 tpl (replace-match rpl t t tpl))
18658 (if pkg (setq end
18659 (concat end "\n"
18660 (org-latex-packages-to-string pkg snippets-p)))))
18662 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
18663 (setq rpl (if (or (match-end 1) (not extra))
18664 "" (concat extra "\n"))
18665 tpl (replace-match rpl t t tpl))
18666 (if (and extra (string-match "\\S-" extra))
18667 (setq end (concat end "\n" extra))))
18669 (if (string-match "\\S-" end)
18670 (concat tpl "\n" end)
18671 tpl)))
18673 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
18674 "Turn an alist of packages into a string with the \\usepackage macros."
18675 (setq pkg (mapconcat (lambda(p)
18676 (cond
18677 ((stringp p) p)
18678 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
18679 (format "%% Package %s omitted" (cadr p)))
18680 ((equal "" (car p))
18681 (format "\\usepackage{%s}" (cadr p)))
18683 (format "\\usepackage[%s]{%s}"
18684 (car p) (cadr p)))))
18686 "\n"))
18687 (if newline (concat pkg "\n") pkg))
18689 (defun org-dvipng-color (attr)
18690 "Return a RGB color specification for dvipng."
18691 (apply 'format "rgb %s %s %s"
18692 (mapcar 'org-normalize-color
18693 (if (featurep 'xemacs)
18694 (color-rgb-components
18695 (face-property 'default
18696 (cond ((eq attr :foreground) 'foreground)
18697 ((eq attr :background) 'background))))
18698 (color-values (face-attribute 'default attr nil))))))
18700 (defun org-dvipng-color-format (color-name)
18701 "Convert COLOR-NAME to a RGB color value for dvipng."
18702 (apply 'format "rgb %s %s %s"
18703 (mapcar 'org-normalize-color
18704 (color-values color-name))))
18706 (defun org-latex-color (attr)
18707 "Return a RGB color for the LaTeX color package."
18708 (apply 'format "%s,%s,%s"
18709 (mapcar 'org-normalize-color
18710 (if (featurep 'xemacs)
18711 (color-rgb-components
18712 (face-property 'default
18713 (cond ((eq attr :foreground) 'foreground)
18714 ((eq attr :background) 'background))))
18715 (color-values (face-attribute 'default attr nil))))))
18717 (defun org-latex-color-format (color-name)
18718 "Convert COLOR-NAME to a RGB color value."
18719 (apply 'format "%s,%s,%s"
18720 (mapcar 'org-normalize-color
18721 (color-values color-name))))
18723 (defun org-normalize-color (value)
18724 "Return string to be used as color value for an RGB component."
18725 (format "%g" (/ value 65535.0)))
18729 ;; Image display
18731 (defvar org-inline-image-overlays nil)
18732 (make-variable-buffer-local 'org-inline-image-overlays)
18734 (defun org-toggle-inline-images (&optional include-linked)
18735 "Toggle the display of inline images.
18736 INCLUDE-LINKED is passed to `org-display-inline-images'."
18737 (interactive "P")
18738 (if org-inline-image-overlays
18739 (progn
18740 (org-remove-inline-images)
18741 (message "Inline image display turned off"))
18742 (org-display-inline-images include-linked)
18743 (if (and (org-called-interactively-p)
18744 org-inline-image-overlays)
18745 (message "%d images displayed inline"
18746 (length org-inline-image-overlays))
18747 (message "No images to display inline"))))
18749 (defun org-redisplay-inline-images ()
18750 "Refresh the display of inline images."
18751 (interactive)
18752 (if (not org-inline-image-overlays)
18753 (org-toggle-inline-images)
18754 (org-toggle-inline-images)
18755 (org-toggle-inline-images)))
18757 (defun org-display-inline-images (&optional include-linked refresh beg end)
18758 "Display inline images.
18759 Normally only links without a description part are inlined, because this
18760 is how it will work for export. When INCLUDE-LINKED is set, also links
18761 with a description part will be inlined. This can be nice for a quick
18762 look at those images, but it does not reflect what exported files will look
18763 like.
18764 When REFRESH is set, refresh existing images between BEG and END.
18765 This will create new image displays only if necessary.
18766 BEG and END default to the buffer boundaries."
18767 (interactive "P")
18768 (unless refresh
18769 (org-remove-inline-images)
18770 (if (fboundp 'clear-image-cache) (clear-image-cache)))
18771 (save-excursion
18772 (save-restriction
18773 (widen)
18774 (setq beg (or beg (point-min)) end (or end (point-max)))
18775 (goto-char beg)
18776 (let ((re (concat "\\[\\[\\(\\(file:\\)\\|\\([./~]\\)\\)\\([^]\n]+?"
18777 (substring (org-image-file-name-regexp) 0 -2)
18778 "\\)\\]" (if include-linked "" "\\]")))
18779 (case-fold-search t)
18780 old file ov img type attrwidth width)
18781 (while (re-search-forward re end t)
18782 (setq old (get-char-property-and-overlay (match-beginning 1)
18783 'org-image-overlay)
18784 file (expand-file-name
18785 (concat (or (match-string 3) "") (match-string 4))))
18786 (when (image-type-available-p 'imagemagick)
18787 (setq attrwidth (if (or (listp org-image-actual-width)
18788 (null org-image-actual-width))
18789 (save-excursion
18790 (save-match-data
18791 (when (re-search-backward
18792 "#\\+attr.*:width[ \t]+\\([^ ]+\\)"
18793 (save-excursion
18794 (re-search-backward "^[ \t]*$\\|\\`" nil t)) t)
18795 (string-to-number (match-string 1))))))
18796 width (cond ((eq org-image-actual-width t) nil)
18797 ((null org-image-actual-width) attrwidth)
18798 ((numberp org-image-actual-width)
18799 org-image-actual-width)
18800 ((listp org-image-actual-width)
18801 (or attrwidth (car org-image-actual-width))))
18802 type (if width 'imagemagick)))
18803 (when (file-exists-p file)
18804 (if (and (car-safe old) refresh)
18805 (image-refresh (overlay-get (cdr old) 'display))
18806 (setq img (save-match-data (create-image file type nil :width width)))
18807 (when img
18808 (setq ov (make-overlay (match-beginning 0) (match-end 0)))
18809 (overlay-put ov 'display img)
18810 (overlay-put ov 'face 'default)
18811 (overlay-put ov 'org-image-overlay t)
18812 (overlay-put ov 'modification-hooks
18813 (list 'org-display-inline-remove-overlay))
18814 (push ov org-inline-image-overlays)))))))))
18816 (define-obsolete-function-alias
18817 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
18819 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
18820 "Remove inline-display overlay if a corresponding region is modified."
18821 (let ((inhibit-modification-hooks t))
18822 (when (and ov after)
18823 (delete ov org-inline-image-overlays)
18824 (delete-overlay ov))))
18826 (defun org-remove-inline-images ()
18827 "Remove inline display of images."
18828 (interactive)
18829 (mapc 'delete-overlay org-inline-image-overlays)
18830 (setq org-inline-image-overlays nil))
18832 ;;;; Key bindings
18834 ;; Outline functions from `outline-mode-prefix-map'
18835 ;; that can be remapped in Org:
18836 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
18837 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
18838 (define-key org-mode-map [remap outline-forward-same-level]
18839 'org-forward-heading-same-level)
18840 (define-key org-mode-map [remap outline-backward-same-level]
18841 'org-backward-heading-same-level)
18842 (define-key org-mode-map [remap show-branches]
18843 'org-kill-note-or-show-branches)
18844 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
18845 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
18846 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
18848 ;; Outline functions from `outline-mode-prefix-map' that can not
18849 ;; be remapped in Org:
18851 ;; - the column "key binding" shows whether the Outline function is still
18852 ;; available in Org mode on the same key that it has been bound to in
18853 ;; Outline mode:
18854 ;; - "overridden": key used for a different functionality in Org mode
18855 ;; - else: key still bound to the same Outline function in Org mode
18857 ;; | Outline function | key binding | Org replacement |
18858 ;; |------------------------------------+-------------+-----------------------|
18859 ;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
18860 ;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
18861 ;; | `outline-up-heading' | `C-c C-u' | still same function |
18862 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
18863 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
18864 ;; | `show-entry' | overridden | no replacement |
18865 ;; | `show-children' | `C-c C-i' | visibility cycling |
18866 ;; | `show-branches' | `C-c C-k' | still same function |
18867 ;; | `show-subtree' | overridden | visibility cycling |
18868 ;; | `show-all' | overridden | no replacement |
18869 ;; | `hide-subtree' | overridden | visibility cycling |
18870 ;; | `hide-body' | overridden | no replacement |
18871 ;; | `hide-entry' | overridden | visibility cycling |
18872 ;; | `hide-leaves' | overridden | no replacement |
18873 ;; | `hide-sublevels' | overridden | no replacement |
18874 ;; | `hide-other' | overridden | no replacement |
18876 ;; Make `C-c C-x' a prefix key
18877 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
18879 ;; TAB key with modifiers
18880 (org-defkey org-mode-map "\C-i" 'org-cycle)
18881 (org-defkey org-mode-map [(tab)] 'org-cycle)
18882 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
18883 (org-defkey org-mode-map "\M-\t" 'pcomplete)
18884 ;; The following line is necessary under Suse GNU/Linux
18885 (unless (featurep 'xemacs)
18886 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
18887 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
18888 (define-key org-mode-map [backtab] 'org-shifttab)
18890 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
18891 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
18892 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
18894 ;; Cursor keys with modifiers
18895 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
18896 (org-defkey org-mode-map [(meta right)] 'org-metaright)
18897 (org-defkey org-mode-map [(meta up)] 'org-metaup)
18898 (org-defkey org-mode-map [(meta down)] 'org-metadown)
18900 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
18901 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
18902 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
18903 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
18905 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
18906 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
18907 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
18908 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
18910 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
18911 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
18912 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
18913 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
18915 ;; Babel keys
18916 (define-key org-mode-map org-babel-key-prefix org-babel-map)
18917 (mapc (lambda (pair)
18918 (define-key org-babel-map (car pair) (cdr pair)))
18919 org-babel-key-bindings)
18921 ;;; Extra keys for tty access.
18922 ;; We only set them when really needed because otherwise the
18923 ;; menus don't show the simple keys
18925 (when (or org-use-extra-keys
18926 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
18927 (not window-system))
18928 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
18929 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
18930 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
18931 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
18932 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
18933 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
18934 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
18935 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
18936 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
18937 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
18938 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
18939 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
18940 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
18941 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
18942 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
18943 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
18944 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
18945 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
18946 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
18947 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
18948 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
18949 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
18950 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
18951 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
18952 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
18953 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
18954 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
18955 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
18957 ;; All the other keys
18959 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
18960 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
18961 (if (boundp 'narrow-map)
18962 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
18963 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
18964 (if (boundp 'narrow-map)
18965 (org-defkey narrow-map "b" 'org-narrow-to-block)
18966 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
18967 (if (boundp 'narrow-map)
18968 (org-defkey narrow-map "e" 'org-narrow-to-element)
18969 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
18970 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
18971 (org-defkey org-mode-map "\M-}" 'org-forward-element)
18972 (org-defkey org-mode-map "\M-{" 'org-backward-element)
18973 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
18974 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
18975 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
18976 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
18977 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
18978 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
18979 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
18980 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
18981 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
18982 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
18983 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
18984 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
18985 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
18986 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
18987 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
18988 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
18989 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
18990 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
18991 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
18992 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
18993 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
18994 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
18995 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
18996 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
18997 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
18998 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
18999 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19000 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19001 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19002 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19003 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19004 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19005 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19006 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19007 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19008 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19009 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19010 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19011 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19012 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19013 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19014 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19015 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19016 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19017 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19018 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19019 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19020 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19021 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19022 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19023 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19024 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19025 (org-defkey org-mode-map "\C-c^" 'org-sort)
19026 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19027 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19028 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19029 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19030 (org-defkey org-mode-map "\C-m" 'org-return)
19031 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19032 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19033 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19034 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19035 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19036 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19037 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19038 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19039 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19040 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19041 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19042 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19043 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19044 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19045 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section)
19046 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19047 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19048 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19049 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19050 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19051 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19052 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19053 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19055 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19056 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19057 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19059 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19060 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19061 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19062 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19063 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19064 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19065 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19066 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19067 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19068 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19069 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
19070 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19071 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19072 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19073 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19074 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19075 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19076 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19077 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19078 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19079 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19080 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19081 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19083 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19084 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19085 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19086 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19087 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19089 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19091 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19093 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19094 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19096 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19099 (when (featurep 'xemacs)
19100 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19103 (defconst org-speed-commands-default
19105 ("Outline Navigation")
19106 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
19107 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
19108 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19109 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19110 ("F" . org-next-block)
19111 ("B" . org-previous-block)
19112 ("u" . (org-speed-move-safe 'outline-up-heading))
19113 ("j" . org-goto)
19114 ("g" . (org-refile t))
19115 ("Outline Visibility")
19116 ("c" . org-cycle)
19117 ("C" . org-shifttab)
19118 (" " . org-display-outline-path)
19119 ("s" . org-narrow-to-subtree)
19120 ("=" . org-columns)
19121 ("Outline Structure Editing")
19122 ("U" . org-shiftmetaup)
19123 ("D" . org-shiftmetadown)
19124 ("r" . org-metaright)
19125 ("l" . org-metaleft)
19126 ("R" . org-shiftmetaright)
19127 ("L" . org-shiftmetaleft)
19128 ("i" . (progn (forward-char 1) (call-interactively
19129 'org-insert-heading-respect-content)))
19130 ("^" . org-sort)
19131 ("w" . org-refile)
19132 ("a" . org-archive-subtree-default-with-confirmation)
19133 ("@" . org-mark-subtree)
19134 ("#" . org-toggle-comment)
19135 ("Clock Commands")
19136 ("I" . org-clock-in)
19137 ("O" . org-clock-out)
19138 ("Meta Data Editing")
19139 ("t" . org-todo)
19140 ("," . (org-priority))
19141 ("0" . (org-priority ?\ ))
19142 ("1" . (org-priority ?A))
19143 ("2" . (org-priority ?B))
19144 ("3" . (org-priority ?C))
19145 (":" . org-set-tags-command)
19146 ("e" . org-set-effort)
19147 ("E" . org-inc-effort)
19148 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19149 (org-entry-put (point) "APPT_WARNTIME" m)))
19150 ("Agenda Views etc")
19151 ("v" . org-agenda)
19152 ("/" . org-sparse-tree)
19153 ("Misc")
19154 ("o" . org-open-at-point)
19155 ("?" . org-speed-command-help)
19156 ("<" . (org-agenda-set-restriction-lock 'subtree))
19157 (">" . (org-agenda-remove-restriction-lock))
19159 "The default speed commands.")
19161 (defun org-print-speed-command (e)
19162 (if (> (length (car e)) 1)
19163 (progn
19164 (princ "\n")
19165 (princ (car e))
19166 (princ "\n")
19167 (princ (make-string (length (car e)) ?-))
19168 (princ "\n"))
19169 (princ (car e))
19170 (princ " ")
19171 (if (symbolp (cdr e))
19172 (princ (symbol-name (cdr e)))
19173 (prin1 (cdr e)))
19174 (princ "\n")))
19176 (defun org-speed-command-help ()
19177 "Show the available speed commands."
19178 (interactive)
19179 (if (not org-use-speed-commands)
19180 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19181 (with-output-to-temp-buffer "*Help*"
19182 (princ "User-defined Speed commands\n===========================\n")
19183 (mapc 'org-print-speed-command org-speed-commands-user)
19184 (princ "\n")
19185 (princ "Built-in Speed commands\n=======================\n")
19186 (mapc 'org-print-speed-command org-speed-commands-default))
19187 (with-current-buffer "*Help*"
19188 (setq truncate-lines t))))
19190 (defun org-speed-move-safe (cmd)
19191 "Execute CMD, but make sure that the cursor always ends up in a headline.
19192 If not, return to the original position and throw an error."
19193 (interactive)
19194 (let ((pos (point)))
19195 (call-interactively cmd)
19196 (unless (and (bolp) (org-at-heading-p))
19197 (goto-char pos)
19198 (error "Boundary reached while executing %s" cmd))))
19200 (defvar org-self-insert-command-undo-counter 0)
19202 (defvar org-table-auto-blank-field) ; defined in org-table.el
19203 (defvar org-speed-command nil)
19205 (define-obsolete-function-alias
19206 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19208 (defun org-speed-command-activate (keys)
19209 "Hook for activating single-letter speed commands.
19210 `org-speed-commands-default' specifies a minimal command set.
19211 Use `org-speed-commands-user' for further customization."
19212 (when (or (and (bolp) (looking-at org-outline-regexp))
19213 (and (functionp org-use-speed-commands)
19214 (funcall org-use-speed-commands)))
19215 (cdr (assoc keys (append org-speed-commands-user
19216 org-speed-commands-default)))))
19218 (define-obsolete-function-alias
19219 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19221 (defun org-babel-speed-command-activate (keys)
19222 "Hook for activating single-letter code block commands."
19223 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19224 (cdr (assoc keys org-babel-key-bindings))))
19226 (defcustom org-speed-command-hook
19227 '(org-speed-command-default-hook org-babel-speed-command-hook)
19228 "Hook for activating speed commands at strategic locations.
19229 Hook functions are called in sequence until a valid handler is
19230 found.
19232 Each hook takes a single argument, a user-pressed command key
19233 which is also a `self-insert-command' from the global map.
19235 Within the hook, examine the cursor position and the command key
19236 and return nil or a valid handler as appropriate. Handler could
19237 be one of an interactive command, a function, or a form.
19239 Set `org-use-speed-commands' to non-nil value to enable this
19240 hook. The default setting is `org-speed-command-activate'."
19241 :group 'org-structure
19242 :version "24.1"
19243 :type 'hook)
19245 (defun org-self-insert-command (N)
19246 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19247 If the cursor is in a table looking at whitespace, the whitespace is
19248 overwritten, and the table is not marked as requiring realignment."
19249 (interactive "p")
19250 (org-check-before-invisible-edit 'insert)
19251 (cond
19252 ((and org-use-speed-commands
19253 (setq org-speed-command
19254 (run-hook-with-args-until-success
19255 'org-speed-command-hook (this-command-keys))))
19256 (cond
19257 ((commandp org-speed-command)
19258 (setq this-command org-speed-command)
19259 (call-interactively org-speed-command))
19260 ((functionp org-speed-command)
19261 (funcall org-speed-command))
19262 ((and org-speed-command (listp org-speed-command))
19263 (eval org-speed-command))
19264 (t (let (org-use-speed-commands)
19265 (call-interactively 'org-self-insert-command)))))
19266 ((and
19267 (org-table-p)
19268 (progn
19269 ;; check if we blank the field, and if that triggers align
19270 (and (featurep 'org-table) org-table-auto-blank-field
19271 (member last-command
19272 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand))
19273 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19274 ;; got extra space, this field does not determine column width
19275 (let (org-table-may-need-update) (org-table-blank-field))
19276 ;; no extra space, this field may determine column width
19277 (org-table-blank-field)))
19279 (eq N 1)
19280 (looking-at "[^|\n]* |"))
19281 (let (org-table-may-need-update)
19282 (goto-char (1- (match-end 0)))
19283 (backward-delete-char 1)
19284 (goto-char (match-beginning 0))
19285 (self-insert-command N)))
19287 (setq org-table-may-need-update t)
19288 (self-insert-command N)
19289 (org-fix-tags-on-the-fly)
19290 (if org-self-insert-cluster-for-undo
19291 (if (not (eq last-command 'org-self-insert-command))
19292 (setq org-self-insert-command-undo-counter 1)
19293 (if (>= org-self-insert-command-undo-counter 20)
19294 (setq org-self-insert-command-undo-counter 1)
19295 (and (> org-self-insert-command-undo-counter 0)
19296 buffer-undo-list (listp buffer-undo-list)
19297 (not (cadr buffer-undo-list)) ; remove nil entry
19298 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19299 (setq org-self-insert-command-undo-counter
19300 (1+ org-self-insert-command-undo-counter))))))))
19302 (defun org-check-before-invisible-edit (kind)
19303 "Check is editing if kind KIND would be dangerous with invisible text around.
19304 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19305 ;; First, try to get out of here as quickly as possible, to reduce overhead
19306 (if (and org-catch-invisible-edits
19307 (or (not (boundp 'visible-mode)) (not visible-mode))
19308 (or (get-char-property (point) 'invisible)
19309 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19310 ;; OK, we need to take a closer look
19311 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19312 (invisible-before-point (if (bobp) nil (get-char-property
19313 (1- (point)) 'invisible)))
19314 (border-and-ok-direction
19316 ;; Check if we are acting predictably before invisible text
19317 (and invisible-at-point (not invisible-before-point)
19318 (memq kind '(insert delete-backward)))
19319 ;; Check if we are acting predictably after invisible text
19320 ;; This works not well, and I have turned it off. It seems
19321 ;; better to always show and stop after invisible text.
19322 ;; (and (not invisible-at-point) invisible-before-point
19323 ;; (memq kind '(insert delete)))
19325 (when (or (memq invisible-at-point '(outline org-hide-block t))
19326 (memq invisible-before-point '(outline org-hide-block t)))
19327 (if (eq org-catch-invisible-edits 'error)
19328 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19329 (if (and org-custom-properties-overlays
19330 (y-or-n-p "Display invisible properties in this buffer? "))
19331 (org-toggle-custom-properties-visibility)
19332 ;; Make the area visible
19333 (save-excursion
19334 (if invisible-before-point
19335 (goto-char (previous-single-char-property-change
19336 (point) 'invisible)))
19337 (org-cycle))
19338 (cond
19339 ((eq org-catch-invisible-edits 'show)
19340 ;; That's it, we do the edit after showing
19341 (message
19342 "Unfolding invisible region around point before editing")
19343 (sit-for 1))
19344 ((and (eq org-catch-invisible-edits 'smart)
19345 border-and-ok-direction)
19346 (message "Unfolding invisible region around point before editing"))
19348 ;; Don't do the edit, make the user repeat it in full visibility
19349 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19351 (defun org-fix-tags-on-the-fly ()
19352 (when (and (equal (char-after (point-at-bol)) ?*)
19353 (org-at-heading-p))
19354 (org-align-tags-here org-tags-column)))
19356 (defun org-delete-backward-char (N)
19357 "Like `delete-backward-char', insert whitespace at field end in tables.
19358 When deleting backwards, in tables this function will insert whitespace in
19359 front of the next \"|\" separator, to keep the table aligned. The table will
19360 still be marked for re-alignment if the field did fill the entire column,
19361 because, in this case the deletion might narrow the column."
19362 (interactive "p")
19363 (save-match-data
19364 (org-check-before-invisible-edit 'delete-backward)
19365 (if (and (org-table-p)
19366 (eq N 1)
19367 (string-match "|" (buffer-substring (point-at-bol) (point)))
19368 (looking-at ".*?|"))
19369 (let ((pos (point))
19370 (noalign (looking-at "[^|\n\r]* |"))
19371 (c org-table-may-need-update))
19372 (backward-delete-char N)
19373 (if (not overwrite-mode)
19374 (progn
19375 (skip-chars-forward "^|")
19376 (insert " ")
19377 (goto-char (1- pos))))
19378 ;; noalign: if there were two spaces at the end, this field
19379 ;; does not determine the width of the column.
19380 (if noalign (setq org-table-may-need-update c)))
19381 (backward-delete-char N)
19382 (org-fix-tags-on-the-fly))))
19384 (defun org-delete-char (N)
19385 "Like `delete-char', but insert whitespace at field end in tables.
19386 When deleting characters, in tables this function will insert whitespace in
19387 front of the next \"|\" separator, to keep the table aligned. The table will
19388 still be marked for re-alignment if the field did fill the entire column,
19389 because, in this case the deletion might narrow the column."
19390 (interactive "p")
19391 (save-match-data
19392 (org-check-before-invisible-edit 'delete)
19393 (if (and (org-table-p)
19394 (not (bolp))
19395 (not (= (char-after) ?|))
19396 (eq N 1))
19397 (if (looking-at ".*?|")
19398 (let ((pos (point))
19399 (noalign (looking-at "[^|\n\r]* |"))
19400 (c org-table-may-need-update))
19401 (replace-match
19402 (concat (substring (match-string 0) 1 -1) " |") nil t)
19403 (goto-char pos)
19404 ;; noalign: if there were two spaces at the end, this field
19405 ;; does not determine the width of the column.
19406 (if noalign (setq org-table-may-need-update c)))
19407 (delete-char N))
19408 (delete-char N)
19409 (org-fix-tags-on-the-fly))))
19411 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
19412 (put 'org-self-insert-command 'delete-selection t)
19413 (put 'orgtbl-self-insert-command 'delete-selection t)
19414 (put 'org-delete-char 'delete-selection 'supersede)
19415 (put 'org-delete-backward-char 'delete-selection 'supersede)
19416 (put 'org-yank 'delete-selection 'yank)
19418 ;; Make `flyspell-mode' delay after some commands
19419 (put 'org-self-insert-command 'flyspell-delayed t)
19420 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
19421 (put 'org-delete-char 'flyspell-delayed t)
19422 (put 'org-delete-backward-char 'flyspell-delayed t)
19424 ;; Make pabbrev-mode expand after org-mode commands
19425 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
19426 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
19428 ;; How to do this: Measure non-white length of current string
19429 ;; If equal to column width, we should realign.
19431 (defun org-remap (map &rest commands)
19432 "In MAP, remap the functions given in COMMANDS.
19433 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
19434 (let (new old)
19435 (while commands
19436 (setq old (pop commands) new (pop commands))
19437 (if (fboundp 'command-remapping)
19438 (org-defkey map (vector 'remap old) new)
19439 (substitute-key-definition old new map global-map)))))
19441 (defun org-transpose-words ()
19442 "Transpose words for Org.
19443 This uses the `org-mode-transpose-word-syntax-table' syntax
19444 table, which interprets characters in `org-emphasis-alist' as
19445 word constituants."
19446 (interactive)
19447 (with-syntax-table org-mode-transpose-word-syntax-table
19448 (call-interactively 'transpose-words)))
19449 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
19451 (when (eq org-enable-table-editor 'optimized)
19452 ;; If the user wants maximum table support, we need to hijack
19453 ;; some standard editing functions
19454 (org-remap org-mode-map
19455 'self-insert-command 'org-self-insert-command
19456 'delete-char 'org-delete-char
19457 'delete-backward-char 'org-delete-backward-char)
19458 (org-defkey org-mode-map "|" 'org-force-self-insert))
19460 (defvar org-ctrl-c-ctrl-c-hook nil
19461 "Hook for functions attaching themselves to `C-c C-c'.
19463 This can be used to add additional functionality to the C-c C-c
19464 key which executes context-dependent commands. This hook is run
19465 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
19466 run after the last test.
19468 Each function will be called with no arguments. The function
19469 must check if the context is appropriate for it to act. If yes,
19470 it should do its thing and then return a non-nil value. If the
19471 context is wrong, just do nothing and return nil.")
19473 (defvar org-ctrl-c-ctrl-c-final-hook nil
19474 "Hook for functions attaching themselves to `C-c C-c'.
19476 This can be used to add additional functionality to the C-c C-c
19477 key which executes context-dependent commands. This hook is run
19478 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
19479 before the first test.
19481 Each function will be called with no arguments. The function
19482 must check if the context is appropriate for it to act. If yes,
19483 it should do its thing and then return a non-nil value. If the
19484 context is wrong, just do nothing and return nil.")
19486 (defvar org-tab-first-hook nil
19487 "Hook for functions to attach themselves to TAB.
19488 See `org-ctrl-c-ctrl-c-hook' for more information.
19489 This hook runs as the first action when TAB is pressed, even before
19490 `org-cycle' messes around with the `outline-regexp' to cater for
19491 inline tasks and plain list item folding.
19492 If any function in this hook returns t, any other actions that
19493 would have been caused by TAB (such as table field motion or visibility
19494 cycling) will not occur.")
19496 (defvar org-tab-after-check-for-table-hook nil
19497 "Hook for functions to attach themselves to TAB.
19498 See `org-ctrl-c-ctrl-c-hook' for more information.
19499 This hook runs after it has been established that the cursor is not in a
19500 table, but before checking if the cursor is in a headline or if global cycling
19501 should be done.
19502 If any function in this hook returns t, not other actions like visibility
19503 cycling will be done.")
19505 (defvar org-tab-after-check-for-cycling-hook nil
19506 "Hook for functions to attach themselves to TAB.
19507 See `org-ctrl-c-ctrl-c-hook' for more information.
19508 This hook runs after it has been established that not table field motion and
19509 not visibility should be done because of current context. This is probably
19510 the place where a package like yasnippets can hook in.")
19512 (defvar org-tab-before-tab-emulation-hook nil
19513 "Hook for functions to attach themselves to TAB.
19514 See `org-ctrl-c-ctrl-c-hook' for more information.
19515 This hook runs after every other options for TAB have been exhausted, but
19516 before indentation and \t insertion takes place.")
19518 (defvar org-metaleft-hook nil
19519 "Hook for functions attaching themselves to `M-left'.
19520 See `org-ctrl-c-ctrl-c-hook' for more information.")
19521 (defvar org-metaright-hook nil
19522 "Hook for functions attaching themselves to `M-right'.
19523 See `org-ctrl-c-ctrl-c-hook' for more information.")
19524 (defvar org-metaup-hook nil
19525 "Hook for functions attaching themselves to `M-up'.
19526 See `org-ctrl-c-ctrl-c-hook' for more information.")
19527 (defvar org-metadown-hook nil
19528 "Hook for functions attaching themselves to `M-down'.
19529 See `org-ctrl-c-ctrl-c-hook' for more information.")
19530 (defvar org-shiftmetaleft-hook nil
19531 "Hook for functions attaching themselves to `M-S-left'.
19532 See `org-ctrl-c-ctrl-c-hook' for more information.")
19533 (defvar org-shiftmetaright-hook nil
19534 "Hook for functions attaching themselves to `M-S-right'.
19535 See `org-ctrl-c-ctrl-c-hook' for more information.")
19536 (defvar org-shiftmetaup-hook nil
19537 "Hook for functions attaching themselves to `M-S-up'.
19538 See `org-ctrl-c-ctrl-c-hook' for more information.")
19539 (defvar org-shiftmetadown-hook nil
19540 "Hook for functions attaching themselves to `M-S-down'.
19541 See `org-ctrl-c-ctrl-c-hook' for more information.")
19542 (defvar org-metareturn-hook nil
19543 "Hook for functions attaching themselves to `M-RET'.
19544 See `org-ctrl-c-ctrl-c-hook' for more information.")
19545 (defvar org-shiftup-hook nil
19546 "Hook for functions attaching themselves to `S-up'.
19547 See `org-ctrl-c-ctrl-c-hook' for more information.")
19548 (defvar org-shiftup-final-hook nil
19549 "Hook for functions attaching themselves to `S-up'.
19550 This one runs after all other options except shift-select have been excluded.
19551 See `org-ctrl-c-ctrl-c-hook' for more information.")
19552 (defvar org-shiftdown-hook nil
19553 "Hook for functions attaching themselves to `S-down'.
19554 See `org-ctrl-c-ctrl-c-hook' for more information.")
19555 (defvar org-shiftdown-final-hook nil
19556 "Hook for functions attaching themselves to `S-down'.
19557 This one runs after all other options except shift-select have been excluded.
19558 See `org-ctrl-c-ctrl-c-hook' for more information.")
19559 (defvar org-shiftleft-hook nil
19560 "Hook for functions attaching themselves to `S-left'.
19561 See `org-ctrl-c-ctrl-c-hook' for more information.")
19562 (defvar org-shiftleft-final-hook nil
19563 "Hook for functions attaching themselves to `S-left'.
19564 This one runs after all other options except shift-select have been excluded.
19565 See `org-ctrl-c-ctrl-c-hook' for more information.")
19566 (defvar org-shiftright-hook nil
19567 "Hook for functions attaching themselves to `S-right'.
19568 See `org-ctrl-c-ctrl-c-hook' for more information.")
19569 (defvar org-shiftright-final-hook nil
19570 "Hook for functions attaching themselves to `S-right'.
19571 This one runs after all other options except shift-select have been excluded.
19572 See `org-ctrl-c-ctrl-c-hook' for more information.")
19574 (defun org-modifier-cursor-error ()
19575 "Throw an error, a modified cursor command was applied in wrong context."
19576 (user-error "This command is active in special context like tables, headlines or items"))
19578 (defun org-shiftselect-error ()
19579 "Throw an error because Shift-Cursor command was applied in wrong context."
19580 (if (and (boundp 'shift-select-mode) shift-select-mode)
19581 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
19582 (user-error "This command works only in special context like headlines or timestamps")))
19584 (defun org-call-for-shift-select (cmd)
19585 (let ((this-command-keys-shift-translated t))
19586 (call-interactively cmd)))
19588 (defun org-shifttab (&optional arg)
19589 "Global visibility cycling or move to previous table field.
19590 Call `org-table-previous-field' within a table.
19591 When ARG is nil, cycle globally through visibility states.
19592 When ARG is a numeric prefix, show contents of this level."
19593 (interactive "P")
19594 (cond
19595 ((org-at-table-p) (call-interactively 'org-table-previous-field))
19596 ((integerp arg)
19597 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
19598 (message "Content view to level: %d" arg)
19599 (org-content (prefix-numeric-value arg2))
19600 (org-cycle-show-empty-lines t)
19601 (setq org-cycle-global-status 'overview)))
19602 (t (call-interactively 'org-global-cycle))))
19604 (defun org-shiftmetaleft ()
19605 "Promote subtree or delete table column.
19606 Calls `org-promote-subtree', `org-outdent-item-tree', or
19607 `org-table-delete-column', depending on context. See the
19608 individual commands for more information."
19609 (interactive)
19610 (cond
19611 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
19612 ((org-at-table-p) (call-interactively 'org-table-delete-column))
19613 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
19614 ((if (not (org-region-active-p)) (org-at-item-p)
19615 (save-excursion (goto-char (region-beginning))
19616 (org-at-item-p)))
19617 (call-interactively 'org-outdent-item-tree))
19618 (t (org-modifier-cursor-error))))
19620 (defun org-shiftmetaright ()
19621 "Demote subtree or insert table column.
19622 Calls `org-demote-subtree', `org-indent-item-tree', or
19623 `org-table-insert-column', depending on context. See the
19624 individual commands for more information."
19625 (interactive)
19626 (cond
19627 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
19628 ((org-at-table-p) (call-interactively 'org-table-insert-column))
19629 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
19630 ((if (not (org-region-active-p)) (org-at-item-p)
19631 (save-excursion (goto-char (region-beginning))
19632 (org-at-item-p)))
19633 (call-interactively 'org-indent-item-tree))
19634 (t (org-modifier-cursor-error))))
19636 (defun org-shiftmetaup (&optional arg)
19637 "Move subtree up or kill table row.
19638 Calls `org-move-subtree-up' or `org-table-kill-row' or
19639 `org-move-item-up' or `org-timestamp-up', depending on context.
19640 See the individual commands for more information."
19641 (interactive "P")
19642 (cond
19643 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
19644 ((org-at-table-p) (call-interactively 'org-table-kill-row))
19645 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
19646 ((org-at-item-p) (call-interactively 'org-move-item-up))
19647 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
19648 (call-interactively 'org-timestamp-up)))
19649 (t (call-interactively 'org-drag-line-backward))))
19651 (defun org-shiftmetadown (&optional arg)
19652 "Move subtree down or insert table row.
19653 Calls `org-move-subtree-down' or `org-table-insert-row' or
19654 `org-move-item-down' or `org-timestamp-up', depending on context.
19655 See the individual commands for more information."
19656 (interactive "P")
19657 (cond
19658 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
19659 ((org-at-table-p) (call-interactively 'org-table-insert-row))
19660 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
19661 ((org-at-item-p) (call-interactively 'org-move-item-down))
19662 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
19663 (call-interactively 'org-timestamp-down)))
19664 (t (call-interactively 'org-drag-line-forward))))
19666 (defsubst org-hidden-tree-error ()
19667 (user-error
19668 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
19670 (defun org-metaleft (&optional arg)
19671 "Promote heading or move table column to left.
19672 Calls `org-do-promote' or `org-table-move-column', depending on context.
19673 With no specific context, calls the Emacs default `backward-word'.
19674 See the individual commands for more information."
19675 (interactive "P")
19676 (cond
19677 ((run-hook-with-args-until-success 'org-metaleft-hook))
19678 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
19679 ((org-with-limited-levels
19680 (or (org-at-heading-p)
19681 (and (org-region-active-p)
19682 (save-excursion
19683 (goto-char (region-beginning))
19684 (org-at-heading-p)))))
19685 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
19686 (call-interactively 'org-do-promote))
19687 ;; At an inline task.
19688 ((org-at-heading-p)
19689 (call-interactively 'org-inlinetask-promote))
19690 ((or (org-at-item-p)
19691 (and (org-region-active-p)
19692 (save-excursion
19693 (goto-char (region-beginning))
19694 (org-at-item-p))))
19695 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
19696 (call-interactively 'org-outdent-item))
19697 (t (call-interactively 'backward-word))))
19699 (defun org-metaright (&optional arg)
19700 "Demote a subtree, a list item or move table column to right.
19701 In front of a drawer or a block keyword, indent it correctly.
19702 With no specific context, calls the Emacs default `forward-word'.
19703 See the individual commands for more information."
19704 (interactive "P")
19705 (cond
19706 ((run-hook-with-args-until-success 'org-metaright-hook))
19707 ((org-at-table-p) (call-interactively 'org-table-move-column))
19708 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
19709 ((org-at-block-p) (call-interactively 'org-indent-block))
19710 ((org-with-limited-levels
19711 (or (org-at-heading-p)
19712 (and (org-region-active-p)
19713 (save-excursion
19714 (goto-char (region-beginning))
19715 (org-at-heading-p)))))
19716 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
19717 (call-interactively 'org-do-demote))
19718 ;; At an inline task.
19719 ((org-at-heading-p)
19720 (call-interactively 'org-inlinetask-demote))
19721 ((or (org-at-item-p)
19722 (and (org-region-active-p)
19723 (save-excursion
19724 (goto-char (region-beginning))
19725 (org-at-item-p))))
19726 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
19727 (call-interactively 'org-indent-item))
19728 (t (call-interactively 'forward-word))))
19730 (defun org-check-for-hidden (what)
19731 "Check if there are hidden headlines/items in the current visual line.
19732 WHAT can be either `headlines' or `items'. If the current line is
19733 an outline or item heading and it has a folded subtree below it,
19734 this function returns t, nil otherwise."
19735 (let ((re (cond
19736 ((eq what 'headlines) org-outline-regexp-bol)
19737 ((eq what 'items) (org-item-beginning-re))
19738 (t (error "This should not happen"))))
19739 beg end)
19740 (save-excursion
19741 (catch 'exit
19742 (unless (org-region-active-p)
19743 (setq beg (point-at-bol))
19744 (beginning-of-line 2)
19745 (while (and (not (eobp)) ;; this is like `next-line'
19746 (get-char-property (1- (point)) 'invisible))
19747 (beginning-of-line 2))
19748 (setq end (point))
19749 (goto-char beg)
19750 (goto-char (point-at-eol))
19751 (setq end (max end (point)))
19752 (while (re-search-forward re end t)
19753 (if (get-char-property (match-beginning 0) 'invisible)
19754 (throw 'exit t))))
19755 nil))))
19757 (defun org-metaup (&optional arg)
19758 "Move subtree up or move table row up.
19759 Calls `org-move-subtree-up' or `org-table-move-row' or
19760 `org-move-item-up', depending on context. See the individual commands
19761 for more information."
19762 (interactive "P")
19763 (cond
19764 ((run-hook-with-args-until-success 'org-metaup-hook))
19765 ((org-region-active-p)
19766 (let* ((a (min (region-beginning) (region-end)))
19767 (b (1- (max (region-beginning) (region-end))))
19768 (c (save-excursion (goto-char a)
19769 (move-beginning-of-line 0)))
19770 (d (save-excursion (goto-char a)
19771 (move-end-of-line 0) (point))))
19772 (transpose-regions a b c d)
19773 (goto-char c)))
19774 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
19775 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
19776 ((org-at-item-p) (call-interactively 'org-move-item-up))
19777 (t (org-drag-element-backward))))
19779 (defun org-metadown (&optional arg)
19780 "Move subtree down or move table row down.
19781 Calls `org-move-subtree-down' or `org-table-move-row' or
19782 `org-move-item-down', depending on context. See the individual
19783 commands for more information."
19784 (interactive "P")
19785 (cond
19786 ((run-hook-with-args-until-success 'org-metadown-hook))
19787 ((org-region-active-p)
19788 (let* ((a (min (region-beginning) (region-end)))
19789 (b (max (region-beginning) (region-end)))
19790 (c (save-excursion (goto-char b)
19791 (move-beginning-of-line 1)))
19792 (d (save-excursion (goto-char b)
19793 (move-end-of-line 1) (1+ (point)))))
19794 (transpose-regions a b c d)
19795 (goto-char d)))
19796 ((org-at-table-p) (call-interactively 'org-table-move-row))
19797 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
19798 ((org-at-item-p) (call-interactively 'org-move-item-down))
19799 (t (org-drag-element-forward))))
19801 (defun org-shiftup (&optional arg)
19802 "Increase item in timestamp or increase priority of current headline.
19803 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
19804 depending on context. See the individual commands for more information."
19805 (interactive "P")
19806 (cond
19807 ((run-hook-with-args-until-success 'org-shiftup-hook))
19808 ((and org-support-shift-select (org-region-active-p))
19809 (org-call-for-shift-select 'previous-line))
19810 ((org-at-timestamp-p t)
19811 (call-interactively (if org-edit-timestamp-down-means-later
19812 'org-timestamp-down 'org-timestamp-up)))
19813 ((and (not (eq org-support-shift-select 'always))
19814 org-enable-priority-commands
19815 (org-at-heading-p))
19816 (call-interactively 'org-priority-up))
19817 ((and (not org-support-shift-select) (org-at-item-p))
19818 (call-interactively 'org-previous-item))
19819 ((org-clocktable-try-shift 'up arg))
19820 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
19821 (org-support-shift-select
19822 (org-call-for-shift-select 'previous-line))
19823 (t (org-shiftselect-error))))
19825 (defun org-shiftdown (&optional arg)
19826 "Decrease item in timestamp or decrease priority of current headline.
19827 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
19828 depending on context. See the individual commands for more information."
19829 (interactive "P")
19830 (cond
19831 ((run-hook-with-args-until-success 'org-shiftdown-hook))
19832 ((and org-support-shift-select (org-region-active-p))
19833 (org-call-for-shift-select 'next-line))
19834 ((org-at-timestamp-p t)
19835 (call-interactively (if org-edit-timestamp-down-means-later
19836 'org-timestamp-up 'org-timestamp-down)))
19837 ((and (not (eq org-support-shift-select 'always))
19838 org-enable-priority-commands
19839 (org-at-heading-p))
19840 (call-interactively 'org-priority-down))
19841 ((and (not org-support-shift-select) (org-at-item-p))
19842 (call-interactively 'org-next-item))
19843 ((org-clocktable-try-shift 'down arg))
19844 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
19845 (org-support-shift-select
19846 (org-call-for-shift-select 'next-line))
19847 (t (org-shiftselect-error))))
19849 (defun org-shiftright (&optional arg)
19850 "Cycle the thing at point or in the current line, depending on context.
19851 Depending on context, this does one of the following:
19853 - switch a timestamp at point one day into the future
19854 - on a headline, switch to the next TODO keyword.
19855 - on an item, switch entire list to the next bullet type
19856 - on a property line, switch to the next allowed value
19857 - on a clocktable definition line, move time block into the future"
19858 (interactive "P")
19859 (cond
19860 ((run-hook-with-args-until-success 'org-shiftright-hook))
19861 ((and org-support-shift-select (org-region-active-p))
19862 (org-call-for-shift-select 'forward-char))
19863 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
19864 ((and (not (eq org-support-shift-select 'always))
19865 (org-at-heading-p))
19866 (let ((org-inhibit-logging
19867 (not org-treat-S-cursor-todo-selection-as-state-change))
19868 (org-inhibit-blocking
19869 (not org-treat-S-cursor-todo-selection-as-state-change)))
19870 (org-call-with-arg 'org-todo 'right)))
19871 ((or (and org-support-shift-select
19872 (not (eq org-support-shift-select 'always))
19873 (org-at-item-bullet-p))
19874 (and (not org-support-shift-select) (org-at-item-p)))
19875 (org-call-with-arg 'org-cycle-list-bullet nil))
19876 ((and (not (eq org-support-shift-select 'always))
19877 (org-at-property-p))
19878 (call-interactively 'org-property-next-allowed-value))
19879 ((org-clocktable-try-shift 'right arg))
19880 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
19881 (org-support-shift-select
19882 (org-call-for-shift-select 'forward-char))
19883 (t (org-shiftselect-error))))
19885 (defun org-shiftleft (&optional arg)
19886 "Cycle the thing at point or in the current line, depending on context.
19887 Depending on context, this does one of the following:
19889 - switch a timestamp at point one day into the past
19890 - on a headline, switch to the previous TODO keyword.
19891 - on an item, switch entire list to the previous bullet type
19892 - on a property line, switch to the previous allowed value
19893 - on a clocktable definition line, move time block into the past"
19894 (interactive "P")
19895 (cond
19896 ((run-hook-with-args-until-success 'org-shiftleft-hook))
19897 ((and org-support-shift-select (org-region-active-p))
19898 (org-call-for-shift-select 'backward-char))
19899 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
19900 ((and (not (eq org-support-shift-select 'always))
19901 (org-at-heading-p))
19902 (let ((org-inhibit-logging
19903 (not org-treat-S-cursor-todo-selection-as-state-change))
19904 (org-inhibit-blocking
19905 (not org-treat-S-cursor-todo-selection-as-state-change)))
19906 (org-call-with-arg 'org-todo 'left)))
19907 ((or (and org-support-shift-select
19908 (not (eq org-support-shift-select 'always))
19909 (org-at-item-bullet-p))
19910 (and (not org-support-shift-select) (org-at-item-p)))
19911 (org-call-with-arg 'org-cycle-list-bullet 'previous))
19912 ((and (not (eq org-support-shift-select 'always))
19913 (org-at-property-p))
19914 (call-interactively 'org-property-previous-allowed-value))
19915 ((org-clocktable-try-shift 'left arg))
19916 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
19917 (org-support-shift-select
19918 (org-call-for-shift-select 'backward-char))
19919 (t (org-shiftselect-error))))
19921 (defun org-shiftcontrolright ()
19922 "Switch to next TODO set."
19923 (interactive)
19924 (cond
19925 ((and org-support-shift-select (org-region-active-p))
19926 (org-call-for-shift-select 'forward-word))
19927 ((and (not (eq org-support-shift-select 'always))
19928 (org-at-heading-p))
19929 (org-call-with-arg 'org-todo 'nextset))
19930 (org-support-shift-select
19931 (org-call-for-shift-select 'forward-word))
19932 (t (org-shiftselect-error))))
19934 (defun org-shiftcontrolleft ()
19935 "Switch to previous TODO set."
19936 (interactive)
19937 (cond
19938 ((and org-support-shift-select (org-region-active-p))
19939 (org-call-for-shift-select 'backward-word))
19940 ((and (not (eq org-support-shift-select 'always))
19941 (org-at-heading-p))
19942 (org-call-with-arg 'org-todo 'previousset))
19943 (org-support-shift-select
19944 (org-call-for-shift-select 'backward-word))
19945 (t (org-shiftselect-error))))
19947 (defun org-shiftcontrolup (&optional n)
19948 "Change timestamps synchronously up in CLOCK log lines.
19949 Optional argument N tells to change by that many units."
19950 (interactive "P")
19951 (cond ((and (not org-support-shift-select)
19952 (org-at-clock-log-p)
19953 (org-at-timestamp-p t))
19954 (org-clock-timestamps-up n))
19955 (t (org-shiftselect-error))))
19957 (defun org-shiftcontroldown (&optional n)
19958 "Change timestamps synchronously down in CLOCK log lines.
19959 Optional argument N tells to change by that many units."
19960 (interactive "P")
19961 (cond ((and (not org-support-shift-select)
19962 (org-at-clock-log-p)
19963 (org-at-timestamp-p t))
19964 (org-clock-timestamps-down n))
19965 (t (org-shiftselect-error))))
19967 (defun org-ctrl-c-ret ()
19968 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
19969 (interactive)
19970 (cond
19971 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
19972 (t (call-interactively 'org-insert-heading))))
19974 (defun org-find-visible ()
19975 (let ((s (point)))
19976 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
19977 (get-char-property s 'invisible)))
19979 (defun org-find-invisible ()
19980 (let ((s (point)))
19981 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
19982 (not (get-char-property s 'invisible))))
19985 (defun org-copy-visible (beg end)
19986 "Copy the visible parts of the region."
19987 (interactive "r")
19988 (let (snippets s)
19989 (save-excursion
19990 (save-restriction
19991 (narrow-to-region beg end)
19992 (setq s (goto-char (point-min)))
19993 (while (not (= (point) (point-max)))
19994 (goto-char (org-find-invisible))
19995 (push (buffer-substring s (point)) snippets)
19996 (setq s (goto-char (org-find-visible))))))
19997 (kill-new (apply 'concat (nreverse snippets)))))
19999 (defun org-copy-special ()
20000 "Copy region in table or copy current subtree.
20001 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20002 See the individual commands for more information."
20003 (interactive)
20004 (call-interactively
20005 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20007 (defun org-cut-special ()
20008 "Cut region in table or cut current subtree.
20009 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20010 See the individual commands for more information."
20011 (interactive)
20012 (call-interactively
20013 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20015 (defun org-paste-special (arg)
20016 "Paste rectangular region into table, or past subtree relative to level.
20017 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20018 See the individual commands for more information."
20019 (interactive "P")
20020 (if (org-at-table-p)
20021 (org-table-paste-rectangle)
20022 (org-paste-subtree arg)))
20024 (defsubst org-in-fixed-width-region-p ()
20025 "Is point in a fixed-width region?"
20026 (save-match-data
20027 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20029 (defun org-edit-special (&optional arg)
20030 "Call a special editor for the element at point.
20031 When at a table, call the formula editor with `org-table-edit-formulas'.
20032 When in a source code block, call `org-edit-src-code'.
20033 When in a fixed-width region, call `org-edit-fixed-width-region'.
20034 When at an #+INCLUDE keyword, visit the included file.
20035 On a link, call `ffap' to visit the link at point.
20036 Otherwise, return a user error."
20037 (interactive "P")
20038 (let ((element (org-element-at-point)))
20039 (assert (not buffer-read-only) nil
20040 "Buffer is read-only: %s" (buffer-name))
20041 (case (org-element-type element)
20042 (src-block
20043 (if (not arg) (org-edit-src-code)
20044 (let* ((info (org-babel-get-src-block-info))
20045 (lang (nth 0 info))
20046 (params (nth 2 info))
20047 (session (cdr (assq :session params))))
20048 (if (not session) (org-edit-src-code)
20049 ;; At a src-block with a session and function called with
20050 ;; an ARG: switch to the buffer related to the inferior
20051 ;; process.
20052 (switch-to-buffer
20053 (funcall (intern (concat "org-babel-prep-session:" lang))
20054 session params))))))
20055 (keyword
20056 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20057 (find-file
20058 (org-remove-double-quotes
20059 (car (org-split-string (org-element-property :value element)))))
20060 (user-error "No special environment to edit here")))
20061 (table
20062 (if (eq (org-element-property :type element) 'table.el)
20063 (org-edit-src-code)
20064 (call-interactively 'org-table-edit-formulas)))
20065 ;; Only Org tables contain `table-row' type elements.
20066 (table-row (call-interactively 'org-table-edit-formulas))
20067 ((example-block export-block) (org-edit-src-code))
20068 (fixed-width (org-edit-fixed-width-region))
20069 (otherwise
20070 ;; No notable element at point. Though, we may be at a link,
20071 ;; which is an object. Thus, scan deeper.
20072 (if (eq (org-element-type (org-element-context element)) 'link)
20073 (call-interactively 'ffap)
20074 (user-error "No special environment to edit here"))))))
20076 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20077 (defun org-ctrl-c-ctrl-c (&optional arg)
20078 "Set tags in headline, or update according to changed information at point.
20080 This command does many different things, depending on context:
20082 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20083 this is what we do.
20085 - If the cursor is on a statistics cookie, update it.
20087 - If the cursor is in a headline, prompt for tags and insert them
20088 into the current line, aligned to `org-tags-column'. When called
20089 with prefix arg, realign all tags in the current buffer.
20091 - If the cursor is in one of the special #+KEYWORD lines, this
20092 triggers scanning the buffer for these lines and updating the
20093 information.
20095 - If the cursor is inside a table, realign the table. This command
20096 works even if the automatic table editor has been turned off.
20098 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20099 the entire table.
20101 - If the cursor is at a footnote reference or definition, jump to
20102 the corresponding definition or references, respectively.
20104 - If the cursor is a the beginning of a dynamic block, update it.
20106 - If the current buffer is a capture buffer, close note and file it.
20108 - If the cursor is on a <<<target>>>, update radio targets and
20109 corresponding links in this buffer.
20111 - If the cursor is on a numbered item in a plain list, renumber the
20112 ordered list.
20114 - If the cursor is on a checkbox, toggle it.
20116 - If the cursor is on a code block, evaluate it. The variable
20117 `org-confirm-babel-evaluate' can be used to control prompting
20118 before code block evaluation, by default every code block
20119 evaluation requires confirmation. Code block evaluation can be
20120 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20121 (interactive "P")
20122 (cond
20123 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20124 org-occur-highlights
20125 org-latex-fragment-image-overlays)
20126 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20127 (org-remove-occur-highlights)
20128 (org-remove-latex-fragment-image-overlays)
20129 (message "Temporary highlights/overlays removed from current buffer"))
20130 ((and (local-variable-p 'org-finish-function (current-buffer))
20131 (fboundp org-finish-function))
20132 (funcall org-finish-function))
20133 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20135 (let* ((context (org-element-context)) (type (org-element-type context)))
20136 ;; Test if point is within a blank line.
20137 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20138 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20139 (user-error "C-c C-c can do nothing useful at this location"))
20140 ;; For convenience: at the first line of a paragraph on the
20141 ;; same line as an item, apply function on that item instead.
20142 (when (eq type 'paragraph)
20143 (let ((parent (org-element-property :parent context)))
20144 (when (and (eq (org-element-type parent) 'item)
20145 (= (point-at-bol) (org-element-property :begin parent)))
20146 (setq context parent type 'item))))
20147 ;; Act according to type of element or object at point.
20148 (case type
20149 (clock (org-clock-update-time-maybe))
20150 (dynamic-block
20151 (save-excursion
20152 (goto-char (org-element-property :post-affiliated context))
20153 (org-update-dblock)))
20154 (footnote-definition
20155 (goto-char (org-element-property :post-affiliated context))
20156 (call-interactively 'org-footnote-action))
20157 (footnote-reference (call-interactively 'org-footnote-action))
20158 ((headline inlinetask)
20159 (save-excursion (goto-char (org-element-property :begin context))
20160 (call-interactively 'org-set-tags)))
20161 (item
20162 ;; At an item: a double C-u set checkbox to "[-]"
20163 ;; unconditionally, whereas a single one will toggle its
20164 ;; presence. Without an universal argument, if the item
20165 ;; has a checkbox, toggle it. Otherwise repair the list.
20166 (let* ((box (org-element-property :checkbox context))
20167 (struct (org-element-property :structure context))
20168 (old-struct (copy-tree struct))
20169 (parents (org-list-parents-alist struct))
20170 (prevs (org-list-prevs-alist struct))
20171 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20172 (org-list-set-checkbox
20173 (org-element-property :begin context) struct
20174 (cond ((equal arg '(16)) "[-]")
20175 ((and (not box) (equal arg '(4))) "[ ]")
20176 ((or (not box) (equal arg '(4))) nil)
20177 ((eq box 'on) "[ ]")
20178 (t "[X]")))
20179 ;; Mimic `org-list-write-struct' but with grabbing
20180 ;; a return value from `org-list-struct-fix-box'.
20181 (org-list-struct-fix-ind struct parents 2)
20182 (org-list-struct-fix-item-end struct)
20183 (org-list-struct-fix-bul struct prevs)
20184 (org-list-struct-fix-ind struct parents)
20185 (let ((block-item
20186 (org-list-struct-fix-box struct parents prevs orderedp)))
20187 (if (and box (equal struct old-struct))
20188 (if (equal arg '(16))
20189 (message "Checkboxes already reset")
20190 (user-error "Cannot toggle this checkbox: %s"
20191 (if (eq box 'on)
20192 "all subitems checked"
20193 "unchecked subitems")))
20194 (org-list-struct-apply-struct struct old-struct)
20195 (org-update-checkbox-count-maybe))
20196 (when block-item
20197 (message "Checkboxes were removed due to empty box at line %d"
20198 (org-current-line block-item))))))
20199 (keyword
20200 (let ((org-inhibit-startup-visibility-stuff t)
20201 (org-startup-align-all-tables nil))
20202 (when (boundp 'org-table-coordinate-overlays)
20203 (mapc 'delete-overlay org-table-coordinate-overlays)
20204 (setq org-table-coordinate-overlays nil))
20205 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20206 (message "Local setup has been refreshed"))
20207 (plain-list
20208 ;; At a plain list, with a double C-u argument, set
20209 ;; checkboxes of each item to "[-]", whereas a single one
20210 ;; will toggle their presence according to the state of the
20211 ;; first item in the list. Without an argument, repair the
20212 ;; list.
20213 (let* ((begin (org-element-property :contents-begin context))
20214 (beginm (move-marker (make-marker) begin))
20215 (struct (org-element-property :structure context))
20216 (old-struct (copy-tree struct))
20217 (first-box (save-excursion
20218 (goto-char begin)
20219 (looking-at org-list-full-item-re)
20220 (match-string-no-properties 3)))
20221 (new-box (cond ((equal arg '(16)) "[-]")
20222 ((equal arg '(4)) (unless first-box "[ ]"))
20223 ((equal first-box "[X]") "[ ]")
20224 (t "[X]"))))
20225 (cond
20226 (arg
20227 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20228 (org-list-get-all-items
20229 begin struct (org-list-prevs-alist struct))))
20230 ((and first-box (eq (point) begin))
20231 ;; For convenience, when point is at bol on the first
20232 ;; item of the list and no argument is provided, simply
20233 ;; toggle checkbox of that item, if any.
20234 (org-list-set-checkbox begin struct new-box)))
20235 (org-list-write-struct
20236 struct (org-list-parents-alist struct) old-struct)
20237 (org-update-checkbox-count-maybe)
20238 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20239 ((property-drawer node-property)
20240 (call-interactively 'org-property-action))
20241 ((radio-target target)
20242 (call-interactively 'org-update-radio-target-regexp))
20243 (statistics-cookie
20244 (call-interactively 'org-update-statistics-cookies))
20245 ((table table-cell table-row)
20246 ;; At a table, recalculate every field and align it. Also
20247 ;; send the table if necessary. If the table has
20248 ;; a `table.el' type, just give up. At a table row or
20249 ;; cell, maybe recalculate line but always align table.
20250 (if (eq (org-element-property :type context) 'table.el)
20251 (message "Use C-c ' to edit table.el tables")
20252 (let ((org-enable-table-editor t))
20253 (if (or (eq type 'table)
20254 ;; Check if point is at a TBLFM line.
20255 (and (eq type 'table-row)
20256 (= (point) (org-element-property :end context))))
20257 (save-excursion
20258 (if (org-at-TBLFM-p)
20259 (progn (require 'org-table)
20260 (org-table-calc-current-TBLFM))
20261 (goto-char (org-element-property :contents-begin context))
20262 (org-call-with-arg 'org-table-recalculate (or arg t))
20263 (orgtbl-send-table 'maybe)))
20264 (org-table-maybe-eval-formula)
20265 (cond (arg (call-interactively 'org-table-recalculate))
20266 ((org-table-maybe-recalculate-line))
20267 (t (org-table-align)))))))
20268 (timestamp (org-timestamp-change 0 'day))
20269 (otherwise
20270 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20271 (user-error
20272 "C-c C-c can do nothing useful at this location")))))))))
20274 (defun org-mode-restart ()
20275 "Restart Org-mode, to scan again for special lines.
20276 Also updates the keyword regular expressions."
20277 (interactive)
20278 (org-mode)
20279 (message "Org-mode restarted"))
20281 (defun org-kill-note-or-show-branches ()
20282 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20283 (interactive)
20284 (if (not org-finish-function)
20285 (progn
20286 (hide-subtree)
20287 (call-interactively 'show-branches))
20288 (let ((org-note-abort t))
20289 (funcall org-finish-function))))
20291 (defun org-open-line (n)
20292 "Insert a new row in tables, call `open-line' elsewhere."
20293 (interactive "*p")
20294 (if (org-at-table-p)
20295 (org-table-insert-row)
20296 (open-line n)))
20298 (defun org-return (&optional indent)
20299 "Goto next table row or insert a newline.
20300 Calls `org-table-next-row' or `newline', depending on context.
20301 See the individual commands for more information."
20302 (interactive)
20303 (let (org-ts-what)
20304 (cond
20305 ((or (bobp) (org-in-src-block-p))
20306 (if indent (newline-and-indent) (newline)))
20307 ((org-at-table-p)
20308 (org-table-justify-field-maybe)
20309 (call-interactively 'org-table-next-row))
20310 ;; when `newline-and-indent' is called within a list, make sure
20311 ;; text moved stays inside the item.
20312 ((and (org-in-item-p) indent)
20313 (if (and (org-at-item-p) (>= (point) (match-end 0)))
20314 (progn
20315 (save-match-data (newline))
20316 (org-indent-line-to (length (match-string 0))))
20317 (let ((ind (org-get-indentation)))
20318 (newline)
20319 (if (org-looking-back org-list-end-re)
20320 (org-indent-line)
20321 (org-indent-line-to ind)))))
20322 ((and org-return-follows-link
20323 (org-at-timestamp-p t)
20324 (not (eq org-ts-what 'after)))
20325 (org-follow-timestamp-link))
20326 ((and org-return-follows-link
20327 (let ((tprop (get-text-property (point) 'face)))
20328 (or (eq tprop 'org-link)
20329 (and (listp tprop) (memq 'org-link tprop)))))
20330 (call-interactively 'org-open-at-point))
20331 ((and (org-at-heading-p)
20332 (looking-at
20333 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
20334 (org-show-entry)
20335 (end-of-line 1)
20336 (newline))
20337 (t (if indent (newline-and-indent) (newline))))))
20339 (defun org-return-indent ()
20340 "Goto next table row or insert a newline and indent.
20341 Calls `org-table-next-row' or `newline-and-indent', depending on
20342 context. See the individual commands for more information."
20343 (interactive)
20344 (org-return t))
20346 (defun org-ctrl-c-star ()
20347 "Compute table, or change heading status of lines.
20348 Calls `org-table-recalculate' or `org-toggle-heading',
20349 depending on context."
20350 (interactive)
20351 (cond
20352 ((org-at-table-p)
20353 (call-interactively 'org-table-recalculate))
20355 ;; Convert all lines in region to list items
20356 (call-interactively 'org-toggle-heading))))
20358 (defun org-ctrl-c-minus ()
20359 "Insert separator line in table or modify bullet status of line.
20360 Also turns a plain line or a region of lines into list items.
20361 Calls `org-table-insert-hline', `org-toggle-item', or
20362 `org-cycle-list-bullet', depending on context."
20363 (interactive)
20364 (cond
20365 ((org-at-table-p)
20366 (call-interactively 'org-table-insert-hline))
20367 ((org-region-active-p)
20368 (call-interactively 'org-toggle-item))
20369 ((org-in-item-p)
20370 (call-interactively 'org-cycle-list-bullet))
20372 (call-interactively 'org-toggle-item))))
20374 (defun org-toggle-item (arg)
20375 "Convert headings or normal lines to items, items to normal lines.
20376 If there is no active region, only the current line is considered.
20378 If the first non blank line in the region is a headline, convert
20379 all headlines to items, shifting text accordingly.
20381 If it is an item, convert all items to normal lines.
20383 If it is normal text, change region into a list of items.
20384 With a prefix argument ARG, change the region in a single item."
20385 (interactive "P")
20386 (let ((shift-text
20387 (function
20388 ;; Shift text in current section to IND, from point to END.
20389 ;; The function leaves point to END line.
20390 (lambda (ind end)
20391 (let ((min-i 1000) (end (copy-marker end)))
20392 ;; First determine the minimum indentation (MIN-I) of
20393 ;; the text.
20394 (save-excursion
20395 (catch 'exit
20396 (while (< (point) end)
20397 (let ((i (org-get-indentation)))
20398 (cond
20399 ;; Skip blank lines and inline tasks.
20400 ((looking-at "^[ \t]*$"))
20401 ((looking-at org-outline-regexp-bol))
20402 ;; We can't find less than 0 indentation.
20403 ((zerop i) (throw 'exit (setq min-i 0)))
20404 ((< i min-i) (setq min-i i))))
20405 (forward-line))))
20406 ;; Then indent each line so that a line indented to
20407 ;; MIN-I becomes indented to IND. Ignore blank lines
20408 ;; and inline tasks in the process.
20409 (let ((delta (- ind min-i)))
20410 (while (< (point) end)
20411 (unless (or (looking-at "^[ \t]*$")
20412 (looking-at org-outline-regexp-bol))
20413 (org-indent-line-to (+ (org-get-indentation) delta)))
20414 (forward-line)))))))
20415 (skip-blanks
20416 (function
20417 ;; Return beginning of first non-blank line, starting from
20418 ;; line at POS.
20419 (lambda (pos)
20420 (save-excursion
20421 (goto-char pos)
20422 (skip-chars-forward " \r\t\n")
20423 (point-at-bol)))))
20424 beg end)
20425 ;; Determine boundaries of changes.
20426 (if (org-region-active-p)
20427 (setq beg (funcall skip-blanks (region-beginning))
20428 end (copy-marker (region-end)))
20429 (setq beg (funcall skip-blanks (point-at-bol))
20430 end (copy-marker (point-at-eol))))
20431 ;; Depending on the starting line, choose an action on the text
20432 ;; between BEG and END.
20433 (org-with-limited-levels
20434 (save-excursion
20435 (goto-char beg)
20436 (cond
20437 ;; Case 1. Start at an item: de-itemize. Note that it only
20438 ;; happens when a region is active: `org-ctrl-c-minus'
20439 ;; would call `org-cycle-list-bullet' otherwise.
20440 ((org-at-item-p)
20441 (while (< (point) end)
20442 (when (org-at-item-p)
20443 (skip-chars-forward " \t")
20444 (delete-region (point) (match-end 0)))
20445 (forward-line)))
20446 ;; Case 2. Start at an heading: convert to items.
20447 ((org-at-heading-p)
20448 (let* ((bul (org-list-bullet-string "-"))
20449 (bul-len (length bul))
20450 ;; Indentation of the first heading. It should be
20451 ;; relative to the indentation of its parent, if any.
20452 (start-ind (save-excursion
20453 (cond
20454 ((not org-adapt-indentation) 0)
20455 ((not (outline-previous-heading)) 0)
20456 (t (length (match-string 0))))))
20457 ;; Level of first heading. Further headings will be
20458 ;; compared to it to determine hierarchy in the list.
20459 (ref-level (org-reduced-level (org-outline-level))))
20460 (while (< (point) end)
20461 (let* ((level (org-reduced-level (org-outline-level)))
20462 (delta (max 0 (- level ref-level))))
20463 ;; If current headline is less indented than the first
20464 ;; one, set it as reference, in order to preserve
20465 ;; subtrees.
20466 (when (< level ref-level) (setq ref-level level))
20467 (replace-match bul t t)
20468 (org-indent-line-to (+ start-ind (* delta bul-len)))
20469 ;; Ensure all text down to END (or SECTION-END) belongs
20470 ;; to the newly created item.
20471 (let ((section-end (save-excursion
20472 (or (outline-next-heading) (point)))))
20473 (forward-line)
20474 (funcall shift-text
20475 (+ start-ind (* (1+ delta) bul-len))
20476 (min end section-end)))))))
20477 ;; Case 3. Normal line with ARG: make the first line of region
20478 ;; an item, and shift indentation of others lines to
20479 ;; set them as item's body.
20480 (arg (let* ((bul (org-list-bullet-string "-"))
20481 (bul-len (length bul))
20482 (ref-ind (org-get-indentation)))
20483 (skip-chars-forward " \t")
20484 (insert bul)
20485 (forward-line)
20486 (while (< (point) end)
20487 ;; Ensure that lines less indented than first one
20488 ;; still get included in item body.
20489 (funcall shift-text
20490 (+ ref-ind bul-len)
20491 (min end (save-excursion (or (outline-next-heading)
20492 (point)))))
20493 (forward-line))))
20494 ;; Case 4. Normal line without ARG: turn each non-item line
20495 ;; into an item.
20497 (while (< (point) end)
20498 (unless (or (org-at-heading-p) (org-at-item-p))
20499 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
20500 (replace-match
20501 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
20502 (forward-line))))))))
20504 (defun org-toggle-heading (&optional nstars)
20505 "Convert headings to normal text, or items or text to headings.
20506 If there is no active region, only convert the current line.
20508 With a \\[universal-argument] prefix, convert the whole list at
20509 point into heading.
20511 In a region:
20513 - If the first non blank line is a headline, remove the stars
20514 from all headlines in the region.
20516 - If it is a normal line, turn each and every normal line (i.e.,
20517 not an heading or an item) in the region into headings. If you
20518 want to convert only the first line of this region, use one
20519 universal prefix argument.
20521 - If it is a plain list item, turn all plain list items into headings.
20523 When converting a line into a heading, the number of stars is chosen
20524 such that the lines become children of the current entry. However,
20525 when a numeric prefix argument is given, its value determines the
20526 number of stars to add."
20527 (interactive "P")
20528 (let ((skip-blanks
20529 (function
20530 ;; Return beginning of first non-blank line, starting from
20531 ;; line at POS.
20532 (lambda (pos)
20533 (save-excursion
20534 (goto-char pos)
20535 (while (org-at-comment-p) (forward-line))
20536 (skip-chars-forward " \r\t\n")
20537 (point-at-bol)))))
20538 beg end toggled)
20539 ;; Determine boundaries of changes. If a universal prefix has
20540 ;; been given, put the list in a region. If region ends at a bol,
20541 ;; do not consider the last line to be in the region.
20543 (when (and current-prefix-arg (org-at-item-p))
20544 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
20545 (org-mark-element))
20547 (if (org-region-active-p)
20548 (setq beg (funcall skip-blanks (region-beginning))
20549 end (copy-marker (save-excursion
20550 (goto-char (region-end))
20551 (if (bolp) (point) (point-at-eol)))))
20552 (setq beg (funcall skip-blanks (point-at-bol))
20553 end (copy-marker (point-at-eol))))
20554 ;; Ensure inline tasks don't count as headings.
20555 (org-with-limited-levels
20556 (save-excursion
20557 (goto-char beg)
20558 (cond
20559 ;; Case 1. Started at an heading: de-star headings.
20560 ((org-at-heading-p)
20561 (while (< (point) end)
20562 (when (org-at-heading-p t)
20563 (looking-at org-outline-regexp) (replace-match "")
20564 (setq toggled t))
20565 (forward-line)))
20566 ;; Case 2. Started at an item: change items into headlines.
20567 ;; One star will be added by `org-list-to-subtree'.
20568 ((org-at-item-p)
20569 (let* ((stars (make-string
20570 ;; subtract the star that will be added again by
20571 ;; `org-list-to-subtree'
20572 (if (numberp nstars) (1- nstars)
20573 (or (org-current-level) 0))
20574 ?*))
20575 (add-stars
20576 (cond (nstars "") ; stars from prefix only
20577 ((equal stars "") "") ; before first heading
20578 (org-odd-levels-only "*") ; inside heading, odd
20579 (t "")))) ; inside heading, oddeven
20580 (while (< (point) end)
20581 (when (org-at-item-p)
20582 ;; Pay attention to cases when region ends before list.
20583 (let* ((struct (org-list-struct))
20584 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
20585 (save-restriction
20586 (narrow-to-region (point) list-end)
20587 (insert
20588 (org-list-to-subtree
20589 (org-list-parse-list t)
20590 '(:istart (concat stars add-stars (funcall get-stars depth))
20591 :icount (concat stars add-stars (funcall get-stars depth)))))))
20592 (setq toggled t))
20593 (forward-line))))
20594 ;; Case 3. Started at normal text: make every line an heading,
20595 ;; skipping headlines and items.
20596 (t (let* ((stars
20597 (make-string
20598 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
20599 (add-stars
20600 (cond (nstars "") ; stars from prefix only
20601 ((equal stars "") "*") ; before first heading
20602 (org-odd-levels-only "**") ; inside heading, odd
20603 (t "*"))) ; inside heading, oddeven
20604 (rpl (concat stars add-stars " "))
20605 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
20606 (while (< (point) (if (equal nstars '(4)) lend end))
20607 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
20608 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
20609 (replace-match (concat rpl (match-string 2))) (setq toggled t))
20610 (forward-line)))))))
20611 (unless toggled (message "Cannot toggle heading from here"))))
20613 (defun org-meta-return (&optional arg)
20614 "Insert a new heading or wrap a region in a table.
20615 Calls `org-insert-heading' or `org-table-wrap-region', depending on context.
20616 See the individual commands for more information."
20617 (interactive "P")
20618 (org-check-before-invisible-edit 'insert)
20619 (cond
20620 ((run-hook-with-args-until-success 'org-metareturn-hook))
20621 ((or (org-at-drawer-p) (org-in-drawer-p) (org-at-property-p))
20622 (newline-and-indent))
20623 ((org-at-table-p)
20624 (call-interactively 'org-table-wrap-region))
20625 (t (call-interactively 'org-insert-heading))))
20627 ;;; Menu entries
20629 (defsubst org-in-subtree-not-table-p ()
20630 "Are we in a subtree and not in a table?"
20631 (and (not (org-before-first-heading-p))
20632 (not (org-at-table-p))))
20634 ;; Define the Org-mode menus
20635 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
20636 '("Tbl"
20637 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
20638 ["Next Field" org-cycle (org-at-table-p)]
20639 ["Previous Field" org-shifttab (org-at-table-p)]
20640 ["Next Row" org-return (org-at-table-p)]
20641 "--"
20642 ["Blank Field" org-table-blank-field (org-at-table-p)]
20643 ["Edit Field" org-table-edit-field (org-at-table-p)]
20644 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
20645 "--"
20646 ("Column"
20647 ["Move Column Left" org-metaleft (org-at-table-p)]
20648 ["Move Column Right" org-metaright (org-at-table-p)]
20649 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
20650 ["Insert Column" org-shiftmetaright (org-at-table-p)])
20651 ("Row"
20652 ["Move Row Up" org-metaup (org-at-table-p)]
20653 ["Move Row Down" org-metadown (org-at-table-p)]
20654 ["Delete Row" org-shiftmetaup (org-at-table-p)]
20655 ["Insert Row" org-shiftmetadown (org-at-table-p)]
20656 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
20657 "--"
20658 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
20659 ("Rectangle"
20660 ["Copy Rectangle" org-copy-special (org-at-table-p)]
20661 ["Cut Rectangle" org-cut-special (org-at-table-p)]
20662 ["Paste Rectangle" org-paste-special (org-at-table-p)]
20663 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
20664 "--"
20665 ("Calculate"
20666 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
20667 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
20668 ["Edit Formulas" org-edit-special (org-at-table-p)]
20669 "--"
20670 ["Recalculate line" org-table-recalculate (org-at-table-p)]
20671 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
20672 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
20673 "--"
20674 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
20675 "--"
20676 ["Sum Column/Rectangle" org-table-sum
20677 (or (org-at-table-p) (org-region-active-p))]
20678 ["Which Column?" org-table-current-column (org-at-table-p)])
20679 ["Debug Formulas"
20680 org-table-toggle-formula-debugger
20681 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
20682 ["Show Col/Row Numbers"
20683 org-table-toggle-coordinate-overlays
20684 :style toggle
20685 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
20686 "--"
20687 ["Create" org-table-create (and (not (org-at-table-p))
20688 org-enable-table-editor)]
20689 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
20690 ["Import from File" org-table-import (not (org-at-table-p))]
20691 ["Export to File" org-table-export (org-at-table-p)]
20692 "--"
20693 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
20695 (easy-menu-define org-org-menu org-mode-map "Org menu"
20696 '("Org"
20697 ("Show/Hide"
20698 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
20699 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
20700 ["Sparse Tree..." org-sparse-tree t]
20701 ["Reveal Context" org-reveal t]
20702 ["Show All" show-all t]
20703 "--"
20704 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
20705 "--"
20706 ["New Heading" org-insert-heading t]
20707 ("Navigate Headings"
20708 ["Up" outline-up-heading t]
20709 ["Next" outline-next-visible-heading t]
20710 ["Previous" outline-previous-visible-heading t]
20711 ["Next Same Level" outline-forward-same-level t]
20712 ["Previous Same Level" outline-backward-same-level t]
20713 "--"
20714 ["Jump" org-goto t])
20715 ("Edit Structure"
20716 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
20717 "--"
20718 ["Move Subtree Up" org-shiftmetaup (org-in-subtree-not-table-p)]
20719 ["Move Subtree Down" org-shiftmetadown (org-in-subtree-not-table-p)]
20720 "--"
20721 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
20722 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
20723 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
20724 "--"
20725 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
20726 "--"
20727 ["Copy visible text" org-copy-visible t]
20728 "--"
20729 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
20730 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
20731 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
20732 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
20733 "--"
20734 ["Sort Region/Children" org-sort t]
20735 "--"
20736 ["Convert to odd levels" org-convert-to-odd-levels t]
20737 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
20738 ("Editing"
20739 ["Emphasis..." org-emphasize t]
20740 ["Edit Source Example" org-edit-special t]
20741 "--"
20742 ["Footnote new/jump" org-footnote-action t]
20743 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
20744 ("Archive"
20745 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
20746 "--"
20747 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
20748 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
20749 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
20751 "--"
20752 ("Hyperlinks"
20753 ["Store Link (Global)" org-store-link t]
20754 ["Find existing link to here" org-occur-link-in-agenda-files t]
20755 ["Insert Link" org-insert-link t]
20756 ["Follow Link" org-open-at-point t]
20757 "--"
20758 ["Next link" org-next-link t]
20759 ["Previous link" org-previous-link t]
20760 "--"
20761 ["Descriptive Links"
20762 org-toggle-link-display
20763 :style radio
20764 :selected org-descriptive-links
20766 ["Literal Links"
20767 org-toggle-link-display
20768 :style radio
20769 :selected (not org-descriptive-links)])
20770 "--"
20771 ("TODO Lists"
20772 ["TODO/DONE/-" org-todo t]
20773 ("Select keyword"
20774 ["Next keyword" org-shiftright (org-at-heading-p)]
20775 ["Previous keyword" org-shiftleft (org-at-heading-p)]
20776 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
20777 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
20778 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
20779 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
20780 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
20781 "--"
20782 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
20783 :selected org-enforce-todo-dependencies :style toggle :active t]
20784 "Settings for tree at point"
20785 ["Do Children sequentially" org-toggle-ordered-property :style radio
20786 :selected (org-entry-get nil "ORDERED")
20787 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
20788 ["Do Children parallel" org-toggle-ordered-property :style radio
20789 :selected (not (org-entry-get nil "ORDERED"))
20790 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
20791 "--"
20792 ["Set Priority" org-priority t]
20793 ["Priority Up" org-shiftup t]
20794 ["Priority Down" org-shiftdown t]
20795 "--"
20796 ["Get news from all feeds" org-feed-update-all t]
20797 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
20798 ["Customize feeds" (customize-variable 'org-feed-alist) t])
20799 ("TAGS and Properties"
20800 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
20801 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
20802 "--"
20803 ["Set property" org-set-property (not (org-before-first-heading-p))]
20804 ["Column view of properties" org-columns t]
20805 ["Insert Column View DBlock" org-insert-columns-dblock t])
20806 ("Dates and Scheduling"
20807 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
20808 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
20809 ("Change Date"
20810 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
20811 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
20812 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
20813 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
20814 ["Compute Time Range" org-evaluate-time-range t]
20815 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
20816 ["Deadline" org-deadline (not (org-before-first-heading-p))]
20817 "--"
20818 ["Custom time format" org-toggle-time-stamp-overlays
20819 :style radio :selected org-display-custom-times]
20820 "--"
20821 ["Goto Calendar" org-goto-calendar t]
20822 ["Date from Calendar" org-date-from-calendar t]
20823 "--"
20824 ["Start/Restart Timer" org-timer-start t]
20825 ["Pause/Continue Timer" org-timer-pause-or-continue t]
20826 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
20827 ["Insert Timer String" org-timer t]
20828 ["Insert Timer Item" org-timer-item t])
20829 ("Logging work"
20830 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
20831 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
20832 ["Clock out" org-clock-out t]
20833 ["Clock cancel" org-clock-cancel t]
20834 "--"
20835 ["Mark as default task" org-clock-mark-default-task t]
20836 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
20837 ["Goto running clock" org-clock-goto t]
20838 "--"
20839 ["Display times" org-clock-display t]
20840 ["Create clock table" org-clock-report t]
20841 "--"
20842 ["Record DONE time"
20843 (progn (setq org-log-done (not org-log-done))
20844 (message "Switching to %s will %s record a timestamp"
20845 (car org-done-keywords)
20846 (if org-log-done "automatically" "not")))
20847 :style toggle :selected org-log-done])
20848 "--"
20849 ["Agenda Command..." org-agenda t]
20850 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
20851 ("File List for Agenda")
20852 ("Special views current file"
20853 ["TODO Tree" org-show-todo-tree t]
20854 ["Check Deadlines" org-check-deadlines t]
20855 ["Timeline" org-timeline t]
20856 ["Tags/Property tree" org-match-sparse-tree t])
20857 "--"
20858 ["Export/Publish..." org-export-dispatch t]
20859 ("LaTeX"
20860 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
20861 :selected org-cdlatex-mode]
20862 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
20863 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
20864 ["Modify math symbol" org-cdlatex-math-modify
20865 (org-inside-LaTeX-fragment-p)]
20866 ["Insert citation" org-reftex-citation t]
20867 "--"
20868 ["Template for BEAMER" (org-beamer-insert-options-template) t])
20869 "--"
20870 ("MobileOrg"
20871 ["Push Files and Views" org-mobile-push t]
20872 ["Get Captured and Flagged" org-mobile-pull t]
20873 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
20874 "--"
20875 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
20876 "--"
20877 ("Documentation"
20878 ["Show Version" org-version t]
20879 ["Info Documentation" org-info t])
20880 ("Customize"
20881 ["Browse Org Group" org-customize t]
20882 "--"
20883 ["Expand This Menu" org-create-customize-menu
20884 (fboundp 'customize-menu-create)])
20885 ["Send bug report" org-submit-bug-report t]
20886 "--"
20887 ("Refresh/Reload"
20888 ["Refresh setup current buffer" org-mode-restart t]
20889 ["Reload Org (after update)" org-reload t]
20890 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
20893 (defun org-info (&optional node)
20894 "Read documentation for Org-mode in the info system.
20895 With optional NODE, go directly to that node."
20896 (interactive)
20897 (info (format "(org)%s" (or node ""))))
20899 ;;;###autoload
20900 (defun org-submit-bug-report ()
20901 "Submit a bug report on Org-mode via mail.
20903 Don't hesitate to report any problems or inaccurate documentation.
20905 If you don't have setup sending mail from (X)Emacs, please copy the
20906 output buffer into your mail program, as it gives us important
20907 information about your Org-mode version and configuration."
20908 (interactive)
20909 (require 'reporter)
20910 (org-load-modules-maybe)
20911 (org-require-autoloaded-modules)
20912 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
20913 (reporter-submit-bug-report
20914 "emacs-orgmode@gnu.org"
20915 (org-version nil 'full)
20916 (let (list)
20917 (save-window-excursion
20918 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
20919 (delete-other-windows)
20920 (erase-buffer)
20921 (insert "You are about to submit a bug report to the Org-mode mailing list.
20923 We would like to add your full Org-mode and Outline configuration to the
20924 bug report. This greatly simplifies the work of the maintainer and
20925 other experts on the mailing list.
20927 HOWEVER, some variables you have customized may contain private
20928 information. The names of customers, colleagues, or friends, might
20929 appear in the form of file names, tags, todo states, or search strings.
20930 If you answer yes to the prompt, you might want to check and remove
20931 such private information before sending the email.")
20932 (add-text-properties (point-min) (point-max) '(face org-warning))
20933 (when (yes-or-no-p "Include your Org-mode configuration ")
20934 (mapatoms
20935 (lambda (v)
20936 (and (boundp v)
20937 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
20938 (or (and (symbol-value v)
20939 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
20940 (and
20941 (get v 'custom-type) (get v 'standard-value)
20942 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
20943 (push v list)))))
20944 (kill-buffer (get-buffer "*Warn about privacy*"))
20945 list))
20946 nil nil
20947 "Remember to cover the basics, that is, what you expected to happen and
20948 what in fact did happen. You don't know how to make a good report? See
20950 http://orgmode.org/manual/Feedback.html#Feedback
20952 Your bug report will be posted to the Org-mode mailing list.
20953 ------------------------------------------------------------------------")
20954 (save-excursion
20955 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
20956 (replace-match "\\1Bug: \\3 [\\2]")))))
20959 (defun org-install-agenda-files-menu ()
20960 (let ((bl (buffer-list)))
20961 (save-excursion
20962 (while bl
20963 (set-buffer (pop bl))
20964 (if (derived-mode-p 'org-mode) (setq bl nil)))
20965 (when (derived-mode-p 'org-mode)
20966 (easy-menu-change
20967 '("Org") "File List for Agenda"
20968 (append
20969 (list
20970 ["Edit File List" (org-edit-agenda-file-list) t]
20971 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
20972 ["Remove Current File from List" org-remove-file t]
20973 ["Cycle through agenda files" org-cycle-agenda-files t]
20974 ["Occur in all agenda files" org-occur-in-agenda-files t]
20975 "--")
20976 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
20978 ;;;; Documentation
20980 (defun org-require-autoloaded-modules ()
20981 (interactive)
20982 (mapc 'require
20983 '(org-agenda org-archive org-attach org-clock org-colview org-id
20984 org-remember org-table org-timer)))
20986 ;;;###autoload
20987 (defun org-reload (&optional uncompiled)
20988 "Reload all org lisp files.
20989 With prefix arg UNCOMPILED, load the uncompiled versions."
20990 (interactive "P")
20991 (require 'loadhist)
20992 (let* ((org-dir (org-find-library-dir "org"))
20993 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
20994 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
20995 (remove-re (mapconcat 'identity
20996 (mapcar (lambda (f) (concat "^" f "$"))
20997 (list (if (featurep 'xemacs)
20998 "org-colview"
20999 "org-colview-xemacs")
21000 "org" "org-loaddefs" "org-version"))
21001 "\\|"))
21002 (feats (delete-dups
21003 (mapcar 'file-name-sans-extension
21004 (mapcar 'file-name-nondirectory
21005 (delq nil
21006 (mapcar 'feature-file
21007 features))))))
21008 (lfeat (append
21009 (sort
21010 (setq feats
21011 (delq nil (mapcar
21012 (lambda (f)
21013 (if (and (string-match feature-re f)
21014 (not (string-match remove-re f)))
21015 f nil))
21016 feats)))
21017 'string-lessp)
21018 (list "org-version" "org")))
21019 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21020 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21021 load-uncore load-misses)
21022 (setq load-misses
21023 (delq 't
21024 (mapcar (lambda (f)
21025 (or (org-load-noerror-mustsuffix (concat org-dir f))
21026 (and (string= org-dir contrib-dir)
21027 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21028 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21029 (add-to-list 'load-uncore f 'append)
21032 lfeat)))
21033 (if load-uncore
21034 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21035 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21036 (if load-misses
21037 (message "Some error occured while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21038 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21039 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21041 ;;;###autoload
21042 (defun org-customize ()
21043 "Call the customize function with org as argument."
21044 (interactive)
21045 (org-load-modules-maybe)
21046 (org-require-autoloaded-modules)
21047 (customize-browse 'org))
21049 (defun org-create-customize-menu ()
21050 "Create a full customization menu for Org-mode, insert it into the menu."
21051 (interactive)
21052 (org-load-modules-maybe)
21053 (org-require-autoloaded-modules)
21054 (if (fboundp 'customize-menu-create)
21055 (progn
21056 (easy-menu-change
21057 '("Org") "Customize"
21058 `(["Browse Org group" org-customize t]
21059 "--"
21060 ,(customize-menu-create 'org)
21061 ["Set" Custom-set t]
21062 ["Save" Custom-save t]
21063 ["Reset to Current" Custom-reset-current t]
21064 ["Reset to Saved" Custom-reset-saved t]
21065 ["Reset to Standard Settings" Custom-reset-standard t]))
21066 (message "\"Org\"-menu now contains full customization menu"))
21067 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21069 ;;;; Miscellaneous stuff
21071 ;;; Generally useful functions
21073 (defun org-get-at-bol (property)
21074 "Get text property PROPERTY at beginning of line."
21075 (get-text-property (point-at-bol) property))
21077 (defun org-find-text-property-in-string (prop s)
21078 "Return the first non-nil value of property PROP in string S."
21079 (or (get-text-property 0 prop s)
21080 (get-text-property (or (next-single-property-change 0 prop s) 0)
21081 prop s)))
21083 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21084 "Display the given MESSAGE as a warning."
21085 (if (fboundp 'display-warning)
21086 (display-warning 'org message
21087 (if (featurep 'xemacs) 'warning :warning))
21088 (let ((buf (get-buffer-create "*Org warnings*")))
21089 (with-current-buffer buf
21090 (goto-char (point-max))
21091 (insert "Warning (Org): " message)
21092 (unless (bolp)
21093 (newline)))
21094 (display-buffer buf)
21095 (sit-for 0))))
21097 (defun org-eval (form)
21098 "Eval FORM and return result."
21099 (condition-case error
21100 (eval form)
21101 (error (format "%%![Error: %s]" error))))
21103 (defun org-in-clocktable-p ()
21104 "Check if the cursor is in a clocktable."
21105 (let ((pos (point)) start)
21106 (save-excursion
21107 (end-of-line 1)
21108 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21109 (setq start (match-beginning 0))
21110 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21111 (>= (match-end 0) pos)
21112 start))))
21114 (defun org-in-commented-line ()
21115 "Is point in a line starting with `#'?"
21116 (equal (char-after (point-at-bol)) ?#))
21118 (defun org-in-indented-comment-line ()
21119 "Is point in a line starting with `#' after some white space?"
21120 (save-excursion
21121 (save-match-data
21122 (goto-char (point-at-bol))
21123 (looking-at "[ \t]*#"))))
21125 (defun org-in-verbatim-emphasis ()
21126 (save-match-data
21127 (and (org-in-regexp org-emph-re 2)
21128 (>= (point) (match-beginning 3))
21129 (<= (point) (match-end 4))
21130 (member (match-string 3) '("=" "~")))))
21132 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21133 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21134 (if (and marker (marker-buffer marker)
21135 (buffer-live-p (marker-buffer marker)))
21136 (progn
21137 (org-pop-to-buffer-same-window (marker-buffer marker))
21138 (if (or (> marker (point-max)) (< marker (point-min)))
21139 (widen))
21140 (goto-char marker)
21141 (org-show-context 'org-goto))
21142 (if bookmark
21143 (bookmark-jump bookmark)
21144 (error "Cannot find location"))))
21146 (defun org-quote-csv-field (s)
21147 "Quote field for inclusion in CSV material."
21148 (if (string-match "[\",]" s)
21149 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21152 (defun org-force-self-insert (N)
21153 "Needed to enforce self-insert under remapping."
21154 (interactive "p")
21155 (self-insert-command N))
21157 (defun org-string-width (s)
21158 "Compute width of string, ignoring invisible characters.
21159 This ignores character with invisibility property `org-link', and also
21160 characters with property `org-cwidth', because these will become invisible
21161 upon the next fontification round."
21162 (let (b l)
21163 (when (or (eq t buffer-invisibility-spec)
21164 (assq 'org-link buffer-invisibility-spec))
21165 (while (setq b (text-property-any 0 (length s)
21166 'invisible 'org-link s))
21167 (setq s (concat (substring s 0 b)
21168 (substring s (or (next-single-property-change
21169 b 'invisible s) (length s)))))))
21170 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21171 (setq s (concat (substring s 0 b)
21172 (substring s (or (next-single-property-change
21173 b 'org-cwidth s) (length s))))))
21174 (setq l (string-width s) b -1)
21175 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21176 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21179 (defun org-shorten-string (s maxlength)
21180 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21181 If the string is shorter or has length MAXLENGTH, just return the
21182 original string. If it is longer, the functions finds a space in the
21183 string, breaks this string off at that locations and adds three dots
21184 as ellipsis. Including the ellipsis, the string will not be longer
21185 than MAXLENGTH. If finding a good breaking point in the string does
21186 not work, the string is just chopped off in the middle of a word
21187 if necessary."
21188 (if (<= (length s) maxlength)
21190 (let* ((n (max (- maxlength 4) 1))
21191 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21192 (if (string-match re s)
21193 (concat (match-string 1 s) "...")
21194 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21196 (defun org-get-indentation (&optional line)
21197 "Get the indentation of the current line, interpreting tabs.
21198 When LINE is given, assume it represents a line and compute its indentation."
21199 (if line
21200 (if (string-match "^ *" (org-remove-tabs line))
21201 (match-end 0))
21202 (save-excursion
21203 (beginning-of-line 1)
21204 (skip-chars-forward " \t")
21205 (current-column))))
21207 (defun org-get-string-indentation (s)
21208 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21209 (let ((n -1) (i 0) (w tab-width) c)
21210 (catch 'exit
21211 (while (< (setq n (1+ n)) (length s))
21212 (setq c (aref s n))
21213 (cond ((= c ?\ ) (setq i (1+ i)))
21214 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21215 (t (throw 'exit t)))))
21218 (defun org-remove-tabs (s &optional width)
21219 "Replace tabulators in S with spaces.
21220 Assumes that s is a single line, starting in column 0."
21221 (setq width (or width tab-width))
21222 (while (string-match "\t" s)
21223 (setq s (replace-match
21224 (make-string
21225 (- (* width (/ (+ (match-beginning 0) width) width))
21226 (match-beginning 0)) ?\ )
21227 t t s)))
21230 (defun org-fix-indentation (line ind)
21231 "Fix indentation in LINE.
21232 IND is a cons cell with target and minimum indentation.
21233 If the current indentation in LINE is smaller than the minimum,
21234 leave it alone. If it is larger than ind, set it to the target."
21235 (let* ((l (org-remove-tabs line))
21236 (i (org-get-indentation l))
21237 (i1 (car ind)) (i2 (cdr ind)))
21238 (if (>= i i2) (setq l (substring line i2)))
21239 (if (> i1 0)
21240 (concat (make-string i1 ?\ ) l)
21241 l)))
21243 (defun org-remove-indentation (code &optional n)
21244 "Remove the maximum common indentation from the lines in CODE.
21245 N may optionally be the number of spaces to remove."
21246 (with-temp-buffer
21247 (insert code)
21248 (org-do-remove-indentation n)
21249 (buffer-string)))
21251 (defun org-do-remove-indentation (&optional n)
21252 "Remove the maximum common indentation from the buffer."
21253 (untabify (point-min) (point-max))
21254 (let ((min 10000) re)
21255 (if n
21256 (setq min n)
21257 (goto-char (point-min))
21258 (while (re-search-forward "^ *[^ \n]" nil t)
21259 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21260 (unless (or (= min 0) (= min 10000))
21261 (setq re (format "^ \\{%d\\}" min))
21262 (goto-char (point-min))
21263 (while (re-search-forward re nil t)
21264 (replace-match "")
21265 (end-of-line 1))
21266 min)))
21268 (defun org-fill-template (template alist)
21269 "Find each %key of ALIST in TEMPLATE and replace it."
21270 (let ((case-fold-search nil)
21271 entry key value)
21272 (setq alist (sort (copy-sequence alist)
21273 (lambda (a b) (< (length (car a)) (length (car b))))))
21274 (while (setq entry (pop alist))
21275 (setq template
21276 (replace-regexp-in-string
21277 (concat "%" (regexp-quote (car entry)))
21278 (or (cdr entry) "") template t t)))
21279 template))
21281 (defun org-base-buffer (buffer)
21282 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21283 (if (not buffer)
21284 buffer
21285 (or (buffer-base-buffer buffer)
21286 buffer)))
21288 (defun org-trim (s)
21289 "Remove whitespace at beginning and end of string."
21290 (if (string-match "\\`[ \t\n\r]+" s) (setq s (replace-match "" t t s)))
21291 (if (string-match "[ \t\n\r]+\\'" s) (setq s (replace-match "" t t s)))
21294 (defun org-wrap (string &optional width lines)
21295 "Wrap string to either a number of lines, or a width in characters.
21296 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21297 that costs. If there is a word longer than WIDTH, the text is actually
21298 wrapped to the length of that word.
21299 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21300 many lines, whatever width that takes.
21301 The return value is a list of lines, without newlines at the end."
21302 (let* ((words (org-split-string string "[ \t\n]+"))
21303 (maxword (apply 'max (mapcar 'org-string-width words)))
21304 w ll)
21305 (cond (width
21306 (org-do-wrap words (max maxword width)))
21307 (lines
21308 (setq w maxword)
21309 (setq ll (org-do-wrap words maxword))
21310 (if (<= (length ll) lines)
21312 (setq ll words)
21313 (while (> (length ll) lines)
21314 (setq w (1+ w))
21315 (setq ll (org-do-wrap words w)))
21316 ll))
21317 (t (error "Cannot wrap this")))))
21319 (defun org-do-wrap (words width)
21320 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
21321 (let (lines line)
21322 (while words
21323 (setq line (pop words))
21324 (while (and words (< (+ (length line) (length (car words))) width))
21325 (setq line (concat line " " (pop words))))
21326 (setq lines (push line lines)))
21327 (nreverse lines)))
21329 (defun org-split-string (string &optional separators)
21330 "Splits STRING into substrings at SEPARATORS.
21331 No empty strings are returned if there are matches at the beginning
21332 and end of string."
21333 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
21334 (start 0)
21335 notfirst
21336 (list nil))
21337 (while (and (string-match rexp string
21338 (if (and notfirst
21339 (= start (match-beginning 0))
21340 (< start (length string)))
21341 (1+ start) start))
21342 (< (match-beginning 0) (length string)))
21343 (setq notfirst t)
21344 (or (eq (match-beginning 0) 0)
21345 (and (eq (match-beginning 0) (match-end 0))
21346 (eq (match-beginning 0) start))
21347 (setq list
21348 (cons (substring string start (match-beginning 0))
21349 list)))
21350 (setq start (match-end 0)))
21351 (or (eq start (length string))
21352 (setq list
21353 (cons (substring string start)
21354 list)))
21355 (nreverse list)))
21357 (defun org-quote-vert (s)
21358 "Replace \"|\" with \"\\vert\"."
21359 (while (string-match "|" s)
21360 (setq s (replace-match "\\vert" t t s)))
21363 (defun org-uuidgen-p (s)
21364 "Is S an ID created by UUIDGEN?"
21365 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
21367 (defun org-in-src-block-p (&optional inside)
21368 "Whether point is in a code source block.
21369 When INSIDE is non-nil, don't consider we are within a src block
21370 when point is at #+BEGIN_SRC or #+END_SRC."
21371 (let ((case-fold-search t) ov)
21372 (or (and (setq ov (overlays-at (point)))
21373 (memq 'org-block-background
21374 (overlay-properties (car ov))))
21375 (and (not inside)
21376 (save-match-data
21377 (save-excursion
21378 (beginning-of-line)
21379 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
21381 (defun org-context ()
21382 "Return a list of contexts of the current cursor position.
21383 If several contexts apply, all are returned.
21384 Each context entry is a list with a symbol naming the context, and
21385 two positions indicating start and end of the context. Possible
21386 contexts are:
21388 :headline anywhere in a headline
21389 :headline-stars on the leading stars in a headline
21390 :todo-keyword on a TODO keyword (including DONE) in a headline
21391 :tags on the TAGS in a headline
21392 :priority on the priority cookie in a headline
21393 :item on the first line of a plain list item
21394 :item-bullet on the bullet/number of a plain list item
21395 :checkbox on the checkbox in a plain list item
21396 :table in an org-mode table
21397 :table-special on a special filed in a table
21398 :table-table in a table.el table
21399 :clocktable in a clocktable
21400 :src-block in a source block
21401 :link on a hyperlink
21402 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT, QUOTE.
21403 :target on a <<target>>
21404 :radio-target on a <<<radio-target>>>
21405 :latex-fragment on a LaTeX fragment
21406 :latex-preview on a LaTeX fragment with overlaid preview image
21408 This function expects the position to be visible because it uses font-lock
21409 faces as a help to recognize the following contexts: :table-special, :link,
21410 and :keyword."
21411 (let* ((f (get-text-property (point) 'face))
21412 (faces (if (listp f) f (list f)))
21413 (case-fold-search t)
21414 (p (point)) clist o)
21415 ;; First the large context
21416 (cond
21417 ((org-at-heading-p t)
21418 (push (list :headline (point-at-bol) (point-at-eol)) clist)
21419 (when (progn
21420 (beginning-of-line 1)
21421 (looking-at org-todo-line-tags-regexp))
21422 (push (org-point-in-group p 1 :headline-stars) clist)
21423 (push (org-point-in-group p 2 :todo-keyword) clist)
21424 (push (org-point-in-group p 4 :tags) clist))
21425 (goto-char p)
21426 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
21427 (if (looking-at "\\[#[A-Z0-9]\\]")
21428 (push (org-point-in-group p 0 :priority) clist)))
21430 ((org-at-item-p)
21431 (push (org-point-in-group p 2 :item-bullet) clist)
21432 (push (list :item (point-at-bol)
21433 (save-excursion (org-end-of-item) (point)))
21434 clist)
21435 (and (org-at-item-checkbox-p)
21436 (push (org-point-in-group p 0 :checkbox) clist)))
21438 ((org-at-table-p)
21439 (push (list :table (org-table-begin) (org-table-end)) clist)
21440 (if (memq 'org-formula faces)
21441 (push (list :table-special
21442 (previous-single-property-change p 'face)
21443 (next-single-property-change p 'face)) clist)))
21444 ((org-at-table-p 'any)
21445 (push (list :table-table) clist)))
21446 (goto-char p)
21448 (let ((case-fold-search t))
21449 ;; New the "medium" contexts: clocktables, source blocks
21450 (cond ((org-in-clocktable-p)
21451 (push (list :clocktable
21452 (and (or (looking-at "#\\+BEGIN: clocktable")
21453 (search-backward "#+BEGIN: clocktable" nil t))
21454 (match-beginning 0))
21455 (and (re-search-forward "#\\+END:?" nil t)
21456 (match-end 0))) clist))
21457 ((org-in-src-block-p)
21458 (push (list :src-block
21459 (and (or (looking-at "#\\+BEGIN_SRC")
21460 (search-backward "#+BEGIN_SRC" nil t))
21461 (match-beginning 0))
21462 (and (search-forward "#+END_SRC" nil t)
21463 (match-beginning 0))) clist))))
21464 (goto-char p)
21466 ;; Now the small context
21467 (cond
21468 ((org-at-timestamp-p)
21469 (push (org-point-in-group p 0 :timestamp) clist))
21470 ((memq 'org-link faces)
21471 (push (list :link
21472 (previous-single-property-change p 'face)
21473 (next-single-property-change p 'face)) clist))
21474 ((memq 'org-special-keyword faces)
21475 (push (list :keyword
21476 (previous-single-property-change p 'face)
21477 (next-single-property-change p 'face)) clist))
21478 ((org-at-target-p)
21479 (push (org-point-in-group p 0 :target) clist)
21480 (goto-char (1- (match-beginning 0)))
21481 (if (looking-at org-radio-target-regexp)
21482 (push (org-point-in-group p 0 :radio-target) clist))
21483 (goto-char p))
21484 ((setq o (car (delq nil
21485 (mapcar
21486 (lambda (x)
21487 (if (memq x org-latex-fragment-image-overlays) x))
21488 (overlays-at (point))))))
21489 (push (list :latex-fragment
21490 (overlay-start o) (overlay-end o)) clist)
21491 (push (list :latex-preview
21492 (overlay-start o) (overlay-end o)) clist))
21493 ((org-inside-LaTeX-fragment-p)
21494 ;; FIXME: positions wrong.
21495 (push (list :latex-fragment (point) (point)) clist)))
21497 (setq clist (nreverse (delq nil clist)))
21498 clist))
21500 ;; FIXME: Compare with at-regexp-p Do we need both?
21501 (defun org-in-regexp (re &optional nlines visually)
21502 "Check if point is inside a match of regexp.
21503 Normally only the current line is checked, but you can include NLINES extra
21504 lines both before and after point into the search.
21505 If VISUALLY is set, require that the cursor is not after the match but
21506 really on, so that the block visually is on the match."
21507 (catch 'exit
21508 (let ((pos (point))
21509 (eol (point-at-eol (+ 1 (or nlines 0))))
21510 (inc (if visually 1 0)))
21511 (save-excursion
21512 (beginning-of-line (- 1 (or nlines 0)))
21513 (while (re-search-forward re eol t)
21514 (if (and (<= (match-beginning 0) pos)
21515 (>= (+ inc (match-end 0)) pos))
21516 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
21518 (defun org-at-regexp-p (regexp)
21519 "Is point inside a match of REGEXP in the current line?"
21520 (catch 'exit
21521 (save-excursion
21522 (let ((pos (point)) (end (point-at-eol)))
21523 (beginning-of-line 1)
21524 (while (re-search-forward regexp end t)
21525 (if (and (<= (match-beginning 0) pos)
21526 (>= (match-end 0) pos))
21527 (throw 'exit t)))
21528 nil))))
21530 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
21531 "Non-nil when point is between matches of START-RE and END-RE.
21533 Also return a non-nil value when point is on one of the matches.
21535 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
21536 buffer positions. Default values are the positions of headlines
21537 surrounding the point.
21539 The functions returns a cons cell whose car (resp. cdr) is the
21540 position before START-RE (resp. after END-RE)."
21541 (save-match-data
21542 (let ((pos (point))
21543 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
21544 (limit-down (or lim-down (save-excursion (outline-next-heading))))
21545 beg end)
21546 (save-excursion
21547 ;; Point is on a block when on START-RE or if START-RE can be
21548 ;; found before it...
21549 (and (or (org-at-regexp-p start-re)
21550 (re-search-backward start-re limit-up t))
21551 (setq beg (match-beginning 0))
21552 ;; ... and END-RE after it...
21553 (goto-char (match-end 0))
21554 (re-search-forward end-re limit-down t)
21555 (> (setq end (match-end 0)) pos)
21556 ;; ... without another START-RE in-between.
21557 (goto-char (match-beginning 0))
21558 (not (re-search-backward start-re (1+ beg) t))
21559 ;; Return value.
21560 (cons beg end))))))
21562 (defun org-in-block-p (names)
21563 "Non-nil when point belongs to a block whose name belongs to NAMES.
21565 NAMES is a list of strings containing names of blocks.
21567 Return first block name matched, or nil. Beware that in case of
21568 nested blocks, the returned name may not belong to the closest
21569 block from point."
21570 (save-match-data
21571 (catch 'exit
21572 (let ((case-fold-search t)
21573 (lim-up (save-excursion (outline-previous-heading)))
21574 (lim-down (save-excursion (outline-next-heading))))
21575 (mapc (lambda (name)
21576 (let ((n (regexp-quote name)))
21577 (when (org-between-regexps-p
21578 (concat "^[ \t]*#\\+begin_" n)
21579 (concat "^[ \t]*#\\+end_" n)
21580 lim-up lim-down)
21581 (throw 'exit n))))
21582 names))
21583 nil)))
21585 (defun org-in-drawer-p ()
21586 "Is point within a drawer?"
21587 (save-match-data
21588 (let ((case-fold-search t)
21589 (lim-up (save-excursion (outline-previous-heading)))
21590 (lim-down (save-excursion (outline-next-heading))))
21591 (org-between-regexps-p
21592 (concat "^[ \t]*:" (regexp-opt org-drawers) ":")
21593 "^[ \t]*:end:.*$"
21594 lim-up lim-down))))
21596 (defun org-occur-in-agenda-files (regexp &optional nlines)
21597 "Call `multi-occur' with buffers for all agenda files."
21598 (interactive "sOrg-files matching: \np")
21599 (let* ((files (org-agenda-files))
21600 (tnames (mapcar 'file-truename files))
21601 (extra org-agenda-text-search-extra-files)
21603 (when (eq (car extra) 'agenda-archives)
21604 (setq extra (cdr extra))
21605 (setq files (org-add-archive-files files)))
21606 (while (setq f (pop extra))
21607 (unless (member (file-truename f) tnames)
21608 (add-to-list 'files f 'append)
21609 (add-to-list 'tnames (file-truename f) 'append)))
21610 (multi-occur
21611 (mapcar (lambda (x)
21612 (with-current-buffer
21613 (or (get-file-buffer x) (find-file-noselect x))
21614 (widen)
21615 (current-buffer)))
21616 files)
21617 regexp)))
21619 (if (boundp 'occur-mode-find-occurrence-hook)
21620 ;; Emacs 23
21621 (add-hook 'occur-mode-find-occurrence-hook
21622 (lambda ()
21623 (when (derived-mode-p 'org-mode)
21624 (org-reveal))))
21625 ;; Emacs 22
21626 (defadvice occur-mode-goto-occurrence
21627 (after org-occur-reveal activate)
21628 (and (derived-mode-p 'org-mode) (org-reveal)))
21629 (defadvice occur-mode-goto-occurrence-other-window
21630 (after org-occur-reveal activate)
21631 (and (derived-mode-p 'org-mode) (org-reveal)))
21632 (defadvice occur-mode-display-occurrence
21633 (after org-occur-reveal activate)
21634 (when (derived-mode-p 'org-mode)
21635 (let ((pos (occur-mode-find-occurrence)))
21636 (with-current-buffer (marker-buffer pos)
21637 (save-excursion
21638 (goto-char pos)
21639 (org-reveal)))))))
21641 (defun org-occur-link-in-agenda-files ()
21642 "Create a link and search for it in the agendas.
21643 The link is not stored in `org-stored-links', it is just created
21644 for the search purpose."
21645 (interactive)
21646 (let ((link (condition-case nil
21647 (org-store-link nil)
21648 (error "Unable to create a link to here"))))
21649 (org-occur-in-agenda-files (regexp-quote link))))
21651 (defun org-reverse-string (string)
21652 "Return the reverse of STRING."
21653 (apply 'string (reverse (string-to-list string))))
21655 (defsubst org-uniquify (list)
21656 "Non-destructively remove duplicate elements from LIST."
21657 (let ((res (copy-sequence list))) (delete-dups res)))
21659 (defun org-uniquify-alist (alist)
21660 "Merge elements of ALIST with the same key.
21662 For example, in this alist:
21664 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
21665 => '((a 1 3) (b 2))
21667 merge (a 1) and (a 3) into (a 1 3).
21669 The function returns the new ALIST."
21670 (let (rtn)
21671 (mapc
21672 (lambda (e)
21673 (let (n)
21674 (if (not (assoc (car e) rtn))
21675 (push e rtn)
21676 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
21677 (setq rtn (assq-delete-all (car e) rtn))
21678 (push n rtn))))
21679 alist)
21680 rtn))
21682 (defun org-delete-all (elts list)
21683 "Remove all elements in ELTS from LIST."
21684 (while elts
21685 (setq list (delete (pop elts) list)))
21686 list)
21688 (defun org-count (cl-item cl-seq)
21689 "Count the number of occurrences of ITEM in SEQ.
21690 Taken from `count' in cl-seq.el with all keyword arguments removed."
21691 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
21692 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
21693 (while (< cl-start cl-end)
21694 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
21695 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
21696 (setq cl-start (1+ cl-start)))
21697 cl-count))
21699 (defun org-remove-if (predicate seq)
21700 "Remove everything from SEQ that fulfills PREDICATE."
21701 (let (res e)
21702 (while seq
21703 (setq e (pop seq))
21704 (if (not (funcall predicate e)) (push e res)))
21705 (nreverse res)))
21707 (defun org-remove-if-not (predicate seq)
21708 "Remove everything from SEQ that does not fulfill PREDICATE."
21709 (let (res e)
21710 (while seq
21711 (setq e (pop seq))
21712 (if (funcall predicate e) (push e res)))
21713 (nreverse res)))
21715 (defun org-reduce (cl-func cl-seq &rest cl-keys)
21716 "Reduce two-argument FUNCTION across SEQ.
21717 Taken from `reduce' in cl-seq.el with all keyword arguments but
21718 \":initial-value\" removed."
21719 (let ((cl-accum (cond ((memq :initial-value cl-keys)
21720 (cadr (memq :initial-value cl-keys)))
21721 (cl-seq (pop cl-seq))
21722 (t (funcall cl-func)))))
21723 (while cl-seq
21724 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
21725 cl-accum))
21727 (defun org-back-over-empty-lines ()
21728 "Move backwards over whitespace, to the beginning of the first empty line.
21729 Returns the number of empty lines passed."
21730 (let ((pos (point)))
21731 (if (cdr (assoc 'heading org-blank-before-new-entry))
21732 (skip-chars-backward " \t\n\r")
21733 (unless (eobp)
21734 (forward-line -1)))
21735 (beginning-of-line 2)
21736 (goto-char (min (point) pos))
21737 (count-lines (point) pos)))
21739 (defun org-skip-whitespace ()
21740 (skip-chars-forward " \t\n\r"))
21742 (defun org-point-in-group (point group &optional context)
21743 "Check if POINT is in match-group GROUP.
21744 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
21745 match. If the match group does not exist or point is not inside it,
21746 return nil."
21747 (and (match-beginning group)
21748 (>= point (match-beginning group))
21749 (<= point (match-end group))
21750 (if context
21751 (list context (match-beginning group) (match-end group))
21752 t)))
21754 (defun org-switch-to-buffer-other-window (&rest args)
21755 "Switch to buffer in a second window on the current frame.
21756 In particular, do not allow pop-up frames.
21757 Returns the newly created buffer."
21758 (org-no-popups
21759 (apply 'switch-to-buffer-other-window args)))
21761 (defun org-combine-plists (&rest plists)
21762 "Create a single property list from all plists in PLISTS.
21763 The process starts by copying the first list, and then setting properties
21764 from the other lists. Settings in the last list are the most significant
21765 ones and overrule settings in the other lists."
21766 (let ((rtn (copy-sequence (pop plists)))
21767 p v ls)
21768 (while plists
21769 (setq ls (pop plists))
21770 (while ls
21771 (setq p (pop ls) v (pop ls))
21772 (setq rtn (plist-put rtn p v))))
21773 rtn))
21775 (defun org-replace-escapes (string table)
21776 "Replace %-escapes in STRING with values in TABLE.
21777 TABLE is an association list with keys like \"%a\" and string values.
21778 The sequences in STRING may contain normal field width and padding information,
21779 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
21780 so values can contain further %-escapes if they are define later in TABLE."
21781 (let ((tbl (copy-alist table))
21782 (case-fold-search nil)
21783 (pchg 0)
21784 e re rpl)
21785 (while (setq e (pop tbl))
21786 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
21787 (when (and (cdr e) (string-match re (cdr e)))
21788 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
21789 (safe "SREF"))
21790 (add-text-properties 0 3 (list 'sref sref) safe)
21791 (setcdr e (replace-match safe t t (cdr e)))))
21792 (while (string-match re string)
21793 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
21794 (cdr e)))
21795 (setq string (replace-match rpl t t string))))
21796 (while (setq pchg (next-property-change pchg string))
21797 (let ((sref (get-text-property pchg 'sref string)))
21798 (when (and sref (string-match "SREF" string pchg))
21799 (setq string (replace-match sref t t string)))))
21800 string))
21802 (defun org-sublist (list start end)
21803 "Return a section of LIST, from START to END.
21804 Counting starts at 1."
21805 (let (rtn (c start))
21806 (setq list (nthcdr (1- start) list))
21807 (while (and list (<= c end))
21808 (push (pop list) rtn)
21809 (setq c (1+ c)))
21810 (nreverse rtn)))
21812 (defun org-find-base-buffer-visiting (file)
21813 "Like `find-buffer-visiting' but always return the base buffer and
21814 not an indirect buffer."
21815 (let ((buf (or (get-file-buffer file)
21816 (find-buffer-visiting file))))
21817 (if buf
21818 (or (buffer-base-buffer buf) buf)
21819 nil)))
21821 (defun org-image-file-name-regexp (&optional extensions)
21822 "Return regexp matching the file names of images.
21823 If EXTENSIONS is given, only match these."
21824 (if (and (not extensions) (fboundp 'image-file-name-regexp))
21825 (image-file-name-regexp)
21826 (let ((image-file-name-extensions
21827 (or extensions
21828 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
21829 "xbm" "xpm" "pbm" "pgm" "ppm"))))
21830 (concat "\\."
21831 (regexp-opt (nconc (mapcar 'upcase
21832 image-file-name-extensions)
21833 image-file-name-extensions)
21835 "\\'"))))
21837 (defun org-file-image-p (file &optional extensions)
21838 "Return non-nil if FILE is an image."
21839 (save-match-data
21840 (string-match (org-image-file-name-regexp extensions) file)))
21842 (defun org-get-cursor-date (&optional with-time)
21843 "Return the date at cursor in as a time.
21844 This works in the calendar and in the agenda, anywhere else it just
21845 returns the current time.
21846 If WITH-TIME is non-nil, returns the time of the event at point (in
21847 the agenda) or the current time of the day."
21848 (let (date day defd tp tm hod mod)
21849 (when with-time
21850 (setq tp (get-text-property (point) 'time))
21851 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
21852 (setq hod (string-to-number (match-string 1 tp))
21853 mod (string-to-number (match-string 2 tp))))
21854 (or tp (setq hod (nth 2 (decode-time (current-time)))
21855 mod (nth 1 (decode-time (current-time))))))
21856 (cond
21857 ((eq major-mode 'calendar-mode)
21858 (setq date (calendar-cursor-to-date)
21859 defd (encode-time 0 (or mod 0) (or hod 0)
21860 (nth 1 date) (nth 0 date) (nth 2 date))))
21861 ((eq major-mode 'org-agenda-mode)
21862 (setq day (get-text-property (point) 'day))
21863 (if day
21864 (setq date (calendar-gregorian-from-absolute day)
21865 defd (encode-time 0 (or mod 0) (or hod 0)
21866 (nth 1 date) (nth 0 date) (nth 2 date))))))
21867 (or defd (current-time))))
21869 (defun org-mark-subtree (&optional up)
21870 "Mark the current subtree.
21871 This puts point at the start of the current subtree, and mark at
21872 the end. If a numeric prefix UP is given, move up into the
21873 hierarchy of headlines by UP levels before marking the subtree."
21874 (interactive "P")
21875 (org-with-limited-levels
21876 (cond ((org-at-heading-p) (beginning-of-line))
21877 ((org-before-first-heading-p) (user-error "Not in a subtree"))
21878 (t (outline-previous-visible-heading 1))))
21879 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
21880 (if (org-called-interactively-p 'any)
21881 (call-interactively 'org-mark-element)
21882 (org-mark-element)))
21885 ;;; Indentation
21887 (defun org-indent-line ()
21888 "Indent line depending on context."
21889 (interactive)
21890 (let* ((pos (point))
21891 (itemp (org-at-item-p))
21892 (case-fold-search t)
21893 (org-drawer-regexp (or org-drawer-regexp "\000"))
21894 (inline-task-p (and (featurep 'org-inlinetask)
21895 (org-inlinetask-in-task-p)))
21896 (inline-re (and inline-task-p
21897 (org-inlinetask-outline-regexp)))
21898 column)
21899 (if (and orgstruct-is-++ (eq pos (point)))
21900 (let ((indent-line-function (cadadr (assoc 'indent-line-function org-fb-vars))))
21901 (indent-according-to-mode))
21902 (beginning-of-line 1)
21903 (cond
21904 ;; Headings
21905 ((looking-at org-outline-regexp) (setq column 0))
21906 ;; Footnote definition
21907 ((looking-at org-footnote-definition-re) (setq column 0))
21908 ;; Literal examples
21909 ((looking-at "[ \t]*:\\( \\|$\\)")
21910 (setq column (org-get-indentation))) ; do nothing
21911 ;; Lists
21912 ((ignore-errors (goto-char (org-in-item-p)))
21913 (setq column (if itemp
21914 (org-get-indentation)
21915 (org-list-item-body-column (point))))
21916 (goto-char pos))
21917 ;; Drawers
21918 ((and (looking-at "[ \t]*:END:")
21919 (save-excursion (re-search-backward org-drawer-regexp nil t)))
21920 (save-excursion
21921 (goto-char (1- (match-beginning 1)))
21922 (setq column (current-column))))
21923 ;; Special blocks
21924 ((and (looking-at "[ \t]*#\\+end_\\([a-z]+\\)")
21925 (save-excursion
21926 (re-search-backward
21927 (concat "^[ \t]*#\\+begin_" (downcase (match-string 1))) nil t)))
21928 (setq column (org-get-indentation (match-string 0))))
21929 ((and (not (looking-at "[ \t]*#\\+begin_"))
21930 (org-between-regexps-p "^[ \t]*#\\+begin_" "[ \t]*#\\+end_"))
21931 (save-excursion
21932 (re-search-backward "^[ \t]*#\\+begin_\\([a-z]+\\)" nil t))
21933 (setq column
21934 (cond ((equal (downcase (match-string 1)) "src")
21935 ;; src blocks: let `org-edit-src-exit' handle them
21936 (org-get-indentation))
21937 ((equal (downcase (match-string 1)) "example")
21938 (max (org-get-indentation)
21939 (org-get-indentation (match-string 0))))
21941 (org-get-indentation (match-string 0))))))
21942 ;; This line has nothing special, look at the previous relevant
21943 ;; line to compute indentation
21945 (beginning-of-line 0)
21946 (while (and (not (bobp))
21947 (not (looking-at org-table-line-regexp))
21948 (not (looking-at org-drawer-regexp))
21949 ;; When point started in an inline task, do not move
21950 ;; above task starting line.
21951 (not (and inline-task-p (looking-at inline-re)))
21952 ;; Skip drawers, blocks, empty lines, verbatim,
21953 ;; comments, tables, footnotes definitions, lists,
21954 ;; inline tasks.
21955 (or (and (looking-at "[ \t]*:END:")
21956 (re-search-backward org-drawer-regexp nil t))
21957 (and (looking-at "[ \t]*#\\+end_")
21958 (re-search-backward "[ \t]*#\\+begin_"nil t))
21959 (looking-at "[ \t]*[\n:#|]")
21960 (looking-at org-footnote-definition-re)
21961 (and (not inline-task-p)
21962 (featurep 'org-inlinetask)
21963 (org-inlinetask-in-task-p)
21964 (or (org-inlinetask-goto-beginning) t))))
21965 (beginning-of-line 0))
21966 (cond
21967 ;; There was a list item above.
21968 ((save-excursion
21969 (and (ignore-errors (goto-char (org-in-item-p)))
21970 (goto-char
21971 (org-list-get-top-point (org-list-struct)))))
21972 (looking-at org-list-full-item-re)
21973 (setq column (length (match-string 0))))
21974 ;; There was an heading above.
21975 ((looking-at "\\*+[ \t]+")
21976 (if (not org-adapt-indentation)
21977 (setq column 0)
21978 (goto-char (match-end 0))
21979 (setq column (current-column))))
21980 ;; A drawer had started and is unfinished
21981 ((looking-at org-drawer-regexp)
21982 (goto-char (1- (match-beginning 1)))
21983 (setq column (current-column)))
21984 ;; Else, nothing noticeable found: get indentation and go on.
21985 (t (setq column (org-get-indentation))))))
21986 ;; Now apply indentation and move cursor accordingly
21987 (goto-char pos)
21988 (if (<= (current-column) (current-indentation))
21989 (org-indent-line-to column)
21990 (save-excursion (org-indent-line-to column)))
21991 ;; Special polishing for properties, see `org-property-format'
21992 (setq column (current-column))
21993 (beginning-of-line 1)
21994 (if (looking-at
21995 "\\([ \t]*\\)\\(:[-_0-9a-zA-Z]+:\\)[ \t]*\\(\\S-.*\\(\\S-\\|$\\)\\)")
21996 (replace-match (concat (match-string 1)
21997 (format org-property-format
21998 (match-string 2) (match-string 3)))
21999 t t))
22000 (org-move-to-column column))))
22002 (defun org-indent-drawer ()
22003 "Indent the drawer at point."
22004 (interactive)
22005 (let ((p (point))
22006 (e (and (save-excursion (re-search-forward ":END:" nil t))
22007 (match-end 0)))
22008 (folded
22009 (save-excursion
22010 (end-of-line)
22011 (when (overlays-at (point))
22012 (member 'invisible (overlay-properties
22013 (car (overlays-at (point)))))))))
22014 (when folded (org-cycle))
22015 (indent-for-tab-command)
22016 (while (and (move-beginning-of-line 2) (< (point) e))
22017 (indent-for-tab-command))
22018 (goto-char p)
22019 (when folded (org-cycle)))
22020 (message "Drawer at point indented"))
22022 (defun org-indent-block ()
22023 "Indent the block at point."
22024 (interactive)
22025 (let ((p (point))
22026 (case-fold-search t)
22027 (e (and (save-excursion (re-search-forward "#\\+end_?\\(?:[a-z]+\\)?" nil t))
22028 (match-end 0)))
22029 (folded
22030 (save-excursion
22031 (end-of-line)
22032 (when (overlays-at (point))
22033 (member 'invisible (overlay-properties
22034 (car (overlays-at (point)))))))))
22035 (when folded (org-cycle))
22036 (indent-for-tab-command)
22037 (while (and (move-beginning-of-line 2) (< (point) e))
22038 (indent-for-tab-command))
22039 (goto-char p)
22040 (when folded (org-cycle)))
22041 (message "Block at point indented"))
22043 (defun org-indent-region (start end)
22044 "Indent region."
22045 (interactive "r")
22046 (save-excursion
22047 (let ((line-end (org-current-line end)))
22048 (goto-char start)
22049 (while (< (org-current-line) line-end)
22050 (cond ((org-in-src-block-p) (org-src-native-tab-command-maybe))
22051 (t (call-interactively 'org-indent-line)))
22052 (move-beginning-of-line 2)))))
22055 ;;; Filling
22057 ;; We use our own fill-paragraph and auto-fill functions.
22059 ;; `org-fill-paragraph' relies on adaptive filling and context
22060 ;; checking. Appropriate `fill-prefix' is computed with
22061 ;; `org-adaptive-fill-function'.
22063 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22064 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22065 ;; `org-adaptive-fill-function' value. Internally,
22066 ;; `org-comment-line-break-function' breaks the line.
22068 ;; `org-setup-filling' installs filling and auto-filling related
22069 ;; variables during `org-mode' initialization.
22071 (defun org-setup-filling ()
22072 (interactive)
22073 ;; Prevent auto-fill from inserting unwanted new items.
22074 (when (boundp 'fill-nobreak-predicate)
22075 (org-set-local
22076 'fill-nobreak-predicate
22077 (org-uniquify
22078 (append fill-nobreak-predicate
22079 '(org-fill-paragraph-separate-nobreak-p
22080 org-fill-line-break-nobreak-p
22081 org-fill-paragraph-with-timestamp-nobreak-p)))))
22082 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22083 (org-set-local 'auto-fill-inhibit-regexp nil)
22084 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22085 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22086 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22088 (defvar org-element-paragraph-separate) ; org-element.el
22089 (defun org-fill-paragraph-separate-nobreak-p ()
22090 "Non-nil when a new line at point would end current paragraph."
22091 (looking-at (substring org-element-paragraph-separate 1)))
22093 (defun org-fill-line-break-nobreak-p ()
22094 "Non-nil when a new line at point would create an Org line break."
22095 (save-excursion
22096 (skip-chars-backward "[ \t]")
22097 (skip-chars-backward "\\\\")
22098 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22100 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22101 "Non-nil when a new line at point would split a timestamp."
22102 (and (org-at-timestamp-p t)
22103 (not (looking-at org-ts-regexp-both))))
22105 (declare-function message-in-body-p "message" ())
22106 (defvar orgtbl-line-start-regexp) ; From org-table.el
22107 (defun org-adaptive-fill-function ()
22108 "Compute a fill prefix for the current line.
22109 Return fill prefix, as a string, or nil if current line isn't
22110 meant to be filled."
22111 (let (prefix)
22112 (catch 'exit
22113 (when (derived-mode-p 'message-mode)
22114 (save-excursion
22115 (beginning-of-line)
22116 (cond ((or (not (message-in-body-p))
22117 (looking-at orgtbl-line-start-regexp))
22118 (throw 'exit nil))
22119 ((looking-at message-cite-prefix-regexp)
22120 (throw 'exit (match-string-no-properties 0)))
22121 ((looking-at org-outline-regexp)
22122 (throw 'exit (make-string (length (match-string 0)) ? ))))))
22123 (org-with-wide-buffer
22124 (let* ((p (line-beginning-position))
22125 (element (save-excursion
22126 (beginning-of-line)
22127 (or (ignore-errors (org-element-at-point))
22128 (user-error "An element cannot be parsed line %d"
22129 (line-number-at-pos (point))))))
22130 (type (org-element-type element))
22131 (post-affiliated (org-element-property :post-affiliated element)))
22132 (unless (and post-affiliated (< p post-affiliated))
22133 (case type
22134 (comment (looking-at "[ \t]*# ?") (match-string 0))
22135 (footnote-definition "")
22136 ((item plain-list)
22137 (make-string (org-list-item-body-column
22138 (or post-affiliated
22139 (org-element-property :begin element)))
22140 ? ))
22141 (paragraph
22142 ;; Fill prefix is usually the same as the current line,
22143 ;; except if the paragraph is at the beginning of an item.
22144 (let ((parent (org-element-property :parent element)))
22145 (cond ((eq (org-element-type parent) 'item)
22146 (make-string (org-list-item-body-column
22147 (org-element-property :begin parent))
22148 ? ))
22149 ((save-excursion (beginning-of-line) (looking-at "[ \t]+"))
22150 (match-string 0))
22151 (t ""))))
22152 (comment-block
22153 ;; Only fill contents if P is within block boundaries.
22154 (let* ((cbeg (save-excursion (goto-char post-affiliated)
22155 (forward-line)
22156 (point)))
22157 (cend (save-excursion
22158 (goto-char (org-element-property :end element))
22159 (skip-chars-backward " \r\t\n")
22160 (line-beginning-position))))
22161 (when (and (>= p cbeg) (< p cend))
22162 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
22163 (match-string 0)
22164 "")))))))))))
22166 (declare-function message-goto-body "message" ())
22167 (defvar message-cite-prefix-regexp) ; From message.el
22168 (defun org-fill-paragraph (&optional justify)
22169 "Fill element at point, when applicable.
22171 This function only applies to comment blocks, comments, example
22172 blocks and paragraphs. Also, as a special case, re-align table
22173 when point is at one.
22175 If JUSTIFY is non-nil (interactively, with prefix argument),
22176 justify as well. If `sentence-end-double-space' is non-nil, then
22177 period followed by one space does not end a sentence, so don't
22178 break a line there. The variable `fill-column' controls the
22179 width for filling.
22181 For convenience, when point is at a plain list, an item or
22182 a footnote definition, try to fill the first paragraph within."
22183 (interactive)
22184 (if (and (derived-mode-p 'message-mode)
22185 (or (not (message-in-body-p))
22186 (save-excursion (move-beginning-of-line 1)
22187 (looking-at message-cite-prefix-regexp))))
22188 ;; First ensure filling is correct in message-mode.
22189 (let ((fill-paragraph-function
22190 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
22191 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
22192 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
22193 (paragraph-separate
22194 (cadadr (assoc 'paragraph-separate org-fb-vars))))
22195 (fill-paragraph nil))
22196 (with-syntax-table org-mode-transpose-word-syntax-table
22197 ;; Move to end of line in order to get the first paragraph
22198 ;; within a plain list or a footnote definition.
22199 (let ((element (save-excursion
22200 (end-of-line)
22201 (or (ignore-errors (org-element-at-point))
22202 (user-error "An element cannot be parsed line %d"
22203 (line-number-at-pos (point)))))))
22204 ;; First check if point is in a blank line at the beginning of
22205 ;; the buffer. In that case, ignore filling.
22206 (case (org-element-type element)
22207 ;; Use major mode filling function is src blocks.
22208 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
22209 ;; Align Org tables, leave table.el tables as-is.
22210 (table-row (org-table-align) t)
22211 (table
22212 (when (eq (org-element-property :type element) 'org)
22213 (save-excursion
22214 (goto-char (org-element-property :post-affiliated element))
22215 (org-table-align)))
22217 (paragraph
22218 ;; Paragraphs may contain `line-break' type objects.
22219 (let ((beg (max (point-min)
22220 (org-element-property :contents-begin element)))
22221 (end (min (point-max)
22222 (org-element-property :contents-end element))))
22223 ;; Do nothing if point is at an affiliated keyword.
22224 (if (< (line-end-position) beg) t
22225 (when (derived-mode-p 'message-mode)
22226 ;; In `message-mode', do not fill following citation
22227 ;; in current paragraph nor text before message body.
22228 (let ((body-start (save-excursion (message-goto-body))))
22229 (when body-start (setq beg (max body-start beg))))
22230 (when (save-excursion
22231 (re-search-forward
22232 (concat "^" message-cite-prefix-regexp) end t))
22233 (setq end (match-beginning 0))))
22234 ;; Fill paragraph, taking line breaks into account.
22235 ;; For that, slice the paragraph using line breaks as
22236 ;; separators, and fill the parts in reverse order to
22237 ;; avoid messing with markers.
22238 (save-excursion
22239 (goto-char end)
22240 (mapc
22241 (lambda (pos)
22242 (fill-region-as-paragraph pos (point) justify)
22243 (goto-char pos))
22244 ;; Find the list of ending positions for line breaks
22245 ;; in the current paragraph. Add paragraph
22246 ;; beginning to include first slice.
22247 (nreverse
22248 (cons beg
22249 (org-element-map
22250 (org-element--parse-objects
22251 beg end nil (org-element-restriction 'paragraph))
22252 'line-break
22253 (lambda (lb) (org-element-property :end lb)))))))
22254 t)))
22255 ;; Contents of `comment-block' type elements should be
22256 ;; filled as plain text, but only if point is within block
22257 ;; markers.
22258 (comment-block
22259 (let* ((case-fold-search t)
22260 (beg (save-excursion
22261 (goto-char (org-element-property :begin element))
22262 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
22263 (forward-line)
22264 (point)))
22265 (end (save-excursion
22266 (goto-char (org-element-property :end element))
22267 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
22268 (line-beginning-position))))
22269 (when (and (>= (point) beg) (< (point) end))
22270 (fill-region-as-paragraph
22271 (save-excursion
22272 (end-of-line)
22273 (re-search-backward "^[ \t]*$" beg 'move)
22274 (line-beginning-position))
22275 (save-excursion
22276 (beginning-of-line)
22277 (re-search-forward "^[ \t]*$" end 'move)
22278 (line-beginning-position))
22279 justify)))
22281 ;; Fill comments.
22282 (comment (fill-comment-paragraph justify))
22283 ;; Ignore every other element.
22284 (otherwise t))))))
22286 (defun org-auto-fill-function ()
22287 "Auto-fill function."
22288 ;; Check if auto-filling is meaningful.
22289 (let ((fc (current-fill-column)))
22290 (when (and fc (> (current-column) fc))
22291 (let* ((fill-prefix (org-adaptive-fill-function))
22292 ;; Enforce empty fill prefix, if required. Otherwise, it
22293 ;; will be computed again.
22294 (adaptive-fill-mode (not (equal fill-prefix ""))))
22295 (when fill-prefix (do-auto-fill))))))
22297 (defun org-comment-line-break-function (&optional soft)
22298 "Break line at point and indent, continuing comment if within one.
22299 The inserted newline is marked hard if variable
22300 `use-hard-newlines' is true, unless optional argument SOFT is
22301 non-nil."
22302 (if soft (insert-and-inherit ?\n) (newline 1))
22303 (save-excursion (forward-char -1) (delete-horizontal-space))
22304 (delete-horizontal-space)
22305 (indent-to-left-margin)
22306 (insert-before-markers-and-inherit fill-prefix))
22309 ;;; Comments
22311 ;; Org comments syntax is quite complex. It requires the entire line
22312 ;; to be just a comment. Also, even with the right syntax at the
22313 ;; beginning of line, some some elements (i.e. verse-block or
22314 ;; example-block) don't accept comments. Usual Emacs comment commands
22315 ;; cannot cope with those requirements. Therefore, Org replaces them.
22317 ;; Org still relies on `comment-dwim', but cannot trust
22318 ;; `comment-only-p'. So, `comment-region-function' and
22319 ;; `uncomment-region-function' both point
22320 ;; to`org-comment-or-uncomment-region'. Eventually,
22321 ;; `org-insert-comment' takes care of insertion of comments at the
22322 ;; beginning of line.
22324 ;; `org-setup-comments-handling' install comments related variables
22325 ;; during `org-mode' initialization.
22327 (defun org-setup-comments-handling ()
22328 (interactive)
22329 (org-set-local 'comment-use-syntax nil)
22330 (org-set-local 'comment-start "# ")
22331 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
22332 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
22333 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
22334 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
22336 (defun org-insert-comment ()
22337 "Insert an empty comment above current line.
22338 If the line is empty, insert comment at its beginning."
22339 (beginning-of-line)
22340 (if (looking-at "\\s-*$") (replace-match "") (open-line 1))
22341 (org-indent-line)
22342 (insert "# "))
22344 (defvar comment-empty-lines) ; From newcomment.el.
22345 (defun org-comment-or-uncomment-region (beg end &rest ignore)
22346 "Comment or uncomment each non-blank line in the region.
22347 Uncomment each non-blank line between BEG and END if it only
22348 contains commented lines. Otherwise, comment them."
22349 (save-restriction
22350 ;; Restrict region
22351 (narrow-to-region (save-excursion (goto-char beg)
22352 (skip-chars-forward " \r\t\n" end)
22353 (line-beginning-position))
22354 (save-excursion (goto-char end)
22355 (skip-chars-backward " \r\t\n" beg)
22356 (line-end-position)))
22357 (let ((uncommentp
22358 ;; UNCOMMENTP is non-nil when every non blank line between
22359 ;; BEG and END is a comment.
22360 (save-excursion
22361 (goto-char (point-min))
22362 (while (and (not (eobp))
22363 (let ((element (org-element-at-point)))
22364 (and (eq (org-element-type element) 'comment)
22365 (goto-char (min (point-max)
22366 (org-element-property
22367 :end element)))))))
22368 (eobp))))
22369 (if uncommentp
22370 ;; Only blank lines and comments in region: uncomment it.
22371 (save-excursion
22372 (goto-char (point-min))
22373 (while (not (eobp))
22374 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
22375 (replace-match "" nil nil nil 1))
22376 (forward-line)))
22377 ;; Comment each line in region.
22378 (let ((min-indent (point-max)))
22379 ;; First find the minimum indentation across all lines.
22380 (save-excursion
22381 (goto-char (point-min))
22382 (while (and (not (eobp)) (not (zerop min-indent)))
22383 (unless (looking-at "[ \t]*$")
22384 (setq min-indent (min min-indent (current-indentation))))
22385 (forward-line)))
22386 ;; Then loop over all lines.
22387 (save-excursion
22388 (goto-char (point-min))
22389 (while (not (eobp))
22390 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
22391 ;; Don't get fooled by invisible text (e.g. link path)
22392 ;; when moving to column MIN-INDENT.
22393 (let ((buffer-invisibility-spec nil))
22394 (org-move-to-column min-indent t))
22395 (insert comment-start))
22396 (forward-line))))))))
22399 ;;; Planning
22401 ;; This section contains tools to operate on timestamp objects, as
22402 ;; returned by, e.g. `org-element-context'.
22404 (defun org-timestamp-has-time-p (timestamp)
22405 "Non-nil when TIMESTAMP has a time specified."
22406 (org-element-property :hour-start timestamp))
22408 (defun org-timestamp-format (timestamp format &optional end utc)
22409 "Format a TIMESTAMP element into a string.
22411 FORMAT is a format specifier to be passed to
22412 `format-time-string'.
22414 When optional argument END is non-nil, use end of date-range or
22415 time-range, if possible.
22417 When optional argument UTC is non-nil, time will be expressed as
22418 Universal Time."
22419 (format-time-string
22420 format
22421 (apply 'encode-time
22422 (cons 0
22423 (mapcar
22424 (lambda (prop) (or (org-element-property prop timestamp) 0))
22425 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
22426 '(:minute-start :hour-start :day-start :month-start
22427 :year-start)))))
22428 utc))
22430 (defun org-timestamp-split-range (timestamp &optional end)
22431 "Extract a timestamp object from a date or time range.
22433 TIMESTAMP is a timestamp object. END, when non-nil, means extract
22434 the end of the range. Otherwise, extract its start.
22436 Return a new timestamp object sharing the same parent as
22437 TIMESTAMP."
22438 (let ((type (org-element-property :type timestamp)))
22439 (if (memq type '(active inactive diary)) timestamp
22440 (let ((split-ts (list 'timestamp (copy-sequence (nth 1 timestamp)))))
22441 ;; Set new type.
22442 (org-element-put-property
22443 split-ts :type (if (eq type 'active-range) 'active 'inactive))
22444 ;; Copy start properties over end properties if END is
22445 ;; non-nil. Otherwise, copy end properties over `start' ones.
22446 (let ((p-alist '((:minute-start . :minute-end)
22447 (:hour-start . :hour-end)
22448 (:day-start . :day-end)
22449 (:month-start . :month-end)
22450 (:year-start . :year-end))))
22451 (dolist (p-cell p-alist)
22452 (org-element-put-property
22453 split-ts
22454 (funcall (if end 'car 'cdr) p-cell)
22455 (org-element-property
22456 (funcall (if end 'cdr 'car) p-cell) split-ts)))
22457 ;; Eventually refresh `:raw-value'.
22458 (org-element-put-property split-ts :raw-value nil)
22459 (org-element-put-property
22460 split-ts :raw-value (org-element-interpret-data split-ts)))))))
22462 (defun org-timestamp-translate (timestamp &optional boundary)
22463 "Apply `org-translate-time' on a TIMESTAMP object.
22464 When optional argument BOUNDARY is non-nil, it is either the
22465 symbol `start' or `end'. In this case, only translate the
22466 starting or ending part of TIMESTAMP if it is a date or time
22467 range. Otherwise, translate both parts."
22468 (if (and (not boundary)
22469 (memq (org-element-property :type timestamp)
22470 '(active-range inactive-range)))
22471 (concat
22472 (org-translate-time
22473 (org-element-property :raw-value
22474 (org-timestamp-split-range timestamp)))
22475 "--"
22476 (org-translate-time
22477 (org-element-property :raw-value
22478 (org-timestamp-split-range timestamp t))))
22479 (org-translate-time
22480 (org-element-property
22481 :raw-value
22482 (if (not boundary) timestamp
22483 (org-timestamp-split-range timestamp (eq boundary 'end)))))))
22487 ;;; Other stuff.
22489 (defun org-toggle-fixed-width-section (arg)
22490 "Toggle the fixed-width export.
22491 If there is no active region, the QUOTE keyword at the current headline is
22492 inserted or removed. When present, it causes the text between this headline
22493 and the next to be exported as fixed-width text, and unmodified.
22494 If there is an active region, this command adds or removes a colon as the
22495 first character of this line. If the first character of a line is a colon,
22496 this line is also exported in fixed-width font."
22497 (interactive "P")
22498 (let* ((cc 0)
22499 (regionp (org-region-active-p))
22500 (beg (if regionp (region-beginning) (point)))
22501 (end (if regionp (region-end)))
22502 (nlines (or arg (if (and beg end) (count-lines beg end) 1)))
22503 (case-fold-search nil)
22504 (re "[ \t]*\\(:\\(?: \\|$\\)\\)")
22505 off)
22506 (if regionp
22507 (save-excursion
22508 (goto-char beg)
22509 (setq cc (current-column))
22510 (beginning-of-line 1)
22511 (setq off (looking-at re))
22512 (while (> nlines 0)
22513 (setq nlines (1- nlines))
22514 (beginning-of-line 1)
22515 (cond
22516 (arg
22517 (org-move-to-column cc t)
22518 (insert ": \n")
22519 (forward-line -1))
22520 ((and off (looking-at re))
22521 (replace-match "" t t nil 1))
22522 ((not off) (org-move-to-column cc t) (insert ": ")))
22523 (forward-line 1)))
22524 (save-excursion
22525 (org-back-to-heading)
22526 (cond
22527 ((looking-at (format org-heading-keyword-regexp-format
22528 org-quote-string))
22529 (goto-char (match-end 1))
22530 (looking-at (concat " +" org-quote-string))
22531 (replace-match "" t t)
22532 (when (eolp) (insert " ")))
22533 ((looking-at org-outline-regexp)
22534 (goto-char (match-end 0))
22535 (insert org-quote-string " ")))))))
22537 (defun org-reftex-citation ()
22538 "Use reftex-citation to insert a citation into the buffer.
22539 This looks for a line like
22541 #+BIBLIOGRAPHY: foo plain option:-d
22543 and derives from it that foo.bib is the bibliography file relevant
22544 for this document. It then installs the necessary environment for RefTeX
22545 to work in this buffer and calls `reftex-citation' to insert a citation
22546 into the buffer.
22548 Export of such citations to both LaTeX and HTML is handled by the contributed
22549 package org-exp-bibtex by Taru Karttunen."
22550 (interactive)
22551 (let ((reftex-docstruct-symbol 'rds)
22552 (reftex-cite-format "\\cite{%l}")
22553 rds bib)
22554 (save-excursion
22555 (save-restriction
22556 (widen)
22557 (let ((case-fold-search t)
22558 (re "^#\\+bibliography:[ \t]+\\([^ \t\n]+\\)"))
22559 (if (not (save-excursion
22560 (or (re-search-forward re nil t)
22561 (re-search-backward re nil t))))
22562 (error "No bibliography defined in file")
22563 (setq bib (concat (match-string 1) ".bib")
22564 rds (list (list 'bib bib)))))))
22565 (call-interactively 'reftex-citation)))
22567 ;;;; Functions extending outline functionality
22569 (defun org-beginning-of-line (&optional arg)
22570 "Go to the beginning of the current line. If that is invisible, continue
22571 to a visible line beginning. This makes the function of C-a more intuitive.
22572 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
22573 first attempt, and only move to after the tags when the cursor is already
22574 beyond the end of the headline."
22575 (interactive "P")
22576 (let ((pos (point))
22577 (special (if (consp org-special-ctrl-a/e)
22578 (car org-special-ctrl-a/e)
22579 org-special-ctrl-a/e))
22580 refpos)
22581 (if (org-bound-and-true-p visual-line-mode)
22582 (beginning-of-visual-line 1)
22583 (beginning-of-line 1))
22584 (if (and arg (fboundp 'move-beginning-of-line))
22585 (call-interactively 'move-beginning-of-line)
22586 (if (bobp)
22588 (backward-char 1)
22589 (if (org-truely-invisible-p)
22590 (while (and (not (bobp)) (org-truely-invisible-p))
22591 (backward-char 1)
22592 (beginning-of-line 1))
22593 (forward-char 1))))
22594 (when special
22595 (cond
22596 ((and (looking-at org-complex-heading-regexp)
22597 (= (char-after (match-end 1)) ?\ ))
22598 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
22599 (point-at-eol)))
22600 (goto-char
22601 (if (eq special t)
22602 (cond ((> pos refpos) refpos)
22603 ((= pos (point)) refpos)
22604 (t (point)))
22605 (cond ((> pos (point)) (point))
22606 ((not (eq last-command this-command)) (point))
22607 (t refpos)))))
22608 ((org-at-item-p)
22609 ;; Being at an item and not looking at an the item means point
22610 ;; was previously moved to beginning of a visual line, which
22611 ;; doesn't contain the item. Therefore, do nothing special,
22612 ;; just stay here.
22613 (when (looking-at org-list-full-item-re)
22614 ;; Set special position at first white space character after
22615 ;; bullet, and check-box, if any.
22616 (let ((after-bullet
22617 (let ((box (match-end 3)))
22618 (if (not box) (match-end 1)
22619 (let ((after (char-after box)))
22620 (if (and after (= after ? )) (1+ box) box))))))
22621 ;; Special case: Move point to special position when
22622 ;; currently after it or at beginning of line.
22623 (if (eq special t)
22624 (when (or (> pos after-bullet) (= (point) pos))
22625 (goto-char after-bullet))
22626 ;; Reversed case: Move point to special position when
22627 ;; point was already at beginning of line and command is
22628 ;; repeated.
22629 (when (and (= (point) pos) (eq last-command this-command))
22630 (goto-char after-bullet))))))))
22631 (org-no-warnings
22632 (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
22634 (defun org-end-of-line (&optional arg)
22635 "Go to the end of the line.
22636 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
22637 tags on the first attempt, and only move to after the tags when
22638 the cursor is already beyond the end of the headline."
22639 (interactive "P")
22640 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
22641 org-special-ctrl-a/e))
22642 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
22643 'end-of-visual-line)
22644 ((fboundp 'move-end-of-line) 'move-end-of-line)
22645 (t 'end-of-line))))
22646 (if (or (not special) arg) (call-interactively move-fun)
22647 (let* ((element (save-excursion (beginning-of-line)
22648 (org-element-at-point)))
22649 (type (org-element-type element)))
22650 (cond
22651 ((memq type '(headline inlinetask))
22652 (let ((pos (point)))
22653 (beginning-of-line 1)
22654 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
22655 (if (eq special t)
22656 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
22657 (goto-char (match-beginning 1))
22658 (goto-char (match-end 0)))
22659 (if (or (< pos (match-end 0))
22660 (not (eq this-command last-command)))
22661 (goto-char (match-end 0))
22662 (goto-char (match-beginning 1))))
22663 (call-interactively move-fun))))
22664 ((org-element-property :hiddenp element)
22665 ;; If element is hidden, `move-end-of-line' would put point
22666 ;; after it. Use `end-of-line' to stay on current line.
22667 (call-interactively 'end-of-line))
22668 (t (call-interactively move-fun)))))
22669 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t)))))
22671 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
22672 (define-key org-mode-map "\C-e" 'org-end-of-line)
22674 (defun org-backward-sentence (&optional arg)
22675 "Go to beginning of sentence, or beginning of table field.
22676 This will call `backward-sentence' or `org-table-beginning-of-field',
22677 depending on context."
22678 (interactive "P")
22679 (cond
22680 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
22681 (t (call-interactively 'backward-sentence))))
22683 (defun org-forward-sentence (&optional arg)
22684 "Go to end of sentence, or end of table field.
22685 This will call `forward-sentence' or `org-table-end-of-field',
22686 depending on context."
22687 (interactive "P")
22688 (cond
22689 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
22690 (t (call-interactively 'forward-sentence))))
22692 (define-key org-mode-map "\M-a" 'org-backward-sentence)
22693 (define-key org-mode-map "\M-e" 'org-forward-sentence)
22695 (defun org-kill-line (&optional arg)
22696 "Kill line, to tags or end of line."
22697 (interactive "P")
22698 (cond
22699 ((or (not org-special-ctrl-k)
22700 (bolp)
22701 (not (org-at-heading-p)))
22702 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
22703 org-ctrl-k-protect-subtree)
22704 (if (or (eq org-ctrl-k-protect-subtree 'error)
22705 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
22706 (user-error "C-k aborted as it would kill a hidden subtree")))
22707 (call-interactively
22708 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
22709 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
22710 (kill-region (point) (match-beginning 1))
22711 (org-set-tags nil t))
22712 (t (kill-region (point) (point-at-eol)))))
22714 (define-key org-mode-map "\C-k" 'org-kill-line)
22716 (defun org-yank (&optional arg)
22717 "Yank. If the kill is a subtree, treat it specially.
22718 This command will look at the current kill and check if is a single
22719 subtree, or a series of subtrees[1]. If it passes the test, and if the
22720 cursor is at the beginning of a line or after the stars of a currently
22721 empty headline, then the yank is handled specially. How exactly depends
22722 on the value of the following variables, both set by default.
22724 org-yank-folded-subtrees
22725 When set, the subtree(s) will be folded after insertion, but only
22726 if doing so would now swallow text after the yanked text.
22728 org-yank-adjusted-subtrees
22729 When set, the subtree will be promoted or demoted in order to
22730 fit into the local outline tree structure, which means that the level
22731 will be adjusted so that it becomes the smaller one of the two
22732 *visible* surrounding headings.
22734 Any prefix to this command will cause `yank' to be called directly with
22735 no special treatment. In particular, a simple \\[universal-argument] prefix \
22736 will just
22737 plainly yank the text as it is.
22739 \[1] The test checks if the first non-white line is a heading
22740 and if there are no other headings with fewer stars."
22741 (interactive "P")
22742 (org-yank-generic 'yank arg))
22744 (defun org-yank-generic (command arg)
22745 "Perform some yank-like command.
22747 This function implements the behavior described in the `org-yank'
22748 documentation. However, it has been generalized to work for any
22749 interactive command with similar behavior."
22751 ;; pretend to be command COMMAND
22752 (setq this-command command)
22754 (if arg
22755 (call-interactively command)
22757 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
22758 (and (org-kill-is-subtree-p)
22759 (or (bolp)
22760 (and (looking-at "[ \t]*$")
22761 (string-match
22762 "\\`\\*+\\'"
22763 (buffer-substring (point-at-bol) (point)))))))
22764 swallowp)
22765 (cond
22766 ((and subtreep org-yank-folded-subtrees)
22767 (let ((beg (point))
22768 end)
22769 (if (and subtreep org-yank-adjusted-subtrees)
22770 (org-paste-subtree nil nil 'for-yank)
22771 (call-interactively command))
22773 (setq end (point))
22774 (goto-char beg)
22775 (when (and (bolp) subtreep
22776 (not (setq swallowp
22777 (org-yank-folding-would-swallow-text beg end))))
22778 (org-with-limited-levels
22779 (or (looking-at org-outline-regexp)
22780 (re-search-forward org-outline-regexp-bol end t))
22781 (while (and (< (point) end) (looking-at org-outline-regexp))
22782 (hide-subtree)
22783 (org-cycle-show-empty-lines 'folded)
22784 (condition-case nil
22785 (outline-forward-same-level 1)
22786 (error (goto-char end))))))
22787 (when swallowp
22788 (message
22789 "Inserted text not folded because that would swallow text"))
22791 (goto-char end)
22792 (skip-chars-forward " \t\n\r")
22793 (beginning-of-line 1)
22794 (push-mark beg 'nomsg)))
22795 ((and subtreep org-yank-adjusted-subtrees)
22796 (let ((beg (point-at-bol)))
22797 (org-paste-subtree nil nil 'for-yank)
22798 (push-mark beg 'nomsg)))
22800 (call-interactively command))))))
22802 (defun org-yank-folding-would-swallow-text (beg end)
22803 "Would hide-subtree at BEG swallow any text after END?"
22804 (let (level)
22805 (org-with-limited-levels
22806 (save-excursion
22807 (goto-char beg)
22808 (when (or (looking-at org-outline-regexp)
22809 (re-search-forward org-outline-regexp-bol end t))
22810 (setq level (org-outline-level)))
22811 (goto-char end)
22812 (skip-chars-forward " \t\r\n\v\f")
22813 (if (or (eobp)
22814 (and (bolp) (looking-at org-outline-regexp)
22815 (<= (org-outline-level) level)))
22816 nil ; Nothing would be swallowed
22817 t))))) ; something would swallow
22819 (define-key org-mode-map "\C-y" 'org-yank)
22821 (defun org-truely-invisible-p ()
22822 "Check if point is at a character currently not visible.
22823 This version does not only check the character property, but also
22824 `visible-mode'."
22825 ;; Early versions of noutline don't have `outline-invisible-p'.
22826 (if (org-bound-and-true-p visible-mode)
22828 (outline-invisible-p)))
22830 (defun org-invisible-p2 ()
22831 "Check if point is at a character currently not visible."
22832 (save-excursion
22833 (if (and (eolp) (not (bobp))) (backward-char 1))
22834 ;; Early versions of noutline don't have `outline-invisible-p'.
22835 (outline-invisible-p)))
22837 (defun org-back-to-heading (&optional invisible-ok)
22838 "Call `outline-back-to-heading', but provide a better error message."
22839 (condition-case nil
22840 (outline-back-to-heading invisible-ok)
22841 (error (error "Before first headline at position %d in buffer %s"
22842 (point) (current-buffer)))))
22844 (defun org-before-first-heading-p ()
22845 "Before first heading?"
22846 (save-excursion
22847 (end-of-line)
22848 (null (re-search-backward org-outline-regexp-bol nil t))))
22850 (defun org-at-heading-p (&optional ignored)
22851 (outline-on-heading-p t))
22852 ;; Compatibility alias with Org versions < 7.8.03
22853 (defalias 'org-on-heading-p 'org-at-heading-p)
22855 (defun org-at-comment-p nil
22856 "Is cursor in a line starting with a # character?"
22857 (save-excursion
22858 (beginning-of-line)
22859 (looking-at "^#")))
22861 (defun org-at-drawer-p nil
22862 "Is cursor at a drawer keyword?"
22863 (save-excursion
22864 (move-beginning-of-line 1)
22865 (looking-at org-drawer-regexp)))
22867 (defun org-at-block-p nil
22868 "Is cursor at a block keyword?"
22869 (save-excursion
22870 (move-beginning-of-line 1)
22871 (looking-at org-block-regexp)))
22873 (defun org-point-at-end-of-empty-headline ()
22874 "If point is at the end of an empty headline, return t, else nil.
22875 If the heading only contains a TODO keyword, it is still still considered
22876 empty."
22877 (and (looking-at "[ \t]*$")
22878 (when org-todo-line-regexp
22879 (save-excursion
22880 (beginning-of-line 1)
22881 (let ((case-fold-search nil))
22882 (looking-at org-todo-line-regexp)
22883 (string= (match-string 3) ""))))))
22885 (defun org-at-heading-or-item-p ()
22886 (or (org-at-heading-p) (org-at-item-p)))
22888 (defun org-at-target-p ()
22889 (or (org-in-regexp org-radio-target-regexp)
22890 (org-in-regexp org-target-regexp)))
22891 ;; Compatibility alias with Org versions < 7.8.03
22892 (defalias 'org-on-target-p 'org-at-target-p)
22894 (defun org-up-heading-all (arg)
22895 "Move to the heading line of which the present line is a subheading.
22896 This function considers both visible and invisible heading lines.
22897 With argument, move up ARG levels."
22898 (if (fboundp 'outline-up-heading-all)
22899 (outline-up-heading-all arg) ; emacs 21 version of outline.el
22900 (outline-up-heading arg t))) ; emacs 22 version of outline.el
22902 (defun org-up-heading-safe ()
22903 "Move to the heading line of which the present line is a subheading.
22904 This version will not throw an error. It will return the level of the
22905 headline found, or nil if no higher level is found.
22907 Also, this function will be a lot faster than `outline-up-heading',
22908 because it relies on stars being the outline starters. This can really
22909 make a significant difference in outlines with very many siblings."
22910 (let (start-level re)
22911 (org-back-to-heading t)
22912 (setq start-level (funcall outline-level))
22913 (if (equal start-level 1)
22915 (setq re (concat "^\\*\\{1," (number-to-string (1- start-level)) "\\} "))
22916 (if (re-search-backward re nil t)
22917 (funcall outline-level)))))
22919 (defun org-first-sibling-p ()
22920 "Is this heading the first child of its parents?"
22921 (interactive)
22922 (let ((re org-outline-regexp-bol)
22923 level l)
22924 (unless (org-at-heading-p t)
22925 (user-error "Not at a heading"))
22926 (setq level (funcall outline-level))
22927 (save-excursion
22928 (if (not (re-search-backward re nil t))
22930 (setq l (funcall outline-level))
22931 (< l level)))))
22933 (defun org-goto-sibling (&optional previous)
22934 "Goto the next sibling, even if it is invisible.
22935 When PREVIOUS is set, go to the previous sibling instead. Returns t
22936 when a sibling was found. When none is found, return nil and don't
22937 move point."
22938 (let ((fun (if previous 're-search-backward 're-search-forward))
22939 (pos (point))
22940 (re org-outline-regexp-bol)
22941 level l)
22942 (when (condition-case nil (org-back-to-heading t) (error nil))
22943 (setq level (funcall outline-level))
22944 (catch 'exit
22945 (or previous (forward-char 1))
22946 (while (funcall fun re nil t)
22947 (setq l (funcall outline-level))
22948 (when (< l level) (goto-char pos) (throw 'exit nil))
22949 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
22950 (goto-char pos)
22951 nil))))
22953 (defun org-show-siblings ()
22954 "Show all siblings of the current headline."
22955 (save-excursion
22956 (while (org-goto-sibling) (org-flag-heading nil)))
22957 (save-excursion
22958 (while (org-goto-sibling 'previous)
22959 (org-flag-heading nil))))
22961 (defun org-goto-first-child ()
22962 "Goto the first child, even if it is invisible.
22963 Return t when a child was found. Otherwise don't move point and
22964 return nil."
22965 (let (level (pos (point)) (re org-outline-regexp-bol))
22966 (when (condition-case nil (org-back-to-heading t) (error nil))
22967 (setq level (outline-level))
22968 (forward-char 1)
22969 (if (and (re-search-forward re nil t) (> (outline-level) level))
22970 (progn (goto-char (match-beginning 0)) t)
22971 (goto-char pos) nil))))
22973 (defun org-show-hidden-entry ()
22974 "Show an entry where even the heading is hidden."
22975 (save-excursion
22976 (org-show-entry)))
22978 (defun org-flag-heading (flag &optional entry)
22979 "Flag the current heading. FLAG non-nil means make invisible.
22980 When ENTRY is non-nil, show the entire entry."
22981 (save-excursion
22982 (org-back-to-heading t)
22983 ;; Check if we should show the entire entry
22984 (if entry
22985 (progn
22986 (org-show-entry)
22987 (save-excursion
22988 (and (outline-next-heading)
22989 (org-flag-heading nil))))
22990 (outline-flag-region (max (point-min) (1- (point)))
22991 (save-excursion (outline-end-of-heading) (point))
22992 flag))))
22994 (defun org-get-next-sibling ()
22995 "Move to next heading of the same level, and return point.
22996 If there is no such heading, return nil.
22997 This is like outline-next-sibling, but invisible headings are ok."
22998 (let ((level (funcall outline-level)))
22999 (outline-next-heading)
23000 (while (and (not (eobp)) (> (funcall outline-level) level))
23001 (outline-next-heading))
23002 (if (or (eobp) (< (funcall outline-level) level))
23004 (point))))
23006 (defun org-get-last-sibling ()
23007 "Move to previous heading of the same level, and return point.
23008 If there is no such heading, return nil."
23009 (let ((opoint (point))
23010 (level (funcall outline-level)))
23011 (outline-previous-heading)
23012 (when (and (/= (point) opoint) (outline-on-heading-p t))
23013 (while (and (> (funcall outline-level) level)
23014 (not (bobp)))
23015 (outline-previous-heading))
23016 (if (< (funcall outline-level) level)
23018 (point)))))
23020 (defun org-end-of-subtree (&optional invisible-ok to-heading)
23021 "Goto to the end of a subtree."
23022 ;; This contains an exact copy of the original function, but it uses
23023 ;; `org-back-to-heading', to make it work also in invisible
23024 ;; trees. And is uses an invisible-ok argument.
23025 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
23026 ;; Furthermore, when used inside Org, finding the end of a large subtree
23027 ;; with many children and grandchildren etc, this can be much faster
23028 ;; than the outline version.
23029 (org-back-to-heading invisible-ok)
23030 (let ((first t)
23031 (level (funcall outline-level)))
23032 (if (and (derived-mode-p 'org-mode) (< level 1000))
23033 ;; A true heading (not a plain list item), in Org-mode
23034 ;; This means we can easily find the end by looking
23035 ;; only for the right number of stars. Using a regexp to do
23036 ;; this is so much faster than using a Lisp loop.
23037 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
23038 (forward-char 1)
23039 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
23040 ;; something else, do it the slow way
23041 (while (and (not (eobp))
23042 (or first (> (funcall outline-level) level)))
23043 (setq first nil)
23044 (outline-next-heading)))
23045 (unless to-heading
23046 (if (memq (preceding-char) '(?\n ?\^M))
23047 (progn
23048 ;; Go to end of line before heading
23049 (forward-char -1)
23050 (if (memq (preceding-char) '(?\n ?\^M))
23051 ;; leave blank line before heading
23052 (forward-char -1))))))
23053 (point))
23055 (defadvice outline-end-of-subtree (around prefer-org-version activate compile)
23056 "Use Org version in org-mode, for dramatic speed-up."
23057 (if (derived-mode-p 'org-mode)
23058 (progn
23059 (org-end-of-subtree nil t)
23060 (unless (eobp) (backward-char 1)))
23061 ad-do-it))
23063 (defun org-end-of-meta-data-and-drawers ()
23064 "Jump to the first text after meta data and drawers in the current entry.
23065 This will move over empty lines, lines with planning time stamps,
23066 clocking lines, and drawers."
23067 (org-back-to-heading t)
23068 (let ((end (save-excursion (outline-next-heading) (point)))
23069 (re (concat "\\(" org-drawer-regexp "\\)"
23070 "\\|" "[ \t]*" org-keyword-time-regexp)))
23071 (forward-line 1)
23072 (while (re-search-forward re end t)
23073 (if (not (match-end 1))
23074 ;; empty or planning line
23075 (forward-line 1)
23076 ;; a drawer, find the end
23077 (re-search-forward "^[ \t]*:END:" end 'move)
23078 (forward-line 1)))
23079 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
23080 (point)))
23082 (defun org-forward-heading-same-level (arg &optional invisible-ok)
23083 "Move forward to the ARG'th subheading at same level as this one.
23084 Stop at the first and last subheadings of a superior heading.
23085 Normally this only looks at visible headings, but when INVISIBLE-OK is
23086 non-nil it will also look at invisible ones."
23087 (interactive "p")
23088 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
23089 (if (and arg (< arg 0))
23090 (goto-char (point-min))
23091 (outline-next-heading))
23092 (org-at-heading-p)
23093 (let ((level (- (match-end 0) (match-beginning 0) 1))
23094 (f (if (and arg (< arg 0))
23095 're-search-backward
23096 're-search-forward))
23097 (count (if arg (abs arg) 1))
23098 (result (point)))
23099 (while (and (prog1 (> count 0)
23100 (forward-char (if (and arg (< arg 0)) -1 1)))
23101 (funcall f org-outline-regexp-bol nil 'move))
23102 (let ((l (- (match-end 0) (match-beginning 0) 1)))
23103 (cond ((< l level) (setq count 0))
23104 ((and (= l level)
23105 (or invisible-ok
23106 (progn
23107 (goto-char (line-beginning-position))
23108 (not (outline-invisible-p)))))
23109 (setq count (1- count))
23110 (when (eq l level)
23111 (setq result (point)))))))
23112 (goto-char result))
23113 (beginning-of-line 1)))
23115 (defun org-backward-heading-same-level (arg &optional invisible-ok)
23116 "Move backward to the ARG'th subheading at same level as this one.
23117 Stop at the first and last subheadings of a superior heading."
23118 (interactive "p")
23119 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
23121 (defun org-next-block (arg &optional backward block-regexp)
23122 "Jump to the next block.
23123 With a prefix argument ARG, jump forward ARG many source blocks.
23124 When BACKWARD is non-nil, jump to the previous block.
23125 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
23126 (interactive "p")
23127 (let ((re (or block-regexp org-block-regexp))
23128 (re-search-fn (or (and backward 're-search-backward)
23129 're-search-forward)))
23130 (if (looking-at re) (forward-char 1))
23131 (condition-case nil
23132 (funcall re-search-fn re nil nil arg)
23133 (error (error "No %s code blocks" (if backward "previous" "further" ))))
23134 (goto-char (match-beginning 0)) (org-show-context)))
23136 (defun org-previous-block (arg &optional block-regexp)
23137 "Jump to the previous block.
23138 With a prefix argument ARG, jump backward ARG many source blocks.
23139 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
23140 (interactive "p")
23141 (org-next-block arg t block-regexp))
23143 (defun org-forward-element ()
23144 "Move forward by one element.
23145 Move to the next element at the same level, when possible."
23146 (interactive)
23147 (cond ((eobp) (user-error "Cannot move further down"))
23148 ((org-with-limited-levels (org-at-heading-p))
23149 (let ((origin (point)))
23150 (goto-char (org-end-of-subtree nil t))
23151 (unless (org-with-limited-levels (org-at-heading-p))
23152 (goto-char origin)
23153 (user-error "Cannot move further down"))))
23155 (let* ((elem (org-element-at-point))
23156 (end (org-element-property :end elem))
23157 (parent (org-element-property :parent elem)))
23158 (cond ((and parent (= (org-element-property :contents-end parent) end))
23159 (goto-char (org-element-property :end parent)))
23160 ((integer-or-marker-p end) (goto-char end))
23161 (t (message "No element at point")))))))
23163 (defun org-backward-element ()
23164 "Move backward by one element.
23165 Move to the previous element at the same level, when possible."
23166 (interactive)
23167 (cond ((bobp) (user-error "Cannot move further up"))
23168 ((org-with-limited-levels (org-at-heading-p))
23169 ;; At a headline, move to the previous one, if any, or stay
23170 ;; here.
23171 (let ((origin (point)))
23172 (org-with-limited-levels (org-backward-heading-same-level 1))
23173 ;; When current headline has no sibling above, move to its
23174 ;; parent.
23175 (when (= (point) origin)
23176 (or (org-with-limited-levels (org-up-heading-safe))
23177 (progn (goto-char origin)
23178 (user-error "Cannot move further up"))))))
23180 (let* ((trail (org-element-at-point 'keep-trail))
23181 (elem (car trail))
23182 (prev-elem (nth 1 trail))
23183 (beg (org-element-property :begin elem)))
23184 (cond
23185 ;; Move to beginning of current element if point isn't
23186 ;; there already.
23187 ((null beg) (message "No element at point"))
23188 ((/= (point) beg) (goto-char beg))
23189 (prev-elem (goto-char (org-element-property :begin prev-elem)))
23190 ((org-before-first-heading-p) (goto-char (point-min)))
23191 (t (org-back-to-heading)))))))
23193 (defun org-up-element ()
23194 "Move to upper element."
23195 (interactive)
23196 (if (org-with-limited-levels (org-at-heading-p))
23197 (unless (org-up-heading-safe) (user-error "No surrounding element"))
23198 (let* ((elem (org-element-at-point))
23199 (parent (org-element-property :parent elem)))
23200 (if parent (goto-char (org-element-property :begin parent))
23201 (if (org-with-limited-levels (org-before-first-heading-p))
23202 (user-error "No surrounding element")
23203 (org-with-limited-levels (org-back-to-heading)))))))
23205 (defvar org-element-greater-elements)
23206 (defun org-down-element ()
23207 "Move to inner element."
23208 (interactive)
23209 (let ((element (org-element-at-point)))
23210 (cond
23211 ((memq (org-element-type element) '(plain-list table))
23212 (goto-char (org-element-property :contents-begin element))
23213 (forward-char))
23214 ((memq (org-element-type element) org-element-greater-elements)
23215 ;; If contents are hidden, first disclose them.
23216 (when (org-element-property :hiddenp element) (org-cycle))
23217 (goto-char (or (org-element-property :contents-begin element)
23218 (user-error "No content for this element"))))
23219 (t (user-error "No inner element")))))
23221 (defun org-drag-element-backward ()
23222 "Move backward element at point."
23223 (interactive)
23224 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
23225 (let* ((trail (org-element-at-point 'keep-trail))
23226 (elem (car trail))
23227 (prev-elem (nth 1 trail)))
23228 ;; Error out if no previous element or previous element is
23229 ;; a parent of the current one.
23230 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
23231 (user-error "Cannot drag element backward")
23232 (let ((pos (point)))
23233 (org-element-swap-A-B prev-elem elem)
23234 (goto-char (+ (org-element-property :begin prev-elem)
23235 (- pos (org-element-property :begin elem)))))))))
23237 (defun org-drag-element-forward ()
23238 "Move forward element at point."
23239 (interactive)
23240 (let* ((pos (point))
23241 (elem (org-element-at-point)))
23242 (when (= (point-max) (org-element-property :end elem))
23243 (user-error "Cannot drag element forward"))
23244 (goto-char (org-element-property :end elem))
23245 (let ((next-elem (org-element-at-point)))
23246 (when (or (org-element-nested-p elem next-elem)
23247 (and (eq (org-element-type next-elem) 'headline)
23248 (not (eq (org-element-type elem) 'headline))))
23249 (goto-char pos)
23250 (user-error "Cannot drag element forward"))
23251 ;; Compute new position of point: it's shifted by NEXT-ELEM
23252 ;; body's length (without final blanks) and by the length of
23253 ;; blanks between ELEM and NEXT-ELEM.
23254 (let ((size-next (- (save-excursion
23255 (goto-char (org-element-property :end next-elem))
23256 (skip-chars-backward " \r\t\n")
23257 (forward-line)
23258 ;; Small correction if buffer doesn't end
23259 ;; with a newline character.
23260 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
23261 (org-element-property :begin next-elem)))
23262 (size-blank (- (org-element-property :end elem)
23263 (save-excursion
23264 (goto-char (org-element-property :end elem))
23265 (skip-chars-backward " \r\t\n")
23266 (forward-line)
23267 (point)))))
23268 (org-element-swap-A-B elem next-elem)
23269 (goto-char (+ pos size-next size-blank))))))
23271 (defun org-drag-line-forward (arg)
23272 "Drag the line at point ARG lines forward."
23273 (interactive "p")
23274 (dotimes (n (abs arg))
23275 (let ((c (current-column)))
23276 (if (< 0 arg)
23277 (progn
23278 (beginning-of-line 2)
23279 (transpose-lines 1)
23280 (beginning-of-line 0))
23281 (transpose-lines 1)
23282 (beginning-of-line -1))
23283 (org-move-to-column c))))
23285 (defun org-drag-line-backward (arg)
23286 "Drag the line at point ARG lines backward."
23287 (interactive "p")
23288 (org-drag-line-forward (- arg)))
23290 (defun org-mark-element ()
23291 "Put point at beginning of this element, mark at end.
23293 Interactively, if this command is repeated or (in Transient Mark
23294 mode) if the mark is active, it marks the next element after the
23295 ones already marked."
23296 (interactive)
23297 (let (deactivate-mark)
23298 (if (and (org-called-interactively-p 'any)
23299 (or (and (eq last-command this-command) (mark t))
23300 (and transient-mark-mode mark-active)))
23301 (set-mark
23302 (save-excursion
23303 (goto-char (mark))
23304 (goto-char (org-element-property :end (org-element-at-point)))))
23305 (let ((element (org-element-at-point)))
23306 (end-of-line)
23307 (push-mark (org-element-property :end element) t t)
23308 (goto-char (org-element-property :begin element))))))
23310 (defun org-narrow-to-element ()
23311 "Narrow buffer to current element."
23312 (interactive)
23313 (let ((elem (org-element-at-point)))
23314 (cond
23315 ((eq (car elem) 'headline)
23316 (narrow-to-region
23317 (org-element-property :begin elem)
23318 (org-element-property :end elem)))
23319 ((memq (car elem) org-element-greater-elements)
23320 (narrow-to-region
23321 (org-element-property :contents-begin elem)
23322 (org-element-property :contents-end elem)))
23324 (narrow-to-region
23325 (org-element-property :begin elem)
23326 (org-element-property :end elem))))))
23328 (defun org-transpose-element ()
23329 "Transpose current and previous elements, keeping blank lines between.
23330 Point is moved after both elements."
23331 (interactive)
23332 (org-skip-whitespace)
23333 (let ((end (org-element-property :end (org-element-at-point))))
23334 (org-drag-element-backward)
23335 (goto-char end)))
23337 (defun org-unindent-buffer ()
23338 "Un-indent the visible part of the buffer.
23339 Relative indentation (between items, inside blocks, etc.) isn't
23340 modified."
23341 (interactive)
23342 (unless (eq major-mode 'org-mode)
23343 (user-error "Cannot un-indent a buffer not in Org mode"))
23344 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
23345 unindent-tree ; For byte-compiler.
23346 (unindent-tree
23347 (function
23348 (lambda (contents)
23349 (mapc
23350 (lambda (element)
23351 (if (memq (org-element-type element) '(headline section))
23352 (funcall unindent-tree (org-element-contents element))
23353 (save-excursion
23354 (save-restriction
23355 (narrow-to-region
23356 (org-element-property :begin element)
23357 (org-element-property :end element))
23358 (org-do-remove-indentation)))))
23359 (reverse contents))))))
23360 (funcall unindent-tree (org-element-contents parse-tree))))
23362 (defun org-show-subtree ()
23363 "Show everything after this heading at deeper levels."
23364 (interactive)
23365 (outline-flag-region
23366 (point)
23367 (save-excursion
23368 (org-end-of-subtree t t))
23369 nil))
23371 (defun org-show-entry ()
23372 "Show the body directly following this heading.
23373 Show the heading too, if it is currently invisible."
23374 (interactive)
23375 (save-excursion
23376 (condition-case nil
23377 (progn
23378 (org-back-to-heading t)
23379 (outline-flag-region
23380 (max (point-min) (1- (point)))
23381 (save-excursion
23382 (if (re-search-forward
23383 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
23384 (match-beginning 1)
23385 (point-max)))
23386 nil)
23387 (org-cycle-hide-drawers 'children))
23388 (error nil))))
23390 (defun org-make-options-regexp (kwds &optional extra)
23391 "Make a regular expression for keyword lines."
23392 (concat
23393 "^#\\+\\("
23394 (mapconcat 'regexp-quote kwds "\\|")
23395 (if extra (concat "\\|" extra))
23396 "\\):[ \t]*\\(.*\\)"))
23398 ;; Make isearch reveal the necessary context
23399 (defun org-isearch-end ()
23400 "Reveal context after isearch exits."
23401 (when isearch-success ; only if search was successful
23402 (if (featurep 'xemacs)
23403 ;; Under XEmacs, the hook is run in the correct place,
23404 ;; we directly show the context.
23405 (org-show-context 'isearch)
23406 ;; In Emacs the hook runs *before* restoring the overlays.
23407 ;; So we have to use a one-time post-command-hook to do this.
23408 ;; (Emacs 22 has a special variable, see function `org-mode')
23409 (unless (and (boundp 'isearch-mode-end-hook-quit)
23410 isearch-mode-end-hook-quit)
23411 ;; Only when the isearch was not quitted.
23412 (org-add-hook 'post-command-hook 'org-isearch-post-command
23413 'append 'local)))
23414 (org-fix-ellipsis-at-bol)))
23416 (defun org-isearch-post-command ()
23417 "Remove self from hook, and show context."
23418 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
23419 (org-show-context 'isearch))
23422 ;;;; Integration with and fixes for other packages
23424 ;;; Imenu support
23426 (defvar org-imenu-markers nil
23427 "All markers currently used by Imenu.")
23428 (make-variable-buffer-local 'org-imenu-markers)
23430 (defun org-imenu-new-marker (&optional pos)
23431 "Return a new marker for use by Imenu, and remember the marker."
23432 (let ((m (make-marker)))
23433 (move-marker m (or pos (point)))
23434 (push m org-imenu-markers)
23437 (defun org-imenu-get-tree ()
23438 "Produce the index for Imenu."
23439 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
23440 (setq org-imenu-markers nil)
23441 (let* ((n org-imenu-depth)
23442 (re (concat "^" (org-get-limited-outline-regexp)))
23443 (subs (make-vector (1+ n) nil))
23444 (last-level 0)
23445 m level head0 head)
23446 (save-excursion
23447 (save-restriction
23448 (widen)
23449 (goto-char (point-max))
23450 (while (re-search-backward re nil t)
23451 (setq level (org-reduced-level (funcall outline-level)))
23452 (when (and (<= level n)
23453 (looking-at org-complex-heading-regexp)
23454 (setq head0 (org-match-string-no-properties 4)))
23455 (setq head (org-link-display-format head0)
23456 m (org-imenu-new-marker))
23457 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
23458 (if (>= level last-level)
23459 (push (cons head m) (aref subs level))
23460 (push (cons head (aref subs (1+ level))) (aref subs level))
23461 (loop for i from (1+ level) to n do (aset subs i nil)))
23462 (setq last-level level)))))
23463 (aref subs 1)))
23465 (eval-after-load "imenu"
23466 '(progn
23467 (add-hook 'imenu-after-jump-hook
23468 (lambda ()
23469 (if (derived-mode-p 'org-mode)
23470 (org-show-context 'org-goto))))))
23472 (defun org-link-display-format (link)
23473 "Replace a link with its the description.
23474 If there is no description, use the link target."
23475 (save-match-data
23476 (if (string-match org-bracket-link-analytic-regexp link)
23477 (replace-match (if (match-end 5)
23478 (match-string 5 link)
23479 (concat (match-string 1 link)
23480 (match-string 3 link)))
23481 nil t link)
23482 link)))
23484 (defun org-toggle-link-display ()
23485 "Toggle the literal or descriptive display of links."
23486 (interactive)
23487 (if org-descriptive-links
23488 (progn (org-remove-from-invisibility-spec '(org-link))
23489 (org-restart-font-lock)
23490 (setq org-descriptive-links nil))
23491 (progn (add-to-invisibility-spec '(org-link))
23492 (org-restart-font-lock)
23493 (setq org-descriptive-links t))))
23495 ;; Speedbar support
23497 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
23498 "Overlay marking the agenda restriction line in speedbar.")
23499 (overlay-put org-speedbar-restriction-lock-overlay
23500 'face 'org-agenda-restriction-lock)
23501 (overlay-put org-speedbar-restriction-lock-overlay
23502 'help-echo "Agendas are currently limited to this item.")
23503 (org-detach-overlay org-speedbar-restriction-lock-overlay)
23505 (defun org-speedbar-set-agenda-restriction ()
23506 "Restrict future agenda commands to the location at point in speedbar.
23507 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
23508 (interactive)
23509 (require 'org-agenda)
23510 (let (p m tp np dir txt)
23511 (cond
23512 ((setq p (text-property-any (point-at-bol) (point-at-eol)
23513 'org-imenu t))
23514 (setq m (get-text-property p 'org-imenu-marker))
23515 (with-current-buffer (marker-buffer m)
23516 (goto-char m)
23517 (org-agenda-set-restriction-lock 'subtree)))
23518 ((setq p (text-property-any (point-at-bol) (point-at-eol)
23519 'speedbar-function 'speedbar-find-file))
23520 (setq tp (previous-single-property-change
23521 (1+ p) 'speedbar-function)
23522 np (next-single-property-change
23523 tp 'speedbar-function)
23524 dir (speedbar-line-directory)
23525 txt (buffer-substring-no-properties (or tp (point-min))
23526 (or np (point-max))))
23527 (with-current-buffer (find-file-noselect
23528 (let ((default-directory dir))
23529 (expand-file-name txt)))
23530 (unless (derived-mode-p 'org-mode)
23531 (user-error "Cannot restrict to non-Org-mode file"))
23532 (org-agenda-set-restriction-lock 'file)))
23533 (t (user-error "Don't know how to restrict Org-mode's agenda")))
23534 (move-overlay org-speedbar-restriction-lock-overlay
23535 (point-at-bol) (point-at-eol))
23536 (setq current-prefix-arg nil)
23537 (org-agenda-maybe-redo)))
23539 (defvar speedbar-file-key-map)
23540 (declare-function speedbar-add-supported-extension "speedbar" (extension))
23541 (eval-after-load "speedbar"
23542 '(progn
23543 (speedbar-add-supported-extension ".org")
23544 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
23545 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
23546 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
23547 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
23548 (add-hook 'speedbar-visiting-tag-hook
23549 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
23551 ;;; Fixes and Hacks for problems with other packages
23553 ;; Make flyspell not check words in links, to not mess up our keymap
23554 (defvar org-element-affiliated-keywords) ; From org-element.el
23555 (defvar org-element-block-name-alist) ; From org-element.el
23556 (defun org-mode-flyspell-verify ()
23557 "Don't let flyspell put overlays at active buttons, or on
23558 {todo,all-time,additional-option-like}-keywords."
23559 (require 'org-element) ; For `org-element-affiliated-keywords'
23560 (let ((pos (max (1- (point)) (point-min)))
23561 (word (thing-at-point 'word)))
23562 (and (not (get-text-property pos 'keymap))
23563 (not (get-text-property pos 'org-no-flyspell))
23564 (not (member word org-todo-keywords-1))
23565 (not (member word org-all-time-keywords))
23566 (not (member word org-options-keywords))
23567 (not (member word (mapcar 'car org-startup-options)))
23568 (not (member-ignore-case word org-element-affiliated-keywords))
23569 (not (member-ignore-case word (org-get-export-keywords)))
23570 (not (member-ignore-case
23571 word (mapcar 'car org-element-block-name-alist)))
23572 (not (member-ignore-case word '("BEGIN" "END" "ATTR"))))))
23574 (defun org-remove-flyspell-overlays-in (beg end)
23575 "Remove flyspell overlays in region."
23576 (and (org-bound-and-true-p flyspell-mode)
23577 (fboundp 'flyspell-delete-region-overlays)
23578 (flyspell-delete-region-overlays beg end))
23579 (add-text-properties beg end '(org-no-flyspell t)))
23581 ;; Make `bookmark-jump' shows the jump location if it was hidden.
23582 (eval-after-load "bookmark"
23583 '(if (boundp 'bookmark-after-jump-hook)
23584 ;; We can use the hook
23585 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
23586 ;; Hook not available, use advice
23587 (defadvice bookmark-jump (after org-make-visible activate)
23588 "Make the position visible."
23589 (org-bookmark-jump-unhide))))
23591 ;; Make sure saveplace shows the location if it was hidden
23592 (eval-after-load "saveplace"
23593 '(defadvice save-place-find-file-hook (after org-make-visible activate)
23594 "Make the position visible."
23595 (org-bookmark-jump-unhide)))
23597 ;; Make sure ecb shows the location if it was hidden
23598 (eval-after-load "ecb"
23599 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
23600 "Make hierarchy visible when jumping into location from ECB tree buffer."
23601 (if (derived-mode-p 'org-mode)
23602 (org-show-context))))
23604 (defun org-bookmark-jump-unhide ()
23605 "Unhide the current position, to show the bookmark location."
23606 (and (derived-mode-p 'org-mode)
23607 (or (outline-invisible-p)
23608 (save-excursion (goto-char (max (point-min) (1- (point))))
23609 (outline-invisible-p)))
23610 (org-show-context 'bookmark-jump)))
23612 ;; Make session.el ignore our circular variable
23613 (defvar session-globals-exclude)
23614 (eval-after-load "session"
23615 '(add-to-list 'session-globals-exclude 'org-mark-ring))
23617 ;;;; Finish up
23619 (provide 'org)
23621 (run-hooks 'org-load-hook)
23623 ;;; org.el ends here